You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While trying to load a Zarr file into a Cube I found the following error:
store example from docs.
using Zarr, YAXArrays
store ="gs://cmip6/CMIP6/ScenarioMIP/DKRZ/MPI-ESM1-2-HR/ssp585/r1i1p1f1/3hr/tas/gn/v20190710/"
g =zopen(store, consolidated=true) # this works
cube =Cube(store) # this not longer works
using Zarr, YAXArrays
import YAXArrays.Datasets: open_dataset
store ="gs://cmip6/CMIP6/ScenarioMIP/DKRZ/MPI-ESM1-2-HR/ssp585/r1i1p1f1/3hr/tas/gn/v20190710/"
g =zopen(store, consolidated=true)
dset =open_dataset(g)
cube =Cube(dset)
While trying to load a Zarr file into a Cube I found the following error:
store example from docs.
The text was updated successfully, but these errors were encountered: