diff --git a/docs/release_notes/index.rst b/docs/release_notes/index.rst index 2cef8949..112c58d4 100644 --- a/docs/release_notes/index.rst +++ b/docs/release_notes/index.rst @@ -4,6 +4,7 @@ Release notes .. toctree:: :maxdepth: 1 + version_0.9_updates version_0.8_updates version_0.7_updates version_0.6_updates diff --git a/docs/release_notes/version_0.9_updates.rst b/docs/release_notes/version_0.9_updates.rst new file mode 100644 index 00000000..00c6d7d5 --- /dev/null +++ b/docs/release_notes/version_0.9_updates.rst @@ -0,0 +1,18 @@ +Version 0.9 Updates +///////////////////////// + +Version 0.9.1 +=============== + +New features +++++++++++++++++ + +- Renamed the ``constants`` source to ``forcings`` +- Enabled the NetCDF field parser to recognise the following additional coordinates: "X", "xc", "Y" and "yc" +- Split encoding from writing in experimental GRIB output generator + +Fixes +++++++ + +- Fixed issue when NetCDF data containing cftime dates could not be read +- Fixed issue when NetCDF data containing coordinates called "lat" and "lon" could not be read correctly diff --git a/src/earthkit/data/core/fieldlist.py b/src/earthkit/data/core/fieldlist.py index 7d6167df..f823e798 100644 --- a/src/earthkit/data/core/fieldlist.py +++ b/src/earthkit/data/core/fieldlist.py @@ -1102,13 +1102,13 @@ def head(self, n=5, **kwargs): The following calls are equivalent: - .. code-block:: python + .. code-block:: python - ds.head() - ds.head(5) - ds.head(n=5) - ds.ls(5) - ds.ls(n=5) + ds.head() + ds.head(5) + ds.head(n=5) + ds.ls(5) + ds.ls(n=5) """ if n <= 0: @@ -1139,13 +1139,13 @@ def tail(self, n=5, **kwargs): The following calls are equivalent: - .. code-block:: python + .. code-block:: python - ds.tail() - ds.tail(5) - ds.tail(n=5) - ds.ls(-5) - ds.ls(n=-5) + ds.tail() + ds.tail(5) + ds.tail(n=5) + ds.ls(-5) + ds.ls(n=-5) """ if n <= 0: