Example: WorldView Radar tasking example using Umbra
This example shows a WorldView Radar tasking request for Umbra data delivered as a GeoTIFF image. Some commonly used settings are shown. Note that Umbra requests use GeoJSON Points to define the AOI.
Note: If you are using this example, update the
collect_datetimeandend_collect_datetimevalues to a future date.
{
"request_description": "Example of Umbra tasking",
"start_collect_datetime": "2025-11-16t00:00:00z",
"end_collect_datetime": "2025-11-26t12:00:00z",
"geometry": {
"type":"Point",
"coordinates": [
-119.253,
40.817
]
},
"tasking_details": {
"range_resolution_meters": 0.5,
"polarization": "VV",
"dwell_duration": "medium-dwell"
},
"product_details": {
"file_format": "GeoTIFF",
"product_output":[
"CSI",
"DI"
],
"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"
}
]
}