chrimerss commited on
Commit
c07f619
·
verified ·
1 Parent(s): 01fb032

Add dataset card (README.md)

Browse files
Files changed (1) hide show
  1. README.md +97 -0
README.md ADDED
@@ -0,0 +1,97 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ license: cc-by-4.0
5
+ size_categories:
6
+ - 100GB<n<1TB
7
+ task_categories:
8
+ - image-segmentation
9
+ - regression
10
+ tags:
11
+ - climate
12
+ - flood
13
+ - geospatial
14
+ - remote-sensing
15
+ - physics-ai
16
+ - time-series
17
+ dataset_info:
18
+ features:
19
+ - name: image
20
+ dtype: image
21
+ - name: mask
22
+ dtype: image
23
+ ---
24
+
25
+ # FloodSimBench: A High-Resolution Physical Flood Inundation Benchmark for AI
26
+
27
+ FloodSimBench is a standardized, high-resolution (1m) benchmark dataset designed for urban flood inundation modeling. It bridges the gap between complex physical hydraulic modeling and deep learning foundation models (e.g., Transformers, CNNs).
28
+
29
+ ## 1. Overview
30
+ - **Objective:** Provide a high-fidelity dataset for training and evaluating AI surrogate models for flood risk assessment and real-time forecasting.
31
+ - **Domain:** Diverse urban topographies across 10 major US cities (coastal, inland, flat, and hilly).
32
+ - **Core Value:** Standardized inputs (DEM, Rainfall) and outputs (Water Depth) at 1m resolution to enable comparable research in the AI community.
33
+
34
+ ## 2. Dataset Specifications
35
+ - **Spatial Resolution:** 1 meter.
36
+ - **Domain Size:** Approximately 4km x 4km per city tile.
37
+ - **File Format:** GeoTIFF (.tif).
38
+ - **Simulated Event:**
39
+ - **Forcing:** 1 hour of rainfall (00H-01H) at varying frequencies (10yr, 25yr, 50yr, 100yr), followed by 5 hours of recession (no rain).
40
+ - **Total Duration:** 6 hours.
41
+ - **Temporal Resolution:** 5-minute intervals (72 frames per scenario).
42
+
43
+ ## 3. Metadata & Scenarios
44
+ Rainfall intensities based on return periods for the covered cities:
45
+
46
+ | City ID | Description | 100-yr (mm) | 50-yr (mm) | 25-yr (mm) | 10-yr (mm) |
47
+ |---------|-------------|------------|------------|------------|------------|
48
+ | HOU | Houston | 129 | 110 | 98 | 82 |
49
+ | AUS | Austin | 121 | 106 | 93 | 76 |
50
+ | DAL | Dallas | 94 | 85 | 76 | 65 |
51
+ | OKC | Oklahoma City | 101 | 89 | 78 | 64 |
52
+ | LA | Los Angeles | 41 | 36 | 31 | 25 |
53
+ | SF | San Francisco | 33 | 29 | 26 | 22 |
54
+ | NYC | New York City | 73 | 65 | 58 | 48 |
55
+ | ATL | Atlanta | 83 | 74 | 65 | 54 |
56
+ | ORL | Orlando | 100 | 93 | 85 | 74 |
57
+ | MIA | Miami | 133 | 118 | 104 | 86 |
58
+
59
+ ## 4. Benchmark Tasks
60
+ ### Task A: Static Risk Assessment (Segmentation)
61
+ **Goal:** Predict the maximum inundation extent and severity over the 6-hour event.
62
+ - **Input:** Static DEM, Slope, and Total Rainfall Amount.
63
+ - **Output:** 5-class Semantic Segmentation Map:
64
+ 0. No Flood (0 - 0.1m)
65
+ 1. Nuisance (0.1 - 0.2m)
66
+ 2. Minor (0.2 - 0.3m)
67
+ 3. Moderate (0.3 - 0.5m)
68
+ 4. Major (> 0.5m)
69
+
70
+ ### Task B: Spatiotemporal Forecasting (Recursive)
71
+ **Goal:** Real-time recursive flood forecasting.
72
+ - **Input:** Static DEM and Dynamic Flood Depth sequence ($t-11 \dots t$, previous 1 hour).
73
+ - **Forcing:** Rainfall intensity at $t$ and future steps.
74
+ - **Output:** Predicted flood depth at future time steps (e.g., $t+1 \dots t+12$).
75
+
76
+ ## 5. Dataset Structure
77
+ ```
78
+ .
79
+ ├── 6hr_max/ # Maximum depth maps for Task A
80
+ │ └── {CityID}_{Rain}mm_MaxDepth.tif
81
+ ├── {CityID}{TileID}/ # Full time-series for Task B
82
+ │ ├── {CityID}_DEM.tif # Static Digital Elevation Model
83
+ │ └── {CityID}_{Rain}mm_WaterDepth_{Time}.tif # Temporal depth frames
84
+ └── cities_rainfall.json # Metadata for rainfall intensities
85
+ ```
86
+
87
+ ## 6. Data Splitting Strategy
88
+ To ensure robustness and test generalization to unseen topographies, we split by City:
89
+ - **Train:** HOU, DAL, OKC, NYC, ATL, ORL
90
+ - **Validation:** AUS, MIA
91
+ - **Test:** LA, SF
92
+
93
+ ## 7. Citation
94
+ If you use this dataset in your research, please cite:
95
+ ```
96
+ (Citation info pending publication)
97
+ ```