chore: update dataset card
Browse files
README.md
CHANGED
|
@@ -3,6 +3,15 @@ tags:
|
|
| 3 |
- zarr
|
| 4 |
configs: []
|
| 5 |
---
|
| 6 |
-
#
|
| 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 |
+
```
|