Skip to main content

Example: Flexview 30 CM Color View-Ready Ortho (OR2A) Imagery

NOTE Tasking API V2 is in final development and review. This draft documentation is subject to change at any time.

This example shows a Flexview tasking request recipe for 30 cm color imagery to be collected and processed as a "view-ready-ortho" (OR2A) image. A maximum cloud cover threshold of 20 percent is also set. Note that Flexview uses GeoJSON Polygons to define the AOI.

Note: If you are using this example, update the start_datetime and end_datetime values to a future date.

{
"tasking_tier": "flexView",
"request_description": "Example of Flexview tasking",
"start_collect_datetime": "2025-11-16t00:00:00z",
"end_collect_datetime": "2025-11-26t00:00:00z",
"geometry": {
"type":"Polygon",
"coordinates": [
[
[
-119.253,
40.817
],
[
-119.253,
40.746
],
[
-119.157,
40.746
],
[
-119.157,
40.817
],
[
-119.253,
40.817
]
]
]
},
"tasking_details": {
"max_gsd": 0.39,
"max_cloud_cover": 20
},
"product_details": {
"product_type": "view-ready-ortho",
"licensing": {
"end_use_code": "AGR"
}
},
"output_configs": [
{
"type": "amazon_s3",
"bucket": "my-bucket",
"prefix": "my-prefix"
}
],
"notifications": [
{
"type": "email",
"target": "user@example.com",
"level": "FINAL_ONLY"
}
]
}