Update README.md
Browse files
README.md
CHANGED
|
@@ -443,7 +443,7 @@ import xarray as xr
|
|
| 443 |
ds = xr.open_zarr("zip:///::https://huggingface.co/datasets/Zeel/P1/resolve/main/all_in_one.zarr.zip")
|
| 444 |
```
|
| 445 |
|
| 446 |
-
|
| 447 |
For example, If we need to calculate mean of PM2.5 in Delhi for 2022, it will only download PM2.5 data of all stations in Delhi for 2022.
|
| 448 |
|
| 449 |
```py
|
|
|
|
| 443 |
ds = xr.open_zarr("zip:///::https://huggingface.co/datasets/Zeel/P1/resolve/main/all_in_one.zarr.zip")
|
| 444 |
```
|
| 445 |
|
| 446 |
+
Full dataset size is ~8 GB. `ds` variable contains the lazily loaded dataset, which means, it will only download a part of the data when a computation is needed on it.
|
| 447 |
For example, If we need to calculate mean of PM2.5 in Delhi for 2022, it will only download PM2.5 data of all stations in Delhi for 2022.
|
| 448 |
|
| 449 |
```py
|