Skip to content

Xarray backend to map an ECMWF style request to a service onto an XArray Dataset

License

Notifications You must be signed in to change notification settings

bopen/xarray-ecmwf

Folders and files

NameName
Last commit message
Last commit date

Latest commit

40f499e · Mar 12, 2025
Dec 20, 2023
Dec 20, 2023
Sep 21, 2023
Oct 7, 2023
Mar 6, 2024
Mar 12, 2025
Jan 16, 2024
Sep 26, 2023
Sep 21, 2023
Jan 16, 2024
Dec 20, 2023
Sep 21, 2023
Dec 20, 2023
Dec 20, 2023
Mar 8, 2024
Mar 8, 2024

Repository files navigation

Xarray backend to map an ECMWF style request to a service onto an Xarray Dataset

This Open Source project is build by B-Open - https://www.bopen.eu

Features and limitations

xarray-ecmwf is a Python library and Xarray backend with the following functionalities:

  • opens an ECMWF style request as a Xarray Dataset connected to the remote services
  • allows lazy loading the data and well integrated with Dask and Dask.distributed
  • allows chunking the input request according to a configurable splitting strategy. Allowed strategies:
    • by one month
    • by one day
  • supports requests returning a single GRIB file, via cfgrib

Usage

>>> import xarray as xr
>>> request = {
...     "dataset": "reanalysis-era5-single-levels",
...     "product_type": "reanalysis",
...     "variable": ["2m_temperature"],
...     "year": ["2002"],
...     "month": ["01"],
...     "day": ["15"],
...     "time": ["00:00", "12:00"],
... }
>>> ds = xr.open_dataset(request, engine="ecmwf")
>>> ds
<xarray.Dataset>
Dimensions:     (time: 2, latitude: 721, longitude: 1440)
Coordinates:
    number      int64 ...
  * time        (time) datetime64[ns] 2002-01-15 2002-01-15T12:00:00
    step        timedelta64[ns] ...
    surface     float64 ...
    valid_time  (time) datetime64[ns] ...
  * latitude    (latitude) float64 90.0 89.75 89.5 89.25 ... -89.5 -89.75 -90.0
  * longitude   (longitude) float64 0.0 0.25 0.5 0.75 ... 359.2 359.5 359.8
Data variables:
    t2m         (time, latitude, longitude) float32 ...
Attributes:
    GRIB_edition:            1
    GRIB_centre:             ecmf
    GRIB_centreDescription:  European Centre for Medium-Range Weather Forecasts
    GRIB_subCentre:          0
    Conventions:             CF-1.7
    institution:             European Centre for Medium-Range Weather Forecasts
    history:                 ...

License

Copyright 2022, B-Open Solutions srl.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.