The km-scale cloud by DKRZ#
The km-scale cloud formerly known as EERIE cloud addresses data users who cannot work on DKRZ´s High Performance Computer Levante next to the data. It provides open, efficient, Zarr-based access to High-resolution ESM datasets produced by
projects like EERIE and NextGEMs
models like ICON and IFS-FESOM.
Whether originally stored as Zarr, NetCDF, or GRIB, the km-scale cloud delivers - without rewriting, relocating, or converting - byte ranges of the original files as Zarr chunks. In addition, it incorporates Dask for on-demand, server-side data reduction tasks — such as compression and the computation of summary statistics. This combination makes it practical and scalable to work with petabyte-scale climate data even to users with limited compute resources. Integrated support for catalog tools like STAC (SpatioTemporal Asset Catalog) and intake, organized in a semantic hierarchy, allows users to discover, query, and subset data efficiently through standardized, interoperable interfaces.
This is enabled by the python package cloudify described in detail in Wachsmann, 2025.
Show case: Time series quickplot for a ICON simulation#
import xarray as xr
dataset_id="icon-esm-er.highres-future-ssp245.v20240618.atmos.native.mon"
ds=xr.open_dataset(
f"simplecache::https://km-scale-cloud.dkrz.de/datasets/{dataset_id}/kerchunk",
engine="zarr",
chunks="auto",
zarr_format=2,
# if you use zarr v3:
# storage_options=dict(
# simplecache=dict(asynchronous=True),
# https=dict(asynchronous=True)
# )
)
import matplotlib.pyplot as plt
var="tas_gmean"
vmean = ds[var].squeeze()
vmean_yr = vmean.resample(time="YE").mean()
vmean.plot()
vmean_yr.plot()
plt.title(" ".join(dataset_id.split(".")) + f"\ntime series of monthly and yearly mean {var}")
plt.xlabel("Year")
Text(0.5, 0, 'Year')
Km-scale datasets and how to approach them#
The km-scale-cloud provides many endpoints (URIs) with different features. Under this link, all available endpoints are documented.
Helpful dataset endpoints#
A key endpoint is the /datasets endpoint which provides a simple list of datasets accessible through the km-scale-cloud. We can use it like:
import requests
kmscale_uri = "https://km-scale-cloud.dkrz.de"
kmscale_datasets_uri=kmscale_uri+"/datasets"
kmscale_datasets=requests.get(kmscale_datasets_uri).json()
print(f"The km-scale-cloud provides {len(kmscale_datasets)} datasests such as:")
print(kmscale_datasets[0])
The km-scale-cloud provides 682 datasests such as:
cosmo-rea-1hr_atmos
For each dataset, a Xarray-dataset view endpoint exists which can be helpful to get an overview about the content of the dataset. The endpoint is constructed like datasets/dataset_id/, e.g.:
dataset_pattern="atmos.native.mon"
global_atm_mon_mean_ds_name=next(
a for a in kmscale_datasets if dataset_pattern in a
)
print(
"An available atmospheric global mean monthly mean dataset is: "+
global_atm_mon_mean_ds_name
)
global_atm_mon_mean_ds_uri=kmscale_datasets_uri+"/"+global_atm_mon_mean_ds_name
An available atmospheric global mean monthly mean dataset is: icon-esm-er.highres-future-ssp245.v20240618.atmos.native.mon
The key endpoint is the default Zarr-endpoint constructed like datasets/DATASET_ID/kerchunk. Such an address can be used by any tool that can read Zarr over http. E.g. With Xarray:
xr.open_dataset(
global_atm_mon_mean_ds_uri+"/kerchunk",
engine="zarr"
)
<xarray.Dataset> Size: 31kB
Dimensions: (time: 432, lat: 1, lon: 1)
Coordinates:
* time (time) datetime64[ns] 3kB 2015-02-01 ... 2051-01-01
* lat (lat) float64 8B 0.0
* lon (lon) float64 8B 0.0
Data variables: (12/16)
duphyvi_gmean (time, lat, lon) float32 2kB ...
evap_gmean (time, lat, lon) float32 2kB ...
fwfoce_gmean (time, lat, lon) float32 2kB ...
kedisp_gmean (time, lat, lon) float32 2kB ...
prec_gmean (time, lat, lon) float32 2kB ...
radbal_gmean (time, lat, lon) float32 2kB ...
... ...
tas_gmean (time, lat, lon) float32 2kB ...
udynvi_gmean (time, lat, lon) float32 2kB ...
ufcs_gmean (time, lat, lon) float32 2kB ...
ufts_gmean (time, lat, lon) float32 2kB ...
ufvs_gmean (time, lat, lon) float32 2kB ...
uphybal_gmean (time, lat, lon) float32 2kB ...
Attributes:
CDI: Climate Data Interface version 2.4.0 (https://mpimet.mpg.de...
Conventions: CF-1.6
comment: Sapphire Dyamond (k203123) on l30674 (Linux 4.18.0-513.24.1...
history: /work/bm1344/k203123/experiments/erc2020/run_20150101T00000...
institution: Max Planck Institute for Meteorology/Deutscher Wetterdienst
references: see MPIM/DWD publications
source: git@gitlab.dkrz.de:icon/icon-mpim.git@be4454b870506af6f8f4b...
title: ICON simulation- time: 432
- lat: 1
- lon: 1
- time(time)datetime64[ns]2015-02-01 ... 2051-01-01
- axis :
- T
- standard_name :
- time
array(['2015-02-01T00:00:00.000000000', '2015-03-01T00:00:00.000000000', '2015-04-01T00:00:00.000000000', ..., '2050-11-01T00:00:00.000000000', '2050-12-01T00:00:00.000000000', '2051-01-01T00:00:00.000000000'], shape=(432,), dtype='datetime64[ns]') - lat(lat)float640.0
- axis :
- Y
- long_name :
- latitude
- standard_name :
- latitude
- units :
- degrees_north
array([0.])
- lon(lon)float640.0
- axis :
- X
- long_name :
- longitude
- standard_name :
- longitude
- units :
- degrees_east
array([0.])
- duphyvi_gmean(time, lat, lon)float32...
- code :
- 255
- long_name :
- mean vertically integrated moist internal energy change by physics
- standard_name :
- duphyvi_gmean
- units :
- J m-2
[432 values with dtype=float32]
- evap_gmean(time, lat, lon)float32...
- code :
- 255
- long_name :
- global mean evaporation flux
- standard_name :
- evap_gmean
- units :
- kg m-2 s-1
[432 values with dtype=float32]
- fwfoce_gmean(time, lat, lon)float32...
- code :
- 255
- long_name :
- mean surface freshwater flux over ocean surface
- standard_name :
- fwfoce_gmean
- units :
- kg m-2 s-1
[432 values with dtype=float32]
- kedisp_gmean(time, lat, lon)float32...
- code :
- 255
- long_name :
- mean vert. integr. dissip. kin. energy
- standard_name :
- kedisp_gmean
- units :
- W m-2
[432 values with dtype=float32]
- prec_gmean(time, lat, lon)float32...
- code :
- 255
- long_name :
- global mean precipitation flux
- standard_name :
- prec_gmean
- units :
- kg m-2 s-1
[432 values with dtype=float32]
- radbal_gmean(time, lat, lon)float32...
- code :
- 255
- long_name :
- global mean net radiative flux into atmosphere
- standard_name :
- radbal_gmean
- units :
- W m-2
[432 values with dtype=float32]
- radtop_gmean(time, lat, lon)float32...
- code :
- 255
- long_name :
- global mean toa net total radiation
- standard_name :
- radtop_gmean
- units :
- W m-2
[432 values with dtype=float32]
- rlut_gmean(time, lat, lon)float32...
- code :
- 255
- long_name :
- global mean toa outgoing longwave radiation
- standard_name :
- rlut_gmean
- units :
- W m-2
[432 values with dtype=float32]
- rsdt_gmean(time, lat, lon)float32...
- code :
- 255
- long_name :
- global mean toa incident shortwave radiation
- standard_name :
- rsdt_gmean
- units :
- W m-2
[432 values with dtype=float32]
- rsut_gmean(time, lat, lon)float32...
- code :
- 255
- long_name :
- global mean toa outgoing shortwave radiation
- standard_name :
- rsut_gmean
- units :
- W m-2
[432 values with dtype=float32]
- tas_gmean(time, lat, lon)float32...
- code :
- 255
- long_name :
- global mean temperature at 2m
- standard_name :
- tas_gmean
- units :
- K
[432 values with dtype=float32]
- udynvi_gmean(time, lat, lon)float32...
- code :
- 255
- long_name :
- mean vertically integrated moist internal energy after dynamics
- standard_name :
- udynvi_gmean
- units :
- J m-2
[432 values with dtype=float32]
- ufcs_gmean(time, lat, lon)float32...
- code :
- 255
- long_name :
- mean energy flux at surface from condensate
- standard_name :
- ufcs_gmean
- units :
- W m-2
[432 values with dtype=float32]
- ufts_gmean(time, lat, lon)float32...
- code :
- 255
- long_name :
- mean energy flux at surface from thermal exchange
- standard_name :
- ufts_gmean
- units :
- W m-2
[432 values with dtype=float32]
- ufvs_gmean(time, lat, lon)float32...
- code :
- 255
- long_name :
- mean energy flux at surface from vapor exchange
- standard_name :
- ufvs_gmean
- units :
- W m-2
[432 values with dtype=float32]
- uphybal_gmean(time, lat, lon)float32...
- code :
- 255
- long_name :
- mean energy balance in aes physics
- standard_name :
- uphybal_gmean
- units :
- W m-2
[432 values with dtype=float32]
- CDI :
- Climate Data Interface version 2.4.0 (https://mpimet.mpg.de/cdi)
- Conventions :
- CF-1.6
- comment :
- Sapphire Dyamond (k203123) on l30674 (Linux 4.18.0-513.24.1.el8_9.x86_64 x86_64)
- history :
- /work/bm1344/k203123/experiments/erc2020/run_20150101T000000-20150131T235900/./icon at 20250508 003258
- institution :
- Max Planck Institute for Meteorology/Deutscher Wetterdienst
- references :
- see MPIM/DWD publications
- source :
- git@gitlab.dkrz.de:icon/icon-mpim.git@be4454b870506af6f8f4b00d3ae111de6c3f5327
- title :
- ICON simulation
The Datatree: All in one Zarr-group#
Note: xarray>=2025.7.1 required and evolving fast.
Opening Zarr and representing it in Xarray does not coast much resources. It is fast and small in memory. A strategy to work with multiple datasets is therefore to just open everything.
We can access to the full >10PB of the km-scale-cloud with only using xarray by applying the following code:
dt = xr.open_datatree(
"simplecache::https://km-scale-cloud.dkrz.de/datasets",
engine="zarr",
zarr_format=2,
chunks=None,
create_default_indexes=False,
decode_cf=False,
)
The dt object is a Xarray Datatree. This datatree object allows you to browse and discover the full content of the km-scale-cloud similar to the functionality of intake but without requiring an additional tool.
The workflow using the datatree involves the following steps:
filter: subset the tree so that it only includes the datasets you want. You can apply any customized function using the datasets as input. In the following example, we look for a specific dataset name.chunk,decode_cf: in case you need coordinate values for subsetting or in case you are interested in more than one chunk, better use these functions to allow lazy access on coordinates.Instead of writing loops over a list or a dictionary of datasets, you can now use the
.map_over_datasetsfunction to apply a function to all datasets at once.
path_filter="s2024-08-10"
filtered_tree=dt.filter(lambda ds: ds if path_filter in ds.path else None)
display(filtered_tree)
<xarray.DataTree>
Group: /
├── Group: /orcestra.ICON-LAM.s2024-08-10_2d_PT10M_12
│ └── Group: /orcestra.ICON-LAM.s2024-08-10_2d_PT10M_12/kerchunk
│ Dimensions: (time: 145, cell: 9371648)
│ Coordinates:
│ time (time) float64 1kB ...
│ cell (cell) int64 75MB ...
│ Data variables: (12/33)
│ cllvi (time, cell) float32 5GB ...
│ clt (time, cell) float32 5GB ...
│ crs float32 4B ...
│ evspsbl (time, cell) float32 5GB ...
│ hfls (time, cell) float32 5GB ...
│ hfss (time, cell) float32 5GB ...
│ ... ...
│ tas (time, cell) float32 5GB ...
│ tauu (time, cell) float32 5GB ...
│ tauv (time, cell) float32 5GB ...
│ ts (time, cell) float32 5GB ...
│ uas (time, cell) float32 5GB ...
│ vas (time, cell) float32 5GB ...
└── Group: /orcestra.ICON-LAM.s2024-08-10_3d_PT4H_12
└── Group: /orcestra.ICON-LAM.s2024-08-10_3d_PT4H_12/kerchunk
Dimensions: (time: 25, height_full: 56, cell: 9371648, height_half: 57)
Coordinates:
time (time) float64 200B ...
height_full (height_full) float64 448B ...
cell (cell) int64 75MB ...
height_half (height_half) float64 456B ...
Data variables: (12/13)
crs float32 4B ...
pfull (time, height_full, cell) float32 52GB ...
qc (time, height_full, cell) float32 52GB ...
qg (time, height_full, cell) float32 52GB ...
qi (time, height_full, cell) float32 52GB ...
qr (time, height_full, cell) float32 52GB ...
... ...
qv (time, height_full, cell) float32 52GB ...
rho (time, height_full, cell) float32 52GB ...
ta (time, height_full, cell) float32 52GB ...
ua (time, height_full, cell) float32 52GB ...
va (time, height_full, cell) float32 52GB ...
wa (time, height_half, cell) float32 53GB ...- /orcestra.ICON-LAM.s2024-08-10_2d_PT10M_12
- /orcestra.ICON-LAM.s2024-08-10_2d_PT10M_12/kerchunk
- time: 145
- cell: 9371648
- time(time)float64...
- axis :
- T
- calendar :
- gregorian
- standard_name :
- time
- units :
- minutes since 2024-08-09
- _FillValue :
- nan
[145 values with dtype=float64]
- cell(cell)int64...
[9371648 values with dtype=int64]
- cllvi(time, cell)float32...
- CDI_grid_type :
- unstructured
- coordinates :
- crs
- long_name :
- cloud liquid water path
- number_of_grid_in_reference :
- 1
- param :
- 69.1.0
- standard_name :
- atmosphere_mass_content_of_cloud_liquid_water
- units :
- kg m-2
- _FillValue :
- nan
[1358888960 values with dtype=float32]
- clt(time, cell)float32...
- CDI_grid_type :
- unstructured
- coordinates :
- crs
- long_name :
- total cloud cover
- number_of_grid_in_reference :
- 1
- param :
- 1.6.0
- standard_name :
- clt
- units :
- m2 m-2
- _FillValue :
- nan
[1358888960 values with dtype=float32]
- crs()float32...
- grid_mapping_name :
- healpix
- healpix_nside :
- 4096
- healpix_order :
- nest
- _FillValue :
- nan
[1 values with dtype=float32]
- evspsbl(time, cell)float32...
- CDI_grid_type :
- unstructured
- coordinates :
- crs
- long_name :
- evaporation
- number_of_grid_in_reference :
- 1
- param :
- 6.1.0
- standard_name :
- evap
- units :
- kg m-2 s-1
- _FillValue :
- nan
[1358888960 values with dtype=float32]
- hfls(time, cell)float32...
- CDI_grid_type :
- unstructured
- coordinates :
- crs
- long_name :
- latent heat flux
- number_of_grid_in_reference :
- 1
- param :
- 10.0.0
- standard_name :
- lhflx
- units :
- W m-2
- _FillValue :
- nan
[1358888960 values with dtype=float32]
- hfss(time, cell)float32...
- CDI_grid_type :
- unstructured
- coordinates :
- crs
- long_name :
- sensible heat flux
- number_of_grid_in_reference :
- 1
- param :
- 11.0.0
- standard_name :
- shflx
- units :
- W m-2
- _FillValue :
- nan
[1358888960 values with dtype=float32]
- hus2m(time, cell)float32...
- CDI_grid_type :
- unstructured
- coordinates :
- crs
- long_name :
- specific humidity in 2m
- number_of_grid_in_reference :
- 1
- param :
- 6.0.0
- standard_name :
- qv2m
- units :
- kg kg-1
- _FillValue :
- nan
[1358888960 values with dtype=float32]
- pr(time, cell)float32...
- CDI_grid_type :
- unstructured
- coordinates :
- crs
- long_name :
- precipitation flux
- number_of_grid_in_reference :
- 1
- param :
- 52.1.0
- standard_name :
- pr
- units :
- kg m-2 s-1
- _FillValue :
- nan
[1358888960 values with dtype=float32]
- prw(time, cell)float32...
- CDI_grid_type :
- unstructured
- coordinates :
- crs
- long_name :
- water vapor path
- number_of_grid_in_reference :
- 1
- param :
- 64.1.0
- standard_name :
- atmosphere_mass_content_of_water_vapor
- units :
- kg m-2
- _FillValue :
- nan
[1358888960 values with dtype=float32]
- ps(time, cell)float32...
- CDI_grid_type :
- unstructured
- coordinates :
- crs
- long_name :
- surface pressure
- number_of_grid_in_reference :
- 1
- param :
- 0.3.0
- standard_name :
- surface_air_pressure
- units :
- Pa
- _FillValue :
- nan
[1358888960 values with dtype=float32]
- psl(time, cell)float32...
- CDI_grid_type :
- unstructured
- coordinates :
- crs
- long_name :
- mean sea level pressure
- number_of_grid_in_reference :
- 1
- param :
- 1.3.0
- standard_name :
- mean sea level pressure
- units :
- Pa
- _FillValue :
- nan
[1358888960 values with dtype=float32]
- qgvi(time, cell)float32...
- CDI_grid_type :
- unstructured
- coordinates :
- crs
- long_name :
- graupel path
- number_of_grid_in_reference :
- 1
- param :
- 74.1.0
- standard_name :
- atmosphere_mass_content_of_graupel
- units :
- kg m-2
- _FillValue :
- nan
[1358888960 values with dtype=float32]
- qivi(time, cell)float32...
- CDI_grid_type :
- unstructured
- coordinates :
- crs
- long_name :
- cloud ice path
- number_of_grid_in_reference :
- 1
- param :
- 70.1.0
- standard_name :
- atmosphere_mass_content_of_cloud_ice
- units :
- kg m-2
- _FillValue :
- nan
[1358888960 values with dtype=float32]
- qrvi(time, cell)float32...
- CDI_grid_type :
- unstructured
- coordinates :
- crs
- long_name :
- rain path
- number_of_grid_in_reference :
- 1
- param :
- 45.1.0
- standard_name :
- atmosphere_mass_content_of_rain
- units :
- kg m-2
- _FillValue :
- nan
[1358888960 values with dtype=float32]
- qsvi(time, cell)float32...
- CDI_grid_type :
- unstructured
- coordinates :
- crs
- long_name :
- snow path
- number_of_grid_in_reference :
- 1
- param :
- 46.1.0
- standard_name :
- atmosphere_mass_content_of_snow
- units :
- kg m-2
- _FillValue :
- nan
[1358888960 values with dtype=float32]
- rlds(time, cell)float32...
- CDI_grid_type :
- unstructured
- coordinates :
- crs
- long_name :
- surface downwelling longwave radiation
- number_of_grid_in_reference :
- 1
- param :
- 3.5.0
- standard_name :
- surface_downwelling_longwave_flux_in_air
- units :
- W m-2
- _FillValue :
- nan
[1358888960 values with dtype=float32]
- rldscs(time, cell)float32...
- CDI_grid_type :
- unstructured
- coordinates :
- crs
- long_name :
- surface downwelling clear-sky longwave radiation
- number_of_grid_in_reference :
- 1
- param :
- 203.5.0
- standard_name :
- surface_downwelling_longwave_flux_in_air_assuming_clear_sky
- units :
- W m-2
- _FillValue :
- nan
[1358888960 values with dtype=float32]
- rlus(time, cell)float32...
- CDI_grid_type :
- unstructured
- coordinates :
- crs
- long_name :
- surface upwelling longwave radiation
- number_of_grid_in_reference :
- 1
- param :
- 199.5.0
- standard_name :
- surface_upwelling_longwave_flux_in_air
- units :
- W m-2
- _FillValue :
- nan
[1358888960 values with dtype=float32]
- rlut(time, cell)float32...
- CDI_grid_type :
- unstructured
- coordinates :
- crs
- level_type :
- toa
- long_name :
- toa outgoing longwave radiation
- number_of_grid_in_reference :
- 1
- param :
- 4.5.0
- standard_name :
- toa_outgoing_longwave_flux
- units :
- W m-2
- _FillValue :
- nan
[1358888960 values with dtype=float32]
- rlutcs(time, cell)float32...
- CDI_grid_type :
- unstructured
- coordinates :
- crs
- level_type :
- toa
- long_name :
- toa outgoing clear-sky longwave radiation
- number_of_grid_in_reference :
- 1
- param :
- 204.5.0
- standard_name :
- toa_outgoing_longwave_flux_assuming_clear_sky
- units :
- W m-2
- _FillValue :
- nan
[1358888960 values with dtype=float32]
- rsds(time, cell)float32...
- CDI_grid_type :
- unstructured
- coordinates :
- crs
- long_name :
- surface downwelling shortwave radiation
- number_of_grid_in_reference :
- 1
- param :
- 7.4.0
- standard_name :
- surface_downwelling_shortwave_flux_in_air
- units :
- W m-2
- _FillValue :
- nan
[1358888960 values with dtype=float32]
- rsdscs(time, cell)float32...
- CDI_grid_type :
- unstructured
- coordinates :
- crs
- long_name :
- surface downwelling clear-sky shortwave radiation
- number_of_grid_in_reference :
- 1
- param :
- 207.4.0
- standard_name :
- surface_downwelling_shortwave_flux_in_air_assuming_clear_sky
- units :
- W m-2
- _FillValue :
- nan
[1358888960 values with dtype=float32]
- rsdt(time, cell)float32...
- CDI_grid_type :
- unstructured
- coordinates :
- crs
- level_type :
- toa
- long_name :
- toa incident shortwave radiation
- number_of_grid_in_reference :
- 1
- param :
- 201.4.0
- standard_name :
- toa_incoming_shortwave_flux
- units :
- W m-2
- _FillValue :
- nan
[1358888960 values with dtype=float32]
- rsus(time, cell)float32...
- CDI_grid_type :
- unstructured
- coordinates :
- crs
- long_name :
- surface upwelling shortwave radiation
- number_of_grid_in_reference :
- 1
- param :
- 199.4.0
- standard_name :
- surface_upwelling_shortwave_flux_in_air
- units :
- W m-2
- _FillValue :
- nan
[1358888960 values with dtype=float32]
- rsuscs(time, cell)float32...
- CDI_grid_type :
- unstructured
- coordinates :
- crs
- long_name :
- surface upwelling clear-sky shortwave radiation
- number_of_grid_in_reference :
- 1
- param :
- 209.4.0
- standard_name :
- surface_upwelling_shortwave_flux_in_air_assuming_clear_sky
- units :
- W m-2
- _FillValue :
- nan
[1358888960 values with dtype=float32]
- rsut(time, cell)float32...
- CDI_grid_type :
- unstructured
- coordinates :
- crs
- level_type :
- toa
- long_name :
- toa outgoing shortwave radiation
- number_of_grid_in_reference :
- 1
- param :
- 8.4.0
- standard_name :
- toa_outgoing_shortwave_flux
- units :
- W m-2
- _FillValue :
- nan
[1358888960 values with dtype=float32]
- rsutcs(time, cell)float32...
- CDI_grid_type :
- unstructured
- coordinates :
- crs
- level_type :
- toa
- long_name :
- toa outgoing clear-sky shortwave radiation
- number_of_grid_in_reference :
- 1
- param :
- 208.4.0
- standard_name :
- toa_outgoing_shortwave_flux_assuming_clear_sky
- units :
- W m-2
- _FillValue :
- nan
[1358888960 values with dtype=float32]
- tas(time, cell)float32...
- CDI_grid_type :
- unstructured
- coordinates :
- crs
- long_name :
- temperature in 2m
- number_of_grid_in_reference :
- 1
- param :
- 0.0.0
- standard_name :
- tas
- units :
- K
- _FillValue :
- nan
[1358888960 values with dtype=float32]
- tauu(time, cell)float32...
- CDI_grid_type :
- unstructured
- coordinates :
- crs
- long_name :
- u-momentum flux at the surface
- number_of_grid_in_reference :
- 1
- param :
- 17.2.0
- standard_name :
- u_stress
- units :
- N m-2
- _FillValue :
- nan
[1358888960 values with dtype=float32]
- tauv(time, cell)float32...
- CDI_grid_type :
- unstructured
- coordinates :
- crs
- long_name :
- v-momentum flux at the surface
- number_of_grid_in_reference :
- 1
- param :
- 18.2.0
- standard_name :
- v_stress
- units :
- N m-2
- _FillValue :
- nan
[1358888960 values with dtype=float32]
- ts(time, cell)float32...
- CDI_grid_type :
- unstructured
- coordinates :
- crs
- long_name :
- surface temperature
- number_of_grid_in_reference :
- 1
- param :
- 0.0.0
- standard_name :
- surface_temperature
- units :
- K
- _FillValue :
- nan
[1358888960 values with dtype=float32]
- uas(time, cell)float32...
- CDI_grid_type :
- unstructured
- coordinates :
- crs
- long_name :
- zonal wind in 10m
- number_of_grid_in_reference :
- 1
- param :
- 2.2.0
- standard_name :
- uas
- units :
- m s-1
- _FillValue :
- nan
[1358888960 values with dtype=float32]
- vas(time, cell)float32...
- CDI_grid_type :
- unstructured
- coordinates :
- crs
- long_name :
- meridional wind in 10m
- number_of_grid_in_reference :
- 1
- param :
- 3.2.0
- standard_name :
- vas
- units :
- m s-1
- _FillValue :
- nan
[1358888960 values with dtype=float32]
/orcestra.ICON-LAM.s2024-08-10_3d_PT4H_12- /orcestra.ICON-LAM.s2024-08-10_3d_PT4H_12/kerchunk
- time: 25
- height_full: 56
- cell: 9371648
- height_half: 57
- time(time)float64...
- axis :
- T
- calendar :
- gregorian
- standard_name :
- time
- units :
- minutes since 2024-08-09
- _FillValue :
- nan
[25 values with dtype=float64]
- height_full(height_full)float64...
- axis :
- Z
- bounds :
- height_bnds
- long_name :
- generalized_height
- standard_name :
- height
- _FillValue :
- nan
[56 values with dtype=float64]
- cell(cell)int64...
[9371648 values with dtype=int64]
- height_half(height_half)float64...
- axis :
- Z
- long_name :
- generalized_height
- standard_name :
- height
- _FillValue :
- nan
[57 values with dtype=float64]
- crs()float32...
- grid_mapping_name :
- healpix
- healpix_nside :
- 4096
- healpix_order :
- nest
- _FillValue :
- nan
[1 values with dtype=float32]
- pfull(time, height_full, cell)float32...
- CDI_grid_type :
- unstructured
- coordinates :
- crs
- long_name :
- Pressure
- number_of_grid_in_reference :
- 1
- param :
- 0.3.0
- standard_name :
- air_pressure
- units :
- Pa
- _FillValue :
- nan
[13120307200 values with dtype=float32]
- qc(time, height_full, cell)float32...
- CDI_grid_type :
- unstructured
- coordinates :
- crs
- long_name :
- specific cloud water content
- number_of_grid_in_reference :
- 1
- param :
- 22.1.0
- standard_name :
- qc
- units :
- kg kg-1
- _FillValue :
- nan
[13120307200 values with dtype=float32]
- qg(time, height_full, cell)float32...
- CDI_grid_type :
- unstructured
- coordinates :
- crs
- long_name :
- specific graupel content
- number_of_grid_in_reference :
- 1
- param :
- 32.1.0
- standard_name :
- qg
- units :
- kg kg-1
- _FillValue :
- nan
[13120307200 values with dtype=float32]
- qi(time, height_full, cell)float32...
- CDI_grid_type :
- unstructured
- coordinates :
- crs
- long_name :
- specific cloud ice content
- number_of_grid_in_reference :
- 1
- param :
- 82.1.0
- standard_name :
- qi
- units :
- kg kg-1
- _FillValue :
- nan
[13120307200 values with dtype=float32]
- qr(time, height_full, cell)float32...
- CDI_grid_type :
- unstructured
- coordinates :
- crs
- long_name :
- specific rain content
- number_of_grid_in_reference :
- 1
- param :
- 24.1.0
- standard_name :
- qr
- units :
- kg kg-1
- _FillValue :
- nan
[13120307200 values with dtype=float32]
- qs(time, height_full, cell)float32...
- CDI_grid_type :
- unstructured
- coordinates :
- crs
- long_name :
- specific snow content
- number_of_grid_in_reference :
- 1
- param :
- 25.1.0
- standard_name :
- qs
- units :
- kg kg-1
- _FillValue :
- nan
[13120307200 values with dtype=float32]
- qv(time, height_full, cell)float32...
- CDI_grid_type :
- unstructured
- coordinates :
- crs
- long_name :
- Specific humidity
- number_of_grid_in_reference :
- 1
- param :
- 0.1.0
- standard_name :
- specific_humidity
- units :
- kg kg-1
- _FillValue :
- nan
[13120307200 values with dtype=float32]
- rho(time, height_full, cell)float32...
- CDI_grid_type :
- unstructured
- coordinates :
- crs
- long_name :
- density
- number_of_grid_in_reference :
- 1
- param :
- 10.3.0
- standard_name :
- air_density
- units :
- kg m-3
- _FillValue :
- nan
[13120307200 values with dtype=float32]
- ta(time, height_full, cell)float32...
- CDI_grid_type :
- unstructured
- coordinates :
- crs
- long_name :
- Temperature
- number_of_grid_in_reference :
- 1
- param :
- 0.0.0
- standard_name :
- air_temperature
- units :
- K
- _FillValue :
- nan
[13120307200 values with dtype=float32]
- ua(time, height_full, cell)float32...
- CDI_grid_type :
- unstructured
- coordinates :
- crs
- long_name :
- Zonal wind
- number_of_grid_in_reference :
- 1
- param :
- 2.2.0
- standard_name :
- eastward_wind
- units :
- m s-1
- _FillValue :
- nan
[13120307200 values with dtype=float32]
- va(time, height_full, cell)float32...
- CDI_grid_type :
- unstructured
- coordinates :
- crs
- long_name :
- Meridional wind
- number_of_grid_in_reference :
- 1
- param :
- 3.2.0
- standard_name :
- northward_wind
- units :
- m s-1
- _FillValue :
- nan
[13120307200 values with dtype=float32]
- wa(time, height_half, cell)float32...
- CDI_grid_type :
- unstructured
- coordinates :
- crs
- long_name :
- Vertical velocity
- number_of_grid_in_reference :
- 1
- param :
- 9.2.0
- standard_name :
- upward_air_velocity
- units :
- m s-1
- _FillValue :
- nan
[13354598400 values with dtype=float32]
filtered_tree_chunked=filtered_tree.chunk()
filtered_tree_chunked_decoded=filtered_tree_chunked.map_over_datasets(
lambda ds: xr.decode_cf(ds) if "time" in ds else None
)
Any .compute() or .load() will trigger data retrieval. Thus, make sure you first subset before you download.
The .nbytes object shows you how much uncompressed data will be loaded to your memory.
filtered_tree_chunked_decoded.nbytes/1024**2
767516.752166748
time_sel="2024-08-10"
var="tas"
filtered_tree_chunked_decoded_subsetted=filtered_tree_chunked_decoded.map_over_datasets(
lambda ds: ds[[var]].sel(time=time_sel) if all(a in ds for a in [var,"time"]) else None
).prune()
print(filtered_tree_chunked_decoded_subsetted.nbytes/1024**2)
5219.50110244751
Before running .load(), add all lazy functions to the dask´s taskgraph:
dt_workflow=filtered_tree_chunked_decoded_subsetted.map_over_datasets(lambda ds: ds.mean(dim="time") if "time" in ds else None)
%%time
ds_mean=dt_workflow.compute().leaves[0].to_dataset()
ds_mean
CPU times: user 16.6 s, sys: 34.4 s, total: 50.9 s
Wall time: 1min 36s
<xarray.Dataset> Size: 112MB
Dimensions: (cell: 9371648)
Coordinates:
* cell (cell) int64 75MB 50331648 50331649 ... 201326590 201326591
crs float32 4B nan
Data variables:
tas (cell) float32 37MB 299.8 299.8 299.8 299.8 ... 299.9 299.9 299.9- cell: 9371648
- cell(cell)int6450331648 50331649 ... 201326591
array([ 50331648, 50331649, 50331650, ..., 201326589, 201326590, 201326591], shape=(9371648,)) - crs()float32nan
- grid_mapping_name :
- healpix
- healpix_nside :
- 4096
- healpix_order :
- nest
array(nan, dtype=float32)
- tas(cell)float32299.8 299.8 299.8 ... 299.9 299.9
- CDI_grid_type :
- unstructured
- long_name :
- temperature in 2m
- number_of_grid_in_reference :
- 1
- param :
- 0.0.0
- standard_name :
- tas
- units :
- K
array([299.8497 , 299.84943, 299.84714, ..., 299.86108, 299.86243, 299.85754], shape=(9371648,), dtype=float32)
STAC interface#
The most interoperable catalog interface for the km-scale-cloud is with STAC (SpatioTemporal Asset Catalogs). You can use any stac-browser implementation to browse and discover the dynamically created km-scale cloud collection with all datasets linked as dynamic items.
For programmatic access, follow this notebook.
import pystac
kmscale_collection_uri="https://km-scale-cloud.dkrz.de/stac-collection-all.json"
kmscale_collection=pystac.Collection.from_file(kmscale_collection_uri)
kmscale_collection
- type "Collection"
- id "eerie-cloud-all"
- stac_version "1.1.0"
- description " # Items of the eerie.cloud DKRZ hosts a data server named ‘eerie.cloud’ for global high resolution Earth System Model simulation output stored at the German Climate Computing Center (DKRZ). This was developped within the EU project EERIE. Eerie.cloud makes use of the python package xpublish. Xpublish is a plugin for xarray (Hoyer, 2023) which is widely used in the Earth System Science community. It serves ESM output formatted as zarr (Miles, 2020) via a RestAPI based on FastAPI. Served in this way, the data imitates cloud-native data (Abernathey, 2021) and features many capabilities of cloud-optimized data. [Imprint](https://www.dkrz.de/en/about-en/contact/impressum) and [Privacy Policy](https://www.dkrz.de/en/about-en/contact/en-datenschutzhinweise). "
links[] 685 items
0
- rel "self"
- href "https://km-scale-cloud.dkrz.de/stac-collection-all.json"
- type "application/json"
1
- rel "root"
- href "https://eerie.cloud.dkrz.de/stac-collection-all.json"
- type "application/json"
- title "ESM data from DKRZ in Zarr format"
2
- rel "parent"
- href "https://swift.dkrz.de/v1/dkrz_7fa6baba-db43-4d12-a295-8e3ebb1a01ed/catalogs/stac-catalog-eeriecloud.json"
- type "application/json"
3
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/cosmo-rea-1hr_atmos/stac"
- type "application/json"
- title "cosmo-rea-1hr_atmos"
4
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/cosmo-rea-1hr_land/stac"
- type "application/json"
- title "cosmo-rea-1hr_land"
5
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/cosmo-rea-1hrPt_atmos/stac"
- type "application/json"
- title "cosmo-rea-1hrPt_atmos"
6
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/cosmo-rea-1hrPt_land/stac"
- type "application/json"
- title "cosmo-rea-1hrPt_land"
7
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/cosmo-rea-1hrPt_landIce/stac"
- type "application/json"
- title "cosmo-rea-1hrPt_landIce"
8
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/cosmo-rea-6hr_atmos/stac"
- type "application/json"
- title "cosmo-rea-6hr_atmos"
9
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/cosmo-rea-day_atmos/stac"
- type "application/json"
- title "cosmo-rea-day_atmos"
10
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/cosmo-rea-day_land/stac"
- type "application/json"
- title "cosmo-rea-day_land"
11
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/cosmo-rea-day_landIce/stac"
- type "application/json"
- title "cosmo-rea-day_landIce"
12
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/cosmo-rea-mon_atmos/stac"
- type "application/json"
- title "cosmo-rea-mon_atmos"
13
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/cosmo-rea-mon_land/stac"
- type "application/json"
- title "cosmo-rea-mon_land"
14
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/cosmo-rea-mon_landIce/stac"
- type "application/json"
- title "cosmo-rea-mon_landIce"
15
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/nextgems.IFS_2.8-FESOM_5-production.2D_hourly_healpix2048/stac"
- type "application/json"
- title "nextgems.IFS_2.8-FESOM_5-production.2D_hourly_healpix2048"
16
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/nextgems.IFS_2.8-FESOM_5-production.3D_hourly_healpix2048/stac"
- type "application/json"
- title "nextgems.IFS_2.8-FESOM_5-production.3D_hourly_healpix2048"
17
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/nextgems.IFS_2.8-FESOM_5-production.3D_hourly_healpix2048_snow/stac"
- type "application/json"
- title "nextgems.IFS_2.8-FESOM_5-production.3D_hourly_healpix2048_snow"
18
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/nextgems.IFS_2.8-FESOM_5-production.2D_daily_healpix512_ocean/stac"
- type "application/json"
- title "nextgems.IFS_2.8-FESOM_5-production.2D_daily_healpix512_ocean"
19
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/nextgems.IFS_2.8-FESOM_5-production.3D_daily_healpix512_ocean/stac"
- type "application/json"
- title "nextgems.IFS_2.8-FESOM_5-production.3D_daily_healpix512_ocean"
20
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/nextgems.IFS_2.8-FESOM_5-production.2D_monthly_healpix2048/stac"
- type "application/json"
- title "nextgems.IFS_2.8-FESOM_5-production.2D_monthly_healpix2048"
21
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/nextgems.IFS_2.8-FESOM_5-production.2D_hourly_healpix128/stac"
- type "application/json"
- title "nextgems.IFS_2.8-FESOM_5-production.2D_hourly_healpix128"
22
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/nextgems.IFS_2.8-FESOM_5-production.3D_hourly_healpix128/stac"
- type "application/json"
- title "nextgems.IFS_2.8-FESOM_5-production.3D_hourly_healpix128"
23
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/nextgems.IFS_2.8-FESOM_5-production.3D_hourly_healpix128_snow/stac"
- type "application/json"
- title "nextgems.IFS_2.8-FESOM_5-production.3D_hourly_healpix128_snow"
24
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/nextgems.IFS_2.8-FESOM_5-production.2D_daily_healpix128_ocean/stac"
- type "application/json"
- title "nextgems.IFS_2.8-FESOM_5-production.2D_daily_healpix128_ocean"
25
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/nextgems.IFS_2.8-FESOM_5-production.3D_daily_healpix128_ocean/stac"
- type "application/json"
- title "nextgems.IFS_2.8-FESOM_5-production.3D_daily_healpix128_ocean"
26
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/nextgems.IFS_2.8-FESOM_5-production.2D_monthly_healpix128/stac"
- type "application/json"
- title "nextgems.IFS_2.8-FESOM_5-production.2D_monthly_healpix128"
27
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/nextgems.IFS_2.8-FESOM_5-production.3D_hourly_0.25deg/stac"
- type "application/json"
- title "nextgems.IFS_2.8-FESOM_5-production.3D_hourly_0.25deg"
28
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/nextgems.IFS_2.8-FESOM_5-production.2D_hourly_0.25deg/stac"
- type "application/json"
- title "nextgems.IFS_2.8-FESOM_5-production.2D_hourly_0.25deg"
29
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/nextgems.IFS_2.8-FESOM_5-production.3D_hourly_0.25deg_snow/stac"
- type "application/json"
- title "nextgems.IFS_2.8-FESOM_5-production.3D_hourly_0.25deg_snow"
30
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/nextgems.IFS_2.8-FESOM_5-production.2D_monthly_0.25deg/stac"
- type "application/json"
- title "nextgems.IFS_2.8-FESOM_5-production.2D_monthly_0.25deg"
31
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/nextgems.IFS_2.8-FESOM_5-production-deep-off.2D_hourly_healpix2048/stac"
- type "application/json"
- title "nextgems.IFS_2.8-FESOM_5-production-deep-off.2D_hourly_healpix2048"
32
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/nextgems.IFS_2.8-FESOM_5-production-deep-off.3D_hourly_healpix2048/stac"
- type "application/json"
- title "nextgems.IFS_2.8-FESOM_5-production-deep-off.3D_hourly_healpix2048"
33
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/nextgems.IFS_2.8-FESOM_5-production-deep-off.3D_hourly_healpix2048_snow/stac"
- type "application/json"
- title "nextgems.IFS_2.8-FESOM_5-production-deep-off.3D_hourly_healpix2048_snow"
34
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/nextgems.IFS_2.8-FESOM_5-production-deep-off.2D_daily_healpix512_ocean/stac"
- type "application/json"
- title "nextgems.IFS_2.8-FESOM_5-production-deep-off.2D_daily_healpix512_ocean"
35
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/nextgems.IFS_2.8-FESOM_5-production-deep-off.3D_daily_healpix512_ocean/stac"
- type "application/json"
- title "nextgems.IFS_2.8-FESOM_5-production-deep-off.3D_daily_healpix512_ocean"
36
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/nextgems.IFS_2.8-FESOM_5-production-deep-off.2D_monthly_healpix2048/stac"
- type "application/json"
- title "nextgems.IFS_2.8-FESOM_5-production-deep-off.2D_monthly_healpix2048"
37
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/nextgems.IFS_2.8-FESOM_5-production-deep-off.2D_hourly_healpix128/stac"
- type "application/json"
- title "nextgems.IFS_2.8-FESOM_5-production-deep-off.2D_hourly_healpix128"
38
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/nextgems.IFS_2.8-FESOM_5-production-deep-off.3D_hourly_healpix128/stac"
- type "application/json"
- title "nextgems.IFS_2.8-FESOM_5-production-deep-off.3D_hourly_healpix128"
39
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/nextgems.IFS_2.8-FESOM_5-production-deep-off.3D_hourly_healpix128_snow/stac"
- type "application/json"
- title "nextgems.IFS_2.8-FESOM_5-production-deep-off.3D_hourly_healpix128_snow"
40
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/nextgems.IFS_2.8-FESOM_5-production-deep-off.2D_daily_healpix128_ocean/stac"
- type "application/json"
- title "nextgems.IFS_2.8-FESOM_5-production-deep-off.2D_daily_healpix128_ocean"
41
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/nextgems.IFS_2.8-FESOM_5-production-deep-off.3D_daily_healpix128_ocean/stac"
- type "application/json"
- title "nextgems.IFS_2.8-FESOM_5-production-deep-off.3D_daily_healpix128_ocean"
42
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/nextgems.IFS_2.8-FESOM_5-production-deep-off.2D_monthly_healpix128/stac"
- type "application/json"
- title "nextgems.IFS_2.8-FESOM_5-production-deep-off.2D_monthly_healpix128"
43
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/nextgems.IFS_2.8-FESOM_5-production-deep-off.3D_hourly_0.25deg/stac"
- type "application/json"
- title "nextgems.IFS_2.8-FESOM_5-production-deep-off.3D_hourly_0.25deg"
44
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/nextgems.IFS_2.8-FESOM_5-production-deep-off.2D_hourly_0.25deg/stac"
- type "application/json"
- title "nextgems.IFS_2.8-FESOM_5-production-deep-off.2D_hourly_0.25deg"
45
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/nextgems.IFS_2.8-FESOM_5-production-deep-off.3D_hourly_0.25deg_snow/stac"
- type "application/json"
- title "nextgems.IFS_2.8-FESOM_5-production-deep-off.3D_hourly_0.25deg_snow"
46
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/nextgems.IFS_2.8-FESOM_5-production-deep-off.2D_monthly_0.25deg/stac"
- type "application/json"
- title "nextgems.IFS_2.8-FESOM_5-production-deep-off.2D_monthly_0.25deg"
47
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/orcestra.ICON-LAM.s2024-08-10_2d_PT10M_12/stac"
- type "application/json"
- title "orcestra.ICON-LAM.s2024-08-10_2d_PT10M_12"
48
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/orcestra.ICON-LAM.s2024-08-10_3d_PT4H_12/stac"
- type "application/json"
- title "orcestra.ICON-LAM.s2024-08-10_3d_PT4H_12"
49
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/orcestra.ICON-LAM.s2024-08-11_2d_PT10M_12/stac"
- type "application/json"
- title "orcestra.ICON-LAM.s2024-08-11_2d_PT10M_12"
50
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/orcestra.ICON-LAM.s2024-08-11_3d_PT4H_12/stac"
- type "application/json"
- title "orcestra.ICON-LAM.s2024-08-11_3d_PT4H_12"
51
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/orcestra.ICON-LAM.s2024-08-12_2d_PT10M_12/stac"
- type "application/json"
- title "orcestra.ICON-LAM.s2024-08-12_2d_PT10M_12"
52
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/orcestra.ICON-LAM.s2024-08-12_3d_PT4H_12/stac"
- type "application/json"
- title "orcestra.ICON-LAM.s2024-08-12_3d_PT4H_12"
53
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/orcestra.ICON-LAM.s2024-08-13_2d_PT10M_12/stac"
- type "application/json"
- title "orcestra.ICON-LAM.s2024-08-13_2d_PT10M_12"
54
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/orcestra.ICON-LAM.s2024-08-13_3d_PT4H_12/stac"
- type "application/json"
- title "orcestra.ICON-LAM.s2024-08-13_3d_PT4H_12"
55
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/orcestra.ICON-LAM.s2024-08-14_2d_PT10M_12/stac"
- type "application/json"
- title "orcestra.ICON-LAM.s2024-08-14_2d_PT10M_12"
56
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/orcestra.ICON-LAM.s2024-08-14_3d_PT4H_12/stac"
- type "application/json"
- title "orcestra.ICON-LAM.s2024-08-14_3d_PT4H_12"
57
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/orcestra.ICON-LAM.s2024-08-15_2d_PT10M_12/stac"
- type "application/json"
- title "orcestra.ICON-LAM.s2024-08-15_2d_PT10M_12"
58
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/orcestra.ICON-LAM.s2024-08-15_3d_PT4H_12/stac"
- type "application/json"
- title "orcestra.ICON-LAM.s2024-08-15_3d_PT4H_12"
59
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/orcestra.ICON-LAM.s2024-08-16_2d_PT10M_12/stac"
- type "application/json"
- title "orcestra.ICON-LAM.s2024-08-16_2d_PT10M_12"
60
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/orcestra.ICON-LAM.s2024-08-16_3d_PT4H_12/stac"
- type "application/json"
- title "orcestra.ICON-LAM.s2024-08-16_3d_PT4H_12"
61
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/orcestra.ICON-LAM.s2024-08-17_2d_PT10M_12/stac"
- type "application/json"
- title "orcestra.ICON-LAM.s2024-08-17_2d_PT10M_12"
62
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/orcestra.ICON-LAM.s2024-08-17_3d_PT4H_12/stac"
- type "application/json"
- title "orcestra.ICON-LAM.s2024-08-17_3d_PT4H_12"
63
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/orcestra.ICON-LAM.s2024-08-18_2d_PT10M_12/stac"
- type "application/json"
- title "orcestra.ICON-LAM.s2024-08-18_2d_PT10M_12"
64
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/orcestra.ICON-LAM.s2024-08-18_3d_PT4H_12/stac"
- type "application/json"
- title "orcestra.ICON-LAM.s2024-08-18_3d_PT4H_12"
65
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/orcestra.ICON-LAM.s2024-08-19_2d_PT10M_12/stac"
- type "application/json"
- title "orcestra.ICON-LAM.s2024-08-19_2d_PT10M_12"
66
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/orcestra.ICON-LAM.s2024-08-19_3d_PT4H_12/stac"
- type "application/json"
- title "orcestra.ICON-LAM.s2024-08-19_3d_PT4H_12"
67
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/orcestra.ICON-LAM.s2024-08-20_2d_PT10M_12/stac"
- type "application/json"
- title "orcestra.ICON-LAM.s2024-08-20_2d_PT10M_12"
68
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/orcestra.ICON-LAM.s2024-08-20_3d_PT4H_12/stac"
- type "application/json"
- title "orcestra.ICON-LAM.s2024-08-20_3d_PT4H_12"
69
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/orcestra.ICON-LAM.s2024-08-21_2d_PT10M_12/stac"
- type "application/json"
- title "orcestra.ICON-LAM.s2024-08-21_2d_PT10M_12"
70
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/orcestra.ICON-LAM.s2024-08-21_3d_PT4H_12/stac"
- type "application/json"
- title "orcestra.ICON-LAM.s2024-08-21_3d_PT4H_12"
71
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/orcestra.ICON-LAM.s2024-08-22_2d_PT10M_12/stac"
- type "application/json"
- title "orcestra.ICON-LAM.s2024-08-22_2d_PT10M_12"
72
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/orcestra.ICON-LAM.s2024-08-22_3d_PT4H_12/stac"
- type "application/json"
- title "orcestra.ICON-LAM.s2024-08-22_3d_PT4H_12"
73
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/orcestra.ICON-LAM.s2024-08-23_2d_PT10M_12/stac"
- type "application/json"
- title "orcestra.ICON-LAM.s2024-08-23_2d_PT10M_12"
74
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/orcestra.ICON-LAM.s2024-08-23_3d_PT4H_12/stac"
- type "application/json"
- title "orcestra.ICON-LAM.s2024-08-23_3d_PT4H_12"
75
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/orcestra.ICON-LAM.s2024-08-24_2d_PT10M_12/stac"
- type "application/json"
- title "orcestra.ICON-LAM.s2024-08-24_2d_PT10M_12"
76
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/orcestra.ICON-LAM.s2024-08-24_3d_PT4H_12/stac"
- type "application/json"
- title "orcestra.ICON-LAM.s2024-08-24_3d_PT4H_12"
77
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/orcestra.ICON-LAM.s2024-08-25_2d_PT10M_12/stac"
- type "application/json"
- title "orcestra.ICON-LAM.s2024-08-25_2d_PT10M_12"
78
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/orcestra.ICON-LAM.s2024-08-25_3d_PT4H_12/stac"
- type "application/json"
- title "orcestra.ICON-LAM.s2024-08-25_3d_PT4H_12"
79
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/orcestra.ICON-LAM.s2024-08-26_2d_PT10M_12/stac"
- type "application/json"
- title "orcestra.ICON-LAM.s2024-08-26_2d_PT10M_12"
80
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/orcestra.ICON-LAM.s2024-08-26_3d_PT4H_12/stac"
- type "application/json"
- title "orcestra.ICON-LAM.s2024-08-26_3d_PT4H_12"
81
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/orcestra.ICON-LAM.s2024-08-27_2d_PT10M_12/stac"
- type "application/json"
- title "orcestra.ICON-LAM.s2024-08-27_2d_PT10M_12"
82
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/orcestra.ICON-LAM.s2024-08-27_3d_PT4H_12/stac"
- type "application/json"
- title "orcestra.ICON-LAM.s2024-08-27_3d_PT4H_12"
83
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/orcestra.ICON-LAM.s2024-08-28_2d_PT10M_12/stac"
- type "application/json"
- title "orcestra.ICON-LAM.s2024-08-28_2d_PT10M_12"
84
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/orcestra.ICON-LAM.s2024-08-28_3d_PT4H_12/stac"
- type "application/json"
- title "orcestra.ICON-LAM.s2024-08-28_3d_PT4H_12"
85
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/orcestra.ICON-LAM.s2024-08-29_2d_PT10M_12/stac"
- type "application/json"
- title "orcestra.ICON-LAM.s2024-08-29_2d_PT10M_12"
86
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/orcestra.ICON-LAM.s2024-08-29_3d_PT4H_12/stac"
- type "application/json"
- title "orcestra.ICON-LAM.s2024-08-29_3d_PT4H_12"
87
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/orcestra.ICON-LAM.s2024-08-30_2d_PT10M_12/stac"
- type "application/json"
- title "orcestra.ICON-LAM.s2024-08-30_2d_PT10M_12"
88
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/orcestra.ICON-LAM.s2024-08-30_3d_PT4H_12/stac"
- type "application/json"
- title "orcestra.ICON-LAM.s2024-08-30_3d_PT4H_12"
89
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/orcestra.ICON-LAM.s2024-08-31_2d_PT10M_12/stac"
- type "application/json"
- title "orcestra.ICON-LAM.s2024-08-31_2d_PT10M_12"
90
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/orcestra.ICON-LAM.s2024-08-31_3d_PT4H_12/stac"
- type "application/json"
- title "orcestra.ICON-LAM.s2024-08-31_3d_PT4H_12"
91
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/orcestra.ICON-LAM.s2024-09-01_2d_PT10M_12/stac"
- type "application/json"
- title "orcestra.ICON-LAM.s2024-09-01_2d_PT10M_12"
92
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/orcestra.ICON-LAM.s2024-09-01_3d_PT4H_12/stac"
- type "application/json"
- title "orcestra.ICON-LAM.s2024-09-01_3d_PT4H_12"
93
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/orcestra.ICON-LAM.s2024-09-02_2d_PT10M_12/stac"
- type "application/json"
- title "orcestra.ICON-LAM.s2024-09-02_2d_PT10M_12"
94
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/orcestra.ICON-LAM.s2024-09-02_3d_PT4H_12/stac"
- type "application/json"
- title "orcestra.ICON-LAM.s2024-09-02_3d_PT4H_12"
95
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/orcestra.ICON-LAM.s2024-09-03_2d_PT10M_12/stac"
- type "application/json"
- title "orcestra.ICON-LAM.s2024-09-03_2d_PT10M_12"
96
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/orcestra.ICON-LAM.s2024-09-03_3d_PT4H_12/stac"
- type "application/json"
- title "orcestra.ICON-LAM.s2024-09-03_3d_PT4H_12"
97
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/orcestra.ICON-LAM.s2024-09-04_2d_PT10M_12/stac"
- type "application/json"
- title "orcestra.ICON-LAM.s2024-09-04_2d_PT10M_12"
98
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/orcestra.ICON-LAM.s2024-09-04_3d_PT4H_12/stac"
- type "application/json"
- title "orcestra.ICON-LAM.s2024-09-04_3d_PT4H_12"
99
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/orcestra.ICON-LAM.s2024-09-05_2d_PT10M_12/stac"
- type "application/json"
- title "orcestra.ICON-LAM.s2024-09-05_2d_PT10M_12"
100
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/orcestra.ICON-LAM.s2024-09-05_3d_PT4H_12/stac"
- type "application/json"
- title "orcestra.ICON-LAM.s2024-09-05_3d_PT4H_12"
101
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/orcestra.ICON-LAM.s2024-09-06_2d_PT10M_12/stac"
- type "application/json"
- title "orcestra.ICON-LAM.s2024-09-06_2d_PT10M_12"
102
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/orcestra.ICON-LAM.s2024-09-06_3d_PT4H_12/stac"
- type "application/json"
- title "orcestra.ICON-LAM.s2024-09-06_3d_PT4H_12"
103
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/orcestra.ICON-LAM.s2024-09-07_2d_PT10M_12/stac"
- type "application/json"
- title "orcestra.ICON-LAM.s2024-09-07_2d_PT10M_12"
104
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/orcestra.ICON-LAM.s2024-09-07_3d_PT4H_12/stac"
- type "application/json"
- title "orcestra.ICON-LAM.s2024-09-07_3d_PT4H_12"
105
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/orcestra.ICON-LAM.s2024-09-08_2d_PT10M_12/stac"
- type "application/json"
- title "orcestra.ICON-LAM.s2024-09-08_2d_PT10M_12"
106
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/orcestra.ICON-LAM.s2024-09-08_3d_PT4H_12/stac"
- type "application/json"
- title "orcestra.ICON-LAM.s2024-09-08_3d_PT4H_12"
107
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/orcestra.ICON-LAM.s2024-09-09_2d_PT10M_12/stac"
- type "application/json"
- title "orcestra.ICON-LAM.s2024-09-09_2d_PT10M_12"
108
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/orcestra.ICON-LAM.s2024-09-09_3d_PT4H_12/stac"
- type "application/json"
- title "orcestra.ICON-LAM.s2024-09-09_3d_PT4H_12"
109
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/orcestra.ICON-LAM.s2024-09-10_2d_PT10M_12/stac"
- type "application/json"
- title "orcestra.ICON-LAM.s2024-09-10_2d_PT10M_12"
110
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/orcestra.ICON-LAM.s2024-09-10_3d_PT4H_12/stac"
- type "application/json"
- title "orcestra.ICON-LAM.s2024-09-10_3d_PT4H_12"
111
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/orcestra.ICON-LAM.s2024-09-11_2d_PT10M_12/stac"
- type "application/json"
- title "orcestra.ICON-LAM.s2024-09-11_2d_PT10M_12"
112
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/orcestra.ICON-LAM.s2024-09-11_3d_PT4H_12/stac"
- type "application/json"
- title "orcestra.ICON-LAM.s2024-09-11_3d_PT4H_12"
113
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/orcestra.ICON-LAM.s2024-09-12_2d_PT10M_12/stac"
- type "application/json"
- title "orcestra.ICON-LAM.s2024-09-12_2d_PT10M_12"
114
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/orcestra.ICON-LAM.s2024-09-12_3d_PT4H_12/stac"
- type "application/json"
- title "orcestra.ICON-LAM.s2024-09-12_3d_PT4H_12"
115
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/orcestra.ICON-LAM.s2024-09-13_2d_PT10M_12/stac"
- type "application/json"
- title "orcestra.ICON-LAM.s2024-09-13_2d_PT10M_12"
116
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/orcestra.ICON-LAM.s2024-09-13_3d_PT4H_12/stac"
- type "application/json"
- title "orcestra.ICON-LAM.s2024-09-13_3d_PT4H_12"
117
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/orcestra.ICON-LAM.s2024-09-14_2d_PT10M_12/stac"
- type "application/json"
- title "orcestra.ICON-LAM.s2024-09-14_2d_PT10M_12"
118
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/orcestra.ICON-LAM.s2024-09-14_3d_PT4H_12/stac"
- type "application/json"
- title "orcestra.ICON-LAM.s2024-09-14_3d_PT4H_12"
119
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/orcestra.ICON-LAM.s2024-09-15_2d_PT10M_12/stac"
- type "application/json"
- title "orcestra.ICON-LAM.s2024-09-15_2d_PT10M_12"
120
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/orcestra.ICON-LAM.s2024-09-15_3d_PT4H_12/stac"
- type "application/json"
- title "orcestra.ICON-LAM.s2024-09-15_3d_PT4H_12"
121
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/orcestra.ICON-LAM.s2024-09-16_2d_PT10M_12/stac"
- type "application/json"
- title "orcestra.ICON-LAM.s2024-09-16_2d_PT10M_12"
122
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/orcestra.ICON-LAM.s2024-09-16_3d_PT4H_12/stac"
- type "application/json"
- title "orcestra.ICON-LAM.s2024-09-16_3d_PT4H_12"
123
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/orcestra.ICON-LAM.s2024-09-17_2d_PT10M_12/stac"
- type "application/json"
- title "orcestra.ICON-LAM.s2024-09-17_2d_PT10M_12"
124
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/orcestra.ICON-LAM.s2024-09-17_3d_PT4H_12/stac"
- type "application/json"
- title "orcestra.ICON-LAM.s2024-09-17_3d_PT4H_12"
125
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/orcestra.ICON-LAM.s2024-09-18_2d_PT10M_12/stac"
- type "application/json"
- title "orcestra.ICON-LAM.s2024-09-18_2d_PT10M_12"
126
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/orcestra.ICON-LAM.s2024-09-18_3d_PT4H_12/stac"
- type "application/json"
- title "orcestra.ICON-LAM.s2024-09-18_3d_PT4H_12"
127
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/orcestra.ICON-LAM.s2024-09-19_2d_PT10M_12/stac"
- type "application/json"
- title "orcestra.ICON-LAM.s2024-09-19_2d_PT10M_12"
128
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/orcestra.ICON-LAM.s2024-09-19_3d_PT4H_12/stac"
- type "application/json"
- title "orcestra.ICON-LAM.s2024-09-19_3d_PT4H_12"
129
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/orcestra.ICON-LAM.s2024-09-20_2d_PT10M_12/stac"
- type "application/json"
- title "orcestra.ICON-LAM.s2024-09-20_2d_PT10M_12"
130
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/orcestra.ICON-LAM.s2024-09-20_3d_PT4H_12/stac"
- type "application/json"
- title "orcestra.ICON-LAM.s2024-09-20_3d_PT4H_12"
131
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/orcestra.ICON-LAM.s2024-09-21_2d_PT10M_12/stac"
- type "application/json"
- title "orcestra.ICON-LAM.s2024-09-21_2d_PT10M_12"
132
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/orcestra.ICON-LAM.s2024-09-21_3d_PT4H_12/stac"
- type "application/json"
- title "orcestra.ICON-LAM.s2024-09-21_3d_PT4H_12"
133
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/orcestra.ICON-LAM.s2024-09-22_2d_PT10M_12/stac"
- type "application/json"
- title "orcestra.ICON-LAM.s2024-09-22_2d_PT10M_12"
134
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/orcestra.ICON-LAM.s2024-09-22_3d_PT4H_12/stac"
- type "application/json"
- title "orcestra.ICON-LAM.s2024-09-22_3d_PT4H_12"
135
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/orcestra.ICON-LAM.s2024-09-23_2d_PT10M_12/stac"
- type "application/json"
- title "orcestra.ICON-LAM.s2024-09-23_2d_PT10M_12"
136
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/orcestra.ICON-LAM.s2024-09-23_3d_PT4H_12/stac"
- type "application/json"
- title "orcestra.ICON-LAM.s2024-09-23_3d_PT4H_12"
137
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/orcestra.ICON-LAM.s2024-09-24_2d_PT10M_12/stac"
- type "application/json"
- title "orcestra.ICON-LAM.s2024-09-24_2d_PT10M_12"
138
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/orcestra.ICON-LAM.s2024-09-24_3d_PT4H_12/stac"
- type "application/json"
- title "orcestra.ICON-LAM.s2024-09-24_3d_PT4H_12"
139
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/orcestra.ICON-LAM.s2024-09-25_2d_PT10M_12/stac"
- type "application/json"
- title "orcestra.ICON-LAM.s2024-09-25_2d_PT10M_12"
140
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/orcestra.ICON-LAM.s2024-09-25_3d_PT4H_12/stac"
- type "application/json"
- title "orcestra.ICON-LAM.s2024-09-25_3d_PT4H_12"
141
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/orcestra.ICON-LAM.s2024-09-26_2d_PT10M_12/stac"
- type "application/json"
- title "orcestra.ICON-LAM.s2024-09-26_2d_PT10M_12"
142
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/orcestra.ICON-LAM.s2024-09-26_3d_PT4H_12/stac"
- type "application/json"
- title "orcestra.ICON-LAM.s2024-09-26_3d_PT4H_12"
143
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/orcestra.ICON-LAM.s2024-09-27_2d_PT10M_12/stac"
- type "application/json"
- title "orcestra.ICON-LAM.s2024-09-27_2d_PT10M_12"
144
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/orcestra.ICON-LAM.s2024-09-27_3d_PT4H_12/stac"
- type "application/json"
- title "orcestra.ICON-LAM.s2024-09-27_3d_PT4H_12"
145
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/orcestra.ICON-LAM.s2024-09-28_2d_PT10M_12/stac"
- type "application/json"
- title "orcestra.ICON-LAM.s2024-09-28_2d_PT10M_12"
146
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/orcestra.ICON-LAM.s2024-09-28_3d_PT4H_12/stac"
- type "application/json"
- title "orcestra.ICON-LAM.s2024-09-28_3d_PT4H_12"
147
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/orcestra.ICON-LAM.s2024-09-29_2d_PT10M_12/stac"
- type "application/json"
- title "orcestra.ICON-LAM.s2024-09-29_2d_PT10M_12"
148
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/orcestra.ICON-LAM.s2024-09-29_3d_PT4H_12/stac"
- type "application/json"
- title "orcestra.ICON-LAM.s2024-09-29_3d_PT4H_12"
149
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/era5-dkrz.pressure-level_analysis_daily/stac"
- type "application/json"
- title "era5-dkrz.pressure-level_analysis_daily"
150
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/era5-dkrz.pressure-level_analysis_monthly/stac"
- type "application/json"
- title "era5-dkrz.pressure-level_analysis_monthly"
151
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/era5-dkrz.surface_analysis_daily/stac"
- type "application/json"
- title "era5-dkrz.surface_analysis_daily"
152
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/era5-dkrz.surface_analysis_hourly/stac"
- type "application/json"
- title "era5-dkrz.surface_analysis_hourly"
153
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/era5-dkrz.surface_analysis_monthly/stac"
- type "application/json"
- title "era5-dkrz.surface_analysis_monthly"
154
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/era5-dkrz.surface_forecast_hourly/stac"
- type "application/json"
- title "era5-dkrz.surface_forecast_hourly"
155
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/era5-dkrz.surface_forecast_monthly/stac"
- type "application/json"
- title "era5-dkrz.surface_forecast_monthly"
156
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/dyamondEU.icon_d3hp003/stac"
- type "application/json"
- title "dyamondEU.icon_d3hp003"
157
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/dyamondEU.icon_d3hp003.PT1H_mean_10/stac"
- type "application/json"
- title "dyamondEU.icon_d3hp003.PT1H_mean_10"
158
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/dyamondEU.icon_d3hp003.PT1H_mean_11/stac"
- type "application/json"
- title "dyamondEU.icon_d3hp003.PT1H_mean_11"
159
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/dyamondEU.icon_d3hp003.PT1H_inst_10/stac"
- type "application/json"
- title "dyamondEU.icon_d3hp003.PT1H_inst_10"
160
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/dyamondEU.icon_d3hp003.PT1H_inst_11/stac"
- type "application/json"
- title "dyamondEU.icon_d3hp003.PT1H_inst_11"
161
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/dyamondEU.icon_d3hp003.PT3H_mean_10/stac"
- type "application/json"
- title "dyamondEU.icon_d3hp003.PT3H_mean_10"
162
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/dyamondEU.icon_d3hp003.PT3H_mean_11/stac"
- type "application/json"
- title "dyamondEU.icon_d3hp003.PT3H_mean_11"
163
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/dyamondEU.icon_d3hp003.PT3H_inst_10/stac"
- type "application/json"
- title "dyamondEU.icon_d3hp003.PT3H_inst_10"
164
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/dyamondEU.icon_d3hp003.PT3H_inst_11/stac"
- type "application/json"
- title "dyamondEU.icon_d3hp003.PT3H_inst_11"
165
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/dyamondEU.icon_d3hp003.PT6H_mean_10/stac"
- type "application/json"
- title "dyamondEU.icon_d3hp003.PT6H_mean_10"
166
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/dyamondEU.icon_d3hp003.PT6H_mean_11/stac"
- type "application/json"
- title "dyamondEU.icon_d3hp003.PT6H_mean_11"
167
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/dyamondEU.icon_d3hp003.PT6H_inst_10/stac"
- type "application/json"
- title "dyamondEU.icon_d3hp003.PT6H_inst_10"
168
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/dyamondEU.icon_d3hp003.PT6H_inst_11/stac"
- type "application/json"
- title "dyamondEU.icon_d3hp003.PT6H_inst_11"
169
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/dyamondEU.icon_d3hp003.P1D_mean_10/stac"
- type "application/json"
- title "dyamondEU.icon_d3hp003.P1D_mean_10"
170
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/dyamondEU.icon_d3hp003.P1D_mean_11/stac"
- type "application/json"
- title "dyamondEU.icon_d3hp003.P1D_mean_11"
171
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/dyamondEU.icon_d3hp003.P1D_inst_10/stac"
- type "application/json"
- title "dyamondEU.icon_d3hp003.P1D_inst_10"
172
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/dyamondEU.icon_d3hp003.P1D_inst_11/stac"
- type "application/json"
- title "dyamondEU.icon_d3hp003.P1D_inst_11"
173
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/cordex-cmip6.DD.MEU-3.CLMcom-Hereon.ERA5.evaluation.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.mon/stac"
- type "application/json"
- title "cordex-cmip6.DD.MEU-3.CLMcom-Hereon.ERA5.evaluation.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.mon"
174
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/cordex-cmip6.DD.MEU-3.CLMcom-Hereon.ERA5.evaluation.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.day/stac"
- type "application/json"
- title "cordex-cmip6.DD.MEU-3.CLMcom-Hereon.ERA5.evaluation.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.day"
175
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/cordex-cmip6.DD.MEU-3.CLMcom-Hereon.ERA5.evaluation.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.fx/stac"
- type "application/json"
- title "cordex-cmip6.DD.MEU-3.CLMcom-Hereon.ERA5.evaluation.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.fx"
176
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/cordex-cmip6.DD.MEU-3.CLMcom-Hereon.ERA5.evaluation.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.1hr/stac"
- type "application/json"
- title "cordex-cmip6.DD.MEU-3.CLMcom-Hereon.ERA5.evaluation.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.1hr"
177
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/cordex-cmip6.DD.MEU-3.CLMcom-Hereon.ERA5.evaluation.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.6hr/stac"
- type "application/json"
- title "cordex-cmip6.DD.MEU-3.CLMcom-Hereon.ERA5.evaluation.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.6hr"
178
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/cordex-cmip6.DD.MEU-3.CLMcom-Hereon.EC-Earth3-Veg.historical.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.mon/stac"
- type "application/json"
- title "cordex-cmip6.DD.MEU-3.CLMcom-Hereon.EC-Earth3-Veg.historical.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.mon"
179
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/cordex-cmip6.DD.MEU-3.CLMcom-Hereon.EC-Earth3-Veg.historical.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.day/stac"
- type "application/json"
- title "cordex-cmip6.DD.MEU-3.CLMcom-Hereon.EC-Earth3-Veg.historical.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.day"
180
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/cordex-cmip6.DD.MEU-3.CLMcom-Hereon.EC-Earth3-Veg.historical.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.fx/stac"
- type "application/json"
- title "cordex-cmip6.DD.MEU-3.CLMcom-Hereon.EC-Earth3-Veg.historical.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.fx"
181
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/cordex-cmip6.DD.MEU-3.CLMcom-Hereon.EC-Earth3-Veg.historical.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.1hr/stac"
- type "application/json"
- title "cordex-cmip6.DD.MEU-3.CLMcom-Hereon.EC-Earth3-Veg.historical.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.1hr"
182
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/cordex-cmip6.DD.MEU-3.CLMcom-Hereon.EC-Earth3-Veg.historical.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.6hr/stac"
- type "application/json"
- title "cordex-cmip6.DD.MEU-3.CLMcom-Hereon.EC-Earth3-Veg.historical.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.6hr"
183
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/cordex-cmip6.DD.EUR-12.CLMcom-BTU.CNRM-ESM2-1.historical.r1i1p1f2.ICON-CLM-202407-1-1.v1-r1.mon/stac"
- type "application/json"
- title "cordex-cmip6.DD.EUR-12.CLMcom-BTU.CNRM-ESM2-1.historical.r1i1p1f2.ICON-CLM-202407-1-1.v1-r1.mon"
184
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/cordex-cmip6.DD.EUR-12.CLMcom-BTU.CNRM-ESM2-1.historical.r1i1p1f2.ICON-CLM-202407-1-1.v1-r1.6hrPt/stac"
- type "application/json"
- title "cordex-cmip6.DD.EUR-12.CLMcom-BTU.CNRM-ESM2-1.historical.r1i1p1f2.ICON-CLM-202407-1-1.v1-r1.6hrPt"
185
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/cordex-cmip6.DD.EUR-12.CLMcom-BTU.CNRM-ESM2-1.historical.r1i1p1f2.ICON-CLM-202407-1-1.v1-r1.day/stac"
- type "application/json"
- title "cordex-cmip6.DD.EUR-12.CLMcom-BTU.CNRM-ESM2-1.historical.r1i1p1f2.ICON-CLM-202407-1-1.v1-r1.day"
186
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/cordex-cmip6.DD.EUR-12.CLMcom-BTU.CNRM-ESM2-1.historical.r1i1p1f2.ICON-CLM-202407-1-1.v1-r1.1hrPt/stac"
- type "application/json"
- title "cordex-cmip6.DD.EUR-12.CLMcom-BTU.CNRM-ESM2-1.historical.r1i1p1f2.ICON-CLM-202407-1-1.v1-r1.1hrPt"
187
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/cordex-cmip6.DD.EUR-12.CLMcom-BTU.CNRM-ESM2-1.historical.r1i1p1f2.ICON-CLM-202407-1-1.v1-r1.fx/stac"
- type "application/json"
- title "cordex-cmip6.DD.EUR-12.CLMcom-BTU.CNRM-ESM2-1.historical.r1i1p1f2.ICON-CLM-202407-1-1.v1-r1.fx"
188
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/cordex-cmip6.DD.EUR-12.CLMcom-BTU.CNRM-ESM2-1.historical.r1i1p1f2.ICON-CLM-202407-1-1.v1-r1.1hr/stac"
- type "application/json"
- title "cordex-cmip6.DD.EUR-12.CLMcom-BTU.CNRM-ESM2-1.historical.r1i1p1f2.ICON-CLM-202407-1-1.v1-r1.1hr"
189
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/cordex-cmip6.DD.EUR-12.CLMcom-BTU.CNRM-ESM2-1.historical.r1i1p1f2.ICON-CLM-202407-1-1.v1-r1.6hr/stac"
- type "application/json"
- title "cordex-cmip6.DD.EUR-12.CLMcom-BTU.CNRM-ESM2-1.historical.r1i1p1f2.ICON-CLM-202407-1-1.v1-r1.6hr"
190
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/cordex-cmip6.DD.EUR-12.CLMcom-BTU.CNRM-ESM2-1.ssp126.r1i1p1f2.ICON-CLM-202407-1-1.v1-r1.mon/stac"
- type "application/json"
- title "cordex-cmip6.DD.EUR-12.CLMcom-BTU.CNRM-ESM2-1.ssp126.r1i1p1f2.ICON-CLM-202407-1-1.v1-r1.mon"
191
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/cordex-cmip6.DD.EUR-12.CLMcom-BTU.CNRM-ESM2-1.ssp126.r1i1p1f2.ICON-CLM-202407-1-1.v1-r1.day/stac"
- type "application/json"
- title "cordex-cmip6.DD.EUR-12.CLMcom-BTU.CNRM-ESM2-1.ssp126.r1i1p1f2.ICON-CLM-202407-1-1.v1-r1.day"
192
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/cordex-cmip6.DD.EUR-12.CLMcom-BTU.CNRM-ESM2-1.ssp126.r1i1p1f2.ICON-CLM-202407-1-1.v1-r1.fx/stac"
- type "application/json"
- title "cordex-cmip6.DD.EUR-12.CLMcom-BTU.CNRM-ESM2-1.ssp126.r1i1p1f2.ICON-CLM-202407-1-1.v1-r1.fx"
193
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/cordex-cmip6.DD.EUR-12.CLMcom-BTU.CNRM-ESM2-1.ssp126.r1i1p1f2.ICON-CLM-202407-1-1.v1-r1.1hr/stac"
- type "application/json"
- title "cordex-cmip6.DD.EUR-12.CLMcom-BTU.CNRM-ESM2-1.ssp126.r1i1p1f2.ICON-CLM-202407-1-1.v1-r1.1hr"
194
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/cordex-cmip6.DD.EUR-12.CLMcom-BTU.CNRM-ESM2-1.ssp126.r1i1p1f2.ICON-CLM-202407-1-1.v1-r1.6hr/stac"
- type "application/json"
- title "cordex-cmip6.DD.EUR-12.CLMcom-BTU.CNRM-ESM2-1.ssp126.r1i1p1f2.ICON-CLM-202407-1-1.v1-r1.6hr"
195
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/cordex-cmip6.DD.EUR-12.CLMcom-BTU.CNRM-ESM2-1.ssp370.r1i1p1f2.ICON-CLM-202407-1-1.v1-r1.mon/stac"
- type "application/json"
- title "cordex-cmip6.DD.EUR-12.CLMcom-BTU.CNRM-ESM2-1.ssp370.r1i1p1f2.ICON-CLM-202407-1-1.v1-r1.mon"
196
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/cordex-cmip6.DD.EUR-12.CLMcom-BTU.CNRM-ESM2-1.ssp370.r1i1p1f2.ICON-CLM-202407-1-1.v1-r1.day/stac"
- type "application/json"
- title "cordex-cmip6.DD.EUR-12.CLMcom-BTU.CNRM-ESM2-1.ssp370.r1i1p1f2.ICON-CLM-202407-1-1.v1-r1.day"
197
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/cordex-cmip6.DD.EUR-12.CLMcom-BTU.CNRM-ESM2-1.ssp370.r1i1p1f2.ICON-CLM-202407-1-1.v1-r1.fx/stac"
- type "application/json"
- title "cordex-cmip6.DD.EUR-12.CLMcom-BTU.CNRM-ESM2-1.ssp370.r1i1p1f2.ICON-CLM-202407-1-1.v1-r1.fx"
198
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/cordex-cmip6.DD.EUR-12.CLMcom-BTU.CNRM-ESM2-1.ssp370.r1i1p1f2.ICON-CLM-202407-1-1.v1-r1.1hr/stac"
- type "application/json"
- title "cordex-cmip6.DD.EUR-12.CLMcom-BTU.CNRM-ESM2-1.ssp370.r1i1p1f2.ICON-CLM-202407-1-1.v1-r1.1hr"
199
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/cordex-cmip6.DD.EUR-12.CLMcom-BTU.CNRM-ESM2-1.ssp370.r1i1p1f2.ICON-CLM-202407-1-1.v1-r1.6hr/stac"
- type "application/json"
- title "cordex-cmip6.DD.EUR-12.CLMcom-BTU.CNRM-ESM2-1.ssp370.r1i1p1f2.ICON-CLM-202407-1-1.v1-r1.6hr"
200
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/cordex-cmip6.DD.EUR-12.CLMcom-GERICS.EC-Earth3-Veg.ssp126.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.mon/stac"
- type "application/json"
- title "cordex-cmip6.DD.EUR-12.CLMcom-GERICS.EC-Earth3-Veg.ssp126.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.mon"
201
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/cordex-cmip6.DD.EUR-12.CLMcom-GERICS.EC-Earth3-Veg.ssp126.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.day/stac"
- type "application/json"
- title "cordex-cmip6.DD.EUR-12.CLMcom-GERICS.EC-Earth3-Veg.ssp126.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.day"
202
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/cordex-cmip6.DD.EUR-12.CLMcom-GERICS.EC-Earth3-Veg.ssp126.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.fx/stac"
- type "application/json"
- title "cordex-cmip6.DD.EUR-12.CLMcom-GERICS.EC-Earth3-Veg.ssp126.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.fx"
203
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/cordex-cmip6.DD.EUR-12.CLMcom-GERICS.EC-Earth3-Veg.ssp126.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.1hr/stac"
- type "application/json"
- title "cordex-cmip6.DD.EUR-12.CLMcom-GERICS.EC-Earth3-Veg.ssp126.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.1hr"
204
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/cordex-cmip6.DD.EUR-12.CLMcom-GERICS.EC-Earth3-Veg.ssp126.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.6hr/stac"
- type "application/json"
- title "cordex-cmip6.DD.EUR-12.CLMcom-GERICS.EC-Earth3-Veg.ssp126.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.6hr"
205
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/cordex-cmip6.DD.EUR-12.CLMcom-GERICS.EC-Earth3-Veg.ssp370.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.mon/stac"
- type "application/json"
- title "cordex-cmip6.DD.EUR-12.CLMcom-GERICS.EC-Earth3-Veg.ssp370.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.mon"
206
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/cordex-cmip6.DD.EUR-12.CLMcom-GERICS.EC-Earth3-Veg.ssp370.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.day/stac"
- type "application/json"
- title "cordex-cmip6.DD.EUR-12.CLMcom-GERICS.EC-Earth3-Veg.ssp370.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.day"
207
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/cordex-cmip6.DD.EUR-12.CLMcom-GERICS.EC-Earth3-Veg.ssp370.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.fx/stac"
- type "application/json"
- title "cordex-cmip6.DD.EUR-12.CLMcom-GERICS.EC-Earth3-Veg.ssp370.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.fx"
208
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/cordex-cmip6.DD.EUR-12.CLMcom-GERICS.EC-Earth3-Veg.ssp370.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.1hr/stac"
- type "application/json"
- title "cordex-cmip6.DD.EUR-12.CLMcom-GERICS.EC-Earth3-Veg.ssp370.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.1hr"
209
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/cordex-cmip6.DD.EUR-12.CLMcom-GERICS.EC-Earth3-Veg.ssp370.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.6hr/stac"
- type "application/json"
- title "cordex-cmip6.DD.EUR-12.CLMcom-GERICS.EC-Earth3-Veg.ssp370.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.6hr"
210
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/cordex-cmip6.DD.EUR-12.CLMcom-Hereon.ERA5.evaluation.r1i1p1f1.ICON-CLM-202407-1-1.v1-r2.mon/stac"
- type "application/json"
- title "cordex-cmip6.DD.EUR-12.CLMcom-Hereon.ERA5.evaluation.r1i1p1f1.ICON-CLM-202407-1-1.v1-r2.mon"
211
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/cordex-cmip6.DD.EUR-12.CLMcom-Hereon.ERA5.evaluation.r1i1p1f1.ICON-CLM-202407-1-1.v1-r2.day/stac"
- type "application/json"
- title "cordex-cmip6.DD.EUR-12.CLMcom-Hereon.ERA5.evaluation.r1i1p1f1.ICON-CLM-202407-1-1.v1-r2.day"
212
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/cordex-cmip6.DD.EUR-12.CLMcom-Hereon.ERA5.evaluation.r1i1p1f1.ICON-CLM-202407-1-1.v1-r2.fx/stac"
- type "application/json"
- title "cordex-cmip6.DD.EUR-12.CLMcom-Hereon.ERA5.evaluation.r1i1p1f1.ICON-CLM-202407-1-1.v1-r2.fx"
213
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/cordex-cmip6.DD.EUR-12.CLMcom-Hereon.ERA5.evaluation.r1i1p1f1.ICON-CLM-202407-1-1.v1-r2.1hr/stac"
- type "application/json"
- title "cordex-cmip6.DD.EUR-12.CLMcom-Hereon.ERA5.evaluation.r1i1p1f1.ICON-CLM-202407-1-1.v1-r2.1hr"
214
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/cordex-cmip6.DD.EUR-12.CLMcom-Hereon.ERA5.evaluation.r1i1p1f1.ICON-CLM-202407-1-1.v1-r2.6hr/stac"
- type "application/json"
- title "cordex-cmip6.DD.EUR-12.CLMcom-Hereon.ERA5.evaluation.r1i1p1f1.ICON-CLM-202407-1-1.v1-r2.6hr"
215
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/cordex-cmip6.DD.EUR-12.CLMcom-Hereon.ERA5.evaluation.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.mon/stac"
- type "application/json"
- title "cordex-cmip6.DD.EUR-12.CLMcom-Hereon.ERA5.evaluation.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.mon"
216
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/cordex-cmip6.DD.EUR-12.CLMcom-Hereon.ERA5.evaluation.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.day/stac"
- type "application/json"
- title "cordex-cmip6.DD.EUR-12.CLMcom-Hereon.ERA5.evaluation.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.day"
217
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/cordex-cmip6.DD.EUR-12.CLMcom-Hereon.ERA5.evaluation.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.fx/stac"
- type "application/json"
- title "cordex-cmip6.DD.EUR-12.CLMcom-Hereon.ERA5.evaluation.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.fx"
218
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/cordex-cmip6.DD.EUR-12.CLMcom-Hereon.ERA5.evaluation.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.1hr/stac"
- type "application/json"
- title "cordex-cmip6.DD.EUR-12.CLMcom-Hereon.ERA5.evaluation.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.1hr"
219
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/cordex-cmip6.DD.EUR-12.CLMcom-Hereon.ERA5.evaluation.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.6hr/stac"
- type "application/json"
- title "cordex-cmip6.DD.EUR-12.CLMcom-Hereon.ERA5.evaluation.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.6hr"
220
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/cordex-cmip6.DD.EUR-12.CLMcom-Hereon.EC-Earth3-Veg.historical.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.mon/stac"
- type "application/json"
- title "cordex-cmip6.DD.EUR-12.CLMcom-Hereon.EC-Earth3-Veg.historical.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.mon"
221
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/cordex-cmip6.DD.EUR-12.CLMcom-Hereon.EC-Earth3-Veg.historical.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.day/stac"
- type "application/json"
- title "cordex-cmip6.DD.EUR-12.CLMcom-Hereon.EC-Earth3-Veg.historical.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.day"
222
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/cordex-cmip6.DD.EUR-12.CLMcom-Hereon.EC-Earth3-Veg.historical.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.fx/stac"
- type "application/json"
- title "cordex-cmip6.DD.EUR-12.CLMcom-Hereon.EC-Earth3-Veg.historical.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.fx"
223
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/cordex-cmip6.DD.EUR-12.CLMcom-Hereon.EC-Earth3-Veg.historical.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.1hr/stac"
- type "application/json"
- title "cordex-cmip6.DD.EUR-12.CLMcom-Hereon.EC-Earth3-Veg.historical.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.1hr"
224
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/cordex-cmip6.DD.EUR-12.CLMcom-Hereon.EC-Earth3-Veg.historical.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.6hr/stac"
- type "application/json"
- title "cordex-cmip6.DD.EUR-12.CLMcom-Hereon.EC-Earth3-Veg.historical.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.6hr"
225
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/cordex-cmip6.DD.EUR-12.CLMcom-DWD.MPI-ESM1-2-HR.ssp585.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.mon/stac"
- type "application/json"
- title "cordex-cmip6.DD.EUR-12.CLMcom-DWD.MPI-ESM1-2-HR.ssp585.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.mon"
226
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/cordex-cmip6.DD.EUR-12.CLMcom-DWD.MPI-ESM1-2-HR.ssp585.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.day/stac"
- type "application/json"
- title "cordex-cmip6.DD.EUR-12.CLMcom-DWD.MPI-ESM1-2-HR.ssp585.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.day"
227
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/cordex-cmip6.DD.EUR-12.CLMcom-DWD.MPI-ESM1-2-HR.ssp585.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.fx/stac"
- type "application/json"
- title "cordex-cmip6.DD.EUR-12.CLMcom-DWD.MPI-ESM1-2-HR.ssp585.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.fx"
228
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/cordex-cmip6.DD.EUR-12.CLMcom-DWD.MPI-ESM1-2-HR.ssp585.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.1hr/stac"
- type "application/json"
- title "cordex-cmip6.DD.EUR-12.CLMcom-DWD.MPI-ESM1-2-HR.ssp585.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.1hr"
229
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/cordex-cmip6.DD.EUR-12.CLMcom-DWD.MPI-ESM1-2-HR.ssp585.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.6hr/stac"
- type "application/json"
- title "cordex-cmip6.DD.EUR-12.CLMcom-DWD.MPI-ESM1-2-HR.ssp585.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.6hr"
230
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/cordex-cmip6.DD.EUR-12.CLMcom-DWD.MPI-ESM1-2-HR.ssp245.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.mon/stac"
- type "application/json"
- title "cordex-cmip6.DD.EUR-12.CLMcom-DWD.MPI-ESM1-2-HR.ssp245.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.mon"
231
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/cordex-cmip6.DD.EUR-12.CLMcom-DWD.MPI-ESM1-2-HR.ssp245.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.day/stac"
- type "application/json"
- title "cordex-cmip6.DD.EUR-12.CLMcom-DWD.MPI-ESM1-2-HR.ssp245.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.day"
232
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/cordex-cmip6.DD.EUR-12.CLMcom-DWD.MPI-ESM1-2-HR.ssp245.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.fx/stac"
- type "application/json"
- title "cordex-cmip6.DD.EUR-12.CLMcom-DWD.MPI-ESM1-2-HR.ssp245.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.fx"
233
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/cordex-cmip6.DD.EUR-12.CLMcom-DWD.MPI-ESM1-2-HR.ssp245.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.1hr/stac"
- type "application/json"
- title "cordex-cmip6.DD.EUR-12.CLMcom-DWD.MPI-ESM1-2-HR.ssp245.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.1hr"
234
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/cordex-cmip6.DD.EUR-12.CLMcom-DWD.MPI-ESM1-2-HR.ssp245.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.6hr/stac"
- type "application/json"
- title "cordex-cmip6.DD.EUR-12.CLMcom-DWD.MPI-ESM1-2-HR.ssp245.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.6hr"
235
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/cordex-cmip6.DD.EUR-12.CLMcom-DWD.MPI-ESM1-2-HR.historical.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.mon/stac"
- type "application/json"
- title "cordex-cmip6.DD.EUR-12.CLMcom-DWD.MPI-ESM1-2-HR.historical.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.mon"
236
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/cordex-cmip6.DD.EUR-12.CLMcom-DWD.MPI-ESM1-2-HR.historical.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.day/stac"
- type "application/json"
- title "cordex-cmip6.DD.EUR-12.CLMcom-DWD.MPI-ESM1-2-HR.historical.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.day"
237
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/cordex-cmip6.DD.EUR-12.CLMcom-DWD.MPI-ESM1-2-HR.historical.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.fx/stac"
- type "application/json"
- title "cordex-cmip6.DD.EUR-12.CLMcom-DWD.MPI-ESM1-2-HR.historical.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.fx"
238
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/cordex-cmip6.DD.EUR-12.CLMcom-DWD.MPI-ESM1-2-HR.historical.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.1hr/stac"
- type "application/json"
- title "cordex-cmip6.DD.EUR-12.CLMcom-DWD.MPI-ESM1-2-HR.historical.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.1hr"
239
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/cordex-cmip6.DD.EUR-12.CLMcom-DWD.MPI-ESM1-2-HR.historical.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.6hr/stac"
- type "application/json"
- title "cordex-cmip6.DD.EUR-12.CLMcom-DWD.MPI-ESM1-2-HR.historical.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.6hr"
240
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/cordex-cmip6.DD.EUR-12.CLMcom-DWD.MPI-ESM1-2-HR.ssp126.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.mon/stac"
- type "application/json"
- title "cordex-cmip6.DD.EUR-12.CLMcom-DWD.MPI-ESM1-2-HR.ssp126.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.mon"
241
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/cordex-cmip6.DD.EUR-12.CLMcom-DWD.MPI-ESM1-2-HR.ssp126.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.day/stac"
- type "application/json"
- title "cordex-cmip6.DD.EUR-12.CLMcom-DWD.MPI-ESM1-2-HR.ssp126.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.day"
242
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/cordex-cmip6.DD.EUR-12.CLMcom-DWD.MPI-ESM1-2-HR.ssp126.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.fx/stac"
- type "application/json"
- title "cordex-cmip6.DD.EUR-12.CLMcom-DWD.MPI-ESM1-2-HR.ssp126.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.fx"
243
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/cordex-cmip6.DD.EUR-12.CLMcom-DWD.MPI-ESM1-2-HR.ssp126.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.1hr/stac"
- type "application/json"
- title "cordex-cmip6.DD.EUR-12.CLMcom-DWD.MPI-ESM1-2-HR.ssp126.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.1hr"
244
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/cordex-cmip6.DD.EUR-12.CLMcom-DWD.MPI-ESM1-2-HR.ssp126.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.6hr/stac"
- type "application/json"
- title "cordex-cmip6.DD.EUR-12.CLMcom-DWD.MPI-ESM1-2-HR.ssp126.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.6hr"
245
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/cordex-cmip6.DD.EUR-12.CLMcom-DWD.MPI-ESM1-2-HR.ssp370.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.mon/stac"
- type "application/json"
- title "cordex-cmip6.DD.EUR-12.CLMcom-DWD.MPI-ESM1-2-HR.ssp370.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.mon"
246
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/cordex-cmip6.DD.EUR-12.CLMcom-DWD.MPI-ESM1-2-HR.ssp370.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.day/stac"
- type "application/json"
- title "cordex-cmip6.DD.EUR-12.CLMcom-DWD.MPI-ESM1-2-HR.ssp370.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.day"
247
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/cordex-cmip6.DD.EUR-12.CLMcom-DWD.MPI-ESM1-2-HR.ssp370.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.fx/stac"
- type "application/json"
- title "cordex-cmip6.DD.EUR-12.CLMcom-DWD.MPI-ESM1-2-HR.ssp370.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.fx"
248
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/cordex-cmip6.DD.EUR-12.CLMcom-DWD.MPI-ESM1-2-HR.ssp370.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.1hr/stac"
- type "application/json"
- title "cordex-cmip6.DD.EUR-12.CLMcom-DWD.MPI-ESM1-2-HR.ssp370.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.1hr"
249
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/cordex-cmip6.DD.EUR-12.CLMcom-DWD.MPI-ESM1-2-HR.ssp370.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.6hr/stac"
- type "application/json"
- title "cordex-cmip6.DD.EUR-12.CLMcom-DWD.MPI-ESM1-2-HR.ssp370.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.6hr"
250
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/cordex-cmip6.DD.EUR-12.CLMcom-KIT.MIROC6.historical.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.mon/stac"
- type "application/json"
- title "cordex-cmip6.DD.EUR-12.CLMcom-KIT.MIROC6.historical.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.mon"
251
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/cordex-cmip6.DD.EUR-12.CLMcom-KIT.MIROC6.historical.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.day/stac"
- type "application/json"
- title "cordex-cmip6.DD.EUR-12.CLMcom-KIT.MIROC6.historical.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.day"
252
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/cordex-cmip6.DD.EUR-12.CLMcom-KIT.MIROC6.historical.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.fx/stac"
- type "application/json"
- title "cordex-cmip6.DD.EUR-12.CLMcom-KIT.MIROC6.historical.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.fx"
253
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/cordex-cmip6.DD.EUR-12.CLMcom-KIT.MIROC6.historical.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.1hr/stac"
- type "application/json"
- title "cordex-cmip6.DD.EUR-12.CLMcom-KIT.MIROC6.historical.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.1hr"
254
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/cordex-cmip6.DD.EUR-12.CLMcom-KIT.MIROC6.historical.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.6hr/stac"
- type "application/json"
- title "cordex-cmip6.DD.EUR-12.CLMcom-KIT.MIROC6.historical.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.6hr"
255
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/cordex-cmip6.DD.EUR-12.CLMcom-KIT.MIROC6.ssp126.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.mon/stac"
- type "application/json"
- title "cordex-cmip6.DD.EUR-12.CLMcom-KIT.MIROC6.ssp126.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.mon"
256
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/cordex-cmip6.DD.EUR-12.CLMcom-KIT.MIROC6.ssp126.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.day/stac"
- type "application/json"
- title "cordex-cmip6.DD.EUR-12.CLMcom-KIT.MIROC6.ssp126.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.day"
257
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/cordex-cmip6.DD.EUR-12.CLMcom-KIT.MIROC6.ssp126.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.fx/stac"
- type "application/json"
- title "cordex-cmip6.DD.EUR-12.CLMcom-KIT.MIROC6.ssp126.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.fx"
258
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/cordex-cmip6.DD.EUR-12.CLMcom-KIT.MIROC6.ssp126.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.1hr/stac"
- type "application/json"
- title "cordex-cmip6.DD.EUR-12.CLMcom-KIT.MIROC6.ssp126.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.1hr"
259
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/cordex-cmip6.DD.EUR-12.CLMcom-KIT.MIROC6.ssp126.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.6hr/stac"
- type "application/json"
- title "cordex-cmip6.DD.EUR-12.CLMcom-KIT.MIROC6.ssp126.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.6hr"
260
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/cordex-cmip6.DD.EUR-12.CLMcom-KIT.MIROC6.ssp370.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.mon/stac"
- type "application/json"
- title "cordex-cmip6.DD.EUR-12.CLMcom-KIT.MIROC6.ssp370.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.mon"
261
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/cordex-cmip6.DD.EUR-12.CLMcom-KIT.MIROC6.ssp370.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.day/stac"
- type "application/json"
- title "cordex-cmip6.DD.EUR-12.CLMcom-KIT.MIROC6.ssp370.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.day"
262
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/cordex-cmip6.DD.EUR-12.CLMcom-KIT.MIROC6.ssp370.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.fx/stac"
- type "application/json"
- title "cordex-cmip6.DD.EUR-12.CLMcom-KIT.MIROC6.ssp370.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.fx"
263
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/cordex-cmip6.DD.EUR-12.CLMcom-KIT.MIROC6.ssp370.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.1hr/stac"
- type "application/json"
- title "cordex-cmip6.DD.EUR-12.CLMcom-KIT.MIROC6.ssp370.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.1hr"
264
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/cordex-cmip6.DD.EUR-12.CLMcom-KIT.MIROC6.ssp370.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.6hr/stac"
- type "application/json"
- title "cordex-cmip6.DD.EUR-12.CLMcom-KIT.MIROC6.ssp370.r1i1p1f1.ICON-CLM-202407-1-1.v1-r1.6hr"
265
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.highres-future-ssp245.v20240618.atmos.native.2d_1h_inst/stac"
- type "application/json"
- title "icon-esm-er.highres-future-ssp245.v20240618.atmos.native.2d_1h_inst"
266
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.highres-future-ssp245.v20240618.atmos.native.2d_1h_mean/stac"
- type "application/json"
- title "icon-esm-er.highres-future-ssp245.v20240618.atmos.native.2d_1h_mean"
267
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.highres-future-ssp245.v20240618.atmos.native.2d_3h_inst/stac"
- type "application/json"
- title "icon-esm-er.highres-future-ssp245.v20240618.atmos.native.2d_3h_inst"
268
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.highres-future-ssp245.v20240618.atmos.native.2d_6h_inst/stac"
- type "application/json"
- title "icon-esm-er.highres-future-ssp245.v20240618.atmos.native.2d_6h_inst"
269
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.highres-future-ssp245.v20240618.atmos.native.2d_6h_mean/stac"
- type "application/json"
- title "icon-esm-er.highres-future-ssp245.v20240618.atmos.native.2d_6h_mean"
270
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.highres-future-ssp245.v20240618.atmos.native.2d_daily_max/stac"
- type "application/json"
- title "icon-esm-er.highres-future-ssp245.v20240618.atmos.native.2d_daily_max"
271
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.highres-future-ssp245.v20240618.atmos.native.2d_daily_mean/stac"
- type "application/json"
- title "icon-esm-er.highres-future-ssp245.v20240618.atmos.native.2d_daily_mean"
272
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.highres-future-ssp245.v20240618.atmos.native.2d_daily_min/stac"
- type "application/json"
- title "icon-esm-er.highres-future-ssp245.v20240618.atmos.native.2d_daily_min"
273
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.highres-future-ssp245.v20240618.atmos.native.2d_monthly_mean/stac"
- type "application/json"
- title "icon-esm-er.highres-future-ssp245.v20240618.atmos.native.2d_monthly_mean"
274
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.highres-future-ssp245.v20240618.atmos.native.model-level_daily_mean_1/stac"
- type "application/json"
- title "icon-esm-er.highres-future-ssp245.v20240618.atmos.native.model-level_daily_mean_1"
275
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.highres-future-ssp245.v20240618.atmos.native.model-level_daily_mean_2/stac"
- type "application/json"
- title "icon-esm-er.highres-future-ssp245.v20240618.atmos.native.model-level_daily_mean_2"
276
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.highres-future-ssp245.v20240618.atmos.native.model-level_monthly_mean/stac"
- type "application/json"
- title "icon-esm-er.highres-future-ssp245.v20240618.atmos.native.model-level_monthly_mean"
277
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.highres-future-ssp245.v20240618.atmos.native.mon/stac"
- type "application/json"
- title "icon-esm-er.highres-future-ssp245.v20240618.atmos.native.mon"
278
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.highres-future-ssp245.v20240618.atmos.native.pl_6h_inst/stac"
- type "application/json"
- title "icon-esm-er.highres-future-ssp245.v20240618.atmos.native.pl_6h_inst"
279
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.highres-future-ssp245.v20240618.atmos.gr025.2d_daily_max/stac"
- type "application/json"
- title "icon-esm-er.highres-future-ssp245.v20240618.atmos.gr025.2d_daily_max"
280
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.highres-future-ssp245.v20240618.atmos.gr025.2d_daily_mean/stac"
- type "application/json"
- title "icon-esm-er.highres-future-ssp245.v20240618.atmos.gr025.2d_daily_mean"
281
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.highres-future-ssp245.v20240618.atmos.gr025.2d_daily_min/stac"
- type "application/json"
- title "icon-esm-er.highres-future-ssp245.v20240618.atmos.gr025.2d_daily_min"
282
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.highres-future-ssp245.v20240618.atmos.gr025.2d_monthly_mean/stac"
- type "application/json"
- title "icon-esm-er.highres-future-ssp245.v20240618.atmos.gr025.2d_monthly_mean"
283
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.highres-future-ssp245.v20240618.atmos.gr025.plev19_1d_mean/stac"
- type "application/json"
- title "icon-esm-er.highres-future-ssp245.v20240618.atmos.gr025.plev19_1d_mean"
284
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.highres-future-ssp245.v20240618.atmos.gr025.plev19_1mth_mean/stac"
- type "application/json"
- title "icon-esm-er.highres-future-ssp245.v20240618.atmos.gr025.plev19_1mth_mean"
285
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.highres-future-ssp245.v20240618.atmos.gr025.2d_6hr_mean/stac"
- type "application/json"
- title "icon-esm-er.highres-future-ssp245.v20240618.atmos.gr025.2d_6hr_mean"
286
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.highres-future-ssp245.v20240618.atmos.gr025.2d_6hr_inst/stac"
- type "application/json"
- title "icon-esm-er.highres-future-ssp245.v20240618.atmos.gr025.2d_6hr_inst"
287
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.highres-future-ssp245.v20240618.atmos.gr025.pl_6hr_inst/stac"
- type "application/json"
- title "icon-esm-er.highres-future-ssp245.v20240618.atmos.gr025.pl_6hr_inst"
288
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.highres-future-ssp245.v20240618.atmos.gr025.pfull_1d_mean/stac"
- type "application/json"
- title "icon-esm-er.highres-future-ssp245.v20240618.atmos.gr025.pfull_1d_mean"
289
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.highres-future-ssp245.v20240618.atmos.gr025.pfull_phalf_1mth_mean/stac"
- type "application/json"
- title "icon-esm-er.highres-future-ssp245.v20240618.atmos.gr025.pfull_phalf_1mth_mean"
290
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.highres-future-ssp245.v20240618.ocean.native.2d_daily_mean/stac"
- type "application/json"
- title "icon-esm-er.highres-future-ssp245.v20240618.ocean.native.2d_daily_mean"
291
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.highres-future-ssp245.v20240618.ocean.native.2d_daily_square/stac"
- type "application/json"
- title "icon-esm-er.highres-future-ssp245.v20240618.ocean.native.2d_daily_square"
292
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.highres-future-ssp245.v20240618.ocean.native.2d_monthly_mean/stac"
- type "application/json"
- title "icon-esm-er.highres-future-ssp245.v20240618.ocean.native.2d_monthly_mean"
293
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.highres-future-ssp245.v20240618.ocean.native.2d_monthly_square/stac"
- type "application/json"
- title "icon-esm-er.highres-future-ssp245.v20240618.ocean.native.2d_monthly_square"
294
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.highres-future-ssp245.v20240618.ocean.native.5lev_daily_mean/stac"
- type "application/json"
- title "icon-esm-er.highres-future-ssp245.v20240618.ocean.native.5lev_daily_mean"
295
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.highres-future-ssp245.v20240618.ocean.native.eddy_monthly_mean/stac"
- type "application/json"
- title "icon-esm-er.highres-future-ssp245.v20240618.ocean.native.eddy_monthly_mean"
296
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.highres-future-ssp245.v20240618.ocean.native.moc_monthly_mean/stac"
- type "application/json"
- title "icon-esm-er.highres-future-ssp245.v20240618.ocean.native.moc_monthly_mean"
297
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.highres-future-ssp245.v20240618.ocean.native.model-level_daily_mean/stac"
- type "application/json"
- title "icon-esm-er.highres-future-ssp245.v20240618.ocean.native.model-level_daily_mean"
298
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.highres-future-ssp245.v20240618.ocean.native.model-level_monthly_mean/stac"
- type "application/json"
- title "icon-esm-er.highres-future-ssp245.v20240618.ocean.native.model-level_monthly_mean"
299
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.highres-future-ssp245.v20240618.ocean.native.mon/stac"
- type "application/json"
- title "icon-esm-er.highres-future-ssp245.v20240618.ocean.native.mon"
300
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.highres-future-ssp245.v20240618.ocean.gr025.2d_daily_mean/stac"
- type "application/json"
- title "icon-esm-er.highres-future-ssp245.v20240618.ocean.gr025.2d_daily_mean"
301
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.highres-future-ssp245.v20240618.ocean.gr025.2d_daily_mean_vertical/stac"
- type "application/json"
- title "icon-esm-er.highres-future-ssp245.v20240618.ocean.gr025.2d_daily_mean_vertical"
302
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.highres-future-ssp245.v20240618.ocean.gr025.2d_daily_square/stac"
- type "application/json"
- title "icon-esm-er.highres-future-ssp245.v20240618.ocean.gr025.2d_daily_square"
303
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.highres-future-ssp245.v20240618.ocean.gr025.2d_monthly_mean/stac"
- type "application/json"
- title "icon-esm-er.highres-future-ssp245.v20240618.ocean.gr025.2d_monthly_mean"
304
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.highres-future-ssp245.v20240618.ocean.gr025.2d_monthly_mean_vertical/stac"
- type "application/json"
- title "icon-esm-er.highres-future-ssp245.v20240618.ocean.gr025.2d_monthly_mean_vertical"
305
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.highres-future-ssp245.v20240618.ocean.gr025.2d_monthly_square/stac"
- type "application/json"
- title "icon-esm-er.highres-future-ssp245.v20240618.ocean.gr025.2d_monthly_square"
306
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.highres-future-ssp245.v20240618.ocean.gr025.5lev_daily_mean/stac"
- type "application/json"
- title "icon-esm-er.highres-future-ssp245.v20240618.ocean.gr025.5lev_daily_mean"
307
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.highres-future-ssp245.v20240618.ocean.gr025.5lev_daily_mean_vertical/stac"
- type "application/json"
- title "icon-esm-er.highres-future-ssp245.v20240618.ocean.gr025.5lev_daily_mean_vertical"
308
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.highres-future-ssp245.v20240618.ocean.gr025.model-level_monthly_mean/stac"
- type "application/json"
- title "icon-esm-er.highres-future-ssp245.v20240618.ocean.gr025.model-level_monthly_mean"
309
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.highres-future-ssp245.v20240618.ocean.gr025.model-level_monthly_mean_vertical/stac"
- type "application/json"
- title "icon-esm-er.highres-future-ssp245.v20240618.ocean.gr025.model-level_monthly_mean_vertical"
310
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.highres-future-ssp245.v20240618.land.native.2d_daily_mean/stac"
- type "application/json"
- title "icon-esm-er.highres-future-ssp245.v20240618.land.native.2d_daily_mean"
311
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.highres-future-ssp245.v20240618.land.native.2d_monthly_mean/stac"
- type "application/json"
- title "icon-esm-er.highres-future-ssp245.v20240618.land.native.2d_monthly_mean"
312
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.highres-future-ssp245.v20240618.land.native.mon/stac"
- type "application/json"
- title "icon-esm-er.highres-future-ssp245.v20240618.land.native.mon"
313
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.hist-1950.v20240618.atmos.native.2d_1h_inst/stac"
- type "application/json"
- title "icon-esm-er.hist-1950.v20240618.atmos.native.2d_1h_inst"
314
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.hist-1950.v20240618.atmos.native.2d_1h_mean/stac"
- type "application/json"
- title "icon-esm-er.hist-1950.v20240618.atmos.native.2d_1h_mean"
315
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.hist-1950.v20240618.atmos.native.2d_3h_inst/stac"
- type "application/json"
- title "icon-esm-er.hist-1950.v20240618.atmos.native.2d_3h_inst"
316
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.hist-1950.v20240618.atmos.native.2d_6h_inst/stac"
- type "application/json"
- title "icon-esm-er.hist-1950.v20240618.atmos.native.2d_6h_inst"
317
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.hist-1950.v20240618.atmos.native.2d_6h_mean/stac"
- type "application/json"
- title "icon-esm-er.hist-1950.v20240618.atmos.native.2d_6h_mean"
318
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.hist-1950.v20240618.atmos.native.2d_daily_max/stac"
- type "application/json"
- title "icon-esm-er.hist-1950.v20240618.atmos.native.2d_daily_max"
319
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.hist-1950.v20240618.atmos.native.2d_daily_mean/stac"
- type "application/json"
- title "icon-esm-er.hist-1950.v20240618.atmos.native.2d_daily_mean"
320
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.hist-1950.v20240618.atmos.native.2d_daily_min/stac"
- type "application/json"
- title "icon-esm-er.hist-1950.v20240618.atmos.native.2d_daily_min"
321
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.hist-1950.v20240618.atmos.native.2d_monthly_mean/stac"
- type "application/json"
- title "icon-esm-er.hist-1950.v20240618.atmos.native.2d_monthly_mean"
322
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.hist-1950.v20240618.atmos.native.model-level_daily_mean_1/stac"
- type "application/json"
- title "icon-esm-er.hist-1950.v20240618.atmos.native.model-level_daily_mean_1"
323
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.hist-1950.v20240618.atmos.native.model-level_daily_mean_2/stac"
- type "application/json"
- title "icon-esm-er.hist-1950.v20240618.atmos.native.model-level_daily_mean_2"
324
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.hist-1950.v20240618.atmos.native.model-level_monthly_mean/stac"
- type "application/json"
- title "icon-esm-er.hist-1950.v20240618.atmos.native.model-level_monthly_mean"
325
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.hist-1950.v20240618.atmos.native.mon/stac"
- type "application/json"
- title "icon-esm-er.hist-1950.v20240618.atmos.native.mon"
326
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.hist-1950.v20240618.atmos.native.pl_6h_inst/stac"
- type "application/json"
- title "icon-esm-er.hist-1950.v20240618.atmos.native.pl_6h_inst"
327
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.hist-1950.v20240618.atmos.gr025.2d_daily_max/stac"
- type "application/json"
- title "icon-esm-er.hist-1950.v20240618.atmos.gr025.2d_daily_max"
328
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.hist-1950.v20240618.atmos.gr025.2d_daily_mean/stac"
- type "application/json"
- title "icon-esm-er.hist-1950.v20240618.atmos.gr025.2d_daily_mean"
329
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.hist-1950.v20240618.atmos.gr025.2d_daily_min/stac"
- type "application/json"
- title "icon-esm-er.hist-1950.v20240618.atmos.gr025.2d_daily_min"
330
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.hist-1950.v20240618.atmos.gr025.2d_monthly_mean/stac"
- type "application/json"
- title "icon-esm-er.hist-1950.v20240618.atmos.gr025.2d_monthly_mean"
331
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.hist-1950.v20240618.atmos.gr025.plev19_monthly_mean/stac"
- type "application/json"
- title "icon-esm-er.hist-1950.v20240618.atmos.gr025.plev19_monthly_mean"
332
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.hist-1950.v20240618.atmos.gr025.plev19_daily_mean/stac"
- type "application/json"
- title "icon-esm-er.hist-1950.v20240618.atmos.gr025.plev19_daily_mean"
333
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.hist-1950.v20240618.atmos.gr025.2d_hourly_mean/stac"
- type "application/json"
- title "icon-esm-er.hist-1950.v20240618.atmos.gr025.2d_hourly_mean"
334
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.hist-1950.v20240618.atmos.gr025.2d_hourly_inst/stac"
- type "application/json"
- title "icon-esm-er.hist-1950.v20240618.atmos.gr025.2d_hourly_inst"
335
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.hist-1950.v20240618.atmos.gr025.2d_6hourly_inst/stac"
- type "application/json"
- title "icon-esm-er.hist-1950.v20240618.atmos.gr025.2d_6hourly_inst"
336
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.hist-1950.v20240618.atmos.gr025.2d_6hourly_mean/stac"
- type "application/json"
- title "icon-esm-er.hist-1950.v20240618.atmos.gr025.2d_6hourly_mean"
337
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.hist-1950.v20240618.atmos.gr025.pl_6hourly_inst/stac"
- type "application/json"
- title "icon-esm-er.hist-1950.v20240618.atmos.gr025.pl_6hourly_inst"
338
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.hist-1950.v20240618.atmos.gr025.pfull_daily_mean/stac"
- type "application/json"
- title "icon-esm-er.hist-1950.v20240618.atmos.gr025.pfull_daily_mean"
339
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.hist-1950.v20240618.atmos.gr025.pfull_phalf_monthly_mean/stac"
- type "application/json"
- title "icon-esm-er.hist-1950.v20240618.atmos.gr025.pfull_phalf_monthly_mean"
340
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.hist-1950.v20240618.ocean.gr025.2d_daily_mean/stac"
- type "application/json"
- title "icon-esm-er.hist-1950.v20240618.ocean.gr025.2d_daily_mean"
341
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.hist-1950.v20240618.ocean.gr025.2d_1d_mean_vertical/stac"
- type "application/json"
- title "icon-esm-er.hist-1950.v20240618.ocean.gr025.2d_1d_mean_vertical"
342
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.hist-1950.v20240618.ocean.gr025.2d_daily_square/stac"
- type "application/json"
- title "icon-esm-er.hist-1950.v20240618.ocean.gr025.2d_daily_square"
343
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.hist-1950.v20240618.ocean.gr025.2d_monthly_mean/stac"
- type "application/json"
- title "icon-esm-er.hist-1950.v20240618.ocean.gr025.2d_monthly_mean"
344
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.hist-1950.v20240618.ocean.gr025.2d_monthly_mean_vertical/stac"
- type "application/json"
- title "icon-esm-er.hist-1950.v20240618.ocean.gr025.2d_monthly_mean_vertical"
345
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.hist-1950.v20240618.ocean.gr025.2d_monthly_square/stac"
- type "application/json"
- title "icon-esm-er.hist-1950.v20240618.ocean.gr025.2d_monthly_square"
346
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.hist-1950.v20240618.ocean.gr025.5lev_daily_mean/stac"
- type "application/json"
- title "icon-esm-er.hist-1950.v20240618.ocean.gr025.5lev_daily_mean"
347
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.hist-1950.v20240618.ocean.gr025.5lev_daily_w_mean/stac"
- type "application/json"
- title "icon-esm-er.hist-1950.v20240618.ocean.gr025.5lev_daily_w_mean"
348
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.hist-1950.v20240618.ocean.gr025.ml_monthly_mean/stac"
- type "application/json"
- title "icon-esm-er.hist-1950.v20240618.ocean.gr025.ml_monthly_mean"
349
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.hist-1950.v20240618.ocean.gr025.ml_monthly_w_mean/stac"
- type "application/json"
- title "icon-esm-er.hist-1950.v20240618.ocean.gr025.ml_monthly_w_mean"
350
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.hist-1950.v20240618.ocean.gr025.eddy_monthly_mean/stac"
- type "application/json"
- title "icon-esm-er.hist-1950.v20240618.ocean.gr025.eddy_monthly_mean"
351
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.hist-1950.v20240618.ocean.native.2d_daily_mean/stac"
- type "application/json"
- title "icon-esm-er.hist-1950.v20240618.ocean.native.2d_daily_mean"
352
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.hist-1950.v20240618.ocean.native.2d_daily_square/stac"
- type "application/json"
- title "icon-esm-er.hist-1950.v20240618.ocean.native.2d_daily_square"
353
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.hist-1950.v20240618.ocean.native.2d_monthly_mean/stac"
- type "application/json"
- title "icon-esm-er.hist-1950.v20240618.ocean.native.2d_monthly_mean"
354
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.hist-1950.v20240618.ocean.native.2d_monthly_square/stac"
- type "application/json"
- title "icon-esm-er.hist-1950.v20240618.ocean.native.2d_monthly_square"
355
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.hist-1950.v20240618.ocean.native.5lev_daily_mean/stac"
- type "application/json"
- title "icon-esm-er.hist-1950.v20240618.ocean.native.5lev_daily_mean"
356
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.hist-1950.v20240618.ocean.native.eddy_monthly_mean/stac"
- type "application/json"
- title "icon-esm-er.hist-1950.v20240618.ocean.native.eddy_monthly_mean"
357
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.hist-1950.v20240618.ocean.native.moc_monthly_mean/stac"
- type "application/json"
- title "icon-esm-er.hist-1950.v20240618.ocean.native.moc_monthly_mean"
358
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.hist-1950.v20240618.ocean.native.model-level_daily_mean/stac"
- type "application/json"
- title "icon-esm-er.hist-1950.v20240618.ocean.native.model-level_daily_mean"
359
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.hist-1950.v20240618.ocean.native.model-level_monthly_mean/stac"
- type "application/json"
- title "icon-esm-er.hist-1950.v20240618.ocean.native.model-level_monthly_mean"
360
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.hist-1950.v20240618.ocean.native.mon/stac"
- type "application/json"
- title "icon-esm-er.hist-1950.v20240618.ocean.native.mon"
361
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.hist-1950.v20240618.land.native.2d_daily_mean/stac"
- type "application/json"
- title "icon-esm-er.hist-1950.v20240618.land.native.2d_daily_mean"
362
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.hist-1950.v20240618.land.native.2d_monthly_mean/stac"
- type "application/json"
- title "icon-esm-er.hist-1950.v20240618.land.native.2d_monthly_mean"
363
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.hist-1950.v20240618.land.native.mon/stac"
- type "application/json"
- title "icon-esm-er.hist-1950.v20240618.land.native.mon"
364
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.eerie-control-1950.v20240618.atmos.gr025.2d_daily_max/stac"
- type "application/json"
- title "icon-esm-er.eerie-control-1950.v20240618.atmos.gr025.2d_daily_max"
365
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.eerie-control-1950.v20240618.atmos.gr025.2d_daily_mean/stac"
- type "application/json"
- title "icon-esm-er.eerie-control-1950.v20240618.atmos.gr025.2d_daily_mean"
366
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.eerie-control-1950.v20240618.atmos.gr025.2d_daily_min/stac"
- type "application/json"
- title "icon-esm-er.eerie-control-1950.v20240618.atmos.gr025.2d_daily_min"
367
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.eerie-control-1950.v20240618.atmos.gr025.2d_monthly_mean/stac"
- type "application/json"
- title "icon-esm-er.eerie-control-1950.v20240618.atmos.gr025.2d_monthly_mean"
368
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.eerie-control-1950.v20240618.atmos.gr025.plev19_daily_mean/stac"
- type "application/json"
- title "icon-esm-er.eerie-control-1950.v20240618.atmos.gr025.plev19_daily_mean"
369
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.eerie-control-1950.v20240618.atmos.gr025.plev19_monthly_mean/stac"
- type "application/json"
- title "icon-esm-er.eerie-control-1950.v20240618.atmos.gr025.plev19_monthly_mean"
370
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.eerie-control-1950.v20240618.atmos.gr025.pfull_phalf_monthly_mean/stac"
- type "application/json"
- title "icon-esm-er.eerie-control-1950.v20240618.atmos.gr025.pfull_phalf_monthly_mean"
371
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.eerie-control-1950.v20240618.atmos.native.2d_1h_inst/stac"
- type "application/json"
- title "icon-esm-er.eerie-control-1950.v20240618.atmos.native.2d_1h_inst"
372
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.eerie-control-1950.v20240618.atmos.native.2d_1h_mean/stac"
- type "application/json"
- title "icon-esm-er.eerie-control-1950.v20240618.atmos.native.2d_1h_mean"
373
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.eerie-control-1950.v20240618.atmos.native.2d_3h_inst/stac"
- type "application/json"
- title "icon-esm-er.eerie-control-1950.v20240618.atmos.native.2d_3h_inst"
374
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.eerie-control-1950.v20240618.atmos.native.2d_6h_inst/stac"
- type "application/json"
- title "icon-esm-er.eerie-control-1950.v20240618.atmos.native.2d_6h_inst"
375
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.eerie-control-1950.v20240618.atmos.native.2d_6h_mean/stac"
- type "application/json"
- title "icon-esm-er.eerie-control-1950.v20240618.atmos.native.2d_6h_mean"
376
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.eerie-control-1950.v20240618.atmos.native.2d_daily_max/stac"
- type "application/json"
- title "icon-esm-er.eerie-control-1950.v20240618.atmos.native.2d_daily_max"
377
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.eerie-control-1950.v20240618.atmos.native.2d_daily_mean/stac"
- type "application/json"
- title "icon-esm-er.eerie-control-1950.v20240618.atmos.native.2d_daily_mean"
378
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.eerie-control-1950.v20240618.atmos.native.2d_daily_min/stac"
- type "application/json"
- title "icon-esm-er.eerie-control-1950.v20240618.atmos.native.2d_daily_min"
379
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.eerie-control-1950.v20240618.atmos.native.2d_monthly_mean/stac"
- type "application/json"
- title "icon-esm-er.eerie-control-1950.v20240618.atmos.native.2d_monthly_mean"
380
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.eerie-control-1950.v20240618.atmos.native.atmos_native_mon/stac"
- type "application/json"
- title "icon-esm-er.eerie-control-1950.v20240618.atmos.native.atmos_native_mon"
381
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.eerie-control-1950.v20240618.atmos.native.model-level_daily_mean_1/stac"
- type "application/json"
- title "icon-esm-er.eerie-control-1950.v20240618.atmos.native.model-level_daily_mean_1"
382
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.eerie-control-1950.v20240618.atmos.native.model-level_daily_mean_2/stac"
- type "application/json"
- title "icon-esm-er.eerie-control-1950.v20240618.atmos.native.model-level_daily_mean_2"
383
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.eerie-control-1950.v20240618.atmos.native.model-level_monthly_mean/stac"
- type "application/json"
- title "icon-esm-er.eerie-control-1950.v20240618.atmos.native.model-level_monthly_mean"
384
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.eerie-control-1950.v20240618.atmos.native.pl_6h_inst/stac"
- type "application/json"
- title "icon-esm-er.eerie-control-1950.v20240618.atmos.native.pl_6h_inst"
385
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.eerie-control-1950.v20240618.ocean.gr025.2d_daily_mean/stac"
- type "application/json"
- title "icon-esm-er.eerie-control-1950.v20240618.ocean.gr025.2d_daily_mean"
386
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.eerie-control-1950.v20240618.ocean.gr025.2d_daily_mean_sst_50year/stac"
- type "application/json"
- title "icon-esm-er.eerie-control-1950.v20240618.ocean.gr025.2d_daily_mean_sst_50year"
387
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.eerie-control-1950.v20240618.ocean.gr025.2d_daily_mean_vertical/stac"
- type "application/json"
- title "icon-esm-er.eerie-control-1950.v20240618.ocean.gr025.2d_daily_mean_vertical"
388
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.eerie-control-1950.v20240618.ocean.gr025.2d_daily_square/stac"
- type "application/json"
- title "icon-esm-er.eerie-control-1950.v20240618.ocean.gr025.2d_daily_square"
389
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.eerie-control-1950.v20240618.ocean.gr025.2d_monthly_mean/stac"
- type "application/json"
- title "icon-esm-er.eerie-control-1950.v20240618.ocean.gr025.2d_monthly_mean"
390
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.eerie-control-1950.v20240618.ocean.gr025.2d_monthly_mean_vertical/stac"
- type "application/json"
- title "icon-esm-er.eerie-control-1950.v20240618.ocean.gr025.2d_monthly_mean_vertical"
391
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.eerie-control-1950.v20240618.ocean.gr025.2d_monthly_square/stac"
- type "application/json"
- title "icon-esm-er.eerie-control-1950.v20240618.ocean.gr025.2d_monthly_square"
392
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.eerie-control-1950.v20240618.ocean.gr025.5lev_daily_mean/stac"
- type "application/json"
- title "icon-esm-er.eerie-control-1950.v20240618.ocean.gr025.5lev_daily_mean"
393
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.eerie-control-1950.v20240618.ocean.gr025.5lev_daily_mean_w/stac"
- type "application/json"
- title "icon-esm-er.eerie-control-1950.v20240618.ocean.gr025.5lev_daily_mean_w"
394
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.eerie-control-1950.v20240618.ocean.gr025.ml_1mth_mean/stac"
- type "application/json"
- title "icon-esm-er.eerie-control-1950.v20240618.ocean.gr025.ml_1mth_mean"
395
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.eerie-control-1950.v20240618.ocean.gr025.ml_1mth_mean_w/stac"
- type "application/json"
- title "icon-esm-er.eerie-control-1950.v20240618.ocean.gr025.ml_1mth_mean_w"
396
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.eerie-control-1950.v20240618.ocean.gr025.eddy_monthly_mean/stac"
- type "application/json"
- title "icon-esm-er.eerie-control-1950.v20240618.ocean.gr025.eddy_monthly_mean"
397
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.eerie-control-1950.v20240618.ocean.native.2d_daily_mean/stac"
- type "application/json"
- title "icon-esm-er.eerie-control-1950.v20240618.ocean.native.2d_daily_mean"
398
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.eerie-control-1950.v20240618.ocean.native.2d_daily_square/stac"
- type "application/json"
- title "icon-esm-er.eerie-control-1950.v20240618.ocean.native.2d_daily_square"
399
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.eerie-control-1950.v20240618.ocean.native.2d_grid/stac"
- type "application/json"
- title "icon-esm-er.eerie-control-1950.v20240618.ocean.native.2d_grid"
400
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.eerie-control-1950.v20240618.ocean.native.2d_monthly_mean/stac"
- type "application/json"
- title "icon-esm-er.eerie-control-1950.v20240618.ocean.native.2d_monthly_mean"
401
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.eerie-control-1950.v20240618.ocean.native.2d_monthly_square/stac"
- type "application/json"
- title "icon-esm-er.eerie-control-1950.v20240618.ocean.native.2d_monthly_square"
402
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.eerie-control-1950.v20240618.ocean.native.5lev_daily_mean/stac"
- type "application/json"
- title "icon-esm-er.eerie-control-1950.v20240618.ocean.native.5lev_daily_mean"
403
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.eerie-control-1950.v20240618.ocean.native.eddy_monthly_mean/stac"
- type "application/json"
- title "icon-esm-er.eerie-control-1950.v20240618.ocean.native.eddy_monthly_mean"
404
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.eerie-control-1950.v20240618.ocean.native.moc_monthly_mean/stac"
- type "application/json"
- title "icon-esm-er.eerie-control-1950.v20240618.ocean.native.moc_monthly_mean"
405
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.eerie-control-1950.v20240618.ocean.native.model-level_daily_mean/stac"
- type "application/json"
- title "icon-esm-er.eerie-control-1950.v20240618.ocean.native.model-level_daily_mean"
406
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.eerie-control-1950.v20240618.ocean.native.model-level_monthly_mean/stac"
- type "application/json"
- title "icon-esm-er.eerie-control-1950.v20240618.ocean.native.model-level_monthly_mean"
407
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.eerie-control-1950.v20240618.ocean.native.oce_mon/stac"
- type "application/json"
- title "icon-esm-er.eerie-control-1950.v20240618.ocean.native.oce_mon"
408
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.eerie-control-1950.v20240618.land.native.2d_daily_mean/stac"
- type "application/json"
- title "icon-esm-er.eerie-control-1950.v20240618.land.native.2d_daily_mean"
409
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.eerie-control-1950.v20240618.land.native.2d_monthly_mean/stac"
- type "application/json"
- title "icon-esm-er.eerie-control-1950.v20240618.land.native.2d_monthly_mean"
410
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.eerie-spinup-1950.v20240618.atmos.gr025.2d_daily_max/stac"
- type "application/json"
- title "icon-esm-er.eerie-spinup-1950.v20240618.atmos.gr025.2d_daily_max"
411
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.eerie-spinup-1950.v20240618.atmos.gr025.2d_daily_mean/stac"
- type "application/json"
- title "icon-esm-er.eerie-spinup-1950.v20240618.atmos.gr025.2d_daily_mean"
412
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.eerie-spinup-1950.v20240618.atmos.gr025.2d_daily_min/stac"
- type "application/json"
- title "icon-esm-er.eerie-spinup-1950.v20240618.atmos.gr025.2d_daily_min"
413
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.eerie-spinup-1950.v20240618.atmos.gr025.2d_monthly_mean/stac"
- type "application/json"
- title "icon-esm-er.eerie-spinup-1950.v20240618.atmos.gr025.2d_monthly_mean"
414
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.eerie-spinup-1950.v20240618.atmos.gr025.plev19_1mth_mean/stac"
- type "application/json"
- title "icon-esm-er.eerie-spinup-1950.v20240618.atmos.gr025.plev19_1mth_mean"
415
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.eerie-spinup-1950.v20240618.atmos.gr025.plev19_daily_mean/stac"
- type "application/json"
- title "icon-esm-er.eerie-spinup-1950.v20240618.atmos.gr025.plev19_daily_mean"
416
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.eerie-spinup-1950.v20240618.atmos.gr025.pl_6h_inst/stac"
- type "application/json"
- title "icon-esm-er.eerie-spinup-1950.v20240618.atmos.gr025.pl_6h_inst"
417
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.eerie-spinup-1950.v20240618.atmos.native.2d_daily_max/stac"
- type "application/json"
- title "icon-esm-er.eerie-spinup-1950.v20240618.atmos.native.2d_daily_max"
418
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.eerie-spinup-1950.v20240618.atmos.native.2d_daily_mean/stac"
- type "application/json"
- title "icon-esm-er.eerie-spinup-1950.v20240618.atmos.native.2d_daily_mean"
419
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.eerie-spinup-1950.v20240618.atmos.native.2d_daily_min/stac"
- type "application/json"
- title "icon-esm-er.eerie-spinup-1950.v20240618.atmos.native.2d_daily_min"
420
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.eerie-spinup-1950.v20240618.atmos.native.mon/stac"
- type "application/json"
- title "icon-esm-er.eerie-spinup-1950.v20240618.atmos.native.mon"
421
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.eerie-spinup-1950.v20240618.ocean.gr025.2d_daily_mean/stac"
- type "application/json"
- title "icon-esm-er.eerie-spinup-1950.v20240618.ocean.gr025.2d_daily_mean"
422
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.eerie-spinup-1950.v20240618.ocean.gr025.2d_daily_mean_vertical-remap025/stac"
- type "application/json"
- title "icon-esm-er.eerie-spinup-1950.v20240618.ocean.gr025.2d_daily_mean_vertical-remap025"
423
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.eerie-spinup-1950.v20240618.ocean.gr025.2d_daily_square/stac"
- type "application/json"
- title "icon-esm-er.eerie-spinup-1950.v20240618.ocean.gr025.2d_daily_square"
424
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.eerie-spinup-1950.v20240618.ocean.gr025.2d_monthly_mean/stac"
- type "application/json"
- title "icon-esm-er.eerie-spinup-1950.v20240618.ocean.gr025.2d_monthly_mean"
425
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.eerie-spinup-1950.v20240618.ocean.gr025.2d_monthly_mean_vertical-remap025/stac"
- type "application/json"
- title "icon-esm-er.eerie-spinup-1950.v20240618.ocean.gr025.2d_monthly_mean_vertical-remap025"
426
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.eerie-spinup-1950.v20240618.ocean.gr025.2d_monthly_square/stac"
- type "application/json"
- title "icon-esm-er.eerie-spinup-1950.v20240618.ocean.gr025.2d_monthly_square"
427
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.eerie-spinup-1950.v20240618.ocean.gr025.5lev_daily_mean/stac"
- type "application/json"
- title "icon-esm-er.eerie-spinup-1950.v20240618.ocean.gr025.5lev_daily_mean"
428
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.eerie-spinup-1950.v20240618.ocean.native.moc_monthly_mean/stac"
- type "application/json"
- title "icon-esm-er.eerie-spinup-1950.v20240618.ocean.native.moc_monthly_mean"
429
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.eerie-spinup-1950.v20240618.ocean.native.mon/stac"
- type "application/json"
- title "icon-esm-er.eerie-spinup-1950.v20240618.ocean.native.mon"
430
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.eerie-spinup-1950.v20240618.land.native.mon/stac"
- type "application/json"
- title "icon-esm-er.eerie-spinup-1950.v20240618.land.native.mon"
431
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-fesom2-sr.eerie-control-1950.v20240304.atmos.gr025.2D_daily_avg/stac"
- type "application/json"
- title "ifs-fesom2-sr.eerie-control-1950.v20240304.atmos.gr025.2D_daily_avg"
432
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-fesom2-sr.eerie-control-1950.v20240304.atmos.gr025.2D_daily_max/stac"
- type "application/json"
- title "ifs-fesom2-sr.eerie-control-1950.v20240304.atmos.gr025.2D_daily_max"
433
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-fesom2-sr.eerie-control-1950.v20240304.atmos.gr025.2D_daily_min/stac"
- type "application/json"
- title "ifs-fesom2-sr.eerie-control-1950.v20240304.atmos.gr025.2D_daily_min"
434
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-fesom2-sr.eerie-control-1950.v20240304.atmos.gr025.3D_daily_avg/stac"
- type "application/json"
- title "ifs-fesom2-sr.eerie-control-1950.v20240304.atmos.gr025.3D_daily_avg"
435
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-fesom2-sr.eerie-control-1950.v20240304.atmos.gr025.2D_monthly_avg/stac"
- type "application/json"
- title "ifs-fesom2-sr.eerie-control-1950.v20240304.atmos.gr025.2D_monthly_avg"
436
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-fesom2-sr.eerie-control-1950.v20240304.atmos.gr025.2D_monthly_max/stac"
- type "application/json"
- title "ifs-fesom2-sr.eerie-control-1950.v20240304.atmos.gr025.2D_monthly_max"
437
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-fesom2-sr.eerie-control-1950.v20240304.atmos.gr025.2D_monthly_min/stac"
- type "application/json"
- title "ifs-fesom2-sr.eerie-control-1950.v20240304.atmos.gr025.2D_monthly_min"
438
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-fesom2-sr.eerie-control-1950.v20240304.atmos.gr025.3D_monthly_avg/stac"
- type "application/json"
- title "ifs-fesom2-sr.eerie-control-1950.v20240304.atmos.gr025.3D_monthly_avg"
439
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-fesom2-sr.eerie-control-1950.v20240304.atmos.gr025.3D_6hourly/stac"
- type "application/json"
- title "ifs-fesom2-sr.eerie-control-1950.v20240304.atmos.gr025.3D_6hourly"
440
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-fesom2-sr.eerie-control-1950.v20240304.atmos.gr025.2D_6hourly_instant/stac"
- type "application/json"
- title "ifs-fesom2-sr.eerie-control-1950.v20240304.atmos.gr025.2D_6hourly_instant"
441
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-fesom2-sr.eerie-control-1950.v20240304.atmos.gr025.2D_6hourly_accumulated/stac"
- type "application/json"
- title "ifs-fesom2-sr.eerie-control-1950.v20240304.atmos.gr025.2D_6hourly_accumulated"
442
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-fesom2-sr.eerie-control-1950.v20240304.atmos.native.2D_daily_avg/stac"
- type "application/json"
- title "ifs-fesom2-sr.eerie-control-1950.v20240304.atmos.native.2D_daily_avg"
443
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-fesom2-sr.eerie-control-1950.v20240304.atmos.native.2D_daily_max/stac"
- type "application/json"
- title "ifs-fesom2-sr.eerie-control-1950.v20240304.atmos.native.2D_daily_max"
444
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-fesom2-sr.eerie-control-1950.v20240304.atmos.native.2D_daily_min/stac"
- type "application/json"
- title "ifs-fesom2-sr.eerie-control-1950.v20240304.atmos.native.2D_daily_min"
445
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-fesom2-sr.eerie-control-1950.v20240304.atmos.native.3D_daily_avg/stac"
- type "application/json"
- title "ifs-fesom2-sr.eerie-control-1950.v20240304.atmos.native.3D_daily_avg"
446
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-fesom2-sr.eerie-control-1950.v20240304.atmos.native.2D_monthly_avg/stac"
- type "application/json"
- title "ifs-fesom2-sr.eerie-control-1950.v20240304.atmos.native.2D_monthly_avg"
447
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-fesom2-sr.eerie-control-1950.v20240304.atmos.native.2D_monthly_max/stac"
- type "application/json"
- title "ifs-fesom2-sr.eerie-control-1950.v20240304.atmos.native.2D_monthly_max"
448
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-fesom2-sr.eerie-control-1950.v20240304.atmos.native.2D_monthly_min/stac"
- type "application/json"
- title "ifs-fesom2-sr.eerie-control-1950.v20240304.atmos.native.2D_monthly_min"
449
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-fesom2-sr.eerie-control-1950.v20240304.atmos.native.3D_monthly_avg/stac"
- type "application/json"
- title "ifs-fesom2-sr.eerie-control-1950.v20240304.atmos.native.3D_monthly_avg"
450
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-fesom2-sr.eerie-control-1950.v20240304.atmos.native.2D_6hourly_accumulated/stac"
- type "application/json"
- title "ifs-fesom2-sr.eerie-control-1950.v20240304.atmos.native.2D_6hourly_accumulated"
451
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-fesom2-sr.eerie-control-1950.v20240304.ocean.native.2D_daily_avg/stac"
- type "application/json"
- title "ifs-fesom2-sr.eerie-control-1950.v20240304.ocean.native.2D_daily_avg"
452
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-fesom2-sr.eerie-control-1950.v20240304.ocean.native.3D_daily_avg_elems/stac"
- type "application/json"
- title "ifs-fesom2-sr.eerie-control-1950.v20240304.ocean.native.3D_daily_avg_elems"
453
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-fesom2-sr.eerie-control-1950.v20240304.ocean.native.3D_daily_avg_nodes_01/stac"
- type "application/json"
- title "ifs-fesom2-sr.eerie-control-1950.v20240304.ocean.native.3D_daily_avg_nodes_01"
454
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-fesom2-sr.eerie-control-1950.v20240304.ocean.native.3D_daily_avg_nodes_02/stac"
- type "application/json"
- title "ifs-fesom2-sr.eerie-control-1950.v20240304.ocean.native.3D_daily_avg_nodes_02"
455
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-fesom2-sr.eerie-control-1950.v20240304.ocean.gr025.2D_daily_avg_1950-2050/stac"
- type "application/json"
- title "ifs-fesom2-sr.eerie-control-1950.v20240304.ocean.gr025.2D_daily_avg_1950-2050"
456
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-fesom2-sr.eerie-control-1950.v20240304.ocean.gr025.2D_daily_avg_1984-2050/stac"
- type "application/json"
- title "ifs-fesom2-sr.eerie-control-1950.v20240304.ocean.gr025.2D_daily_avg_1984-2050"
457
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-fesom2-sr.eerie-control-1950.v20240304.ocean.gr025.2D_daily_avg_2000-2050/stac"
- type "application/json"
- title "ifs-fesom2-sr.eerie-control-1950.v20240304.ocean.gr025.2D_daily_avg_2000-2050"
458
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-fesom2-sr.eerie-control-1950.v20240304.ocean.gr025.AMOC/stac"
- type "application/json"
- title "ifs-fesom2-sr.eerie-control-1950.v20240304.ocean.gr025.AMOC"
459
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-fesom2-sr.eerie-control-1950.v20240304.land.gr025.3D_daily_avg/stac"
- type "application/json"
- title "ifs-fesom2-sr.eerie-control-1950.v20240304.land.gr025.3D_daily_avg"
460
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-fesom2-sr.eerie-control-1950.v20240304.land.gr025.3D_monthly_avg/stac"
- type "application/json"
- title "ifs-fesom2-sr.eerie-control-1950.v20240304.land.gr025.3D_monthly_avg"
461
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-fesom2-sr.eerie-control-1950.v20240304.land.gr025.3D_6hourly/stac"
- type "application/json"
- title "ifs-fesom2-sr.eerie-control-1950.v20240304.land.gr025.3D_6hourly"
462
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-fesom2-sr.eerie-control-1950.v20240304.land.native.3D_daily_avg/stac"
- type "application/json"
- title "ifs-fesom2-sr.eerie-control-1950.v20240304.land.native.3D_daily_avg"
463
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-fesom2-sr.eerie-control-1950.v20240304.land.native.3D_monthly_avg/stac"
- type "application/json"
- title "ifs-fesom2-sr.eerie-control-1950.v20240304.land.native.3D_monthly_avg"
464
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-fesom2-sr.eerie-control-1950.v20240304.land.native.3D_6hourly/stac"
- type "application/json"
- title "ifs-fesom2-sr.eerie-control-1950.v20240304.land.native.3D_6hourly"
465
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-fesom2-sr.hist-1950.v20240304.atmos.gr025.2D_daily_avg/stac"
- type "application/json"
- title "ifs-fesom2-sr.hist-1950.v20240304.atmos.gr025.2D_daily_avg"
466
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-fesom2-sr.hist-1950.v20240304.atmos.gr025.2D_daily_max/stac"
- type "application/json"
- title "ifs-fesom2-sr.hist-1950.v20240304.atmos.gr025.2D_daily_max"
467
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-fesom2-sr.hist-1950.v20240304.atmos.gr025.2D_daily_min/stac"
- type "application/json"
- title "ifs-fesom2-sr.hist-1950.v20240304.atmos.gr025.2D_daily_min"
468
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-fesom2-sr.hist-1950.v20240304.atmos.gr025.2D_monthly_avg/stac"
- type "application/json"
- title "ifs-fesom2-sr.hist-1950.v20240304.atmos.gr025.2D_monthly_avg"
469
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-fesom2-sr.hist-1950.v20240304.atmos.gr025.2D_monthly_max/stac"
- type "application/json"
- title "ifs-fesom2-sr.hist-1950.v20240304.atmos.gr025.2D_monthly_max"
470
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-fesom2-sr.hist-1950.v20240304.atmos.gr025.2D_monthly_min/stac"
- type "application/json"
- title "ifs-fesom2-sr.hist-1950.v20240304.atmos.gr025.2D_monthly_min"
471
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-fesom2-sr.hist-1950.v20240304.atmos.gr025.3D_daily_avg/stac"
- type "application/json"
- title "ifs-fesom2-sr.hist-1950.v20240304.atmos.gr025.3D_daily_avg"
472
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-fesom2-sr.hist-1950.v20240304.atmos.gr025.3D_monthly_avg/stac"
- type "application/json"
- title "ifs-fesom2-sr.hist-1950.v20240304.atmos.gr025.3D_monthly_avg"
473
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-fesom2-sr.hist-1950.v20240304.atmos.gr025.3D_6hourly/stac"
- type "application/json"
- title "ifs-fesom2-sr.hist-1950.v20240304.atmos.gr025.3D_6hourly"
474
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-fesom2-sr.hist-1950.v20240304.atmos.gr025.2D_6hourly_accumulated/stac"
- type "application/json"
- title "ifs-fesom2-sr.hist-1950.v20240304.atmos.gr025.2D_6hourly_accumulated"
475
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-fesom2-sr.hist-1950.v20240304.atmos.gr025.2D_6hourly_instant/stac"
- type "application/json"
- title "ifs-fesom2-sr.hist-1950.v20240304.atmos.gr025.2D_6hourly_instant"
476
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-fesom2-sr.hist-1950.v20240304.atmos.native.2D_daily_avg/stac"
- type "application/json"
- title "ifs-fesom2-sr.hist-1950.v20240304.atmos.native.2D_daily_avg"
477
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-fesom2-sr.hist-1950.v20240304.atmos.native.2D_daily_max/stac"
- type "application/json"
- title "ifs-fesom2-sr.hist-1950.v20240304.atmos.native.2D_daily_max"
478
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-fesom2-sr.hist-1950.v20240304.atmos.native.2D_daily_min/stac"
- type "application/json"
- title "ifs-fesom2-sr.hist-1950.v20240304.atmos.native.2D_daily_min"
479
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-fesom2-sr.hist-1950.v20240304.atmos.native.2D_monthly_avg/stac"
- type "application/json"
- title "ifs-fesom2-sr.hist-1950.v20240304.atmos.native.2D_monthly_avg"
480
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-fesom2-sr.hist-1950.v20240304.atmos.native.2D_monthly_max/stac"
- type "application/json"
- title "ifs-fesom2-sr.hist-1950.v20240304.atmos.native.2D_monthly_max"
481
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-fesom2-sr.hist-1950.v20240304.atmos.native.2D_monthly_min/stac"
- type "application/json"
- title "ifs-fesom2-sr.hist-1950.v20240304.atmos.native.2D_monthly_min"
482
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-fesom2-sr.hist-1950.v20240304.atmos.native.3D_daily_avg/stac"
- type "application/json"
- title "ifs-fesom2-sr.hist-1950.v20240304.atmos.native.3D_daily_avg"
483
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-fesom2-sr.hist-1950.v20240304.atmos.native.3D_monthly_avg/stac"
- type "application/json"
- title "ifs-fesom2-sr.hist-1950.v20240304.atmos.native.3D_monthly_avg"
484
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-fesom2-sr.hist-1950.v20240304.atmos.native.3D_6hourly/stac"
- type "application/json"
- title "ifs-fesom2-sr.hist-1950.v20240304.atmos.native.3D_6hourly"
485
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-fesom2-sr.hist-1950.v20240304.atmos.native.2D_6hourly_accumulated/stac"
- type "application/json"
- title "ifs-fesom2-sr.hist-1950.v20240304.atmos.native.2D_6hourly_accumulated"
486
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-fesom2-sr.hist-1950.v20240304.atmos.native.2D_6hourly_instant/stac"
- type "application/json"
- title "ifs-fesom2-sr.hist-1950.v20240304.atmos.native.2D_6hourly_instant"
487
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-fesom2-sr.hist-1950.v20240304.ocean.gr025.2D_daily_avg_1950-2014/stac"
- type "application/json"
- title "ifs-fesom2-sr.hist-1950.v20240304.ocean.gr025.2D_daily_avg_1950-2014"
488
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-fesom2-sr.hist-1950.v20240304.ocean.gr025.2D_daily_avg_2000-2014/stac"
- type "application/json"
- title "ifs-fesom2-sr.hist-1950.v20240304.ocean.gr025.2D_daily_avg_2000-2014"
489
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-fesom2-sr.hist-1950.v20240304.ocean.gr025.3D_daily_avg/stac"
- type "application/json"
- title "ifs-fesom2-sr.hist-1950.v20240304.ocean.gr025.3D_daily_avg"
490
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-fesom2-sr.hist-1950.v20240304.ocean.gr025.2D_monthly_avg/stac"
- type "application/json"
- title "ifs-fesom2-sr.hist-1950.v20240304.ocean.gr025.2D_monthly_avg"
491
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-fesom2-sr.hist-1950.v20240304.ocean.gr025.2D_monthly_avg_mlotst030/stac"
- type "application/json"
- title "ifs-fesom2-sr.hist-1950.v20240304.ocean.gr025.2D_monthly_avg_mlotst030"
492
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-fesom2-sr.hist-1950.v20240304.ocean.gr025.3D_monthly_avg/stac"
- type "application/json"
- title "ifs-fesom2-sr.hist-1950.v20240304.ocean.gr025.3D_monthly_avg"
493
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-fesom2-sr.hist-1950.v20240304.ocean.gr025.AMOC/stac"
- type "application/json"
- title "ifs-fesom2-sr.hist-1950.v20240304.ocean.gr025.AMOC"
494
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-fesom2-sr.hist-1950.v20240304.ocean.native.2D_daily_avg/stac"
- type "application/json"
- title "ifs-fesom2-sr.hist-1950.v20240304.ocean.native.2D_daily_avg"
495
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-fesom2-sr.hist-1950.v20240304.ocean.native.3D_daily_avg/stac"
- type "application/json"
- title "ifs-fesom2-sr.hist-1950.v20240304.ocean.native.3D_daily_avg"
496
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-fesom2-sr.hist-1950.v20240304.ocean.native.3D_monthly_avg_elems/stac"
- type "application/json"
- title "ifs-fesom2-sr.hist-1950.v20240304.ocean.native.3D_monthly_avg_elems"
497
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-fesom2-sr.hist-1950.v20240304.land.gr025.3D_daily_avg/stac"
- type "application/json"
- title "ifs-fesom2-sr.hist-1950.v20240304.land.gr025.3D_daily_avg"
498
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-fesom2-sr.hist-1950.v20240304.land.gr025.3D_monthly_avg/stac"
- type "application/json"
- title "ifs-fesom2-sr.hist-1950.v20240304.land.gr025.3D_monthly_avg"
499
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-fesom2-sr.hist-1950.v20240304.land.gr025.3D_6hourly/stac"
- type "application/json"
- title "ifs-fesom2-sr.hist-1950.v20240304.land.gr025.3D_6hourly"
500
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-fesom2-sr.hist-1950.v20240304.land.native.3D_daily_avg/stac"
- type "application/json"
- title "ifs-fesom2-sr.hist-1950.v20240304.land.native.3D_daily_avg"
501
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-fesom2-sr.hist-1950.v20240304.land.native.3D_monthly_avg/stac"
- type "application/json"
- title "ifs-fesom2-sr.hist-1950.v20240304.land.native.3D_monthly_avg"
502
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-fesom2-sr.hist-1950.v20240304.land.native.3D_6hourly/stac"
- type "application/json"
- title "ifs-fesom2-sr.hist-1950.v20240304.land.native.3D_6hourly"
503
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-fesom2-sr.highres-future-ssp245.v20240304.atmos.gr025.2D_daily_avg/stac"
- type "application/json"
- title "ifs-fesom2-sr.highres-future-ssp245.v20240304.atmos.gr025.2D_daily_avg"
504
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-fesom2-sr.highres-future-ssp245.v20240304.atmos.gr025.2D_daily_max/stac"
- type "application/json"
- title "ifs-fesom2-sr.highres-future-ssp245.v20240304.atmos.gr025.2D_daily_max"
505
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-fesom2-sr.highres-future-ssp245.v20240304.atmos.gr025.2D_daily_min/stac"
- type "application/json"
- title "ifs-fesom2-sr.highres-future-ssp245.v20240304.atmos.gr025.2D_daily_min"
506
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-fesom2-sr.highres-future-ssp245.v20240304.atmos.gr025.2D_monthly_avg/stac"
- type "application/json"
- title "ifs-fesom2-sr.highres-future-ssp245.v20240304.atmos.gr025.2D_monthly_avg"
507
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-fesom2-sr.highres-future-ssp245.v20240304.atmos.gr025.2D_monthly_max/stac"
- type "application/json"
- title "ifs-fesom2-sr.highres-future-ssp245.v20240304.atmos.gr025.2D_monthly_max"
508
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-fesom2-sr.highres-future-ssp245.v20240304.atmos.gr025.2D_monthly_min/stac"
- type "application/json"
- title "ifs-fesom2-sr.highres-future-ssp245.v20240304.atmos.gr025.2D_monthly_min"
509
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-fesom2-sr.highres-future-ssp245.v20240304.atmos.gr025.3D_daily_avg/stac"
- type "application/json"
- title "ifs-fesom2-sr.highres-future-ssp245.v20240304.atmos.gr025.3D_daily_avg"
510
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-fesom2-sr.highres-future-ssp245.v20240304.atmos.gr025.3D_monthly_avg/stac"
- type "application/json"
- title "ifs-fesom2-sr.highres-future-ssp245.v20240304.atmos.gr025.3D_monthly_avg"
511
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-fesom2-sr.highres-future-ssp245.v20240304.atmos.gr025.3D_6hourly/stac"
- type "application/json"
- title "ifs-fesom2-sr.highres-future-ssp245.v20240304.atmos.gr025.3D_6hourly"
512
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-fesom2-sr.highres-future-ssp245.v20240304.atmos.gr025.2D_6hourly_accumulated/stac"
- type "application/json"
- title "ifs-fesom2-sr.highres-future-ssp245.v20240304.atmos.gr025.2D_6hourly_accumulated"
513
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-fesom2-sr.highres-future-ssp245.v20240304.atmos.gr025.2D_6hourly_instant/stac"
- type "application/json"
- title "ifs-fesom2-sr.highres-future-ssp245.v20240304.atmos.gr025.2D_6hourly_instant"
514
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-fesom2-sr.highres-future-ssp245.v20240304.atmos.native.2D_daily_avg/stac"
- type "application/json"
- title "ifs-fesom2-sr.highres-future-ssp245.v20240304.atmos.native.2D_daily_avg"
515
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-fesom2-sr.highres-future-ssp245.v20240304.atmos.native.2D_daily_max/stac"
- type "application/json"
- title "ifs-fesom2-sr.highres-future-ssp245.v20240304.atmos.native.2D_daily_max"
516
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-fesom2-sr.highres-future-ssp245.v20240304.atmos.native.2D_daily_min/stac"
- type "application/json"
- title "ifs-fesom2-sr.highres-future-ssp245.v20240304.atmos.native.2D_daily_min"
517
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-fesom2-sr.highres-future-ssp245.v20240304.atmos.native.2D_monthly_avg/stac"
- type "application/json"
- title "ifs-fesom2-sr.highres-future-ssp245.v20240304.atmos.native.2D_monthly_avg"
518
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-fesom2-sr.highres-future-ssp245.v20240304.atmos.native.2D_monthly_max/stac"
- type "application/json"
- title "ifs-fesom2-sr.highres-future-ssp245.v20240304.atmos.native.2D_monthly_max"
519
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-fesom2-sr.highres-future-ssp245.v20240304.atmos.native.2D_monthly_min/stac"
- type "application/json"
- title "ifs-fesom2-sr.highres-future-ssp245.v20240304.atmos.native.2D_monthly_min"
520
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-fesom2-sr.highres-future-ssp245.v20240304.atmos.native.3D_daily_avg/stac"
- type "application/json"
- title "ifs-fesom2-sr.highres-future-ssp245.v20240304.atmos.native.3D_daily_avg"
521
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-fesom2-sr.highres-future-ssp245.v20240304.atmos.native.3D_monthly_avg/stac"
- type "application/json"
- title "ifs-fesom2-sr.highres-future-ssp245.v20240304.atmos.native.3D_monthly_avg"
522
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-fesom2-sr.highres-future-ssp245.v20240304.ocean.gr025.2D_daily_avg/stac"
- type "application/json"
- title "ifs-fesom2-sr.highres-future-ssp245.v20240304.ocean.gr025.2D_daily_avg"
523
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-fesom2-sr.highres-future-ssp245.v20240304.ocean.gr025.2D_monthly_avg/stac"
- type "application/json"
- title "ifs-fesom2-sr.highres-future-ssp245.v20240304.ocean.gr025.2D_monthly_avg"
524
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-fesom2-sr.highres-future-ssp245.v20240304.ocean.gr025.3D_daily_avg/stac"
- type "application/json"
- title "ifs-fesom2-sr.highres-future-ssp245.v20240304.ocean.gr025.3D_daily_avg"
525
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-fesom2-sr.highres-future-ssp245.v20240304.ocean.gr025.3D_daily_avg_w/stac"
- type "application/json"
- title "ifs-fesom2-sr.highres-future-ssp245.v20240304.ocean.gr025.3D_daily_avg_w"
526
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-fesom2-sr.highres-future-ssp245.v20240304.ocean.gr025.3D_monthly_avg/stac"
- type "application/json"
- title "ifs-fesom2-sr.highres-future-ssp245.v20240304.ocean.gr025.3D_monthly_avg"
527
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-fesom2-sr.highres-future-ssp245.v20240304.ocean.gr025.AMOC/stac"
- type "application/json"
- title "ifs-fesom2-sr.highres-future-ssp245.v20240304.ocean.gr025.AMOC"
528
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-fesom2-sr.highres-future-ssp245.v20240304.ocean.native.3D_daily_avg/stac"
- type "application/json"
- title "ifs-fesom2-sr.highres-future-ssp245.v20240304.ocean.native.3D_daily_avg"
529
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-fesom2-sr.highres-future-ssp245.v20240304.ocean.native.3D_monthly_avg/stac"
- type "application/json"
- title "ifs-fesom2-sr.highres-future-ssp245.v20240304.ocean.native.3D_monthly_avg"
530
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-fesom2-sr.highres-future-ssp245.v20240304.land.gr025.3D_daily_avg/stac"
- type "application/json"
- title "ifs-fesom2-sr.highres-future-ssp245.v20240304.land.gr025.3D_daily_avg"
531
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-fesom2-sr.highres-future-ssp245.v20240304.land.gr025.3D_monthly_avg/stac"
- type "application/json"
- title "ifs-fesom2-sr.highres-future-ssp245.v20240304.land.gr025.3D_monthly_avg"
532
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-fesom2-sr.highres-future-ssp245.v20240304.land.gr025.3D_6hourly/stac"
- type "application/json"
- title "ifs-fesom2-sr.highres-future-ssp245.v20240304.land.gr025.3D_6hourly"
533
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-fesom2-sr.highres-future-ssp245.v20240304.land.native.3D_daily_avg/stac"
- type "application/json"
- title "ifs-fesom2-sr.highres-future-ssp245.v20240304.land.native.3D_daily_avg"
534
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-fesom2-sr.highres-future-ssp245.v20240304.land.native.3D_monthly_avg/stac"
- type "application/json"
- title "ifs-fesom2-sr.highres-future-ssp245.v20240304.land.native.3D_monthly_avg"
535
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco3999.hist.v20250101.atmos.gr025.2D_1h/stac"
- type "application/json"
- title "ifs-amip-tco3999.hist.v20250101.atmos.gr025.2D_1h"
536
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco3999.hist.v20250101.atmos.gr025.2D_1h_acc/stac"
- type "application/json"
- title "ifs-amip-tco3999.hist.v20250101.atmos.gr025.2D_1h_acc"
537
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco3999.hist.v20250101.atmos.gr025.3D_1h/stac"
- type "application/json"
- title "ifs-amip-tco3999.hist.v20250101.atmos.gr025.3D_1h"
538
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco3999.hist.v20250101.atmos.healpix_ng.ifs_tco3999_rcbmf/stac"
- type "application/json"
- title "ifs-amip-tco3999.hist.v20250101.atmos.healpix_ng.ifs_tco3999_rcbmf"
539
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco3999.hist.v20250101.atmos.healpix_ng.ifs_tco3999_rcbmf.PT1H_7/stac"
- type "application/json"
- title "ifs-amip-tco3999.hist.v20250101.atmos.healpix_ng.ifs_tco3999_rcbmf.PT1H_7"
540
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco3999.hist.v20250101.atmos.healpix_ng.ifs_tco3999_rcbmf.PT1H_11/stac"
- type "application/json"
- title "ifs-amip-tco3999.hist.v20250101.atmos.healpix_ng.ifs_tco3999_rcbmf.PT1H_11"
541
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco3999.hist.v20250101.atmos.healpix_ng.ifs_tco3999_rcbmf.P1M_7/stac"
- type "application/json"
- title "ifs-amip-tco3999.hist.v20250101.atmos.healpix_ng.ifs_tco3999_rcbmf.P1M_7"
542
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco2559.hist.v20240901.atmos.gr025.2D_monthly/stac"
- type "application/json"
- title "ifs-amip-tco2559.hist.v20240901.atmos.gr025.2D_monthly"
543
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco2559.hist.v20240901.atmos.gr025.2D_24h/stac"
- type "application/json"
- title "ifs-amip-tco2559.hist.v20240901.atmos.gr025.2D_24h"
544
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco2559.hist.v20240901.atmos.gr025.2D_1h/stac"
- type "application/json"
- title "ifs-amip-tco2559.hist.v20240901.atmos.gr025.2D_1h"
545
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco2559.hist.v20240901.atmos.gr025.2D_1h_acc/stac"
- type "application/json"
- title "ifs-amip-tco2559.hist.v20240901.atmos.gr025.2D_1h_acc"
546
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco2559.hist.v20240901.atmos.gr025.3D_monthly/stac"
- type "application/json"
- title "ifs-amip-tco2559.hist.v20240901.atmos.gr025.3D_monthly"
547
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco2559.hist.v20240901.atmos.gr025.3D_24h/stac"
- type "application/json"
- title "ifs-amip-tco2559.hist.v20240901.atmos.gr025.3D_24h"
548
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco2559.hist.v20240901.atmos.gr025.3D_1h/stac"
- type "application/json"
- title "ifs-amip-tco2559.hist.v20240901.atmos.gr025.3D_1h"
549
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco2559.hist.v20250101.atmos.gr025.2D_monthly/stac"
- type "application/json"
- title "ifs-amip-tco2559.hist.v20250101.atmos.gr025.2D_monthly"
550
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco2559.hist.v20250101.atmos.gr025.2D_monthly_extra/stac"
- type "application/json"
- title "ifs-amip-tco2559.hist.v20250101.atmos.gr025.2D_monthly_extra"
551
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco2559.hist.v20250101.atmos.gr025.2D_24h/stac"
- type "application/json"
- title "ifs-amip-tco2559.hist.v20250101.atmos.gr025.2D_24h"
552
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco2559.hist.v20250101.atmos.gr025.2D_24h_extra/stac"
- type "application/json"
- title "ifs-amip-tco2559.hist.v20250101.atmos.gr025.2D_24h_extra"
553
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco2559.hist.v20250101.atmos.gr025.2D_1h/stac"
- type "application/json"
- title "ifs-amip-tco2559.hist.v20250101.atmos.gr025.2D_1h"
554
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco2559.hist.v20250101.atmos.gr025.2D_1h_extra/stac"
- type "application/json"
- title "ifs-amip-tco2559.hist.v20250101.atmos.gr025.2D_1h_extra"
555
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco2559.hist.v20250101.atmos.gr025.2D_1h_acc/stac"
- type "application/json"
- title "ifs-amip-tco2559.hist.v20250101.atmos.gr025.2D_1h_acc"
556
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco2559.hist.v20250101.atmos.gr025.2D_1h_acc_extra/stac"
- type "application/json"
- title "ifs-amip-tco2559.hist.v20250101.atmos.gr025.2D_1h_acc_extra"
557
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco2559.hist.v20250101.atmos.gr025.3D_monthly/stac"
- type "application/json"
- title "ifs-amip-tco2559.hist.v20250101.atmos.gr025.3D_monthly"
558
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco2559.hist.v20250101.atmos.gr025.3D_24h/stac"
- type "application/json"
- title "ifs-amip-tco2559.hist.v20250101.atmos.gr025.3D_24h"
559
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco2559.hist.v20250101.atmos.gr025.3D_1h/stac"
- type "application/json"
- title "ifs-amip-tco2559.hist.v20250101.atmos.gr025.3D_1h"
560
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco2559.hist.v20250101.atmos.native.2D_24h/stac"
- type "application/json"
- title "ifs-amip-tco2559.hist.v20250101.atmos.native.2D_24h"
561
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco2559.hist.v20250101.atmos.native.2D_24h_extra/stac"
- type "application/json"
- title "ifs-amip-tco2559.hist.v20250101.atmos.native.2D_24h_extra"
562
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco2559.hist.v20250101.atmos.native.2D_1h/stac"
- type "application/json"
- title "ifs-amip-tco2559.hist.v20250101.atmos.native.2D_1h"
563
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco2559.hist.v20250101.atmos.native.2D_1h_extra/stac"
- type "application/json"
- title "ifs-amip-tco2559.hist.v20250101.atmos.native.2D_1h_extra"
564
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco2559.hist.v20250101.atmos.native.2D_1h_acc/stac"
- type "application/json"
- title "ifs-amip-tco2559.hist.v20250101.atmos.native.2D_1h_acc"
565
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco2559.hist.v20250101.atmos.native.2D_1h_acc_extra/stac"
- type "application/json"
- title "ifs-amip-tco2559.hist.v20250101.atmos.native.2D_1h_acc_extra"
566
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco2559.hist.v20250101.atmos.native.3D_24h/stac"
- type "application/json"
- title "ifs-amip-tco2559.hist.v20250101.atmos.native.3D_24h"
567
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco2559.hist.v20250101.atmos.native.3D_1h/stac"
- type "application/json"
- title "ifs-amip-tco2559.hist.v20250101.atmos.native.3D_1h"
568
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco2559.hist.v20250101.atmos.healpix_ng.ifs_tco2559_rcbmf/stac"
- type "application/json"
- title "ifs-amip-tco2559.hist.v20250101.atmos.healpix_ng.ifs_tco2559_rcbmf"
569
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco2559.hist.v20250101.atmos.healpix_ng.ifs_tco2559_rcbmf.PT1H_7/stac"
- type "application/json"
- title "ifs-amip-tco2559.hist.v20250101.atmos.healpix_ng.ifs_tco2559_rcbmf.PT1H_7"
570
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco2559.hist.v20250101.atmos.healpix_ng.ifs_tco2559_rcbmf.PT1H_10/stac"
- type "application/json"
- title "ifs-amip-tco2559.hist.v20250101.atmos.healpix_ng.ifs_tco2559_rcbmf.PT1H_10"
571
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco2559.hist.v20250101.atmos.healpix_ng.ifs_tco2559_rcbmf.P1D_7/stac"
- type "application/json"
- title "ifs-amip-tco2559.hist.v20250101.atmos.healpix_ng.ifs_tco2559_rcbmf.P1D_7"
572
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco2559.hist.v20250101.atmos.healpix_ng.ifs_tco2559_rcbmf.P1D_10/stac"
- type "application/json"
- title "ifs-amip-tco2559.hist.v20250101.atmos.healpix_ng.ifs_tco2559_rcbmf.P1D_10"
573
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco2559.hist.v20250101.atmos.healpix_ng.ifs_tco2559_rcbmf.P1M_7/stac"
- type "application/json"
- title "ifs-amip-tco2559.hist.v20250101.atmos.healpix_ng.ifs_tco2559_rcbmf.P1M_7"
574
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco1279.hist.v20240901.atmos.gr025.2D_monthly/stac"
- type "application/json"
- title "ifs-amip-tco1279.hist.v20240901.atmos.gr025.2D_monthly"
575
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco1279.hist.v20240901.atmos.gr025.2D_24h/stac"
- type "application/json"
- title "ifs-amip-tco1279.hist.v20240901.atmos.gr025.2D_24h"
576
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco1279.hist.v20240901.atmos.gr025.2D_6h/stac"
- type "application/json"
- title "ifs-amip-tco1279.hist.v20240901.atmos.gr025.2D_6h"
577
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco1279.hist.v20240901.atmos.gr025.2D_6h_acc/stac"
- type "application/json"
- title "ifs-amip-tco1279.hist.v20240901.atmos.gr025.2D_6h_acc"
578
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco1279.hist.v20240901.atmos.gr025.3D_monthly/stac"
- type "application/json"
- title "ifs-amip-tco1279.hist.v20240901.atmos.gr025.3D_monthly"
579
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco1279.hist.v20240901.atmos.gr025.3D_24h/stac"
- type "application/json"
- title "ifs-amip-tco1279.hist.v20240901.atmos.gr025.3D_24h"
580
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco1279.hist.v20240901.atmos.gr025.3D_6h/stac"
- type "application/json"
- title "ifs-amip-tco1279.hist.v20240901.atmos.gr025.3D_6h"
581
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco1279.hist.v20240901.wave.gr025.2D_monthly/stac"
- type "application/json"
- title "ifs-amip-tco1279.hist.v20240901.wave.gr025.2D_monthly"
582
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco1279.hist.v20240901.atmos.native.2D_24h/stac"
- type "application/json"
- title "ifs-amip-tco1279.hist.v20240901.atmos.native.2D_24h"
583
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco1279.hist.v20240901.atmos.native.2D_24h_wam/stac"
- type "application/json"
- title "ifs-amip-tco1279.hist.v20240901.atmos.native.2D_24h_wam"
584
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco1279.hist.v20240901.atmos.native.2D_6h/stac"
- type "application/json"
- title "ifs-amip-tco1279.hist.v20240901.atmos.native.2D_6h"
585
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco1279.hist.v20240901.atmos.native.2D_6h_acc/stac"
- type "application/json"
- title "ifs-amip-tco1279.hist.v20240901.atmos.native.2D_6h_acc"
586
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco1279.hist.v20240901.atmos.native.2D_6h_wam/stac"
- type "application/json"
- title "ifs-amip-tco1279.hist.v20240901.atmos.native.2D_6h_wam"
587
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco1279.hist.v20240901.atmos.native.2D_monthly/stac"
- type "application/json"
- title "ifs-amip-tco1279.hist.v20240901.atmos.native.2D_monthly"
588
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco1279.hist.v20240901.atmos.native.2D_monthly_wam/stac"
- type "application/json"
- title "ifs-amip-tco1279.hist.v20240901.atmos.native.2D_monthly_wam"
589
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco1279.hist.v20240901.atmos.native.3D_24h/stac"
- type "application/json"
- title "ifs-amip-tco1279.hist.v20240901.atmos.native.3D_24h"
590
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco1279.hist.v20240901.atmos.native.3D_6h/stac"
- type "application/json"
- title "ifs-amip-tco1279.hist.v20240901.atmos.native.3D_6h"
591
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco1279.hist.v20240901.atmos.native.3D_monthly/stac"
- type "application/json"
- title "ifs-amip-tco1279.hist.v20240901.atmos.native.3D_monthly"
592
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco1279.hist-c-0-a-lr20.v20240901.atmos.gr025.2D_monthly/stac"
- type "application/json"
- title "ifs-amip-tco1279.hist-c-0-a-lr20.v20240901.atmos.gr025.2D_monthly"
593
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco1279.hist-c-0-a-lr20.v20240901.atmos.gr025.2D_24h/stac"
- type "application/json"
- title "ifs-amip-tco1279.hist-c-0-a-lr20.v20240901.atmos.gr025.2D_24h"
594
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco1279.hist-c-0-a-lr20.v20240901.atmos.gr025.2D_6h/stac"
- type "application/json"
- title "ifs-amip-tco1279.hist-c-0-a-lr20.v20240901.atmos.gr025.2D_6h"
595
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco1279.hist-c-0-a-lr20.v20240901.atmos.gr025.2D_6h_acc/stac"
- type "application/json"
- title "ifs-amip-tco1279.hist-c-0-a-lr20.v20240901.atmos.gr025.2D_6h_acc"
596
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco1279.hist-c-0-a-lr20.v20240901.atmos.gr025.3D_monthly/stac"
- type "application/json"
- title "ifs-amip-tco1279.hist-c-0-a-lr20.v20240901.atmos.gr025.3D_monthly"
597
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco1279.hist-c-0-a-lr20.v20240901.atmos.gr025.3D_24h/stac"
- type "application/json"
- title "ifs-amip-tco1279.hist-c-0-a-lr20.v20240901.atmos.gr025.3D_24h"
598
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco1279.hist-c-0-a-lr20.v20240901.atmos.gr025.3D_6h/stac"
- type "application/json"
- title "ifs-amip-tco1279.hist-c-0-a-lr20.v20240901.atmos.gr025.3D_6h"
599
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco1279.hist-c-0-a-lr20.v20240901.wave.gr025.2D_monthly/stac"
- type "application/json"
- title "ifs-amip-tco1279.hist-c-0-a-lr20.v20240901.wave.gr025.2D_monthly"
600
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco1279.hist-c-0-a-lr20.v20240901.atmos.native.2D_monthly/stac"
- type "application/json"
- title "ifs-amip-tco1279.hist-c-0-a-lr20.v20240901.atmos.native.2D_monthly"
601
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco1279.hist-c-0-a-lr20.v20240901.atmos.native.2D_24h/stac"
- type "application/json"
- title "ifs-amip-tco1279.hist-c-0-a-lr20.v20240901.atmos.native.2D_24h"
602
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco1279.hist-c-0-a-lr20.v20240901.atmos.native.2D_6h/stac"
- type "application/json"
- title "ifs-amip-tco1279.hist-c-0-a-lr20.v20240901.atmos.native.2D_6h"
603
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco1279.hist-c-0-a-lr20.v20240901.atmos.native.2D_6h_acc/stac"
- type "application/json"
- title "ifs-amip-tco1279.hist-c-0-a-lr20.v20240901.atmos.native.2D_6h_acc"
604
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco1279.hist-c-0-a-lr20.v20240901.atmos.native.3D_monthly/stac"
- type "application/json"
- title "ifs-amip-tco1279.hist-c-0-a-lr20.v20240901.atmos.native.3D_monthly"
605
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco1279.hist-c-0-a-lr20.v20240901.atmos.native.3D_24h/stac"
- type "application/json"
- title "ifs-amip-tco1279.hist-c-0-a-lr20.v20240901.atmos.native.3D_24h"
606
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco1279.hist-c-0-a-lr20.v20240901.atmos.native.3D_6h/stac"
- type "application/json"
- title "ifs-amip-tco1279.hist-c-0-a-lr20.v20240901.atmos.native.3D_6h"
607
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco1279.hist-c-0-a-lr20.v20240901.atmos.native.2D_monthly_wam/stac"
- type "application/json"
- title "ifs-amip-tco1279.hist-c-0-a-lr20.v20240901.atmos.native.2D_monthly_wam"
608
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco1279.hist-c-0-a-lr20.v20240901.atmos.native.2D_24h_wam/stac"
- type "application/json"
- title "ifs-amip-tco1279.hist-c-0-a-lr20.v20240901.atmos.native.2D_24h_wam"
609
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco1279.hist-c-0-a-lr20.v20240901.atmos.native.2D_6h_wam/stac"
- type "application/json"
- title "ifs-amip-tco1279.hist-c-0-a-lr20.v20240901.atmos.native.2D_6h_wam"
610
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco399.hist-c-0-a-lr20.v20240901.atmos.gr025.2D_monthly/stac"
- type "application/json"
- title "ifs-amip-tco399.hist-c-0-a-lr20.v20240901.atmos.gr025.2D_monthly"
611
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco399.hist-c-0-a-lr20.v20240901.atmos.gr025.2D_24h/stac"
- type "application/json"
- title "ifs-amip-tco399.hist-c-0-a-lr20.v20240901.atmos.gr025.2D_24h"
612
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco399.hist-c-0-a-lr20.v20240901.atmos.gr025.2D_6h/stac"
- type "application/json"
- title "ifs-amip-tco399.hist-c-0-a-lr20.v20240901.atmos.gr025.2D_6h"
613
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco399.hist-c-0-a-lr20.v20240901.atmos.gr025.2D_6h_acc/stac"
- type "application/json"
- title "ifs-amip-tco399.hist-c-0-a-lr20.v20240901.atmos.gr025.2D_6h_acc"
614
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco399.hist-c-0-a-lr20.v20240901.atmos.gr025.3D_monthly/stac"
- type "application/json"
- title "ifs-amip-tco399.hist-c-0-a-lr20.v20240901.atmos.gr025.3D_monthly"
615
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco399.hist-c-0-a-lr20.v20240901.atmos.gr025.3D_24h/stac"
- type "application/json"
- title "ifs-amip-tco399.hist-c-0-a-lr20.v20240901.atmos.gr025.3D_24h"
616
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco399.hist-c-0-a-lr20.v20240901.atmos.gr025.3D_6h/stac"
- type "application/json"
- title "ifs-amip-tco399.hist-c-0-a-lr20.v20240901.atmos.gr025.3D_6h"
617
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco399.hist-c-0-a-lr20.v20240901.wave.gr025.2D_monthly/stac"
- type "application/json"
- title "ifs-amip-tco399.hist-c-0-a-lr20.v20240901.wave.gr025.2D_monthly"
618
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco399.hist-c-0-a-lr20.v20240901.atmos.native.2D_monthly/stac"
- type "application/json"
- title "ifs-amip-tco399.hist-c-0-a-lr20.v20240901.atmos.native.2D_monthly"
619
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco399.hist-c-0-a-lr20.v20240901.atmos.native.2D_24h/stac"
- type "application/json"
- title "ifs-amip-tco399.hist-c-0-a-lr20.v20240901.atmos.native.2D_24h"
620
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco399.hist-c-0-a-lr20.v20240901.atmos.native.2D_6h/stac"
- type "application/json"
- title "ifs-amip-tco399.hist-c-0-a-lr20.v20240901.atmos.native.2D_6h"
621
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco399.hist-c-0-a-lr20.v20240901.atmos.native.2D_6h_acc/stac"
- type "application/json"
- title "ifs-amip-tco399.hist-c-0-a-lr20.v20240901.atmos.native.2D_6h_acc"
622
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco399.hist-c-0-a-lr20.v20240901.atmos.native.3D_monthly/stac"
- type "application/json"
- title "ifs-amip-tco399.hist-c-0-a-lr20.v20240901.atmos.native.3D_monthly"
623
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco399.hist-c-0-a-lr20.v20240901.atmos.native.3D_24h/stac"
- type "application/json"
- title "ifs-amip-tco399.hist-c-0-a-lr20.v20240901.atmos.native.3D_24h"
624
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco399.hist-c-0-a-lr20.v20240901.atmos.native.3D_6h/stac"
- type "application/json"
- title "ifs-amip-tco399.hist-c-0-a-lr20.v20240901.atmos.native.3D_6h"
625
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco399.hist-c-0-a-lr20.v20240901.atmos.native.2D_monthly_wam/stac"
- type "application/json"
- title "ifs-amip-tco399.hist-c-0-a-lr20.v20240901.atmos.native.2D_monthly_wam"
626
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco399.hist-c-0-a-lr20.v20240901.atmos.native.2D_24h_wam/stac"
- type "application/json"
- title "ifs-amip-tco399.hist-c-0-a-lr20.v20240901.atmos.native.2D_24h_wam"
627
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco399.hist-c-0-a-lr20.v20240901.atmos.native.2D_6h_wam/stac"
- type "application/json"
- title "ifs-amip-tco399.hist-c-0-a-lr20.v20240901.atmos.native.2D_6h_wam"
628
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco399.hist-c-lr20-a-0.v20240901.atmos.gr025.2D_monthly/stac"
- type "application/json"
- title "ifs-amip-tco399.hist-c-lr20-a-0.v20240901.atmos.gr025.2D_monthly"
629
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco399.hist-c-lr20-a-0.v20240901.atmos.gr025.2D_24h/stac"
- type "application/json"
- title "ifs-amip-tco399.hist-c-lr20-a-0.v20240901.atmos.gr025.2D_24h"
630
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco399.hist-c-lr20-a-0.v20240901.atmos.gr025.2D_6h/stac"
- type "application/json"
- title "ifs-amip-tco399.hist-c-lr20-a-0.v20240901.atmos.gr025.2D_6h"
631
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco399.hist-c-lr20-a-0.v20240901.atmos.gr025.2D_6h_acc/stac"
- type "application/json"
- title "ifs-amip-tco399.hist-c-lr20-a-0.v20240901.atmos.gr025.2D_6h_acc"
632
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco399.hist-c-lr20-a-0.v20240901.atmos.gr025.3D_monthly/stac"
- type "application/json"
- title "ifs-amip-tco399.hist-c-lr20-a-0.v20240901.atmos.gr025.3D_monthly"
633
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco399.hist-c-lr20-a-0.v20240901.atmos.gr025.3D_24h/stac"
- type "application/json"
- title "ifs-amip-tco399.hist-c-lr20-a-0.v20240901.atmos.gr025.3D_24h"
634
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco399.hist-c-lr20-a-0.v20240901.atmos.gr025.3D_6h/stac"
- type "application/json"
- title "ifs-amip-tco399.hist-c-lr20-a-0.v20240901.atmos.gr025.3D_6h"
635
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco399.hist-c-lr20-a-0.v20240901.wave.gr025.2D_monthly/stac"
- type "application/json"
- title "ifs-amip-tco399.hist-c-lr20-a-0.v20240901.wave.gr025.2D_monthly"
636
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco399.hist-c-lr20-a-0.v20240901.atmos.native.2D_monthly_wam/stac"
- type "application/json"
- title "ifs-amip-tco399.hist-c-lr20-a-0.v20240901.atmos.native.2D_monthly_wam"
637
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco399.hist-c-lr20-a-0.v20240901.atmos.native.2D_monthly/stac"
- type "application/json"
- title "ifs-amip-tco399.hist-c-lr20-a-0.v20240901.atmos.native.2D_monthly"
638
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco399.hist-c-lr20-a-0.v20240901.atmos.native.2D_24h/stac"
- type "application/json"
- title "ifs-amip-tco399.hist-c-lr20-a-0.v20240901.atmos.native.2D_24h"
639
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco399.hist-c-lr20-a-0.v20240901.atmos.native.2D_24h_wam/stac"
- type "application/json"
- title "ifs-amip-tco399.hist-c-lr20-a-0.v20240901.atmos.native.2D_24h_wam"
640
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco399.hist-c-lr20-a-0.v20240901.atmos.native.2D_6h/stac"
- type "application/json"
- title "ifs-amip-tco399.hist-c-lr20-a-0.v20240901.atmos.native.2D_6h"
641
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco399.hist-c-lr20-a-0.v20240901.atmos.native.2D_6h_wam/stac"
- type "application/json"
- title "ifs-amip-tco399.hist-c-lr20-a-0.v20240901.atmos.native.2D_6h_wam"
642
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco399.hist-c-lr20-a-0.v20240901.atmos.native.2D_6h_acc/stac"
- type "application/json"
- title "ifs-amip-tco399.hist-c-lr20-a-0.v20240901.atmos.native.2D_6h_acc"
643
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco399.hist-c-lr20-a-0.v20240901.atmos.native.3D_monthly/stac"
- type "application/json"
- title "ifs-amip-tco399.hist-c-lr20-a-0.v20240901.atmos.native.3D_monthly"
644
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco399.hist-c-lr20-a-0.v20240901.atmos.native.3D_24h/stac"
- type "application/json"
- title "ifs-amip-tco399.hist-c-lr20-a-0.v20240901.atmos.native.3D_24h"
645
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco399.hist-c-lr20-a-0.v20240901.atmos.native.3D_6h/stac"
- type "application/json"
- title "ifs-amip-tco399.hist-c-lr20-a-0.v20240901.atmos.native.3D_6h"
646
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco399.hist.v20240901.atmos.gr025.2D_monthly/stac"
- type "application/json"
- title "ifs-amip-tco399.hist.v20240901.atmos.gr025.2D_monthly"
647
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco399.hist.v20240901.atmos.gr025.2D_24h/stac"
- type "application/json"
- title "ifs-amip-tco399.hist.v20240901.atmos.gr025.2D_24h"
648
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco399.hist.v20240901.atmos.gr025.2D_6h/stac"
- type "application/json"
- title "ifs-amip-tco399.hist.v20240901.atmos.gr025.2D_6h"
649
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco399.hist.v20240901.atmos.gr025.2D_6h_acc/stac"
- type "application/json"
- title "ifs-amip-tco399.hist.v20240901.atmos.gr025.2D_6h_acc"
650
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco399.hist.v20240901.atmos.gr025.3D_monthly/stac"
- type "application/json"
- title "ifs-amip-tco399.hist.v20240901.atmos.gr025.3D_monthly"
651
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco399.hist.v20240901.atmos.gr025.3D_24h/stac"
- type "application/json"
- title "ifs-amip-tco399.hist.v20240901.atmos.gr025.3D_24h"
652
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco399.hist.v20240901.atmos.gr025.3D_6h/stac"
- type "application/json"
- title "ifs-amip-tco399.hist.v20240901.atmos.gr025.3D_6h"
653
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco399.hist.v20240901.wave.gr025.2D_monthly/stac"
- type "application/json"
- title "ifs-amip-tco399.hist.v20240901.wave.gr025.2D_monthly"
654
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco399.hist.v20240901.atmos.native.2D_monthly/stac"
- type "application/json"
- title "ifs-amip-tco399.hist.v20240901.atmos.native.2D_monthly"
655
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco399.hist.v20240901.atmos.native.2D_24h/stac"
- type "application/json"
- title "ifs-amip-tco399.hist.v20240901.atmos.native.2D_24h"
656
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco399.hist.v20240901.atmos.native.2D_6h/stac"
- type "application/json"
- title "ifs-amip-tco399.hist.v20240901.atmos.native.2D_6h"
657
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco399.hist.v20240901.atmos.native.2D_6h_acc/stac"
- type "application/json"
- title "ifs-amip-tco399.hist.v20240901.atmos.native.2D_6h_acc"
658
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco399.hist.v20240901.atmos.native.3D_monthly/stac"
- type "application/json"
- title "ifs-amip-tco399.hist.v20240901.atmos.native.3D_monthly"
659
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco399.hist.v20240901.atmos.native.3D_24h/stac"
- type "application/json"
- title "ifs-amip-tco399.hist.v20240901.atmos.native.3D_24h"
660
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco399.hist.v20240901.atmos.native.3D_6h/stac"
- type "application/json"
- title "ifs-amip-tco399.hist.v20240901.atmos.native.3D_6h"
661
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco399.hist.v20240901.atmos.native.2D_monthly_wam/stac"
- type "application/json"
- title "ifs-amip-tco399.hist.v20240901.atmos.native.2D_monthly_wam"
662
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco399.hist.v20240901.atmos.native.2D_24h_wam/stac"
- type "application/json"
- title "ifs-amip-tco399.hist.v20240901.atmos.native.2D_24h_wam"
663
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-amip-tco399.hist.v20240901.atmos.native.2D_6h_wam/stac"
- type "application/json"
- title "ifs-amip-tco399.hist.v20240901.atmos.native.2D_6h_wam"
664
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-nemo-er.hist-1950.v20250516.atmos.gr025.Amon/stac"
- type "application/json"
- title "ifs-nemo-er.hist-1950.v20250516.atmos.gr025.Amon"
665
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-nemo-er.hist-1950.v20250516.atmos.gr025.Omon/stac"
- type "application/json"
- title "ifs-nemo-er.hist-1950.v20250516.atmos.gr025.Omon"
666
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/ifs-nemo-er.hist-1950.v20250516.atmos.gr025.SImon/stac"
- type "application/json"
- title "ifs-nemo-er.hist-1950.v20250516.atmos.gr025.SImon"
667
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/hadgem3-gc5-n640-orca12.eerie-picontrol.atmos.gr025.daily/stac"
- type "application/json"
- title "hadgem3-gc5-n640-orca12.eerie-picontrol.atmos.gr025.daily"
668
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/hadgem3-gc5-n640-orca12.eerie-picontrol.atmos.native.atmos_daily_center/stac"
- type "application/json"
- title "hadgem3-gc5-n640-orca12.eerie-picontrol.atmos.native.atmos_daily_center"
669
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/hadgem3-gc5-n640-orca12.eerie-picontrol.atmos.native.atmos_daily_edge/stac"
- type "application/json"
- title "hadgem3-gc5-n640-orca12.eerie-picontrol.atmos.native.atmos_daily_edge"
670
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/hadgem3-gc5-n640-orca12.eerie-picontrol.atmos.native.atmos_monthly_aermon/stac"
- type "application/json"
- title "hadgem3-gc5-n640-orca12.eerie-picontrol.atmos.native.atmos_monthly_aermon"
671
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/hadgem3-gc5-n640-orca12.eerie-picontrol.atmos.native.atmos_monthly_amon_center/stac"
- type "application/json"
- title "hadgem3-gc5-n640-orca12.eerie-picontrol.atmos.native.atmos_monthly_amon_center"
672
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/hadgem3-gc5-n640-orca12.eerie-picontrol.atmos.native.atmos_monthly_amon_edge/stac"
- type "application/json"
- title "hadgem3-gc5-n640-orca12.eerie-picontrol.atmos.native.atmos_monthly_amon_edge"
673
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/hadgem3-gc5-n640-orca12.eerie-picontrol.atmos.native.atmos_monthly_emon/stac"
- type "application/json"
- title "hadgem3-gc5-n640-orca12.eerie-picontrol.atmos.native.atmos_monthly_emon"
674
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/hadgem3-gc5-n640-orca12.eerie-picontrol.ocean.gr025.daily/stac"
- type "application/json"
- title "hadgem3-gc5-n640-orca12.eerie-picontrol.ocean.gr025.daily"
675
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/hadgem3-gc5-n640-orca12.eerie-picontrol.ocean.gr025.monthly/stac"
- type "application/json"
- title "hadgem3-gc5-n640-orca12.eerie-picontrol.ocean.gr025.monthly"
676
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/hadgem3-gc5-n216-orca025.eerie-picontrol.atmos.gr025.daily/stac"
- type "application/json"
- title "hadgem3-gc5-n216-orca025.eerie-picontrol.atmos.gr025.daily"
677
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/hadgem3-gc5-n216-orca025.eerie-picontrol.atmos.native.atmos_monthly_aermon/stac"
- type "application/json"
- title "hadgem3-gc5-n216-orca025.eerie-picontrol.atmos.native.atmos_monthly_aermon"
678
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/hadgem3-gc5-n216-orca025.eerie-picontrol.atmos.native.atmos_monthly_amon_center/stac"
- type "application/json"
- title "hadgem3-gc5-n216-orca025.eerie-picontrol.atmos.native.atmos_monthly_amon_center"
679
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/hadgem3-gc5-n216-orca025.eerie-picontrol.atmos.native.atmos_monthly_amon_edge/stac"
- type "application/json"
- title "hadgem3-gc5-n216-orca025.eerie-picontrol.atmos.native.atmos_monthly_amon_edge"
680
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/hadgem3-gc5-n216-orca025.eerie-picontrol.atmos.native.atmos_monthly_emon/stac"
- type "application/json"
- title "hadgem3-gc5-n216-orca025.eerie-picontrol.atmos.native.atmos_monthly_emon"
681
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/hadgem3-gc5-n216-orca025.eerie-picontrol.atmos.native.atmos_daily_center/stac"
- type "application/json"
- title "hadgem3-gc5-n216-orca025.eerie-picontrol.atmos.native.atmos_daily_center"
682
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/hadgem3-gc5-n216-orca025.eerie-picontrol.atmos.native.atmos_daily_edge/stac"
- type "application/json"
- title "hadgem3-gc5-n216-orca025.eerie-picontrol.atmos.native.atmos_daily_edge"
683
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/hadgem3-gc5-n216-orca025.eerie-picontrol.ocean.gr025.daily/stac"
- type "application/json"
- title "hadgem3-gc5-n216-orca025.eerie-picontrol.ocean.gr025.daily"
684
- rel "child"
- href "https://eerie.cloud.dkrz.de/datasets/hadgem3-gc5-n216-orca025.eerie-picontrol.ocean.gr025.monthly/stac"
- type "application/json"
- title "hadgem3-gc5-n216-orca025.eerie-picontrol.ocean.gr025.monthly"
- title "ESM data from DKRZ in Zarr format"
extent
spatial
bbox[] 1 items
0[] 4 items
- 0 -180
- 1 -90
- 2 180
- 3 90
temporal
interval[] 1 items
0[] 2 items
- 0 "1850-01-01T00:00:00Z"
- 1 "2101-01-01T00:00:00Z"
- license "other"
keywords[] 9 items
- 0 "EERIE"
- 1 "cloud"
- 2 "ICON"
- 3 "NextGEMs"
- 4 "ERA5"
- 5 "IFS"
- 6 "FESOM"
- 7 "NEMO"
- 8 "HadGEM"
providers[] 1 items
0
- name "DKRZ"
- description "The data host of eerie.cloud"
roles[] 1 items
- 0 "host"
- url "https://dkrz.de"
assets
doc
- href "https://pad.gwdg.de/OZo5HMC4R6iljvZHlo-BzQ#"
- type "text/html"
- title "Technical documentation"
roles[] 1 items
- 0 "OVERVIEW"
Each child link in the collection corresponds to a dataset and is formatted as a STAC item. Datasets of the km-scale-cloud are highly aggregated.
We can do:
dataset_items=[
pystac.Item.from_file(link.href)
for link in kmscale_collection.get_links("child")
]
item=dataset_items[0]
item
- type "Feature"
- stac_version "1.1.0"
stac_extensions[] 3 items
- 0 "https://stac-extensions.github.io/xarray-assets/v1.0.0/schema.json"
- 1 "https://stac-extensions.github.io/datacube/v2.2.0/schema.json"
- 2 "https://stac-extensions.github.io/alternate-assets/v1.2.0/schema.json"
- id "cosmo-rea-1hr_atmos"
geometry
- type "Polygon"
coordinates[] 1 items
0[] 5 items
0[] 2 items
- 0 -180.0
- 1 -90.0
1[] 2 items
- 0 -180.0
- 1 90.0
2[] 2 items
- 0 180.0
- 1 90.0
3[] 2 items
- 0 180.0
- 1 -90.0
4[] 2 items
- 0 -180.0
- 1 -90.0
bbox[] 4 items
- 0 -180.0
- 1 -90.0
- 2 180.0
- 3 90.0
properties
- title "cosmo-rea-1hr_atmos"
- description " Simulation data from project 'COSMO-REA' produced by Earth System Model 'COSMO' and run by institution 'DWD' for the experiment 'REA6' You can use this dataset in xarray. ``` import xarray as xr import requests item=requests.get("https://eerie.cloud.dkrz.de/datasets/cosmo-rea-1hr_atmos/stac").json() asset="dkrz-disk" #asset="eerie-cloud" # from everywhere else xr.open_dataset( item["assets"][asset]["href"], **item["assets"][asset]["xarray:open_kwargs"], storage_options=item["assets"][asset].get("xarray:storage_options") ) ``` # COSMO-REA6 regional reanalysis data prepared for ESGF. Simulation data from project 'COSMO-REA' produced by Earth System Model 'COSMO' and run by institution 'DWD' for the experiment 'REA6'"
- created "2025-12-01T00:00:17Z"
keywords[] 2 items
- 0 "COSMO"
- 1 "REA6 regional reanalysis data prepared for ESGF."
providers[] 2 items
0
- name "DKRZ"
- description "The data host of the items and assets"
roles[] 1 items
- 0 "host"
- url "https://dkrz.de"
1
- name "DWD"
- description "Deutscher Wetterdienst, Offenbach am Main 63067, Germany"
roles[] 1 items
- 0 "producer"
- url "N/A"
- license "other"
variables[] 23 items
- 0 "hfls"
- 1 "hfss"
- 2 "pr"
- 3 "prc"
- 4 "prls"
- 5 "prsn"
- 6 "prsnc"
- 7 "prsnls"
- 8 "rlds"
- 9 "rlus"
- 10 "rlut"
- 11 "rsds"
- 12 "rsdsdir"
- 13 "rsdt"
- 14 "rsus"
- 15 "rsut"
- 16 "sfcWindmax"
- 17 "sund"
- 18 "tauu"
- 19 "tauv"
- 20 "wsgscmax"
- 21 "wsgsmax"
- 22 "wsgstmax"
cube:dimensions
time
- type "temporal"
extent[] 2 items
- 0 "1995-01-01T00:30:00Z"
- 1 "2019-08-31T23:30:00Z"
cube:variables
hfls
- type "data"
dimensions[] 3 items
- 0 "time"
- 1 "rlat"
- 2 "rlon"
- unit "W m-2"
- description "Surface Upward Latent Heat Flux"
hfss
- type "data"
dimensions[] 3 items
- 0 "time"
- 1 "rlat"
- 2 "rlon"
- unit "W m-2"
- description "Surface Upward Sensible Heat Flux"
pr
- type "data"
dimensions[] 3 items
- 0 "time"
- 1 "rlat"
- 2 "rlon"
- unit "kg m-2 s-1"
- description "Precipitation"
prc
- type "data"
dimensions[] 3 items
- 0 "time"
- 1 "rlat"
- 2 "rlon"
- unit "kg m-2 s-1"
- description "Convective Precipitation"
prls
- type "data"
dimensions[] 3 items
- 0 "time"
- 1 "rlat"
- 2 "rlon"
- unit "kg m-2 s-1"
- description "Stratiform Precipitation"
prsn
- type "data"
dimensions[] 3 items
- 0 "time"
- 1 "rlat"
- 2 "rlon"
- unit "kg m-2 s-1"
- description "Snowfall Flux"
prsnc
- type "data"
dimensions[] 3 items
- 0 "time"
- 1 "rlat"
- 2 "rlon"
- unit "kg m-2 s-1"
- description "Convective Snowfall"
prsnls
- type "data"
dimensions[] 3 items
- 0 "time"
- 1 "rlat"
- 2 "rlon"
- unit "kg m-2 s-1"
- description "Large Scale Snowfall"
rlds
- type "data"
dimensions[] 3 items
- 0 "time"
- 1 "rlat"
- 2 "rlon"
- unit "W m-2"
- description "Surface Downwelling Longwave Radiation"
rlus
- type "data"
dimensions[] 3 items
- 0 "time"
- 1 "rlat"
- 2 "rlon"
- unit "W m-2"
- description "Surface Upwelling Longwave Radiation"
rlut
- type "data"
dimensions[] 3 items
- 0 "time"
- 1 "rlat"
- 2 "rlon"
- unit "W m-2"
- description "TOA Outgoing Longwave Radiation"
rsds
- type "data"
dimensions[] 3 items
- 0 "time"
- 1 "rlat"
- 2 "rlon"
- unit "W m-2"
- description "Surface Downwelling Shortwave Radiation"
rsdsdir
- type "data"
dimensions[] 3 items
- 0 "time"
- 1 "rlat"
- 2 "rlon"
- unit "W m-2"
- description "Surface Direct Downwelling Shortwave Radiation"
rsdt
- type "data"
dimensions[] 3 items
- 0 "time"
- 1 "rlat"
- 2 "rlon"
- unit "W m-2"
- description "TOA Incident Shortwave Radiation"
rsus
- type "data"
dimensions[] 3 items
- 0 "time"
- 1 "rlat"
- 2 "rlon"
- unit "W m-2"
- description "Surface Upwelling Shortwave Radiation"
rsut
- type "data"
dimensions[] 3 items
- 0 "time"
- 1 "rlat"
- 2 "rlon"
- unit "W m-2"
- description "TOA Outgoing Shortwave Radiation"
sfcWindmax
- type "data"
dimensions[] 3 items
- 0 "time"
- 1 "rlat"
- 2 "rlon"
- unit "m s-1"
- description "Hourly Maximum Near-Surface Wind Speed"
sund
- type "data"
dimensions[] 3 items
- 0 "time"
- 1 "rlat"
- 2 "rlon"
- unit "s"
- description "Duration of Sunshine"
tauu
- type "data"
dimensions[] 3 items
- 0 "time"
- 1 "rlat"
- 2 "rlon"
- unit "Pa"
- description "Surface Downward Eastward Wind Stress"
tauv
- type "data"
dimensions[] 3 items
- 0 "time"
- 1 "rlat"
- 2 "rlon"
- unit "Pa"
- description "Surface Downward Northward Wind Stress"
wsgscmax
- type "data"
dimensions[] 3 items
- 0 "time"
- 1 "rlat"
- 2 "rlon"
- unit "m s-1"
- description "Hourly Maximum Near-Surface Wind Speed of Gust due to Convection"
wsgsmax
- type "data"
dimensions[] 3 items
- 0 "time"
- 1 "rlat"
- 2 "rlon"
- unit "m s-1"
- description "Hourly Maximum Near-Surface Wind Speed of Gust"
wsgstmax
- type "data"
dimensions[] 3 items
- 0 "time"
- 1 "rlat"
- 2 "rlon"
- unit "m s-1"
- description "Hourly Maximum Near-Surface Wind Speed of Gust due to Turbulence"
- CDO "Climate Data Operators version 2.2.1 (https://mpimet.mpg.de/cdo)"
- CORDEX_domain "EUR-6km"
- Conventions "CF-1.7"
- activity_id "COSMO-REA"
- cmor_version "3.6.0"
- contact "cdc.rea@dwd.de"
- creation_date "2025-12-01T00:00:17Z"
- data_specs_version "01.01.00"
- driving_experiment "ECMWF-ERAINT, global reanalysis"
- driving_experiment_name "global reanalysis"
- driving_model_ensemble_member "r1i1p1f1"
- driving_model_id "ECMWF-ERAINT"
- experiment "regional reanalysis"
- experiment_id "REA6"
- external_variables "areacella"
- forcing_index 1
- frequency "1hr"
- grid "gn"
- grid_label "gn"
- initialization_index 1
- institution "Deutscher Wetterdienst, Offenbach am Main 63067, Germany"
- institution_id "DWD"
- mip_era "CMIP6"
- model_id "COSMO"
- physics_index 1
- product "reanalysis"
- project_id "COSMO-REA"
- rcm_version_id "v1"
- realization_index 1
- realm "atmos"
- references "Reanalysis conducted in cooperation with Hans-Ertel-Centre. Bollmeyer, C., Keller, J. D., Ohlwein, C., Wahl, S., Crewell, S., Friederichs, P., Hense, A., Keune, J., Kneifel, S., Pscheidt, I., Redl, S., and Steinke, S.: Towards a high-resolution regional reanalysis for the European CORDEX domain, Q. J. R. Meteorol. Soc., 141, 1–15, 2015, https://doi.org/10.1002/qj.2486. Kaspar, F., Niermann, D., Borsche, M., Fiedler, S., Keller, J., Potthast, R., Rösch, T., Spangehl, T., and Tinz, B.: Regional atmospheric reanalysis activities at Deutscher Wetterdienst: review of evaluation results and application examples with a focus on renewable energy, Adv. Sci. Res., 17, 115–128, https://doi.org/10.5194/asr-17-115-2020, 2020."
- source "COSMO v4.25 (2012): aerosol: none/prescribed atmos: COnsortium for Small-Scale MOdelling (COSMO) limited-area model (LAM) version 4.25 (Arakawa-C/Lorenz Grid; 848 x 824 longitude/latitude; 40 levels; top level 40 hPa) atmosChem: none land: TERRA-ML landIce: none/prescribed ocean: none/prescribed ocnBgchem: none seaIce: none/prescribed solidLand: none/prescribed"
- source_id "COSMO"
- source_type "AGCM"
- sub_experiment "none"
- sub_experiment_id "none"
- table_id "1hr"
- table_info "Creation Date:(01 Sep 2023) MD5:da644e15786f7b8daa83bbad28a0d9be"
- tracking_id "hdl:21.14103/8d429145-c114-4cb3-a163-73c67ec4e69d"
- variable_id "tauu"
- variant_info "Regional reanalysis forced by ERA-Interim."
- variant_label "r1i1p1f1"
- _xpublish_id "cosmo-rea-1hr_atmos"
- start_datetime "1995-01-01T00:30:00Z"
- end_datetime "2019-08-31T23:30:00Z"
- datetime None
asset_types[] 2 items
- 0 "dkrz-disk"
- 1 "eerie-cloud"
links[] 2 items
0
- rel "self"
- href "https://eerie.cloud.dkrz.de/datasets/cosmo-rea-1hr_atmos/stac"
- type "application/json"
1
- rel "collection"
- href "https://eerie.cloud.dkrz.de/stac-collection-all.json"
- type "application/json"
assets
dkrz-disk
- href "reference::https://swift.dkrz.de/v1/dkrz_4236b71e-04df-456b-8a32-5d66641510f2/catalogs/cosmo-rea/kerchunks/file/parquets/1hr_atmos/combined.parq"
- type "application/vnd+zarr"
- title "Zarr-access from Lustre"
- description "Chunk-based access on Raw Data"
xarray:storage_options
xarray:storage_options
- lazy True
xarray:open_kwargs
- engine "zarr"
- chunks "auto"
- consolidated False
roles[] 1 items
- 0 "data"
eerie-cloud
- href "https://eerie.cloud.dkrz.de/datasets/cosmo-rea-1hr_atmos/kerchunk"
- type "application/vnd+zarr"
- title "Zarr-access through Eerie Cloud"
- description "Chunk-based access on raw-encoded data"
- Volume "12945 GB uncompressed"
- No of data variables "23"
xarray:open_kwargs
- engine "zarr"
- chunks "auto"
- consolidated True
- xarray:storage_options None
alternate
processed
- name "Rechunked and uniformly compressed data"
- description "Server-side on-the-fly rechunked and unifromly encoded data"
- href "https://eerie.cloud.dkrz.de/datasets/cosmo-rea-1hr_atmos/zarr"
roles[] 1 items
- 0 "data"
xarray_view
- href "https://eerie.cloud.dkrz.de/datasets/cosmo-rea-1hr_atmos/"
- type "text/html"
- title "Xarray dataset"
- description "HTML representation of the xarray dataset"
roles[] 1 items
- 0 "overview"
jupyterlite
- href "https://swift.dkrz.de/v1/dkrz_7fa6baba-db43-4d12-a295-8e3ebb1a01ed/apps/jupyterlite/index.html"
- type "text/html"
- title "Jupyterlite access"
- description "Web-assembly based analysis platform with access to this item"
roles[] 1 items
- 0 "analysis"
gridlook
- href "https://s3.eu-dkrz-1.dkrz.cloud/bm1344/gridlook/index.html#https://eerie.cloud.dkrz.de/datasets/cosmo-rea-1hr_atmos/stac"
- type "text/html"
- title "Visualization with gridlook"
- description "Visualization with gridlook"
roles[] 1 items
- 0 "Visualization"
providers[] 1 items
0
- name "DKRZ"
- description "The data host of the items and assets"
roles[] 1 items
- 0 "host"
- url "https://dkrz.de"
- default_var "hfls"
- name "COSMO-REA6 regional reanalysis data prepared for ESGF."
levels[] 1 items
0
- name "cosmo-rea-1hr_atmos"
time
- store "https://eerie.cloud.dkrz.de/datasets/"
- dataset "cosmo-rea-1hr_atmos/zarr"
grid
- store "https://eerie.cloud.dkrz.de/datasets/"
- dataset "cosmo-rea-1hr_atmos/kerchunk"
datasources
hfls
- store "https://eerie.cloud.dkrz.de/datasets/"
- dataset "cosmo-rea-1hr_atmos/kerchunk"
hfss
- store "https://eerie.cloud.dkrz.de/datasets/"
- dataset "cosmo-rea-1hr_atmos/kerchunk"
pr
- store "https://eerie.cloud.dkrz.de/datasets/"
- dataset "cosmo-rea-1hr_atmos/kerchunk"
prc
- store "https://eerie.cloud.dkrz.de/datasets/"
- dataset "cosmo-rea-1hr_atmos/kerchunk"
prls
- store "https://eerie.cloud.dkrz.de/datasets/"
- dataset "cosmo-rea-1hr_atmos/kerchunk"
prsn
- store "https://eerie.cloud.dkrz.de/datasets/"
- dataset "cosmo-rea-1hr_atmos/kerchunk"
prsnc
- store "https://eerie.cloud.dkrz.de/datasets/"
- dataset "cosmo-rea-1hr_atmos/kerchunk"
prsnls
- store "https://eerie.cloud.dkrz.de/datasets/"
- dataset "cosmo-rea-1hr_atmos/kerchunk"
rlds
- store "https://eerie.cloud.dkrz.de/datasets/"
- dataset "cosmo-rea-1hr_atmos/kerchunk"
rlus
- store "https://eerie.cloud.dkrz.de/datasets/"
- dataset "cosmo-rea-1hr_atmos/kerchunk"
rlut
- store "https://eerie.cloud.dkrz.de/datasets/"
- dataset "cosmo-rea-1hr_atmos/kerchunk"
rsds
- store "https://eerie.cloud.dkrz.de/datasets/"
- dataset "cosmo-rea-1hr_atmos/kerchunk"
rsdsdir
- store "https://eerie.cloud.dkrz.de/datasets/"
- dataset "cosmo-rea-1hr_atmos/kerchunk"
rsdt
- store "https://eerie.cloud.dkrz.de/datasets/"
- dataset "cosmo-rea-1hr_atmos/kerchunk"
rsus
- store "https://eerie.cloud.dkrz.de/datasets/"
- dataset "cosmo-rea-1hr_atmos/kerchunk"
rsut
- store "https://eerie.cloud.dkrz.de/datasets/"
- dataset "cosmo-rea-1hr_atmos/kerchunk"
sfcWindmax
- store "https://eerie.cloud.dkrz.de/datasets/"
- dataset "cosmo-rea-1hr_atmos/kerchunk"
sund
- store "https://eerie.cloud.dkrz.de/datasets/"
- dataset "cosmo-rea-1hr_atmos/kerchunk"
tauu
- store "https://eerie.cloud.dkrz.de/datasets/"
- dataset "cosmo-rea-1hr_atmos/kerchunk"
tauv
- store "https://eerie.cloud.dkrz.de/datasets/"
- dataset "cosmo-rea-1hr_atmos/kerchunk"
wsgscmax
- store "https://eerie.cloud.dkrz.de/datasets/"
- dataset "cosmo-rea-1hr_atmos/kerchunk"
wsgsmax
- store "https://eerie.cloud.dkrz.de/datasets/"
- dataset "cosmo-rea-1hr_atmos/kerchunk"
wsgstmax
- store "https://eerie.cloud.dkrz.de/datasets/"
- dataset "cosmo-rea-1hr_atmos/kerchunk"
height
- store "https://eerie.cloud.dkrz.de/datasets/"
- dataset "cosmo-rea-1hr_atmos/kerchunk"
latitude
- store "https://eerie.cloud.dkrz.de/datasets/"
- dataset "cosmo-rea-1hr_atmos/kerchunk"
longitude
- store "https://eerie.cloud.dkrz.de/datasets/"
- dataset "cosmo-rea-1hr_atmos/kerchunk"
rlat
- store "https://eerie.cloud.dkrz.de/datasets/"
- dataset "cosmo-rea-1hr_atmos/kerchunk"
rlon
- store "https://eerie.cloud.dkrz.de/datasets/"
- dataset "cosmo-rea-1hr_atmos/kerchunk"
rotated_latitude_longitude
- store "https://eerie.cloud.dkrz.de/datasets/"
- dataset "cosmo-rea-1hr_atmos/kerchunk"
time
- store "https://eerie.cloud.dkrz.de/datasets/"
- dataset "cosmo-rea-1hr_atmos/kerchunk"
time_bnds
- store "https://eerie.cloud.dkrz.de/datasets/"
- dataset "cosmo-rea-1hr_atmos/kerchunk"
We can use properties or ids to browse and search the items:
selection=[
a
for a in dataset_items
if all(b in a.id.lower() for b in ["icon","gr025","monthly","2d","hist","atmos"])
]
item=selection[0]
len(selection)
1
Each dataset item has multiple assets corresponding to different ways how to open the dataset, e.g. with “dkrz-disk” should be used when working on levante.
We now use the “eerie-cloud” asset. It provides information on volume and number of variables for the uncompressed, total dataset.
asset="eerie-cloud"
ec_asset=item.get_assets()[asset]
ec_asset_dict=ec_asset.to_dict()
ec_asset
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.hist-1950.v20240618.atmos.gr025.2d_monthly_mean/kerchunk"
- type "application/vnd+zarr"
- title "Zarr-access through Eerie Cloud"
- description "Chunk-based access on raw-encoded data"
- Volume "100 GB uncompressed"
- No of data variables "33"
xarray:open_kwargs
- engine "zarr"
- chunks "auto"
- consolidated True
- xarray:storage_options None
alternate
processed
- name "Rechunked and uniformly compressed data"
- description "Server-side on-the-fly rechunked and unifromly encoded data"
- href "https://eerie.cloud.dkrz.de/datasets/icon-esm-er.hist-1950.v20240618.atmos.gr025.2d_monthly_mean/zarr"
roles[] 1 items
- 0 "data"
We can open datasets with the asset:
import xarray as xr
zarr_uri=ec_asset_dict["href"]
xr.open_dataset(
zarr_uri,
**ec_asset_dict["xarray:open_kwargs"],
storage_options=ec_asset_dict.get("xarray:storage_options")
)
<xarray.Dataset> Size: 107GB
Dimensions: (time: 780, lat: 721, lon: 1440, height_3: 1, bnds: 2,
height: 1, height_2: 1)
Coordinates:
* time (time) datetime64[ns] 6kB 1950-01-31T23:59:59 ... 2014-12-...
* lat (lat) float64 6kB -90.0 -89.75 -89.5 ... 89.5 89.75 90.0
* lon (lon) float64 12kB 0.0 0.25 0.5 0.75 ... 359.2 359.5 359.8
* height_3 (height_3) float64 8B 90.0
* height (height) float64 8B 2.0
* height_2 (height_2) float64 8B 10.0
Dimensions without coordinates: bnds
Data variables: (12/34)
clivi (time, lat, lon) float32 3GB dask.array<chunksize=(32, 721, 1440), meta=np.ndarray>
cllvi (time, lat, lon) float32 3GB dask.array<chunksize=(32, 721, 1440), meta=np.ndarray>
clt (time, lat, lon) float32 3GB dask.array<chunksize=(32, 721, 1440), meta=np.ndarray>
evspsbl (time, lat, lon) float32 3GB dask.array<chunksize=(32, 721, 1440), meta=np.ndarray>
height_3_bnds (time, height_3, bnds) float64 12kB dask.array<chunksize=(780, 1, 2), meta=np.ndarray>
hfls (time, lat, lon) float32 3GB dask.array<chunksize=(32, 721, 1440), meta=np.ndarray>
... ...
tasmin (time, height, lat, lon) float32 3GB dask.array<chunksize=(32, 1, 721, 1440), meta=np.ndarray>
tauu (time, lat, lon) float32 3GB dask.array<chunksize=(32, 721, 1440), meta=np.ndarray>
tauv (time, lat, lon) float32 3GB dask.array<chunksize=(32, 721, 1440), meta=np.ndarray>
ts (time, lat, lon) float32 3GB dask.array<chunksize=(32, 721, 1440), meta=np.ndarray>
uas (time, height_2, lat, lon) float32 3GB dask.array<chunksize=(32, 1, 721, 1440), meta=np.ndarray>
vas (time, height_2, lat, lon) float32 3GB dask.array<chunksize=(32, 1, 721, 1440), meta=np.ndarray>
Attributes: (12/31)
Conventions: CF-1.7 CMIP-6.2
activity_id: HighResMIP
data_specs_version: 01.00.32
forcing_index: 1
initialization_index: 1
license: EERIE model data produced by MPI-M is licensed und...
... ...
parent_activity_id: HighResMIP
sub_experiment_id: none
experiment: coupled historical 1950-2014
source: ICON-ESM-ER (2023): \naerosol: none, prescribed MA...
institution: Max Planck Institute for Meteorology, Hamburg 2014...
sub_experiment: none- time: 780
- lat: 721
- lon: 1440
- height_3: 1
- bnds: 2
- height: 1
- height_2: 1
- time(time)datetime64[ns]1950-01-31T23:59:59 ... 2014-12-...
- standard_name :
- time
array(['1950-01-31T23:59:59.000000000', '1950-02-28T23:59:59.000000000', '1950-03-31T23:59:59.000000000', ..., '2014-10-31T23:59:59.000000000', '2014-11-30T23:59:59.000000000', '2014-12-31T23:59:59.000000000'], shape=(780,), dtype='datetime64[ns]') - lat(lat)float64-90.0 -89.75 -89.5 ... 89.75 90.0
- axis :
- Y
- long_name :
- latitude
- standard_name :
- latitude
- units :
- degrees_north
array([-90. , -89.75, -89.5 , ..., 89.5 , 89.75, 90. ], shape=(721,))
- lon(lon)float640.0 0.25 0.5 ... 359.2 359.5 359.8
- axis :
- X
- long_name :
- longitude
- standard_name :
- longitude
- units :
- degrees_east
array([0.0000e+00, 2.5000e-01, 5.0000e-01, ..., 3.5925e+02, 3.5950e+02, 3.5975e+02], shape=(1440,)) - height_3(height_3)float6490.0
- axis :
- Z
- bounds :
- height_3_bnds
- long_name :
- generalized_height
- standard_name :
- height
array([90.])
- height(height)float642.0
- axis :
- Z
- long_name :
- height
- positive :
- up
- standard_name :
- height
- units :
- m
array([2.])
- height_2(height_2)float6410.0
- axis :
- Z
- long_name :
- height
- positive :
- up
- standard_name :
- height
- units :
- m
array([10.])
- clivi(time, lat, lon)float32dask.array<chunksize=(32, 721, 1440), meta=np.ndarray>
- long_name :
- cloud ice path
- param :
- 70.1.0
- standard_name :
- atmosphere_mass_content_of_cloud_ice
- units :
- kg m-2
Array Chunk Bytes 3.02 GiB 126.74 MiB Shape (780, 721, 1440) (32, 721, 1440) Dask graph 25 chunks in 2 graph layers Data type float32 numpy.ndarray - cllvi(time, lat, lon)float32dask.array<chunksize=(32, 721, 1440), meta=np.ndarray>
- long_name :
- cloud liquid water path
- param :
- 69.1.0
- standard_name :
- atmosphere_mass_content_of_cloud_liquid_water
- units :
- kg m-2
Array Chunk Bytes 3.02 GiB 126.74 MiB Shape (780, 721, 1440) (32, 721, 1440) Dask graph 25 chunks in 2 graph layers Data type float32 numpy.ndarray - clt(time, lat, lon)float32dask.array<chunksize=(32, 721, 1440), meta=np.ndarray>
- long_name :
- total cloud cover
- param :
- 1.6.0
- standard_name :
- clt
- units :
- m2 m-2
Array Chunk Bytes 3.02 GiB 126.74 MiB Shape (780, 721, 1440) (32, 721, 1440) Dask graph 25 chunks in 2 graph layers Data type float32 numpy.ndarray - evspsbl(time, lat, lon)float32dask.array<chunksize=(32, 721, 1440), meta=np.ndarray>
- long_name :
- evaporation
- param :
- 6.1.0
- standard_name :
- evap
- units :
- kg m-2 s-1
Array Chunk Bytes 3.02 GiB 126.74 MiB Shape (780, 721, 1440) (32, 721, 1440) Dask graph 25 chunks in 2 graph layers Data type float32 numpy.ndarray - height_3_bnds(time, height_3, bnds)float64dask.array<chunksize=(780, 1, 2), meta=np.ndarray>
Array Chunk Bytes 12.19 kiB 12.19 kiB Shape (780, 1, 2) (780, 1, 2) Dask graph 1 chunks in 2 graph layers Data type float64 numpy.ndarray - hfls(time, lat, lon)float32dask.array<chunksize=(32, 721, 1440), meta=np.ndarray>
- long_name :
- latent heat flux
- param :
- 10.0.0
- standard_name :
- lhflx
- units :
- W m-2
Array Chunk Bytes 3.02 GiB 126.74 MiB Shape (780, 721, 1440) (32, 721, 1440) Dask graph 25 chunks in 2 graph layers Data type float32 numpy.ndarray - hfss(time, lat, lon)float32dask.array<chunksize=(32, 721, 1440), meta=np.ndarray>
- long_name :
- sensible heat flux
- param :
- 11.0.0
- standard_name :
- shflx
- units :
- W m-2
Array Chunk Bytes 3.02 GiB 126.74 MiB Shape (780, 721, 1440) (32, 721, 1440) Dask graph 25 chunks in 2 graph layers Data type float32 numpy.ndarray - hur(time, height_3, lat, lon)float32dask.array<chunksize=(32, 1, 721, 1440), meta=np.ndarray>
- long_name :
- relative humidity
- param :
- 1.1.0
- standard_name :
- relative_humidity
Array Chunk Bytes 3.02 GiB 126.74 MiB Shape (780, 1, 721, 1440) (32, 1, 721, 1440) Dask graph 25 chunks in 2 graph layers Data type float32 numpy.ndarray - hus2m(time, height, lat, lon)float32dask.array<chunksize=(32, 1, 721, 1440), meta=np.ndarray>
- long_name :
- specific humidity in 2m
- param :
- 6.0.0
- standard_name :
- qv2m
- units :
- kg kg-1
Array Chunk Bytes 3.02 GiB 126.74 MiB Shape (780, 1, 721, 1440) (32, 1, 721, 1440) Dask graph 25 chunks in 2 graph layers Data type float32 numpy.ndarray - pr(time, lat, lon)float32dask.array<chunksize=(32, 721, 1440), meta=np.ndarray>
- long_name :
- precipitation flux
- param :
- 52.1.0
- standard_name :
- pr
- units :
- kg m-2 s-1
Array Chunk Bytes 3.02 GiB 126.74 MiB Shape (780, 721, 1440) (32, 721, 1440) Dask graph 25 chunks in 2 graph layers Data type float32 numpy.ndarray - prw(time, lat, lon)float32dask.array<chunksize=(32, 721, 1440), meta=np.ndarray>
- long_name :
- water vapor path
- param :
- 64.1.0
- standard_name :
- atmosphere_mass_content_of_water_vapor
- units :
- kg m-2
Array Chunk Bytes 3.02 GiB 126.74 MiB Shape (780, 721, 1440) (32, 721, 1440) Dask graph 25 chunks in 2 graph layers Data type float32 numpy.ndarray - ps(time, lat, lon)float32dask.array<chunksize=(32, 721, 1440), meta=np.ndarray>
- long_name :
- surface pressure
- param :
- 0.3.0
- standard_name :
- surface_air_pressure
- units :
- Pa
Array Chunk Bytes 3.02 GiB 126.74 MiB Shape (780, 721, 1440) (32, 721, 1440) Dask graph 25 chunks in 2 graph layers Data type float32 numpy.ndarray - psl(time, lat, lon)float32dask.array<chunksize=(32, 721, 1440), meta=np.ndarray>
- long_name :
- mean sea level pressure
- param :
- 1.3.0
- standard_name :
- mean sea level pressure
- units :
- Pa
Array Chunk Bytes 3.02 GiB 126.74 MiB Shape (780, 721, 1440) (32, 721, 1440) Dask graph 25 chunks in 2 graph layers Data type float32 numpy.ndarray - rlds(time, lat, lon)float32dask.array<chunksize=(32, 721, 1440), meta=np.ndarray>
- long_name :
- surface downwelling longwave radiation
- param :
- 3.5.0
- standard_name :
- surface_downwelling_longwave_flux_in_air
- units :
- W m-2
Array Chunk Bytes 3.02 GiB 126.74 MiB Shape (780, 721, 1440) (32, 721, 1440) Dask graph 25 chunks in 2 graph layers Data type float32 numpy.ndarray - rldscs(time, lat, lon)float32dask.array<chunksize=(32, 721, 1440), meta=np.ndarray>
- long_name :
- surface downwelling clear-sky longwave radiation
- param :
- 203.5.0
- standard_name :
- surface_downwelling_longwave_flux_in_air_assuming_clear_sky
- units :
- W m-2
Array Chunk Bytes 3.02 GiB 126.74 MiB Shape (780, 721, 1440) (32, 721, 1440) Dask graph 25 chunks in 2 graph layers Data type float32 numpy.ndarray - rlus(time, lat, lon)float32dask.array<chunksize=(32, 721, 1440), meta=np.ndarray>
- long_name :
- surface upwelling longwave radiation
- param :
- 199.5.0
- standard_name :
- surface_upwelling_longwave_flux_in_air
- units :
- W m-2
Array Chunk Bytes 3.02 GiB 126.74 MiB Shape (780, 721, 1440) (32, 721, 1440) Dask graph 25 chunks in 2 graph layers Data type float32 numpy.ndarray - rlut(time, lat, lon)float32dask.array<chunksize=(32, 721, 1440), meta=np.ndarray>
- level_type :
- toa
- long_name :
- toa outgoing longwave radiation
- param :
- 4.5.0
- standard_name :
- toa_outgoing_longwave_flux
- units :
- W m-2
Array Chunk Bytes 3.02 GiB 126.74 MiB Shape (780, 721, 1440) (32, 721, 1440) Dask graph 25 chunks in 2 graph layers Data type float32 numpy.ndarray - rlutcs(time, lat, lon)float32dask.array<chunksize=(32, 721, 1440), meta=np.ndarray>
- level_type :
- toa
- long_name :
- toa outgoing clear-sky longwave radiation
- param :
- 204.5.0
- standard_name :
- toa_outgoing_longwave_flux_assuming_clear_sky
- units :
- W m-2
Array Chunk Bytes 3.02 GiB 126.74 MiB Shape (780, 721, 1440) (32, 721, 1440) Dask graph 25 chunks in 2 graph layers Data type float32 numpy.ndarray - rsds(time, lat, lon)float32dask.array<chunksize=(32, 721, 1440), meta=np.ndarray>
- long_name :
- surface downwelling shortwave radiation
- param :
- 7.4.0
- standard_name :
- surface_downwelling_shortwave_flux_in_air
- units :
- W m-2
Array Chunk Bytes 3.02 GiB 126.74 MiB Shape (780, 721, 1440) (32, 721, 1440) Dask graph 25 chunks in 2 graph layers Data type float32 numpy.ndarray - rsdscs(time, lat, lon)float32dask.array<chunksize=(32, 721, 1440), meta=np.ndarray>
- long_name :
- surface downwelling clear-sky shortwave radiation
- param :
- 207.4.0
- standard_name :
- surface_downwelling_shortwave_flux_in_air_assuming_clear_sky
- units :
- W m-2
Array Chunk Bytes 3.02 GiB 126.74 MiB Shape (780, 721, 1440) (32, 721, 1440) Dask graph 25 chunks in 2 graph layers Data type float32 numpy.ndarray - rsdt(time, lat, lon)float32dask.array<chunksize=(32, 721, 1440), meta=np.ndarray>
- level_type :
- toa
- long_name :
- toa incident shortwave radiation
- param :
- 201.4.0
- standard_name :
- toa_incoming_shortwave_flux
- units :
- W m-2
Array Chunk Bytes 3.02 GiB 126.74 MiB Shape (780, 721, 1440) (32, 721, 1440) Dask graph 25 chunks in 2 graph layers Data type float32 numpy.ndarray - rsus(time, lat, lon)float32dask.array<chunksize=(32, 721, 1440), meta=np.ndarray>
- long_name :
- surface upwelling shortwave radiation
- param :
- 199.4.0
- standard_name :
- surface_upwelling_shortwave_flux_in_air
- units :
- W m-2
Array Chunk Bytes 3.02 GiB 126.74 MiB Shape (780, 721, 1440) (32, 721, 1440) Dask graph 25 chunks in 2 graph layers Data type float32 numpy.ndarray - rsuscs(time, lat, lon)float32dask.array<chunksize=(32, 721, 1440), meta=np.ndarray>
- long_name :
- surface upwelling clear-sky shortwave radiation
- param :
- 209.4.0
- standard_name :
- surface_upwelling_shortwave_flux_in_air_assuming_clear_sky
- units :
- W m-2
Array Chunk Bytes 3.02 GiB 126.74 MiB Shape (780, 721, 1440) (32, 721, 1440) Dask graph 25 chunks in 2 graph layers Data type float32 numpy.ndarray - rsut(time, lat, lon)float32dask.array<chunksize=(32, 721, 1440), meta=np.ndarray>
- level_type :
- toa
- long_name :
- toa outgoing shortwave radiation
- param :
- 8.4.0
- standard_name :
- toa_outgoing_shortwave_flux
- units :
- W m-2
Array Chunk Bytes 3.02 GiB 126.74 MiB Shape (780, 721, 1440) (32, 721, 1440) Dask graph 25 chunks in 2 graph layers Data type float32 numpy.ndarray - rsutcs(time, lat, lon)float32dask.array<chunksize=(32, 721, 1440), meta=np.ndarray>
- level_type :
- toa
- long_name :
- toa outgoing clear-sky shortwave radiation
- param :
- 208.4.0
- standard_name :
- toa_outgoing_shortwave_flux_assuming_clear_sky
- units :
- W m-2
Array Chunk Bytes 3.02 GiB 126.74 MiB Shape (780, 721, 1440) (32, 721, 1440) Dask graph 25 chunks in 2 graph layers Data type float32 numpy.ndarray - sfcwind(time, height_2, lat, lon)float32dask.array<chunksize=(32, 1, 721, 1440), meta=np.ndarray>
- long_name :
- 10m windspeed
- param :
- 1.2.0
- standard_name :
- sfcwind
- units :
- m s-1
Array Chunk Bytes 3.02 GiB 126.74 MiB Shape (780, 1, 721, 1440) (32, 1, 721, 1440) Dask graph 25 chunks in 2 graph layers Data type float32 numpy.ndarray - tas(time, height, lat, lon)float32dask.array<chunksize=(32, 1, 721, 1440), meta=np.ndarray>
- long_name :
- temperature in 2m
- param :
- 0.0.0
- standard_name :
- tas
- units :
- K
Array Chunk Bytes 3.02 GiB 126.74 MiB Shape (780, 1, 721, 1440) (32, 1, 721, 1440) Dask graph 25 chunks in 2 graph layers Data type float32 numpy.ndarray - tasmax(time, height, lat, lon)float32dask.array<chunksize=(32, 1, 721, 1440), meta=np.ndarray>
- long_name :
- maximum 2m temperature
- param :
- 4.0.0
- standard_name :
- tasmax
- units :
- K
Array Chunk Bytes 3.02 GiB 126.74 MiB Shape (780, 1, 721, 1440) (32, 1, 721, 1440) Dask graph 25 chunks in 2 graph layers Data type float32 numpy.ndarray - tasmin(time, height, lat, lon)float32dask.array<chunksize=(32, 1, 721, 1440), meta=np.ndarray>
- long_name :
- minimum 2m temperature
- param :
- 5.0.0
- standard_name :
- tasmin
- units :
- K
Array Chunk Bytes 3.02 GiB 126.74 MiB Shape (780, 1, 721, 1440) (32, 1, 721, 1440) Dask graph 25 chunks in 2 graph layers Data type float32 numpy.ndarray - tauu(time, lat, lon)float32dask.array<chunksize=(32, 721, 1440), meta=np.ndarray>
- long_name :
- u-momentum flux at the surface
- param :
- 17.2.0
- standard_name :
- u_stress
- units :
- N m-2
Array Chunk Bytes 3.02 GiB 126.74 MiB Shape (780, 721, 1440) (32, 721, 1440) Dask graph 25 chunks in 2 graph layers Data type float32 numpy.ndarray - tauv(time, lat, lon)float32dask.array<chunksize=(32, 721, 1440), meta=np.ndarray>
- long_name :
- v-momentum flux at the surface
- param :
- 18.2.0
- standard_name :
- v_stress
- units :
- N m-2
Array Chunk Bytes 3.02 GiB 126.74 MiB Shape (780, 721, 1440) (32, 721, 1440) Dask graph 25 chunks in 2 graph layers Data type float32 numpy.ndarray - ts(time, lat, lon)float32dask.array<chunksize=(32, 721, 1440), meta=np.ndarray>
- long_name :
- surface temperature
- param :
- 0.0.0
- standard_name :
- surface_temperature
- units :
- K
Array Chunk Bytes 3.02 GiB 126.74 MiB Shape (780, 721, 1440) (32, 721, 1440) Dask graph 25 chunks in 2 graph layers Data type float32 numpy.ndarray - uas(time, height_2, lat, lon)float32dask.array<chunksize=(32, 1, 721, 1440), meta=np.ndarray>
- long_name :
- zonal wind in 10m
- param :
- 2.2.0
- standard_name :
- uas
- units :
- m s-1
Array Chunk Bytes 3.02 GiB 126.74 MiB Shape (780, 1, 721, 1440) (32, 1, 721, 1440) Dask graph 25 chunks in 2 graph layers Data type float32 numpy.ndarray - vas(time, height_2, lat, lon)float32dask.array<chunksize=(32, 1, 721, 1440), meta=np.ndarray>
- long_name :
- meridional wind in 10m
- param :
- 3.2.0
- standard_name :
- vas
- units :
- m s-1
Array Chunk Bytes 3.02 GiB 126.74 MiB Shape (780, 1, 721, 1440) (32, 1, 721, 1440) Dask graph 25 chunks in 2 graph layers Data type float32 numpy.ndarray
- Conventions :
- CF-1.7 CMIP-6.2
- activity_id :
- HighResMIP
- data_specs_version :
- 01.00.32
- forcing_index :
- 1
- initialization_index :
- 1
- license :
- EERIE model data produced by MPI-M is licensed under a Creative Commons Attribution 4.0 International License (https://creativecommons.org/licenses). The data producers and data providers make no warranty, either express or implied, including, but not limited to, warranties of merchantability and fitness for a particular purpose. All liabilities arising from the supply of the information (including any liability arising in negligence) are excluded to the fullest extent permitted by law.
- mip_era :
- EERIE
- project_id :
- EERIE
- physics_index :
- 1
- product :
- model-output
- realization_index :
- 1
- source_type :
- AOGCM
- variant_label :
- r1i1p1f1
- creation_date :
- 2025-04-02T13:48:28
- institution_id :
- MPI-M
- source_id :
- ICON-ESM-ER
- experiment_id :
- hist-1950
- contact :
- juergen.kroeger@mpimet.mpg.de
- references :
- Hohenegger et al., ICON-Sapphire: simulating the components of the Earth system and their interactions at kilometer and subkilometer scales. Geosci. Model Dev., 16, 779–811, 2023, https://doi.org/10.5194/gmd-16-779-2023
- nominal_resolution :
- 10 km
- version_id :
- v20240618
- realm :
- atmos
- grid :
- gr025
- grid_label :
- gr
- parent_experiment_id :
- spinup-1950
- parent_activity_id :
- HighResMIP
- sub_experiment_id :
- none
- experiment :
- coupled historical 1950-2014
- source :
- ICON-ESM-ER (2023): aerosol: none, prescribed MACv2-SP atmos: ICON-A (icosahedral/triangles; 10 km; 90 levels; top level 80 km) atmosChem: none land: JSBACH4.20 landIce: none/prescribed ocean: ICON-O (icosahedral/triangles; 5 km; 72 levels; top grid cell 0-2 m) ocnBgchem: none seaIce: unnamed (thermodynamic (Semtner zero-layer) dynamic (Hibler 79) sea ice model)
- institution :
- Max Planck Institute for Meteorology, Hamburg 20146, Germany
- sub_experiment :
- none
Advanced: Retrievel setting#
Before we start excessively transfering data chunks, we need to understand how the km-scale cloud manages to prevent us from running into rejected requests. The km-scale-cloud aims to serve data to multiple users at once. Therefore, it allows 200 requests per client IP before it burst new requests and returns a 429 error. It also only allows 60 requests per datasets.
On the other side, the python Zarr that we use for access is embarassingly parallel. Under the hood, it uses the aiohttp client which limits the number of simultanoues request to 100 per session.
Thus, with default settings, you can only retrieve data from 2 datasets (2 * 100) at once! Moreover, it make sense to configure the client so that it uses less requests at once. A reasonable number of concurrent requests depends on
your network bandwidth
the chunk size of the target data For some high resolution data (GRIB formatted), one chunk can be large (>>10MB). In that case, you already reach a performance that fill your network capacity with only a few parallel chunks.
This is how parallel requests are limited to 2:
import aiohttp
so_limited={
"client_kwargs": {
"connector": aiohttp.TCPConnector(limit=2),
}
}
xr.open_dataset(
zarr_uri,
**ec_asset_dict["xarray:open_kwargs"],
storage_options=so_limited
)
Advanced: Two Zarr versions#
The km-scale-cloud provides two Zar access endpoints for the same datasets which differ:
/kerchunk suffix: The preferred href
delivers data as stored in the original without any processing on the server. Original zarr data, e.g. NextGEMs ICON, is just passed through to the user.
/zarr suffix: The alternate href
delivers data processed on server-side with dask. The resulting data is
rechunked in large, dask-optimal chunksizes (O(100MB) in memory)
uniformly compressed with blosc. Native data is lossy compressed with 12-bit bitrouding.
Kerchunk have a smaller footprint in both memory and compute on the server. zarr reduces data volume before transfer to support users with limited network bandwidth.
Intake#
Warning
The Intake catalog is a legacy interface and requires intake<2
The server dynamically creates an intake catalog which is synced with the available dataset.
import intake
cat = intake.open_catalog("https://eerie.cloud.dkrz.de/intake.yaml")
We can list all datasets available in the catalog with list:
all_dkrz_datasets = list(cat)
len(all_dkrz_datasets)
682
The two zarr access points for each dataset are given in the description:
dsname = all_dkrz_datasets[-1]
cat[dsname].describe()
{'name': 'orcestra.ICON-LAM.s2024-09-29_3d_PT4H_12',
'container': 'xarray',
'plugin': ['zarr'],
'driver': ['zarr'],
'description': '',
'direct_access': 'forbid',
'user_parameters': [{'name': 'method',
'description': 'server-side loading method',
'type': 'str',
'allowed': ['kerchunk', 'zarr'],
'default': 'kerchunk'}],
'metadata': {},
'args': {'consolidated': True,
'urlpath': 'https://eerie.cloud.dkrz.de/datasets/orcestra.ICON-LAM.s2024-09-29_3d_PT4H_12/{{ method }}'}}
to_dask() opens the dataset:
cat[dsname].to_dask()
/builds/easy/gems/.venv/lib/python3.13/site-packages/intake_xarray/base.py:21: FutureWarning: The return type of `Dataset.dims` will be changed to return a set of dimension names in future, in order to be more consistent with `DataArray.dims`. To access a mapping from dimension names to lengths, please use `Dataset.sizes`.
'dims': dict(self._ds.dims),
<xarray.Dataset> Size: 631GB
Dimensions: (time: 25, height_full: 56, cell: 9371648, height_half: 57)
Coordinates:
* time (time) datetime64[ns] 200B 2024-09-29 ... 2024-09-30
* height_full (height_full) float64 448B 35.0 36.0 37.0 ... 88.0 89.0 90.0
* cell (cell) int64 75MB 50331648 50331649 ... 201326590 201326591
* height_half (height_half) float64 456B 35.0 36.0 37.0 ... 89.0 90.0 91.0
crs float32 4B ...
Data variables:
pfull (time, height_full, cell) float32 52GB dask.array<chunksize=(6, 8, 16384), meta=np.ndarray>
qc (time, height_full, cell) float32 52GB dask.array<chunksize=(6, 8, 16384), meta=np.ndarray>
qg (time, height_full, cell) float32 52GB dask.array<chunksize=(6, 8, 16384), meta=np.ndarray>
qi (time, height_full, cell) float32 52GB dask.array<chunksize=(6, 8, 16384), meta=np.ndarray>
qr (time, height_full, cell) float32 52GB dask.array<chunksize=(6, 8, 16384), meta=np.ndarray>
qs (time, height_full, cell) float32 52GB dask.array<chunksize=(6, 8, 16384), meta=np.ndarray>
qv (time, height_full, cell) float32 52GB dask.array<chunksize=(6, 8, 16384), meta=np.ndarray>
rho (time, height_full, cell) float32 52GB dask.array<chunksize=(6, 8, 16384), meta=np.ndarray>
ta (time, height_full, cell) float32 52GB dask.array<chunksize=(6, 8, 16384), meta=np.ndarray>
ua (time, height_full, cell) float32 52GB dask.array<chunksize=(6, 8, 16384), meta=np.ndarray>
va (time, height_full, cell) float32 52GB dask.array<chunksize=(6, 8, 16384), meta=np.ndarray>
wa (time, height_half, cell) float32 53GB dask.array<chunksize=(6, 8, 16384), meta=np.ndarray>- time: 25
- height_full: 56
- cell: 9371648
- height_half: 57
- time(time)datetime64[ns]2024-09-29 ... 2024-09-30
- axis :
- T
- standard_name :
- time
array(['2024-09-29T00:00:00.000000000', '2024-09-29T01:00:00.000000000', '2024-09-29T02:00:00.000000000', '2024-09-29T03:00:00.000000000', '2024-09-29T04:00:00.000000000', '2024-09-29T05:00:00.000000000', '2024-09-29T06:00:00.000000000', '2024-09-29T07:00:00.000000000', '2024-09-29T08:00:00.000000000', '2024-09-29T09:00:00.000000000', '2024-09-29T10:00:00.000000000', '2024-09-29T11:00:00.000000000', '2024-09-29T12:00:00.000000000', '2024-09-29T13:00:00.000000000', '2024-09-29T14:00:00.000000000', '2024-09-29T15:00:00.000000000', '2024-09-29T16:00:00.000000000', '2024-09-29T17:00:00.000000000', '2024-09-29T18:00:00.000000000', '2024-09-29T19:00:00.000000000', '2024-09-29T20:00:00.000000000', '2024-09-29T21:00:00.000000000', '2024-09-29T22:00:00.000000000', '2024-09-29T23:00:00.000000000', '2024-09-30T00:00:00.000000000'], dtype='datetime64[ns]') - height_full(height_full)float6435.0 36.0 37.0 ... 88.0 89.0 90.0
- axis :
- Z
- bounds :
- height_bnds
- long_name :
- generalized_height
- standard_name :
- height
array([35., 36., 37., 38., 39., 40., 41., 42., 43., 44., 45., 46., 47., 48., 49., 50., 51., 52., 53., 54., 55., 56., 57., 58., 59., 60., 61., 62., 63., 64., 65., 66., 67., 68., 69., 70., 71., 72., 73., 74., 75., 76., 77., 78., 79., 80., 81., 82., 83., 84., 85., 86., 87., 88., 89., 90.]) - cell(cell)int6450331648 50331649 ... 201326591
array([ 50331648, 50331649, 50331650, ..., 201326589, 201326590, 201326591], shape=(9371648,)) - height_half(height_half)float6435.0 36.0 37.0 ... 89.0 90.0 91.0
- axis :
- Z
- long_name :
- generalized_height
- standard_name :
- height
array([35., 36., 37., 38., 39., 40., 41., 42., 43., 44., 45., 46., 47., 48., 49., 50., 51., 52., 53., 54., 55., 56., 57., 58., 59., 60., 61., 62., 63., 64., 65., 66., 67., 68., 69., 70., 71., 72., 73., 74., 75., 76., 77., 78., 79., 80., 81., 82., 83., 84., 85., 86., 87., 88., 89., 90., 91.]) - crs()float32...
- grid_mapping_name :
- healpix
- healpix_nside :
- 4096
- healpix_order :
- nest
[1 values with dtype=float32]
- pfull(time, height_full, cell)float32dask.array<chunksize=(6, 8, 16384), meta=np.ndarray>
- CDI_grid_type :
- unstructured
- long_name :
- Pressure
- number_of_grid_in_reference :
- 1
- param :
- 0.3.0
- standard_name :
- air_pressure
- units :
- Pa
Array Chunk Bytes 48.88 GiB 3.00 MiB Shape (25, 56, 9371648) (6, 8, 16384) Dask graph 20020 chunks in 2 graph layers Data type float32 numpy.ndarray - qc(time, height_full, cell)float32dask.array<chunksize=(6, 8, 16384), meta=np.ndarray>
- CDI_grid_type :
- unstructured
- long_name :
- specific cloud water content
- number_of_grid_in_reference :
- 1
- param :
- 22.1.0
- standard_name :
- qc
- units :
- kg kg-1
Array Chunk Bytes 48.88 GiB 3.00 MiB Shape (25, 56, 9371648) (6, 8, 16384) Dask graph 20020 chunks in 2 graph layers Data type float32 numpy.ndarray - qg(time, height_full, cell)float32dask.array<chunksize=(6, 8, 16384), meta=np.ndarray>
- CDI_grid_type :
- unstructured
- long_name :
- specific graupel content
- number_of_grid_in_reference :
- 1
- param :
- 32.1.0
- standard_name :
- qg
- units :
- kg kg-1
Array Chunk Bytes 48.88 GiB 3.00 MiB Shape (25, 56, 9371648) (6, 8, 16384) Dask graph 20020 chunks in 2 graph layers Data type float32 numpy.ndarray - qi(time, height_full, cell)float32dask.array<chunksize=(6, 8, 16384), meta=np.ndarray>
- CDI_grid_type :
- unstructured
- long_name :
- specific cloud ice content
- number_of_grid_in_reference :
- 1
- param :
- 82.1.0
- standard_name :
- qi
- units :
- kg kg-1
Array Chunk Bytes 48.88 GiB 3.00 MiB Shape (25, 56, 9371648) (6, 8, 16384) Dask graph 20020 chunks in 2 graph layers Data type float32 numpy.ndarray - qr(time, height_full, cell)float32dask.array<chunksize=(6, 8, 16384), meta=np.ndarray>
- CDI_grid_type :
- unstructured
- long_name :
- specific rain content
- number_of_grid_in_reference :
- 1
- param :
- 24.1.0
- standard_name :
- qr
- units :
- kg kg-1
Array Chunk Bytes 48.88 GiB 3.00 MiB Shape (25, 56, 9371648) (6, 8, 16384) Dask graph 20020 chunks in 2 graph layers Data type float32 numpy.ndarray - qs(time, height_full, cell)float32dask.array<chunksize=(6, 8, 16384), meta=np.ndarray>
- CDI_grid_type :
- unstructured
- long_name :
- specific snow content
- number_of_grid_in_reference :
- 1
- param :
- 25.1.0
- standard_name :
- qs
- units :
- kg kg-1
Array Chunk Bytes 48.88 GiB 3.00 MiB Shape (25, 56, 9371648) (6, 8, 16384) Dask graph 20020 chunks in 2 graph layers Data type float32 numpy.ndarray - qv(time, height_full, cell)float32dask.array<chunksize=(6, 8, 16384), meta=np.ndarray>
- CDI_grid_type :
- unstructured
- long_name :
- Specific humidity
- number_of_grid_in_reference :
- 1
- param :
- 0.1.0
- standard_name :
- specific_humidity
- units :
- kg kg-1
Array Chunk Bytes 48.88 GiB 3.00 MiB Shape (25, 56, 9371648) (6, 8, 16384) Dask graph 20020 chunks in 2 graph layers Data type float32 numpy.ndarray - rho(time, height_full, cell)float32dask.array<chunksize=(6, 8, 16384), meta=np.ndarray>
- CDI_grid_type :
- unstructured
- long_name :
- density
- number_of_grid_in_reference :
- 1
- param :
- 10.3.0
- standard_name :
- air_density
- units :
- kg m-3
Array Chunk Bytes 48.88 GiB 3.00 MiB Shape (25, 56, 9371648) (6, 8, 16384) Dask graph 20020 chunks in 2 graph layers Data type float32 numpy.ndarray - ta(time, height_full, cell)float32dask.array<chunksize=(6, 8, 16384), meta=np.ndarray>
- CDI_grid_type :
- unstructured
- long_name :
- Temperature
- number_of_grid_in_reference :
- 1
- param :
- 0.0.0
- standard_name :
- air_temperature
- units :
- K
Array Chunk Bytes 48.88 GiB 3.00 MiB Shape (25, 56, 9371648) (6, 8, 16384) Dask graph 20020 chunks in 2 graph layers Data type float32 numpy.ndarray - ua(time, height_full, cell)float32dask.array<chunksize=(6, 8, 16384), meta=np.ndarray>
- CDI_grid_type :
- unstructured
- long_name :
- Zonal wind
- number_of_grid_in_reference :
- 1
- param :
- 2.2.0
- standard_name :
- eastward_wind
- units :
- m s-1
Array Chunk Bytes 48.88 GiB 3.00 MiB Shape (25, 56, 9371648) (6, 8, 16384) Dask graph 20020 chunks in 2 graph layers Data type float32 numpy.ndarray - va(time, height_full, cell)float32dask.array<chunksize=(6, 8, 16384), meta=np.ndarray>
- CDI_grid_type :
- unstructured
- long_name :
- Meridional wind
- number_of_grid_in_reference :
- 1
- param :
- 3.2.0
- standard_name :
- northward_wind
- units :
- m s-1
Array Chunk Bytes 48.88 GiB 3.00 MiB Shape (25, 56, 9371648) (6, 8, 16384) Dask graph 20020 chunks in 2 graph layers Data type float32 numpy.ndarray - wa(time, height_half, cell)float32dask.array<chunksize=(6, 8, 16384), meta=np.ndarray>
- CDI_grid_type :
- unstructured
- long_name :
- Vertical velocity
- number_of_grid_in_reference :
- 1
- param :
- 9.2.0
- standard_name :
- upward_air_velocity
- units :
- m s-1
Array Chunk Bytes 49.75 GiB 3.00 MiB Shape (25, 57, 9371648) (6, 8, 16384) Dask graph 22880 chunks in 2 graph layers Data type float32 numpy.ndarray
Environment#
To succesfully run this notebook, you need a kernel / environment with the following packages installed:
- xarray
- pystac
- zarr
- dask
- hvplot # for plotting
- aiohttp
- requests
- intake-xarray
- intake<2
- eccodes # for grib data
- python-eccodes # for grib data