-
Notifications
You must be signed in to change notification settings - Fork 95
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: add item coverage and asset management in DataClient #1109
Open
wiki0831
wants to merge
9
commits into
main
Choose a base branch
from
wei/data-api-item-coverage
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
507602e
support data api clear coverage
wiki0831 833d6e7
add to sync client
wiki0831 b8d6441
sync test
wiki0831 d3b5dee
async test
wiki0831 1e3e331
cli test
wiki0831 aacfd4c
update CLI doc
wiki0831 acd9223
add to cli docs
wiki0831 e405d6e
minor code tweak and doc refresh
wiki0831 2309d47
doc example update
wiki0831 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change | ||||||||
---|---|---|---|---|---|---|---|---|---|---|
|
@@ -424,6 +424,62 @@ curl -s https://raw.githubusercontent.com/ropensci/geojsonio/main/inst/examples/ | |||||||||
|
||||||||||
Just pipe the results to `jq '.buckets | map(.count) | add'` and it’ll give you the total of all the values. | ||||||||||
|
||||||||||
## Get Item Details and Assess Item Clear Coverage | ||||||||||
|
||||||||||
Once you've found items of interest through search, you may want to examine a specific item in detail. The CLI provides a command to retrieve and display detailed information about a single item. | ||||||||||
|
||||||||||
### Get Item | ||||||||||
|
||||||||||
The `item-get` command allows you to retrieve detailed information about a specific item by its Type and ID: | ||||||||||
|
||||||||||
```sh | ||||||||||
planet data item-get PSScene 20230310_083933_71_2431 | ||||||||||
``` | ||||||||||
|
||||||||||
### Get Item Coverage | ||||||||||
|
||||||||||
The `item-coverage` command estimates the clear coverage of an item within a specified area of interest (AOI). This is useful for determining how much of your area of interest is covered by clouds or other obstructions: | ||||||||||
|
||||||||||
```sh | ||||||||||
planet data item-coverage PSScene 20250304_162555_90_24f2 --geom='{"type":"Polygon","coordinates":[[[-81.45,30.31],[-81.45,30.23],[-81.38,30.23],[-81.45,30.31]]]}' | ||||||||||
``` | ||||||||||
|
||||||||||
You can also specify additional parameters: | ||||||||||
|
||||||||||
* `--mode`: The mode for coverage calculation | ||||||||||
|
||||||||||
* `--band`: The band to use for coverage calculation | ||||||||||
|
||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||
For example: | ||||||||||
|
||||||||||
```sh | ||||||||||
planet data item-coverage PSScene 20250304_162555_90_24f2 --geom='{"type":"Polygon","coordinates":[[[-81.45,30.31],[-81.45,30.23],[-81.38,30.23],[-81.45,30.31]]]}' --band='snow' | ||||||||||
``` | ||||||||||
|
||||||||||
## Item Asset Management | ||||||||||
|
||||||||||
The CLI provides several commands for managing and working with item assets. | ||||||||||
|
||||||||||
### List Available Assets | ||||||||||
|
||||||||||
To see all available assets for a specific item: | ||||||||||
|
||||||||||
```sh | ||||||||||
planet data asset-list PSScene 20230310_083933_71_2431 | ||||||||||
``` | ||||||||||
|
||||||||||
This will show you all asset available for the item, including their status and activation requirements. | ||||||||||
|
||||||||||
### Get Asset Details | ||||||||||
|
||||||||||
To get detailed information about a specific asset: | ||||||||||
|
||||||||||
```sh | ||||||||||
planet data asset-get PSScene 20230310_083933_71_2431 ortho_analytic_8b | ||||||||||
``` | ||||||||||
|
||||||||||
This command provides information about the asset's status download availability. | ||||||||||
|
||||||||||
## Asset Activation and Download | ||||||||||
|
||||||||||
While we recommend using the Orders or Subscriptions API’s to deliver Planet data, the Data API has the capability | ||||||||||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's add the options here (feel free to adjust as you see fit)