diff --git a/ingestion-data/staging/collections/landsat-burn-ratio.json b/ingestion-data/staging/collections/landsat-burn-ratio.json new file mode 100644 index 0000000..8db0648 --- /dev/null +++ b/ingestion-data/staging/collections/landsat-burn-ratio.json @@ -0,0 +1,91 @@ +{ + "type": "Collection", + "id": "landsat-burn-ratio", + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/item-assets/v1.0.0/schema.json", + "https://stac-extensions.github.io/renders/v1.0.0/schema.json" + ], + "title": "Landsat Normalized Burn Ratio", + "description": "Normalized Burn Ratio (NBR) index highlighting burned areas by comparing near-infrared and shortwave infrared bands for fire damage assessment.", + "license": "CC0-1.0", + "keywords": [ + "landsat", + "burn-ratio", + "composites" + ], + "dashboard:is_periodic": false, + "dashboard:time_density": "day", + "extent": { + "spatial": { + "bbox": [ + [ + -180, + -90, + 180, + 90 + ] + ] + }, + "temporal": { + "interval": [ + [ + "2022-01-01T00:00:00Z", + null + ] + ] + } + }, + "item_assets": { + "burn-ratio": { + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "layer" + ], + "title": "Normalized Burn Ratio", + "description": "Normalized Burn Ratio (NBR) index highlighting burned areas by comparing near-infrared and shortwave infrared bands for fire damage assessment." + } + }, + "renders": { + "dashboard": { + "assets": [ + "burn-ratio" + ], + "rescale": [ + [ + -1, + 1 + ] + ], + "nodata": -9999.0, + "colormap_name": "viridis" + }, + "burn-ratio": { + "assets": [ + "burn-ratio" + ], + "rescale": [ + [ + -1, + 1 + ] + ], + "nodata": -9999.0, + "colormap_name": "viridis" + } + }, + "links": [], + "providers": [ + { + "name": "NASA", + "roles": [ + "producer", + "host" + ], + "url": "https://www.nasa.gov" + } + ], + "product": "burn-ratio", + "sensor": "landsat" +} \ No newline at end of file diff --git a/ingestion-data/staging/collections/landsat-natural-color.json b/ingestion-data/staging/collections/landsat-natural-color.json new file mode 100644 index 0000000..baf7a6b --- /dev/null +++ b/ingestion-data/staging/collections/landsat-natural-color.json @@ -0,0 +1,85 @@ +{ + "type": "Collection", + "id": "landsat-natural-color", + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/item-assets/v1.0.0/schema.json", + "https://stac-extensions.github.io/renders/v1.0.0/schema.json" + ], + "title": "Landsat Natural Color Composites", + "description": "Natural color composite using visible bands (Red, Green, Blue) for intuitive visual interpretation of surface features.", + "license": "CC0-1.0", + "keywords": [ + "landsat", + "natural-color", + "composites" + ], + "dashboard:is_periodic": false, + "dashboard:time_density": "day", + "extent": { + "spatial": { + "bbox": [ + [ + -180, + -90, + 180, + 90 + ] + ] + }, + "temporal": { + "interval": [ + [ + "2022-01-01T00:00:00Z", + null + ] + ] + } + }, + "item_assets": { + "natural-color": { + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "layer" + ], + "title": "Natural Color", + "description": "Natural color RGB composite using visible wavelengths for natural-looking imagery of Earth's surface." + } + }, + "renders": { + "dashboard": { + "assets": [ + "natural-color" + ], + "bidx": [ + 1, + 2, + 3 + ] + }, + "natural-color": { + "assets": [ + "natural-color" + ], + "bidx": [ + 1, + 2, + 3 + ] + } + }, + "links": [], + "providers": [ + { + "name": "NASA", + "roles": [ + "producer", + "host" + ], + "url": "https://www.nasa.gov" + } + ], + "product": "natural-color", + "sensor": "landsat" +} \ No newline at end of file diff --git a/ingestion-data/staging/collections/landsat-true-color.json b/ingestion-data/staging/collections/landsat-true-color.json new file mode 100644 index 0000000..47c80c5 --- /dev/null +++ b/ingestion-data/staging/collections/landsat-true-color.json @@ -0,0 +1,85 @@ +{ + "type": "Collection", + "id": "landsat-true-color", + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/item-assets/v1.0.0/schema.json", + "https://stac-extensions.github.io/renders/v1.0.0/schema.json" + ], + "title": "Landsat True Color Composites", + "description": "True color composite using visible bands (Red, Green, Blue) for intuitive visual interpretation of surface features.", + "license": "CC0-1.0", + "keywords": [ + "landsat", + "true-color", + "composites" + ], + "dashboard:is_periodic": false, + "dashboard:time_density": "day", + "extent": { + "spatial": { + "bbox": [ + [ + -180, + -90, + 180, + 90 + ] + ] + }, + "temporal": { + "interval": [ + [ + "2022-01-01T00:00:00Z", + null + ] + ] + } + }, + "item_assets": { + "true-color": { + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "layer" + ], + "title": "True Color", + "description": "True color RGB composite using visible wavelengths for natural-looking imagery of Earth's surface." + } + }, + "renders": { + "dashboard": { + "assets": [ + "true-color" + ], + "bidx": [ + 1, + 2, + 3 + ] + }, + "true-color": { + "assets": [ + "true-color" + ], + "bidx": [ + 1, + 2, + 3 + ] + } + }, + "links": [], + "providers": [ + { + "name": "NASA", + "roles": [ + "producer", + "host" + ], + "url": "https://www.nasa.gov" + } + ], + "product": "true-color", + "sensor": "landsat" +} \ No newline at end of file diff --git a/ingestion-data/staging/collections/sentinel-2-burn-ratio.json b/ingestion-data/staging/collections/sentinel-2-burn-ratio.json new file mode 100644 index 0000000..7d2223c --- /dev/null +++ b/ingestion-data/staging/collections/sentinel-2-burn-ratio.json @@ -0,0 +1,91 @@ +{ + "type": "Collection", + "id": "sentinel-2-burn-ratio", + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/item-assets/v1.0.0/schema.json", + "https://stac-extensions.github.io/renders/v1.0.0/schema.json" + ], + "title": "Sentinel-2 Normalized Burn Ratio", + "description": "Normalized Burn Ratio (NBR) index highlighting burned areas by comparing near-infrared and shortwave infrared bands for fire damage assessment. Sentinel-2 is a multispectral optical imaging mission providing high-resolution imagery for disaster monitoring and environmental assessment.", + "license": "CC0-1.0", + "keywords": [ + "sentinel-2", + "burn-ratio", + "composites" + ], + "dashboard:is_periodic": false, + "dashboard:time_density": "day", + "extent": { + "spatial": { + "bbox": [ + [ + -180, + -90, + 180, + 90 + ] + ] + }, + "temporal": { + "interval": [ + [ + "2022-01-01T00:00:00Z", + null + ] + ] + } + }, + "item_assets": { + "burn-ratio": { + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "layer" + ], + "title": "Normalized Burn Ratio", + "description": "Normalized Burn Ratio (NBR) index highlighting burned areas by comparing near-infrared and shortwave infrared bands for fire damage assessment." + } + }, + "renders": { + "dashboard": { + "assets": [ + "burn-ratio" + ], + "rescale": [ + [ + -1, + 1 + ] + ], + "colormap_name": "viridis", + "nodata": -9999.0 + }, + "burn-ratio": { + "assets": [ + "burn-ratio" + ], + "rescale": [ + [ + -1, + 1 + ] + ], + "colormap_name": "viridis", + "nodata": -9999.0 + } + }, + "links": [], + "providers": [ + { + "name": "NASA", + "roles": [ + "producer", + "host" + ], + "url": "https://www.nasa.gov" + } + ], + "product": "burn-ratio", + "sensor": "sentinel-2" +} \ No newline at end of file diff --git a/ingestion-data/staging/collections/sentinel-2-natural-color.json b/ingestion-data/staging/collections/sentinel-2-natural-color.json new file mode 100644 index 0000000..cc86fb3 --- /dev/null +++ b/ingestion-data/staging/collections/sentinel-2-natural-color.json @@ -0,0 +1,85 @@ +{ + "type": "Collection", + "id": "sentinel-2-natural-color", + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/item-assets/v1.0.0/schema.json", + "https://stac-extensions.github.io/renders/v1.0.0/schema.json" + ], + "title": "Sentinel-2 Natural Color Composites", + "description": "Natural color composite using visible bands (Red, Green, Blue) for intuitive visual interpretation of surface features.. Sentinel-2 is a multispectral optical imaging mission providing high-resolution imagery for disaster monitoring and environmental assessment.", + "license": "CC0-1.0", + "keywords": [ + "sentinel-2", + "natural color", + "composites" + ], + "dashboard:is_periodic": false, + "dashboard:time_density": "day", + "extent": { + "spatial": { + "bbox": [ + [ + -180, + -90, + 180, + 90 + ] + ] + }, + "temporal": { + "interval": [ + [ + "2022-01-01T00:00:00Z", + null + ] + ] + } + }, + "item_assets": { + "true-color": { + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "layer" + ], + "title": "Natural Color RGB", + "description": "Natural color RGB composite using visible wavelengths for natural-looking imagery of Earth's surface." + } + }, + "renders": { + "dashboard": { + "assets": [ + "natural-color" + ], + "bidx": [ + 1, + 2, + 3 + ] + }, + "natural-color": { + "assets": [ + "natural-color" + ], + "bidx": [ + 1, + 2, + 3 + ] + } + }, + "links": [], + "providers": [ + { + "name": "NASA", + "roles": [ + "producer", + "host" + ], + "url": "https://www.nasa.gov" + } + ], + "product": "natural-color", + "sensor": "sentinel-2" +} \ No newline at end of file diff --git a/ingestion-data/staging/collections/sentinel-2-true-color.json b/ingestion-data/staging/collections/sentinel-2-true-color.json new file mode 100644 index 0000000..06f0110 --- /dev/null +++ b/ingestion-data/staging/collections/sentinel-2-true-color.json @@ -0,0 +1,85 @@ +{ + "type": "Collection", + "id": "sentinel-2-true-color", + "stac_version": "1.0.0", + "stac_extensions": [ + "https://stac-extensions.github.io/item-assets/v1.0.0/schema.json", + "https://stac-extensions.github.io/renders/v1.0.0/schema.json" + ], + "title": "Sentinel-2 True Color Composites", + "description": "True color RGB composite using visible wavelengths for natural-looking imagery of Earth's surface. Sentinel-2 is a multispectral optical imaging mission providing high-resolution imagery for disaster monitoring and environmental assessment.", + "license": "CC0-1.0", + "keywords": [ + "sentinel-2", + "true color", + "composites" + ], + "dashboard:is_periodic": false, + "dashboard:time_density": "day", + "extent": { + "spatial": { + "bbox": [ + [ + -180, + -90, + 180, + 90 + ] + ] + }, + "temporal": { + "interval": [ + [ + "2022-01-01T00:00:00Z", + null + ] + ] + } + }, + "item_assets": { + "true-color": { + "type": "image/tiff; application=geotiff; profile=cloud-optimized", + "roles": [ + "data", + "layer" + ], + "title": "True Color RGB", + "description": "True color RGB composite using visible wavelengths for natural-looking imagery of Earth's surface." + } + }, + "renders": { + "dashboard": { + "assets": [ + "true-color" + ], + "bidx": [ + 1, + 2, + 3 + ] + }, + "true-color": { + "assets": [ + "true-color" + ], + "bidx": [ + 1, + 2, + 3 + ] + } + }, + "links": [], + "providers": [ + { + "name": "NASA", + "roles": [ + "producer", + "host" + ], + "url": "https://www.nasa.gov" + } + ], + "product": "true-color", + "sensor": "sentinel-2" +} \ No newline at end of file diff --git a/ingestion-data/staging/discovery-items/landsat-burn-ratio.json b/ingestion-data/staging/discovery-items/landsat-burn-ratio.json new file mode 100644 index 0000000..190a8b2 --- /dev/null +++ b/ingestion-data/staging/discovery-items/landsat-burn-ratio.json @@ -0,0 +1,25 @@ +{ + "discovery_items": [ + { + "collection": "landsat-burn-ratio", + "prefix": "drcs_activations_new/Landsat/burnRatio/", + "bucket": "nasa-disasters", + "filename_regex": "^(.*).Fire_CA_LC.*_day.tif$", + "discovery": "s3", + "properties": { + "event_names": ["Fire CA"], + "hazards": ["fire"], + "sensor": "landsat", + "product": "burn-ratio", + "programs": ["drcs"], + "routine": false + }, + "assets": { + "burn-ratio": { + "title": "Normalized Burn Ratio", + "description": "Normalized Burn Ratio (NBR) index highlighting burned areas by comparing near-infrared and shortwave infrared bands for fire damage assessment." + } + } + } + ] +} \ No newline at end of file diff --git a/ingestion-data/staging/discovery-items/landsat-natural-color.json b/ingestion-data/staging/discovery-items/landsat-natural-color.json new file mode 100644 index 0000000..ff54b78 --- /dev/null +++ b/ingestion-data/staging/discovery-items/landsat-natural-color.json @@ -0,0 +1,92 @@ +{ + "discovery_items": [ + { + "collection": "landsat-natural-color", + "prefix": "drcs_activations_new/Landsat/naturalColor/", + "bucket": "nasa-disasters", + "filename_regex": "^(.*)Earthquake_Turkiye(.*)naturalColor(.*)_day.tif$", + "discovery": "s3", + "datetime_range": "day", + "properties": { + "event_names": ["Earthquake Turkiye"], + "hazards": ["earthquake"], + "sensor": "landsat", + "product": "natural-color", + "programs": ["drcs"], + "routine": false + }, + "assets": { + "natural-color": { + "title": "Natural Color RGB", + "description": "Natural color RGB composite using visible wavelengths for natural-looking imagery of Earth's surface." + } + } + }, + { + "collection": "landsat-natural-color", + "prefix": "drcs_activations_new/Landsat/naturalColor/", + "bucket": "nasa-disasters", + "filename_regex": "^(.*)Hurricane_Idalia(.*)naturalColor.*_day.tif$", + "discovery": "s3", + "datetime_range": "day", + "properties": { + "event_names": ["Hurricane Idalia"], + "hazards": ["hurricaine"], + "sensor": "landsat", + "product": "natural-color", + "programs": ["drcs"], + "routine": false + }, + "assets": { + "natural-color": { + "title": "Natural Color RGB", + "description": "Natural color RGB composite using visible wavelengths for natural-looking imagery of Earth's surface." + } + } + }, + { + "collection": "landsat-natural-color", + "prefix": "drcs_activations_new/Landsat/naturalColor/", + "bucket": "nasa-disasters", + "filename_regex": "^(.*)TropicalStorm_Debby(.*)naturalColor.*_day.tif$", + "discovery": "s3", + "datetime_range": "day", + "properties": { + "event_names": ["TropicalStorm Debby"], + "hazards": ["tropical storm"], + "sensor": "landsat", + "product": "natural-color", + "programs": ["drcs"], + "routine": false + }, + "assets": { + "natural-color": { + "title": "Natural Color RGB", + "description": "Natural color RGB composite using visible wavelengths for natural-looking imagery of Earth's surface." + } + } + }, + { + "collection": "landsat-natural-color", + "prefix": "drcs_activations_new/Landsat/naturalColor/", + "bucket": "nasa-disasters", + "filename_regex": "^(.*)Flood_OhioValley(.*)naturalColor.*_day.tif$", + "discovery": "s3", + "datetime_range": "day", + "properties": { + "event_names": ["Flood Ohio Valley"], + "hazards": ["flood"], + "sensor": "landsat", + "product": "natural-color", + "programs": ["drcs"], + "routine": false + }, + "assets": { + "natural-color": { + "title": "Natural Color RGB", + "description": "Natural color RGB composite using visible wavelengths for natural-looking imagery of Earth's surface." + } + } + } + ] +} \ No newline at end of file diff --git a/ingestion-data/staging/discovery-items/landsat-true-color.json b/ingestion-data/staging/discovery-items/landsat-true-color.json new file mode 100644 index 0000000..ae5f065 --- /dev/null +++ b/ingestion-data/staging/discovery-items/landsat-true-color.json @@ -0,0 +1,92 @@ +{ + "discovery_items": [ + { + "collection": "landsat-true-color", + "prefix": "drcs_activations_new/Landsat/trueColor/", + "bucket": "nasa-disasters", + "filename_regex": "^(.*)Earthquake_Turkiye(.*)trueColor(.*)_day.tif$", + "discovery": "s3", + "datetime_range": "day", + "properties": { + "event_names": ["Earthquake Turkiye"], + "hazards": ["earthquake"], + "sensor": "landsat", + "product": "true-color", + "programs": ["drcs"], + "routine": false + }, + "assets": { + "true-color": { + "title": "True Color RGB", + "description": "True color RGB composite using visible wavelengths for natural-looking imagery of Earth's surface." + } + } + }, + { + "collection": "landsat-true-color", + "prefix": "drcs_activations_new/Landsat/trueColor/", + "bucket": "nasa-disasters", + "filename_regex": "^(.*)Hurricane_Idalia(.*)trueColor.*_day.tif$", + "discovery": "s3", + "datetime_range": "day", + "properties": { + "event_names": ["Hurricane Idalia"], + "hazards": ["hurricaine"], + "sensor": "landsat", + "product": "true-color", + "programs": ["drcs"], + "routine": false + }, + "assets": { + "true-color": { + "title": "True Color RGB", + "description": "True color RGB composite using visible wavelengths for natural-looking imagery of Earth's surface." + } + } + }, + { + "collection": "landsat-true-color", + "prefix": "drcs_activations_new/Landsat/trueColor/", + "bucket": "nasa-disasters", + "filename_regex": "^(.*)TropicalStorm_Debby(.*)trueColor.*_day.tif$", + "discovery": "s3", + "datetime_range": "day", + "properties": { + "event_names": ["TropicalStorm Debby"], + "hazards": ["tropical storm"], + "sensor": "landsat", + "product": "true-color", + "programs": ["drcs"], + "routine": false + }, + "assets": { + "true-color": { + "title": "True Color RGB", + "description": "True color RGB composite using visible wavelengths for natural-looking imagery of Earth's surface." + } + } + }, + { + "collection": "landsat-true-color", + "prefix": "drcs_activations_new/Landsat/trueColor/", + "bucket": "nasa-disasters", + "filename_regex": "^(.*)Flood_OhioValley(.*)trueColor.*_day.tif$", + "discovery": "s3", + "datetime_range": "day", + "properties": { + "event_names": ["Flood Ohio Valley"], + "hazards": ["flood"], + "sensor": "landsat", + "product": "true-color", + "programs": ["drcs"], + "routine": false + }, + "assets": { + "true-color": { + "title": "True Color RGB", + "description": "True color RGB composite using visible wavelengths for natural-looking imagery of Earth's surface." + } + } + } + ] +} \ No newline at end of file diff --git a/ingestion-data/staging/discovery-items/sentinel-2-burn-ratio.json b/ingestion-data/staging/discovery-items/sentinel-2-burn-ratio.json new file mode 100644 index 0000000..9722fe5 --- /dev/null +++ b/ingestion-data/staging/discovery-items/sentinel-2-burn-ratio.json @@ -0,0 +1,26 @@ +{ + "discovery_items": [ + { + "collection": "sentinel-2-burn-ratio", + "prefix": "drcs_activations_new/Sentinel-2/burnRatio/", + "bucket": "nasa-disasters", + "filename_regex": "^(.*).Fire_CA.*_day.tif$", + "discovery": "s3", + "datetime_range": "day", + "properties": { + "event_names": ["Fire CA"], + "hazards": ["fire"], + "sensor": "sentinel-2", + "product": "burn-ratio", + "program": "drcs", + "routine": false + }, + "assets": { + "burn-ratio": { + "title": "Normalized Burn Ratio", + "description": "Normalized Burn Ratio (NBR) index highlighting burned areas by comparing near-infrared and shortwave infrared bands for fire damage assessment." + } + } + } + ] +} \ No newline at end of file diff --git a/ingestion-data/staging/discovery-items/sentinel-2-natural-color.json b/ingestion-data/staging/discovery-items/sentinel-2-natural-color.json new file mode 100644 index 0000000..d3d49fa --- /dev/null +++ b/ingestion-data/staging/discovery-items/sentinel-2-natural-color.json @@ -0,0 +1,92 @@ +{ + "discovery_items": [ + { + "collection": "sentinel-2-natural-color", + "prefix": "drcs_activations_new/Sentinel-2/naturalColor/", + "bucket": "nasa-disasters", + "filename_regex": "^(.*)Earthquake_Turkiye(.*)naturalColorRGB.*.tif$", + "discovery": "s3", + "datetime_range": "day", + "properties": { + "event_names": ["Earthquake Turkiye"], + "hazards": ["earthquake"], + "sensor": "sentinel-2", + "product": "natural-color", + "programs": ["drcs"], + "routine": false + }, + "assets": { + "natural-color": { + "title": "Natural Color RGB", + "description": "Natural color RGB composite using visible wavelengths for natural-looking imagery of Earth's surface." + } + } + }, + { + "collection": "sentinel-2-natural-color", + "prefix": "drcs_activations_new/Sentinel-2/naturalColor/", + "bucket": "nasa-disasters", + "filename_regex": "^(.*)Hurricane_Idalia(.*)naturalColor.*_day.tif$", + "discovery": "s3", + "datetime_range": "day", + "properties": { + "event_names": ["Hurricane Idalia"], + "hazards": ["hurricaine"], + "sensor": "sentinel-2", + "product": "natural-color", + "programs": ["drcs"], + "routine": false + }, + "assets": { + "natural-color": { + "title": "Natural Color RGB", + "description": "Natural color RGB composite using visible wavelengths for natural-looking imagery of Earth's surface." + } + } + }, + { + "collection": "sentinel-2-natural-color", + "prefix": "drcs_activations_new/Sentinel-2/naturalColor/", + "bucket": "nasa-disasters", + "filename_regex": "^(.*)TropicalStorm_Debby(.*)naturalColor.*_day.tif$", + "discovery": "s3", + "datetime_range": "day", + "properties": { + "event_names": ["TropicalStorm Debby"], + "hazards": ["tropical storm"], + "sensor": "sentinel-2", + "product": "natural-color", + "programs": ["drcs"], + "routine": false + }, + "assets": { + "natural-color": { + "title": "Natural Color RGB", + "description": "Natural color RGB composite using visible wavelengths for natural-looking imagery of Earth's surface." + } + } + }, + { + "collection": "sentinel-2-natural-color", + "prefix": "drcs_activations_new/Sentinel-2/naturalColor/", + "bucket": "nasa-disasters", + "filename_regex": "^(.*)Flood_OhioValley(.*)naturalColor.*_day.tif$", + "discovery": "s3", + "datetime_range": "day", + "properties": { + "event_names": ["Flood Ohio Valley"], + "hazards": ["flood"], + "sensor": "sentinel-2", + "product": "natural-color", + "programs": ["drcs"], + "routine": false + }, + "assets": { + "natural-color": { + "title": "Natural Color RGB", + "description": "Natural color RGB composite using visible wavelengths for natural-looking imagery of Earth's surface." + } + } + } + ] +} \ No newline at end of file diff --git a/ingestion-data/staging/discovery-items/sentinel-2-true-color.json b/ingestion-data/staging/discovery-items/sentinel-2-true-color.json new file mode 100644 index 0000000..4b01bc7 --- /dev/null +++ b/ingestion-data/staging/discovery-items/sentinel-2-true-color.json @@ -0,0 +1,92 @@ +{ + "discovery_items": [ + { + "collection": "sentinel-2-true-color", + "prefix": "drcs_activations_new/Sentinel-2/trueColor/", + "bucket": "nasa-disasters", + "filename_regex": "^(.*)Earthquake_Turkiye(.*)trueColorRGB.*.tif$", + "discovery": "s3", + "datetime_range": "day", + "properties": { + "event_names": ["Earthquake Turkiye"], + "hazards": ["earthquake"], + "sensor": "sentinel-2", + "product": "true-color", + "programs": ["drcs"], + "routine": false + }, + "assets": { + "true-color": { + "title": "True Color RGB", + "description": "True color RGB composite using visible wavelengths for natural-looking imagery of Earth's surface." + } + } + }, + { + "collection": "sentinel-2-true-color", + "prefix": "drcs_activations_new/Sentinel-2/trueColor/", + "bucket": "nasa-disasters", + "filename_regex": "^(.*)Flood_NewEngland(.*)trueColor.*_day.tif$", + "discovery": "s3", + "datetime_range": "day", + "properties": { + "event_names": ["Flood New England"], + "hazards": ["flood"], + "sensor": "sentinel-2", + "product": "true-color", + "programs": ["drcs"], + "routine": false + }, + "assets": { + "true-color": { + "title": "True Color RGB", + "description": "True color RGB composite using visible wavelengths for natural-looking imagery of Earth's surface." + } + } + }, + { + "collection": "sentinel-2-true-color", + "prefix": "drcs_activations_new/Sentinel-2/trueColor/", + "bucket": "nasa-disasters", + "filename_regex": "^(.*)Fire_Guatemala(.*)trueColor.*_day.tif$", + "discovery": "s3", + "datetime_range": "day", + "properties": { + "event_names": ["Fire Guatemala"], + "hazards": ["fire"], + "sensor": "sentinel-2", + "product": "true-color", + "programs": ["drcs"], + "routine": false + }, + "assets": { + "true-color": { + "title": "True Color RGB", + "description": "True color RGB composite using visible wavelengths for natural-looking imagery of Earth's surface." + } + } + }, + { + "collection": "sentinel-2-true-color", + "prefix": "drcs_activations_new/Sentinel-2/trueColor/", + "bucket": "nasa-disasters", + "filename_regex": "^(.*)Flood_Brasil(.*)trueColor.*_day.tif$", + "discovery": "s3", + "datetime_range": "day", + "properties": { + "event_names": ["Flood Brasil"], + "hazards": ["flood"], + "sensor": "sentinel-2", + "product": "true-color", + "programs": ["drcs"], + "routine": false + }, + "assets": { + "true-color": { + "title": "True Color RGB", + "description": "True color RGB composite using visible wavelengths for natural-looking imagery of Earth's surface." + } + } + } + ] +} \ No newline at end of file