Update README.md
Browse files
README.md
CHANGED
@@ -1,52 +1,59 @@
|
|
1 |
---
|
2 |
license: mit
|
3 |
---
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
The
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
license: mit
|
3 |
---
|
4 |
+
# Flood Detection Dataset
|
5 |
+
|
6 |
+
## Overview
|
7 |
+
This repository contains model output parquet files and geotiffs from our flood detection research. The data is organized in 3° × 3° tiles, with each tile containing both tabular data and processed geotiff images.
|
8 |
+
|
9 |
+
## Directory Structure
|
10 |
+
```
|
11 |
+
├── N27 # Main directory by latitude
|
12 |
+
│ ├── N27E030 # Subdirectory for specific tile
|
13 |
+
│ │ ├── N27E030.parquet # Tabular data
|
14 |
+
│ │ ├── N27E030_90m.tif # Geotiff with 90m buffer
|
15 |
+
│ │ └── N27E030_240m.tif # Geotiff with 240m buffer
|
16 |
+
```
|
17 |
+
|
18 |
+
The naming convention uses the southwest corner coordinates of each tile. For example, `N27E030` represents:
|
19 |
+
- Latitude: 27°N to 30°N
|
20 |
+
- Longitude: 30°E to 33°E
|
21 |
+
|
22 |
+
## Schema
|
23 |
+
| Column | Type | Description |
|
24 |
+
|--------|------|-------------|
|
25 |
+
| year | int | Year of observation |
|
26 |
+
| month | int | Month of observation |
|
27 |
+
| day | int | Day of observation |
|
28 |
+
| lat | float | Latitude of potential flood detection (pixel center) |
|
29 |
+
| lon | float | Longitude of potential flood detection (pixel center) |
|
30 |
+
| filename | str | Corresponding Sentinel-1 file name |
|
31 |
+
| land_cover | int | ESA WorldCover land cover classification |
|
32 |
+
| dem_metric_1 | float | Individual pixel slope |
|
33 |
+
| dem_metric_2 | float | Maximum slope within 240m |
|
34 |
+
| soil_moisture | float | LPRM algorithm absolute soil moisture (%) |
|
35 |
+
| soil_moisture_zscore | float | Soil moisture anomaly (Oct 2014-Sep 2024 baseline) |
|
36 |
+
| soil_moisture_sca | float | SCA algorithm absolute soil moisture (%) |
|
37 |
+
| soil_moisture_sca_zscore | float | SCA soil moisture anomaly (Oct 2014-Sep 2024 baseline) |
|
38 |
+
| temp | float | Average daily minimum temperature (1991-2020 climate) |
|
39 |
+
| edge_false_positives | int | Edge effect detection flag |
|
40 |
+
|
41 |
+
## Recommended Filtering
|
42 |
+
For optimal results, we recommend applying the following filters:
|
43 |
+
|
44 |
+
```python
|
45 |
+
filters = {
|
46 |
+
'dem_metric_2': '< 10',
|
47 |
+
'soil_moisture_sca': '> 1',
|
48 |
+
'soil_moisture_zscore': '> 1',
|
49 |
+
'soil_moisture': '> 20',
|
50 |
+
'temp': '> 0',
|
51 |
+
'land_cover': '!= 60', # exclude bare ground
|
52 |
+
'edge_false_positives': '= 0'
|
53 |
+
}
|
54 |
+
```
|
55 |
+
|
56 |
+
## Spatial Resolution
|
57 |
+
- Current Status (Oct 31, 2024):
|
58 |
+
- Africa and South America: 20-meter resolution
|
59 |
+
- Rest of world: 30-meter resolution (20-meter update expected later this year)
|