Datasets:

Modalities:
Image
ArXiv:
Libraries:
Datasets
License:
amitmisra commited on
Commit
c511950
1 Parent(s): 98c9275

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +44 -3
README.md CHANGED
@@ -1,3 +1,44 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ ---
4
+
5
+ # Overview
6
+
7
+ Here you will find the model output parquet files and geotiffs from the following paper:
8
+ <placeholder for arxiv link>
9
+
10
+ Each file is for a 3 degree by 3 degree tile. The folder name and file names denote the southwest corner of the tile. For example, The file N27E030 would be for latitudes between 27 and 30 degrees north, and longitudes between 30 and 33 degrees east.
11
+
12
+ # Schema
13
+
14
+ The schema for each file is as follows:
15
+ - year: year of the observation (int)
16
+ - month: month of the observation (int)
17
+ - day: day of the month of the observation (int)
18
+ - lat: latitude of the potential flood detection (center of pixel) (float)
19
+ - lon: longitude of the potential flood detection (center of pixel) (float)
20
+ - filename: Sentinel-1 file name corresponding to observation in which flooding was detected (str)
21
+ - land_cover: Land cover mapping from ESA WorldCover for the pixel (int)
22
+ - dem_metric_1: slope calculated for the individual pixel (float)
23
+ - dem_metric_2: maximum slope within 240m of the individual pixel (float)
24
+ - soil_moisture: absolute soil moisture as estimated by the LPRM algorithm, units in percentage points (float)
25
+ - soil_moisture_zscore: soil moisture anamoly relative to the period of Oct 2014-Sep 2024 (float)
26
+ - soil_moisture_sca: absolute soil moisture as estimated by the SCA algorithm, units in percentage points (float)
27
+ - soil_moisture_sca_zscore: soil moisture sca anamoly relative to the period of Oct 2014-Sep 2024 (float)
28
+ - temp: average daily minimum temperature for the day of the year of the observation, under current climate conditions (1991-2020) (float)
29
+ - edge_false_positives: were any edge effects (near the edge of the image) detected for this observation (int)
30
+
31
+ # Suggested Filters
32
+
33
+ Here are the filters we typically apply in post processing, as described in the paper:
34
+ - dem_metric_2 < 10
35
+ - soil_moisture_sca > 1
36
+ - soil_moisture_zscore > 1
37
+ - soil_moisture > 20
38
+ - temp > 0
39
+ - land_cover: exclude values of 60 for bare ground
40
+ - edge_false_positives = 0
41
+
42
+ # Spatial Resolution
43
+
44
+ The data is run on input data with 20 meter resolution (Status: Oct 31 2024: Africa and South America are available at 20 meters, rest of world is at 30 meters with update expected later this year)