@@ -7,22 +7,25 @@ What's New
7
7
8
8
.. _whats-new.2025.07.1 :
9
9
10
- v2025.07.1 (unreleased)
11
- -----------------------
10
+ v2025.07.1 (July 09, 2025)
11
+ --------------------------
12
+
13
+ This release brings a lot of improvements to flexible indexes functionality, including new classes
14
+ to ease building of new indexes with custom coordinate transforms (:py:class: `indexes.CoordinateTransformIndex `)
15
+ and tree-like index structures (:py:class: `indexes.NDPointIndex `).
16
+ See a `new gallery <https://xarray-indexes.readthedocs.io >`_ showing off the possibilities enabled by flexible indexes.
17
+
18
+ Thanks to the 7 contributors to this release:
19
+ Benoit Bovy, Deepak Cherian, Dhruva Kumar Kaushal, Dimitri Papadopoulos Orfanos, Illviljan, Justus Magin and Tom Nicholas
12
20
13
21
New Features
14
22
~~~~~~~~~~~~
23
+ - New :py:class: `xarray.indexes.NDPointIndex `, which by default uses :py:class: `scipy.spatial.KDTree ` under the hood for
24
+ the selection of irregular, n-dimensional data (:pull: `10478 `).
25
+ By `Benoit Bovy <https://github.com/benbovy >`_.
15
26
- Allow skipping the creation of default indexes when opening datasets (:pull: `8051 `).
16
27
By `Benoit Bovy <https://github.com/benbovy >`_ and `Justus Magin <https://github.com/keewis >`_.
17
28
18
- Breaking changes
19
- ~~~~~~~~~~~~~~~~
20
-
21
-
22
- Deprecations
23
- ~~~~~~~~~~~~
24
-
25
-
26
29
Bug fixes
27
30
~~~~~~~~~
28
31
@@ -35,7 +38,7 @@ Bug fixes
35
38
36
39
Documentation
37
40
~~~~~~~~~~~~~
38
-
41
+ - A ` new gallery < https://xarray-indexes.readthedocs.io >`_ showing off the possibilities enabled by flexible indexes.
39
42
40
43
Internal Changes
41
44
~~~~~~~~~~~~~~~~
@@ -63,9 +66,6 @@ New Features
63
66
64
67
- Expose :py:class: `~xarray.indexes.RangeIndex `, and :py:class: `~xarray.indexes.CoordinateTransformIndex ` as public api
65
68
under the ``xarray.indexes `` namespace. By `Deepak Cherian <https://github.com/dcherian >`_.
66
- - New :py:class: `xarray.indexes.NDPointIndex `, which by default uses :py:class: `scipy.spatial.KDTree ` under the hood for
67
- the selection of irregular, n-dimensional data (:pull: `10478 `).
68
- By `Benoit Bovy <https://github.com/benbovy >`_.
69
69
- Support zarr-python's new ``.supports_consolidated_metadata `` store property (:pull: `10457` `).
70
70
by `Tom Nicholas <https://github.com/TomNicholas >`_.
71
71
- Better error messages when encoding data to be written to disk fails (:pull: `10464 `).
0 commit comments