Skip to content

Commit 4973af9

Browse files
Add release notes for 0.9.0 (#410)
1 parent 91846de commit 4973af9

File tree

3 files changed

+31
-12
lines changed

3 files changed

+31
-12
lines changed

docs/release_notes/index.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ Release notes
44
.. toctree::
55
:maxdepth: 1
66

7+
version_0.9_updates
78
version_0.8_updates
89
version_0.7_updates
910
version_0.6_updates
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
Version 0.9 Updates
2+
/////////////////////////
3+
4+
Version 0.9.1
5+
===============
6+
7+
New features
8+
++++++++++++++++
9+
10+
- Renamed the ``constants`` source to ``forcings``
11+
- Enabled the NetCDF field parser to recognise the following additional coordinates: "X", "xc", "Y" and "yc"
12+
- Split encoding from writing in experimental GRIB output generator
13+
14+
Fixes
15+
++++++
16+
17+
- Fixed issue when NetCDF data containing cftime dates could not be read
18+
- Fixed issue when NetCDF data containing coordinates called "lat" and "lon" could not be read correctly

src/earthkit/data/core/fieldlist.py

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1102,13 +1102,13 @@ def head(self, n=5, **kwargs):
11021102
11031103
The following calls are equivalent:
11041104
1105-
.. code-block:: python
1105+
.. code-block:: python
11061106
1107-
ds.head()
1108-
ds.head(5)
1109-
ds.head(n=5)
1110-
ds.ls(5)
1111-
ds.ls(n=5)
1107+
ds.head()
1108+
ds.head(5)
1109+
ds.head(n=5)
1110+
ds.ls(5)
1111+
ds.ls(n=5)
11121112
11131113
"""
11141114
if n <= 0:
@@ -1139,13 +1139,13 @@ def tail(self, n=5, **kwargs):
11391139
11401140
The following calls are equivalent:
11411141
1142-
.. code-block:: python
1142+
.. code-block:: python
11431143
1144-
ds.tail()
1145-
ds.tail(5)
1146-
ds.tail(n=5)
1147-
ds.ls(-5)
1148-
ds.ls(n=-5)
1144+
ds.tail()
1145+
ds.tail(5)
1146+
ds.tail(n=5)
1147+
ds.ls(-5)
1148+
ds.ls(n=-5)
11491149
11501150
"""
11511151
if n <= 0:

0 commit comments

Comments
 (0)