Isongzhe commited on
Commit
e9b4e32
·
verified ·
1 Parent(s): f7138e3

chore: update dataset card

Browse files
Files changed (1) hide show
  1. README.md +10 -1
README.md CHANGED
@@ -3,6 +3,15 @@ tags:
3
  - zarr
4
  configs: []
5
  ---
6
- # AtmosRiver Zarr Store
7
 
8
  Binary Zarr v3 dataset. Use `xarray` + `HfFileSystem` to access.
 
 
 
 
 
 
 
 
 
 
3
  - zarr
4
  configs: []
5
  ---
6
+ # WAM2Layers Zarr Store
7
 
8
  Binary Zarr v3 dataset. Use `xarray` + `HfFileSystem` to access.
9
+
10
+ ```python
11
+ from huggingface_hub import HfFileSystem
12
+ import xarray as xr
13
+
14
+ fs = HfFileSystem()
15
+ store = fs.get_mapper("datasets/NTU-CompHydroMet-Lab/wam2layers/1996.zarr")
16
+ ds = xr.open_zarr(store, consolidated=False)
17
+ ```