- Dataset Availability
- 2010-01-01T00:00:00Z–2080-12-31T23:59:59Z
- Dataset Provider
- World Resources Institute
- Earth Engine Snippet
-
ee.ImageCollection("WRI/Aqueduct_Flood_Hazard_Maps/V2")
- Tags
Description
Aqueduct Floods data measures riverine and coastal food risks under both current baseline conditions and future projections in 2030, 2050, and 2080. In addition to providing hazard maps and assessing risks, Aqueduct Floods helps to conduct comprehensive cost-benefit analysis to evaluate the value of dike food protection strategies.
Aqueduct Floods aims to empower disaster risk analysts and managers with quantitative information on food risks and adaptation strategy costs, and to help inform policy and investment decision-making.
This technical note explains in detail the framework, methodology, and data used in developing Aqueduct Floods.
Bands
Resolution
1000 meters
Bands
Name | Units | Min | Max | Description |
---|---|---|---|---|
inundation_depth |
m | 0* | 32.05* | Flood inundation depth |
Image Properties
Image Properties
Name | Type | Description |
---|---|---|
climatescenario | STRING | Climate Scenario types:
|
floodtype | STRING | Type of Flood:
|
projection | INT | Sea level rise scenario (in percentile)
|
returnperiod | INT | Return period is the average time interval expected between hazard events of a given magnitude or greater (in years). The flood hazard maps are generated for return periods of 1, 2, 5, 10, 25, 50, 100, 250, 500, and 1000 years. |
subsidence | STRING | Applies only for inuncoast flood type
|
model | STRING | Applies only for inunriver flood type, represents type of model used.
|
year | INT | Flood occurence year |
Terms of Use
Terms of Use
The WRI datasets are available without restriction on use or distribution. WRI does request that the user give proper attribution and identify WRI, where applicable, as the source of the data. For more information check WRI's open data commitment,
Explore with Earth Engine
Code Editor (JavaScript)
var dataset = ee.ImageCollection('WRI/Aqueduct_Flood_Hazard_Maps/V2'); var inundationDepth = dataset.select('inundation_depth'); var inundationDepthVis = { min: 0, max: 1, palette: ['ffffff','0000ff'], }; Map.setCenter(-68.36, -6.73, 4); Map.addLayer(inundationDepth, inundationDepthVis, 'Aqueduct Flood Hazard Maps');