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
* main:
Fix mypy type ignore (pydata#8564)
Support for the new compression arguments. (pydata#7551)
FIX: reverse index output of bottleneck move_argmax/move_argmin functions (pydata#8552)
Adapt map_blocks to use new Coordinates API (pydata#8560)
add xeofs to ecosystem.rst (pydata#8561)
Offer a fixture for unifying DataArray & Dataset tests (pydata#8533)
Generalize cumulative reduction (scan) to non-dask types (pydata#8019)
Copy file name to clipboardExpand all lines: doc/ecosystem.rst
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -78,6 +78,7 @@ Extend xarray capabilities
78
78
- `xarray-dataclasses <https://github.com/astropenguin/xarray-dataclasses>`_: xarray extension for typed DataArray and Dataset creation.
79
79
- `xarray_einstats <https://xarray-einstats.readthedocs.io>`_: Statistics, linear algebra and einops for xarray
80
80
- `xarray_extras <https://github.com/crusaderky/xarray_extras>`_: Advanced algorithms for xarray objects (e.g. integrations/interpolations).
81
+
- `xeofs <https://github.com/nicrie/xeofs>`_: PCA/EOF analysis and related techniques, integrated with xarray and Dask for efficient handling of large-scale data.
81
82
- `xpublish <https://xpublish.readthedocs.io/>`_: Publish Xarray Datasets via a Zarr compatible REST API.
82
83
- `xrft <https://github.com/rabernat/xrft>`_: Fourier transforms for xarray data.
83
84
- `xr-scipy <https://xr-scipy.readthedocs.io>`_: A lightweight scipy wrapper for xarray.
Copy file name to clipboardExpand all lines: doc/whats-new.rst
+11Lines changed: 11 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -26,6 +26,10 @@ New Features
26
26
27
27
- :py:meth:`xr.cov` and :py:meth:`xr.corr` now support using weights (:issue:`8527`, :pull:`7392`).
28
28
By `Llorenç Lledó <https://github.com/lluritu>`_.
29
+
- Accept the compression arguments new in netCDF 1.6.0 in the netCDF4 backend.
30
+
See `netCDF4 documentation <https://unidata.github.io/netcdf4-python/#efficient-compression-of-netcdf-variables>`_ for details.
31
+
By `Markel García-Díez <https://github.com/markelg>`_. (:issue:`6929`, :pull:`7551`) Note that some
32
+
new compression filters needs plugins to be installed which may not be available in all netCDF distributions.
29
33
30
34
Breaking changes
31
35
~~~~~~~~~~~~~~~~
@@ -39,6 +43,9 @@ Deprecations
39
43
Bug fixes
40
44
~~~~~~~~~
41
45
46
+
- Reverse index output of bottleneck's rolling move_argmax/move_argmin functions (:issue:`8541`, :pull:`8552`).
47
+
By `Kai Mühlbauer <https://github.com/kmuehlbauer>`_.
48
+
42
49
43
50
Documentation
44
51
~~~~~~~~~~~~~
@@ -589,6 +596,10 @@ Internal Changes
589
596
590
597
- :py:func:`as_variable` now consistently includes the variable name in any exceptions
591
598
raised. (:pull:`7995`). By `Peter Hill <https://github.com/ZedThree>`_
599
+
- Redirect cumulative reduction functions internally through the :py:class:`ChunkManagerEntryPoint`,
600
+
potentially allowing :py:meth:`~xarray.DataArray.ffill` and :py:meth:`~xarray.DataArray.bfill` to
601
+
use non-dask chunked array types.
602
+
(:pull:`8019`) By `Tom Nicholas <https://github.com/TomNicholas>`_.
592
603
- :py:func:`encode_dataset_coordinates` now sorts coordinates automatically assigned to
593
604
`coordinates` attributes during serialization (:issue:`8026`, :pull:`8034`).
594
605
`By Ian Carroll <https://github.com/itcarroll>`_.
0 commit comments