How to Update API Searches for PSScene
The following table shows how to update your API searches to take advantage of the new PSScene asset type.
Remember: PSScene3Band and PSScene4Band item type and assets will be deprecated by January 2023. These item types will not be available for new customers provisioned after March 1, 2022. We recommend all customers who are interested in medium resolution imagery use the PSScene item type now.
API |
Your Action Needed |
Data API | Update quick & saved searches to use PSScene item type. If applicable, adjust AssetFilter to use PSScene Asset Types. |
Orders API |
Identify the appropriate PSScene bundle, and update order requests to use PSScene item type and bundle. If approximate Sentinel-2 spectral response is desired, use the new Sentinel-2 harmonization target sensor in the Harmonization Tool when ordering data from all Doves. Read more. |
Subscriptions API |
Identify the appropriate PSScene Asset Types. Create new subscriptions with the PSScene item_type and asset_types, and cancel existing subscriptions for the same AOI. (You are unable to edit an item_type of a existing subscription) If approximate Sentinel-2 spectral response is desired, use the new Sentinel-2 harmonization target sensor in the Harmonization Tool when ordering data from all Doves. Read more. |
Common Search Example
This example searches for PSScene items with an 4-band surface reflectance analytic and udm2 asset acquired between January 1, 2022 and January 15, 2022.
{
"name": "PSScene AssetFilter & DateRange Filter",
"item_types": ["PSScene"],
"filter": {
"type": "AndFilter",
"config": [
{
"type": "AssetFilter",
"config": ["ortho_analytic_4b_sr"]
},
{
"type": "AssetFilter",
"config": ["ortho_udm2"]
},
{
"type": "DateRangeFilter",
"field_name": "acquired",
"config": {
"gt": "2022-01-01T00:00:00Z",
"lte": "2022-01-15T00:00:00Z"
}
}
]
}
}
Comments
Please sign in to leave a comment.