Retrieving ECMWF open data

The ecmwf-open-data source provides access to the ECMWF open data .

[1]:
import earthkit.data as ekd
[2]:
ds = ekd.from_source(
    "ecmwf-open-data",
    request=dict(
        param=["t", "gh"],
        levelist="500",
        step=[0, 24, 48]
    ),
)
[3]:
ds.ls()
[3]:
centre shortName typeOfLevel level dataDate dataTime stepRange dataType number gridType
0 ecmf t isobaricInhPa 500 20251022 0 0 fc None regular_ll
1 ecmf gh isobaricInhPa 500 20251022 0 0 fc None regular_ll
2 ecmf t isobaricInhPa 500 20251022 0 24 fc None regular_ll
3 ecmf gh isobaricInhPa 500 20251022 0 24 fc None regular_ll
4 ecmf t isobaricInhPa 500 20251022 0 48 fc None regular_ll
5 ecmf gh isobaricInhPa 500 20251022 0 48 fc None regular_ll
[ ]: