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
The xr.open_zarr(fsmap, consolidated=True, use_cftime=True) method is deprecated (intake/intake-xarray#70) and the should be replaced with return xr.open_dataset(fsmap, consolidated=True, use_cftime=True, engine='zarr')
The text was updated successfully, but these errors were encountered:
Description
I wanted to execute the complete
notebooks/cmip6-zarr-jasmin.ipynb
notebook and an error occured.What I Did
Calling the function
hist_tas = cat_to_ds(hist_cat)['tas']
which is defined one cell up asresults in this TypeError:
TypeError: from_array() got an unexpected keyword argument 'meta'
TypeError
Solution
The
xr.open_zarr(fsmap, consolidated=True, use_cftime=True)
method is deprecated (intake/intake-xarray#70) and the should be replaced withreturn xr.open_dataset(fsmap, consolidated=True, use_cftime=True, engine='zarr')
The text was updated successfully, but these errors were encountered: