Monitoring for new Raster Analytics data
The Monitoring service allows user to receive alerts when new imagery is available in the Raster Analytics service.
You can filter for Raster Analytics data by adding the "cloud-optimized-archive" as the collection to match in the monitor's "match_criteria"
"match_criteria": {
"collection": {
"in": ["cloud-optimized-archive"]
},
...
Full Example Raster Analytics Monitoring Request
{
"source": "discovery/catalog",
"description": "test transform monitor over denver",
"aoi_geojson": {
"type": "Polygon",
"coordinates": [
[
[
-105.41717932127098,
40.07064999725017
],
[
-105.41717932127098,
39.697345790670965
],
[
-104.74471093796117,
39.697345790670965
],
[
-104.74471093796117,
40.07064999725017
],
[
-105.41717932127098,
40.07064999725017
]
]
]
},
"match_criteria": {
"collection": {
"in": ["cloud-optimized-archive"]
},
"eo:cloud_cover": {
"lt": 75
},
"aoi:coverage_sqkm": {
"gte": 1
}
},
"erode_area": false,
"monitor_notifications": [{
"type": "email",
"target": "user@example.com"
}]
}