Curated ECMWF static dataset covering the June 2026 European heatwave. Contains the Extreme Forecast Index (EFI) for 2 m temperature and four Thermofeel human-thermal-comfort parameters, computed from the operational ENS. Cited as 10.5281/zenodo.21224650.
This static dataset provides a curated set of probabilistic extreme-weather indicators and human-thermal-comfort parameters covering the June 2026 European heatwave (1 June 2026 - 5 July 2026). All fields are computed from the operational ECMWF Ensemble Prediction System (ENS) and the Thermofeel post-processing library.
It is intended to support post-event analysis, verification studies, communication and media work, and downstream research on early-warning signals for heat extremes over Europe.
DOI: 10.5281/zenodo.21224650 Version: 1.0.0 Licence: CC-BY 4.0 Hosted at: ECMWF public S3 bucket (anonymous access)
The dataset contains two families of fields, initialised twice daily (00 and 12 UTC) for every forecast cycle from 2026-06-01 to 2026-06-30 and 2026-07-05.
disseminate, disseminate, disseminate, disseminate, |
Computed from ENS 2 m temperature, 2 m dewpoint, 10 m wind and radiation fields using the ECMWF Thermofeel Python library:
| Short name | Parameter | Notes |
|---|---|---|
heatx | Heat Index | Rothfusz / NWS formulation - temperature + humidity. |
utci | Universal Thermal Climate Index | Bröde et al. (2012) - temperature, humidity, wind, mean radiant temperature. |
aptmp | Apparent Temperature | Steadman-style "feels-like". |
wbgt | Wet Bulb Globe Temperature | Occupational heat-stress - temperature, humidity, wind, radiation. |
disseminate, disseminate, |
Global domain.
GRIB2. We recommend ecCodes ≥ 2.42.0.
The data are hosted openly on the ECMWF public S3 bucket:
s3://ecmwf-static-datasets/heatwave/june-2026/ |
There are no credentials needed, pass --no-sign-request to the AWS CLI (or the equivalent anonymous flag in any S3-compatible client).
aws s3 ls --no-sign-request s3://ecmwf-static-datasets/heatwave/june-2026/ |
aws s3 cp --no-sign-request \ s3://ecmwf-static-datasets/heatwave/june-2026/<path/to/file>.grib2 . |
aws s3 sync --no-sign-request \ s3://ecmwf-static-datasets/heatwave/june-2026/ ./june-2026-heatwave/ |
import boto3
from botocore import UNSIGNED
from botocore.config import Config
s3 = boto3.client("s3", config=Config(signature_version=UNSIGNED))
# List objects
resp = s3.list_objects_v2(
Bucket="ecmwf-static-datasets",
Prefix="heatwave/june-2026/",
)
for obj in resp.get("Contents", []):
print(obj["Key"], obj["Size"])
# Download one
s3.download_file(
"ecmwf-static-datasets",
"heatwave/june-2026/<path/to/file>.grib2",
"local.grib2",
) |
import xarray as xr
ds = xr.open_dataset(
"efi_2t_2026062812_step024.grib2",
engine="cfgrib",
)
print(ds) |
Please cite the dataset via its DOI:
Pidduck, E., et al. (2026). ECMWF EFI and Thermofeel heat-stress indicators for the June 2026 European heatwave (Version 1.0.0) [Data set]. Zenodo. https://doi.org/10.5281/zenodo.21224650
@dataset{pidduck_2026_heatwave_efi_thermofeel,
author = {Pidduck, Emma and others},
title = {ECMWF EFI and Thermofeel heat-stress indicators
for the June 2026 European heatwave},
year = 2026,
publisher = {Zenodo},
version = {1.0.0},
doi = {10.5281/zenodo.21224650},
url = {https://doi.org/10.5281/zenodo.21224650}
} |
To ensure the stability of our systems and to preserve resources for our operational activities (network, compute, etc.), access to the open-data portal is limited to 500 simultaneous connections. For added reliability, the open data is replicated across AWS, Azure, and Google Cloud. If you experience difficulties accessing the portal directly, you can also retrieve the data from these cloud platforms. |
Support level for these datasetsBoth datasets are provided as a 'self-serve' dataset - documentation is provided, but no support service. However, if the data seems broken or corrupt, please report it via our support portal and we will respond during normal office hours. |
Sign up for an open data mailing list, a joint project with EUMETSAT, Met Norway and DWD to share new and updated open datasets, and relevant resources, conferences and articles. |