diff --git a/datasets/predicted-damage-venezuela-2026/README.md b/datasets/predicted-damage-venezuela-2026/README.md new file mode 100644 index 00000000..aefb8252 --- /dev/null +++ b/datasets/predicted-damage-venezuela-2026/README.md @@ -0,0 +1,17 @@ +# Venezuela Damage 2026 + +## First-time publishing + +First you need to validate the STAC collection with `pctasks dataset validate-collection [path-to-template.json]`, fix any validation errors. + +Then submit the collection ingestion with `pctasks dataset ingest-collection -d datasets/predicted-damage-venezuela-2026/dataset.yaml -s -a registry pccomponents` + +Get the workflow ID and then watch it with: `pctasks runs status $WORKFLOW_ID --watch`. +It must succeed. + +Verify that it was successful with `curl "https://planetarycomputer.microsoft.com/api/stac/v1/collections/predicted-damage-venezuela-2026"` + +## Updating + +Simply add `-u` to the command. +`pctasks dataset ingest-collection -d datasets/conus404/dataset.yaml -u -s -a registry pccomponents` \ No newline at end of file diff --git a/datasets/predicted-damage-venezuela-2026/collection/description.md b/datasets/predicted-damage-venezuela-2026/collection/description.md new file mode 100644 index 00000000..2e6d5675 --- /dev/null +++ b/datasets/predicted-damage-venezuela-2026/collection/description.md @@ -0,0 +1,11 @@ +Following the June 2026 earthquakes that struck Catia La Mar, Venezuela, the [Microsoft AI for Good Lab](AI For Good Lab - Microsoft Research) ran their building damage assessment AI models to map and classify the buildings affected by the earthquakes. The models were applied to satellite imagery captured on 25 June 2026, producing building footprints with predicted damage across the affected area. + +This collection mirrors the [Venezuela Earthquakes: Building Damage Assessment in Catia La Mar](https://data.humdata.org/dataset/venezuela-earthquakes-catia-la-mar) dataset published on the Humanitarian Data Exchange (HDX) by the Microsoft AI for Good Lab and made available under the [Creative Commons Attribution 4.0 International (CC-BY-4.0)](https://creativecommons.org/licenses/by/4.0/) license. + +## Methodology + +The Microsoft AI for Good Lab ran their damage assessment AI models on satellite images taken 25 June 2026 and have mapped out the affected buildings. + +## Caveats + +Please note that the source imagery has orthorectification quality issues, which may cause building footprints to be misaligned with existing basemaps. \ No newline at end of file diff --git a/datasets/predicted-damage-venezuela-2026/collection/template.json b/datasets/predicted-damage-venezuela-2026/collection/template.json new file mode 100644 index 00000000..b5091082 --- /dev/null +++ b/datasets/predicted-damage-venezuela-2026/collection/template.json @@ -0,0 +1,134 @@ +{ + "type": "Collection", + "id": "predicted-damage-venezuela-2026", + "stac_version": "1.0.0", + "description": "{{ collection.description }}", + "links": [ + { + "rel": "cite-as", + "href": "https://www.microsoft.com/en-us/research/group/ai-for-good-research-lab/", + "type": "text/html", + "title": "AI For Good Lab Harnessing AI to help solve some of the world’s greatest challenges" + }, + { + "rel": "license", + "href": "https://creativecommons.org/licenses/by/4.0/", + "type": "text/html", + "title": "Creative Commons Attribution 4.0 International" + }, + { + "rel": "describedby", + "href": "https://planetarycomputer.microsoft.com/dataset/predicted-damage-venezuela-2026", + "type": "text/html", + "title": "Human readable dataset overview and reference" + } + ], + "stac_extensions": [ + "https://stac-extensions.github.io/table/v1.2.0/schema.json", + "https://stac-extensions.github.io/storage/v2.0.0/schema.json" + ], + "item_assets": { + "data": { + "type": "application/geopackage+sqlite3", + "roles": [ + "data" + ], + "title": "Predicted building damage footprints", + "description": "GeoPackage of building footprints with predicted earthquake damage for Catia La Mar, Venezuela.", + "table:storage_options": { + "account_name": "ai4edataeuwest" + } + } + }, + "msft:region": "westeurope", + "table:columns": [ + { + "name": "geometry", + "type": "byte_array", + "description": "Building footprint polygons" + } + ], + "msft:container": "ai4good", + "msft:storage_account": "ai4edataeuwest", + "msft:short_description": "AI-predicted building damage footprints for Catia La Mar, Venezuela, following the June 2026 earthquakes.", + "title": "Predicted Building Damage: Venezuela Earthquakes (Catia La Mar) 2026", + "extent": { + "spatial": { + "bbox": [ + [ + -73.354, + 0.647, + -59.7589, + 12.2019 + ] + ] + }, + "temporal": { + "interval": [ + [ + "2026-06-25T00:00:00Z", + "2026-06-25T23:59:59Z" + ] + ] + } + }, + "license": "CC-BY-4.0", + "keywords": [ + "Venezuela", + "Catia La Mar", + "Earthquake", + "Building damage", + "Damage assessment", + "Buildings", + "Microsoft AI for Good Lab" + ], + "providers": [ + { + "name": "Microsoft AI for Good Lab", + "roles": [ + "producer", + "licensor" + ], + "url": "https://www.microsoft.com/en-us/research/group/ai-for-good-research-lab/" + }, + { + "name": "Microsoft", + "roles": [ + "host", + "processor" + ], + "url": "https://planetarycomputer.microsoft.com" + } + ], + "assets": { + "thumbnail": { + "href": "https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/venezuela2026.png", + "type": "image/png", + "title": "Predicted Building Damage Thumbnail", + "roles": [ + "thumbnail" + ] + }, + "data": { + "href": "https://ai4edataeuwest.blob.core.windows.net/ai4good/venezuela2026/predicted_damage_catia_la_mar_footprints.gpkg", + "type": "application/geopackage+sqlite3", + "title": "Predicted building damage footprints", + "description": "GeoPackage of building footprints with predicted earthquake damage for Catia La Mar, Venezuela.", + "table:storage_options": { + "account_name": "ai4edataeuwest" + }, + "roles": [ + "data" + ] + } + }, + "storage:schemes": { + "azure": { + "type": "ms-azure", + "platform": "https://{account}.blob.core.windows.net", + "account": "ai4edataeuwest", + "container": "ai4good", + "region": "westeurope" + } + } +} \ No newline at end of file diff --git a/datasets/predicted-damage-venezuela-2026/dataset.yaml b/datasets/predicted-damage-venezuela-2026/dataset.yaml new file mode 100644 index 00000000..d87bd8d6 --- /dev/null +++ b/datasets/predicted-damage-venezuela-2026/dataset.yaml @@ -0,0 +1,13 @@ +id: predicted-damage-venezuela-2026 +image: ${{ args.registry }}/pctasks-task-base:latest + +args: +- registry + +collections: + - id: predicted-damage-venezuela-2026 + template: ${{ local.path(./collection) }} + class: pctasks.dataset.collection:PremadeItemCollection + asset_storage: [] + chunk_storage: + uri: "blob://cpdataeuwest/cpdata-etl-data/chunks" \ No newline at end of file