OceanVariableReconstruction / examples /open_with_xarray.py
simon-donike's picture
Add files using upload-large-folder tool
619931a verified
raw
history blame contribute delete
179 Bytes
from pathlib import Path
import xarray as xr
ROOT = Path(__file__).resolve().parents[1]
ds = xr.open_zarr(ROOT / "data/argo_glors_ostia_ssh.zarr", consolidated=None)
print(ds)