[Disclaimer – Freely accessible]
The Earth Data Hub distributes global Climate Reanalysis such as ECMWF’s ERA5 and multi-decadal Climate Projections such as the Destination Earth’s Climate Adaptation Digital Twin in Zarr format.
Any Zarr-compatible tool can access these datasets with just a few lines of code.
Try it out:
import xarray as xr EDH_API_KEY = "your_EDH_api_key" # can be found at: https://earthdatahub.destine.eu/account-settings xr.open_dataset( f"https://edh:{EDH_API_KEY}@api.earthdatahub.destine.eu/era5/era5-single-levels-atmosphere-v0.zarr", chunks={}, engine="zarr", )
submitted by /u/Majestic_Painter272
[link] [comments]