--- tags: - zarr configs: [] --- # WAM2Layers Zarr Store Binary Zarr v3 dataset. Use `xarray` + `HfFileSystem` to access. ```python from huggingface_hub import HfFileSystem import xarray as xr fs = HfFileSystem() store = fs.get_mapper("datasets/NTU-CompHydroMet-Lab/wam2layers/1996.zarr") ds = xr.open_zarr(store, consolidated=False) ```