tungnd commited on
Commit
c5f77e2
·
verified ·
1 Parent(s): cd4ddbb

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +99 -3
README.md CHANGED
@@ -1,3 +1,99 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-nc-sa-4.0
3
+ language:
4
+ - en
5
+ tags:
6
+ - weather
7
+ - climate
8
+ - regional
9
+ - india
10
+ pretty_name: IndiaWeatherBench_data
11
+ size_categories:
12
+ - 1M<n<10M
13
+ ---
14
+
15
+ # IndiaWeatherBench: A Machine Learning-Ready Regional Forecasting Dataset over India
16
+
17
+ **IndiaWeatherBench** provides a curated benchmark dataset for machine learning-based regional weather forecasting over the Indian subcontinent. It is built upon the **Indian Monsoon Data Assimilation and Analysis (IMDAA)** reanalysis dataset, produced under the National Monsoon Mission by NCMRWF, UK Met Office, and IMD.
18
+
19
+ ---
20
+
21
+ ## 🌏 Dataset Overview
22
+
23
+ The original IMDAA dataset is a high-resolution regional reanalysis developed by the **National Centre for Medium Range Weather Forecasting (NCMRWF)**, Ministry of Earth Sciences (MoES), Government of India, in collaboration with the **UK Met Office** and the **India Meteorological Department (IMD)**. It provides hourly weather data from **1979 to 2020** over the Indian subcontinent at a **0.12° (~12 km)** spatial resolution and includes over **57 variables** across **63 pressure levels**.
24
+
25
+ However, the raw dataset presents several challenges for machine learning workflows, including download difficulty, lack of standardized splits, and storage in meteorological formats. **IndiaWeatherBench** addresses these limitations by offering a clean, ready-to-use subset for ML applications.
26
+
27
+ ---
28
+
29
+ ## 📦 Contents
30
+
31
+ IndiaWeatherBench includes:
32
+ - **Time range**: 2000–2019 (20 years)
33
+ - **Interval**: 6-hourly (00, 06, 12, 18 UTC)
34
+ - **Region**: 6°N–36.72°N, 66.6°E–97.25°E (~256×256 grid)
35
+ - **Train/Val/Test splits**:
36
+ - Train: 2000–2017 (~26,500 samples)
37
+ - Val: 2018 (~1,500 samples)
38
+ - Test: 2019 (~1,500 samples)
39
+ - **Variables**: 43 channels (see below)
40
+
41
+ ---
42
+
43
+ ## 📑 Variable List
44
+
45
+ | Category | Variables |
46
+ |------------------------|---------------------------------------------------------------------------|
47
+ | **Single-level** | TMP (2m temp), UGRD/VGRD (10m wind), APCP (precip), PRMSL (MSLP), TCDCRO (cloud cover) |
48
+ | **Pressure-level** | TMP_prl, HGT, UGRD_prl, VGRD_prl, RH — at 50, 250, 500, 600, 700, 850, 925 hPa |
49
+ | **Static fields** | MTERH (terrain height), LAND (land cover) |
50
+
51
+ ---
52
+
53
+ ## 💾 Data Formats
54
+
55
+ IndiaWeatherBench is released in two formats:
56
+
57
+ ### 🧪 Zarr Format
58
+ - Chunked, cloud-native array storage
59
+ - Compatible with `xarray`, `dask`
60
+ - Suitable for scientific analysis and fast slicing
61
+
62
+ ```python
63
+ import xarray as xr
64
+ ds = xr.open_zarr("imdaa_bench_incremental.zarr", consolidated=True)
65
+ ```
66
+
67
+ ---
68
+
69
+ ### 🚀 HDF5 Format
70
+ - Optimized for ML training
71
+ - Each `.h5` file = one time step with all variables
72
+ - Pre-split into `train/`, `val/`, and `test/`
73
+
74
+ ```python
75
+ import h5py
76
+ f = h5py.File("imdaa_bench_h5/train/20010101_00.h5", "r")
77
+ print(list(f.keys()))
78
+ ```
79
+
80
+ ---
81
+
82
+ ## 📜 License and Terms of Use
83
+
84
+ This dataset is released under the **Creative Commons Attribution–NonCommercial–ShareAlike 4.0 International (CC BY-NC-SA 4.0)** license.
85
+
86
+ - ✅ Free for non-commercial, educational, and research use
87
+ - ❌ For commercial use, contact: `[email protected]`
88
+ - 📧 Send a copy of any publication using this dataset to the same address
89
+
90
+ ---
91
+
92
+ ## 🔗 References
93
+
94
+ - [IMDAA Reanalysis Portal (NCMRWF)](https://rds.ncmrwf.gov.in/)
95
+ - [CC BY-NC-SA 4.0 License](https://creativecommons.org/licenses/by-nc-sa/4.0/)
96
+
97
+ ---
98
+
99
+ For questions, issues, or contributions, please open a Discussion or Issue on the Hugging Face page.