swaib commited on
Commit
214c910
·
verified ·
1 Parent(s): c112adb

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +185 -28
README.md CHANGED
@@ -2,40 +2,197 @@
2
  pretty_name: "Multimodal Monsoon Indian Dataset"
3
  license: mit
4
  language:
5
- - en
6
  tags:
7
- - climate
8
- - monsoon
9
- - precipitation
10
- - earth-observation
11
- - satellite
12
- - era5
13
- - nowcasting
14
  task_categories:
15
- - other
16
  ---
17
- ## Dataset Description
18
 
19
- **Multimodal Monsoon Indian Dataset** is a high-resolution (1 km) Earth observation dataset
20
- curated for monsoon precipitation classification and analysis across Indian states.
21
 
22
- The dataset integrates multiple modalities including:
23
- - Satellite-derived indices (e.g., NDVI, LST)
24
- - Reanalysis climate variables (ERA5)
25
- - Static geospatial context (elevation, land cover)
26
- - Pixel-wise precipitation labels
27
 
28
- It is designed for research in:
29
- - Climate AI
30
- - Precipitation nowcasting
31
- - Multimodal learning
32
- - Spatial deep learning
33
 
 
34
 
35
- ## Structure
36
- - data/: state-wise folders (GeoTIFFs/CSVs/masks as exported)
37
- - metadata/: variable sources + label definitions
38
- - scripts/: placeholder for data curation scripts (GEE exports etc.)
39
 
40
- ## Notes
41
- - This repo currently contains raw exported artifacts as-is (no renaming) to preserve provenance.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  pretty_name: "Multimodal Monsoon Indian Dataset"
3
  license: mit
4
  language:
5
+ - en
6
  tags:
7
+ - climate
8
+ - monsoon
9
+ - precipitation
10
+ - earth-observation
11
+ - satellite
12
+ - era5
13
+ - nowcasting
14
  task_categories:
15
+ - other
16
  ---
 
17
 
 
 
18
 
19
+ # Multimodal Monsoon Indian Dataset (1 km)
 
 
 
 
20
 
21
+ ## Overview
 
 
 
 
22
 
23
+ The **Multimodal Monsoon Indian Dataset** is a curated, high-resolution (≈1 km) Earth-observation dataset designed for **monsoon precipitation classification and analysis across Indian states**. The dataset integrates **satellite imagery, climate reanalysis variables, and static geospatial features** into a unified, state-wise structure suitable for multimodal deep learning.
24
 
25
+ This repository contains **raw exported artifacts** generated via reproducible Jupyter notebooks (one per state), preserving provenance and enabling flexible downstream preprocessing. The dataset is intended for research in:
 
 
 
26
 
27
+ * Climate AI
28
+ * Precipitation classification and nowcasting
29
+ * Multimodal & geospatial deep learning
30
+ * High-resolution monsoon analysis over India
31
+
32
+ ---
33
+
34
+ ## Geographic Coverage
35
+
36
+ The dataset currently includes state-level data for:
37
+
38
+ * **Assam**
39
+ * **Bihar**
40
+ * **Himachal Pradesh**
41
+ * **Karnataka**
42
+ * **Kerala**
43
+
44
+ Each state was processed independently using the **same notebook pipeline**, ensuring methodological consistency across regions.
45
+
46
+ ---
47
+
48
+ ## Spatial & Temporal Resolution
49
+
50
+ * **Spatial resolution:** ~1 km × 1 km
51
+ * **Spatial extent:** State administrative boundaries
52
+ * **Temporal coverage:** Monsoon-season periods (state-specific, aligned with data availability)
53
+ * **Projection:** As exported from source datasets (see `metadata/`)
54
+
55
+ ---
56
+
57
+ ## Modalities
58
+
59
+ Each state folder contains multiple modalities aligned spatially and temporally.
60
+
61
+ ### 1) Satellite-Derived Features
62
+
63
+ Examples include (depending on state and availability):
64
+
65
+ * NDVI (vegetation index)
66
+ * Land Surface Temperature (LST)
67
+ * Spectral bands and derived indices
68
+
69
+ **Source:** Satellite products accessed and exported via **Google Earth Engine (GEE)**.
70
+
71
+ ### 2) Climate & Reanalysis Variables
72
+
73
+ * ERA5-derived atmospheric variables (e.g., temperature, humidity, wind, precipitation aggregates)
74
+ * Gridded climate fields resampled/aligned to the target resolution
75
+
76
+ **Source:** **ERA5 reanalysis**.
77
+
78
+ ### 3) Static Geospatial Context
79
+
80
+ * Elevation / topography
81
+ * Land-use / land-cover (LULC)
82
+ * Other static spatial priors relevant to precipitation modeling
83
+
84
+ ### 4) Labels
85
+
86
+ * Pixel-wise or region-wise precipitation labels (classification-oriented)
87
+ * Label definitions, thresholds, and mappings are documented in `metadata/`
88
+
89
+ ---
90
+
91
+ ## Directory Structure
92
+
93
+ ```
94
+ .
95
+ ├── data/
96
+ │ ├── Assam/
97
+ │ ├── Bihar/
98
+ │ ├── Himachal_Pradesh/
99
+ │ ├── Karnataka/
100
+ │ └── Kerala/
101
+ │ ├── *.tif # GeoTIFF raster layers
102
+ │ ├── *.csv # Tabular exports (where applicable)
103
+ │ └── masks/ # Label masks / precipitation classes
104
+
105
+ ├── metadata/
106
+ │ ├── variable_sources.yaml
107
+ │ ├── label_definitions.yaml
108
+ │ └── state_metadata.json
109
+
110
+ ├── scripts/
111
+ │ └── README.md # Placeholder for GEE / preprocessing scripts
112
+
113
+ ├── README.md
114
+ └── LICENSE
115
+ ```
116
+
117
+ > **Note:** File names and formats are preserved *as exported* to maintain provenance and traceability.
118
+
119
+ ---
120
+
121
+ ## Notebook-Based Data Generation
122
+
123
+ Each state dataset was generated using a **dedicated Jupyter notebook** (e.g., `Assam.ipynb`) that follows the same high-level pipeline:
124
+
125
+ 1. Define the state boundary and spatial grid
126
+ 2. Query satellite and climate datasets via Google Earth Engine / reanalysis APIs
127
+ 3. Export aligned raster layers at ~1 km resolution
128
+ 4. Generate precipitation labels
129
+ 5. Save outputs as GeoTIFF / CSV artifacts
130
+
131
+ The same notebook logic was reused (with state-specific parameters) for **Assam, Bihar, Himachal Pradesh, Karnataka, and Kerala**, ensuring **methodological consistency** across all regions.
132
+
133
+ ---
134
+
135
+ ## How to Use
136
+
137
+ This dataset is provided as **raw geospatial files**, not as pre-extracted ML tensors.
138
+
139
+ ### Example (Python): Load a raster
140
+
141
+ ```python
142
+ import rasterio
143
+
144
+ with rasterio.open("data/Assam/ndvi.tif") as src:
145
+ ndvi = src.read(1)
146
+ ```
147
+
148
+ Users are expected to:
149
+
150
+ * Construct spatial patches or tiles
151
+ * Perform normalization / temporal aggregation
152
+ * Align modalities according to their experimental design
153
+
154
+ This design choice keeps the dataset **model-agnostic** and suitable for diverse research pipelines.
155
+
156
+ ---
157
+
158
+ ## Dataset Viewer Note
159
+
160
+ > **Note:** The Hugging Face dataset viewer is not applicable for this dataset since it consists of geospatial raster files rather than tabular samples. The displayed “rows” correspond to file-level metadata, not ML training instances.
161
+
162
+ ---
163
+
164
+ ## Intended Use & Limitations
165
+
166
+ **Intended use:**
167
+
168
+ * Research and benchmarking of multimodal precipitation models
169
+ * Regional monsoon analysis
170
+ * Spatial deep learning experiments
171
+
172
+ **Limitations:**
173
+
174
+ * Raw exported artifacts; users must implement task-specific preprocessing
175
+ * Temporal coverage may vary slightly by state
176
+ * Not intended for operational forecasting without further validation
177
+
178
+ ---
179
+
180
+ ## Citation
181
+
182
+ If you use this dataset in your research, please cite:
183
+
184
+ ```bibtex
185
+ @dataset{mazumder2026monsoon,
186
+ author = {Mazumder, Swaib Ilias},
187
+ title = {Multimodal Monsoon Indian Dataset},
188
+ year = {2026},
189
+ publisher = {Hugging Face},
190
+ url = {https://huggingface.co/datasets/swaib/Multimodal_Monsoon_Indian_Dataset}
191
+ }
192
+ ```
193
+
194
+ ---
195
+
196
+ ## License
197
+
198
+ This dataset is released under the **MIT License**. See `LICENSE` for details.