You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/whats-new.rst
+16-16Lines changed: 16 additions & 16 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
.. currentmodule:: cf_xarray
1
+
.. currentmodule:: xarray
2
2
3
3
What's New
4
4
----------
@@ -9,9 +9,9 @@ v0.4.1 (unreleased)
9
9
- Added scripts to document CF criteria with tables. By `Mattia Almansi`_.
10
10
- Support for ``.drop()``, ``.drop_vars()``, ``.drop_sel()``, ``.drop_dims()``, ``.set_coords()``, ``.reset_coords()``. By `Mattia Almansi`_.
11
11
- Support for using ``standard_name`` in more functions. (:pr:`128`) By `Deepak Cherian`_
12
-
- Allow ``DataArray.cf[]`` with standard names. By `Deepak Cherian`_
13
-
- Rewrite the ``values`` of ``.cf.coords`` and ``.cf.data_vars`` with objects returned
14
-
by ``.cf.__getitem___``. This allows extraction of DataArrays when there are clashes
12
+
- Allow :py:meth:`DataArray.cf.__getitem__` with standard names. By `Deepak Cherian`_
13
+
- Rewrite the ``values`` of :py:attr:`Dataset.coords` and :py:attr:`Dataset.data_vars` with objects returned
14
+
by :py:meth:`Dataset.cf.__getitem__`. This allows extraction of DataArrays when there are clashes
15
15
between DataArray names and "special" CF names like ``T``.
16
16
(:issue:`129`, :pr:`130`). By `Deepak Cherian`_
17
17
@@ -23,13 +23,12 @@ v0.4.0 (Jan 22, 2021)
23
23
24
24
v0.3.1 (Nov 25, 2020)
25
25
=====================
26
-
- Support ``Dataset.cf.cell_measures``. By `Deepak Cherian`_.
27
-
- Added ``.axes`` to return a dictionary mapping available Axis standard names to variable names of an xarray object, ``.coordinates`` for Coordinates,
28
-
``.cell_measures`` for Cell Measures, and ``.standard_names`` for all variables. `Kristen Thyng`_ and `Mattia Almansi`_.
29
-
- Changed ``get_valid_keys()`` to ``.keys()``. `Kristen Thyng`_.
30
-
- Added ``.cf.decode_vertical_coords`` for decoding of parameterized vertical coordinate variables.
26
+
- Support :py:attr:`Dataset.cf.cell_measures`. By `Deepak Cherian`_.
27
+
- Added :py:attr:`Dataset.cf.axes` to return a dictionary mapping available Axis standard names to variable names of an xarray object, :py:attr:`Dataset.cf.coordinates` for Coordinates, :py:attr:`Dataset.cf.cell_measures` for Cell Measures, and :py:attr:`Dataset.cf.standard_names` for all variables. `Kristen Thyng`_ and `Mattia Almansi`_.
28
+
- Changed :py:meth:`Dataset.cf.get_valid_keys` to :py:meth:`Dataset.cf.keys`. `Kristen Thyng`_.
29
+
- Added :py:meth:`Dataset.cf.decode_vertical_coords` for decoding of parameterized vertical coordinate variables.
31
30
(:issue:`34`, :pr:`103`). `Deepak Cherian`_.
32
-
- Added top-level :py:func:`bounds_to_vertices` and :py:func:`vertices_to_bounds` as well as ``.cf.bounds_to_vertices``
31
+
- Added top-level :py:func:`~cf_xarray.bounds_to_vertices` and :py:func:`~cf_xarray.vertices_to_bounds` as well as :py:meth:`Dataset.cf.bounds_to_vertices`
33
32
to convert from coordinate bounds in a CF format (shape (nx, 2)) to a vertices format (shape (nx+1)).
34
33
(:pr:`108`). `Pascal Bourgault`_.
35
34
@@ -45,7 +44,7 @@ model in particular. Thanks to Kristen Thyng for opening many issues.
45
44
v0.2.1 (Aug 06, 2020)
46
45
=====================
47
46
- Support for the ``bounds`` attribute. (:pr:`68`, :issue:`32`). `Deepak Cherian`_.
48
-
- Add ``.cf.guess_coord_axis`` to automagically guess axis and coord names, and add
47
+
- Add :py:meth:`Dataset.cf.guess_coord_axis` to automagically guess axis and coord names, and add
0 commit comments