Datasets:
ArXiv:
License:
Update README.md
Browse files
README.md
CHANGED
|
@@ -14,6 +14,8 @@ It comes in three splits: `train`, `eval` and `test`.
|
|
| 14 |
To open a `train` split of the dataset and show an `elevation` plot at `time=2137`:
|
| 15 |
|
| 16 |
```python
|
|
|
|
|
|
|
| 17 |
ds = xr.open_zarr("train.zarr")
|
| 18 |
ds["elevation"].sel(time=2137).plot.imshow(origin="upper")
|
| 19 |
```
|
|
|
|
| 14 |
To open a `train` split of the dataset and show an `elevation` plot at `time=2137`:
|
| 15 |
|
| 16 |
```python
|
| 17 |
+
import xarray as xr
|
| 18 |
+
|
| 19 |
ds = xr.open_zarr("train.zarr")
|
| 20 |
ds["elevation"].sel(time=2137).plot.imshow(origin="upper")
|
| 21 |
```
|