|
26 | 26 |
|
27 | 27 | # Bump this version as new datasets are added or as old datasets are updated. |
28 | 28 | # Should be a tag name or commit hash, something immutable. |
29 | | -VERSION = "v0.3.0" |
| 29 | +VERSION = "v0.4.0" |
30 | 30 |
|
31 | 31 |
|
32 | 32 | def _make_download_url(name: str) -> str: |
@@ -86,9 +86,9 @@ def open_dataset(name: str, **kwargs: Any) -> xarray.Dataset: |
86 | 86 | This dataset is defined on a rectangular grid with one dimensional coordinates, |
87 | 87 | handled by the :class:`.CFGrid1D` convenion. |
88 | 88 |
|
89 | | - ``fraser`` |
| 89 | + ``kgari`` |
90 | 90 | A subset of the Great Barrier Reef 4km (GBR4) v2.0 model, part of the eReefs data. |
91 | | - This subset is centred around K'gari / Fraser Island. |
| 91 | + This subset is centred around K'gari. |
92 | 92 | This dataset is defined on a curvilinear grid with two dimensional coordinates, |
93 | 93 | handled by the :class:`.CFGrid2D` convention. |
94 | 94 | Temperature, sea surface height, and current variables are included. |
@@ -117,8 +117,8 @@ def open_dataset(name: str, **kwargs: Any) -> xarray.Dataset: |
117 | 117 | .. code-block:: python |
118 | 118 |
|
119 | 119 | import emsarray |
120 | | - fraser = emsarray.tutorial.open_dataset('fraser') |
121 | | - fraser.ems.plot(fraser['temp'].isel(time=0, k=-1)) |
| 120 | + kgari = emsarray.tutorial.open_dataset('kgari') |
| 121 | + kgari.ems.plot(kgari['temp'].isel(time=0, k=-1)) |
122 | 122 | """ |
123 | 123 | local_path = _fetch(name) |
124 | 124 | return emsarray.open_dataset(local_path, **kwargs) |
0 commit comments