Search is not available for this dataset
u10 dict | v10 dict | t2m dict | msl dict |
|---|---|---|---|
{
"min": -39.52070617675781,
"max": 36.26629638671875
} | {
"min": -39.14849853515625,
"max": 61.360198974609375
} | {
"min": 190.91104125976562,
"max": 326.339599609375
} | {
"min": 91093.6875,
"max": 107707.5
} |
This dataset contains modified Copernicus Climate Change Service information [2026].
Source: ERA5 reanalysis data from the Copernicus Climate Data Store (CDS/ECMWF).
Licensed under CC BY 4.0, consistent with the source dataset terms.
Dataset Description
ERA5 reanalysis data prepared for 4x super-resolution training. The dataset provides paired low-resolution (LR) and high-resolution (HR) atmospheric fields covering 2010–2020.
Variables
| Name | Description | Units |
|---|---|---|
u10 |
10 metre U wind component | m s⁻¹ |
v10 |
10 metre V wind component | m s⁻¹ |
t2m |
2 metre temperature | K |
msl |
Mean sea level pressure | Pa |
Files
| File | Resolution | Shape (time, lat, lon) | Description |
|---|---|---|---|
hr.zarr.zip |
0.25° (~28 km) | (16072, 720, 1440) | High-resolution target (zarr, ZipStore) |
lr.zarr.zip |
1.0° (~111 km) | (16072, 180, 360) | Low-resolution input (zarr, ZipStore) |
era5_dataset.py |
— | — | Dataset class + normalization utilities |
train_stats.json |
— | — | Per-variable min/max statistics (training split) |
Temporal Coverage
- Period: 2010-01-01 00:00 UTC – 2020-12-31 18:00 UTC
- Interval: 6-hourly
- Total timesteps: 16,072
| Split | Period | Samples |
|---|---|---|
| train | 2010–2018 | 13,148 |
| valid | 2019 | 1,460 |
| test | 2020 | 1,464 |
Super-Resolution Setup
- Scale factor: 4×
- LR resolution: 1.0° × 1.0° (180 × 360 grid)
- HR resolution: 0.25° × 0.25° (720 × 1440 grid, last row at −90° removed for exact 4× divisibility)
- LR was generated from HR using MATLAB-style bicubic downsampling with antialiasing (equivalent to
imresize(HR, 1/4)default settings).
Normalization
train_stats.json contains per-variable min/max computed over the training split (2010–2018).
Use it for min-max normalization to [0, 1] before training or evaluation.
from era5_dataset import load_stats, normalize, unnormalize
from era5_dataset import normalize_batch, unnormalize_batch
stats = load_stats() # loads train_stats.json alongside this file
# numpy array or scalar
x_norm = normalize(x, 'msl', stats) # raw → [0, 1]
x_raw = unnormalize(x_norm, 'msl', stats) # [0, 1] → raw
# torch tensor (C, H, W) or (B, C, H, W)
t_norm = normalize_batch(tensor, stats)
t_raw = unnormalize_batch(t_norm, stats)
Training-set statistics:
| Variable | min | max |
|---|---|---|
| u10 | −39.52 m/s | 36.27 m/s |
| v10 | −39.15 m/s | 61.36 m/s |
| t2m | 190.91 K | 326.34 K |
| msl | 91,093.69 Pa | 107,707.50 Pa |
Usage
from era5_dataset import ERA5SRDataset
from torch.utils.data import DataLoader
# normalize=True (default): returns torch.FloatTensor in [0, 1]
ds = ERA5SRDataset(data_dir='/path/to/data', split='train')
loader = DataLoader(ds, batch_size=4, shuffle=True, num_workers=4)
for hr, lr in loader:
# hr: (B, 4, 720, 1440), lr: (B, 4, 180, 360) — normalized to [0, 1]
...
# normalize=False: returns raw np.ndarray in physical units
ds_raw = ERA5SRDataset(data_dir='/path/to/data', split='train', normalize=False)
hr, lr = ds_raw[0] # np.ndarray, raw physical values
Note:
train_stats.jsonmust be present indata_dirwhennormalize=True.
- Downloads last month
- 89