File size: 349 Bytes
f6f6ff0
 
 
 
 
e9b4e32
f6f6ff0
 
e9b4e32
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
---
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)
```