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
Merge branch 'propagate-attrs' of github.com:dcherian/xarray into propagate-attrs
* 'propagate-attrs' of github.com:dcherian/xarray: (22 commits)
silence sphinx warnings about broken rst (pydata#4448)
Xarray open_mfdataset with engine Zarr (pydata#4187)
Fix release notes formatting (pydata#4443)
fix typo in io.rst (pydata#4250)
Fix typo (pydata#4181)
Fix release notes typo
New whatsnew section
Add notes re doctests (pydata#4440)
Fixed dask.optimize on datasets (pydata#4438)
Release notes for 0.16.1 (pydata#4435)
Small updates to How-to-release + lint (pydata#4436)
Fix doctests (pydata#4439)
add a ci for doctests (pydata#4437)
preserve original dimension, coordinate and variable order in ``concat`` (pydata#4419)
Fix for h5py deepcopy issues (pydata#4426)
Keep the original ordering of the coordinates (pydata#4409)
Clearer Vectorized Indexing example (pydata#4433)
Revert "Fix optimize for chunked DataArray (pydata#4432)" (pydata#4434)
Fix optimize for chunked DataArray (pydata#4432)
fix doc dataarray to netcdf (pydata#4424)
...
Copy file name to clipboardExpand all lines: doc/quick-overview.rst
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -46,7 +46,7 @@ Here are the key properties for a ``DataArray``:
46
46
Indexing
47
47
--------
48
48
49
-
xarray supports four kind of indexing. Since we have assigned coordinate labels to the x dimension we can use label-based indexing along that dimension just like pandas. The four examples below all yield the same result (the value at `x=10`) but at varying levels of convenience and intuitiveness.
49
+
xarray supports four kinds of indexing. Since we have assigned coordinate labels to the x dimension we can use label-based indexing along that dimension just like pandas. The four examples below all yield the same result (the value at `x=10`) but at varying levels of convenience and intuitiveness.
- Variables which are chunked using dask only along some dimensions can be chunked while storing with zarr along previously
74
119
unchunked dimensions (:pull:`4312`) By `Tobias Kölling <https://github.com/d70-t>`_.
75
120
- Fixed a bug in backend caused by basic installation of Dask (:issue:`4164`, :pull:`4318`)
@@ -79,7 +124,7 @@ Bug fixes
79
124
and :py:meth:`DataArray.str.wrap` (:issue:`4334`). By `Mathias Hauser <https://github.com/mathause>`_.
80
125
- Fixed overflow issue causing incorrect results in computing means of :py:class:`cftime.datetime`
81
126
arrays (:issue:`4341`). By `Spencer Clark <https://github.com/spencerkclark>`_.
82
-
- Fixed :py:meth:`Dataset.coarsen`, :py:meth:`DataArray.coarsen` dropping attributes on original object (:issue:`4120`, :pull:`4360`). by `Julia Kent <https://github.com/jukent>`_.
127
+
- Fixed :py:meth:`Dataset.coarsen`, :py:meth:`DataArray.coarsen` dropping attributes on original object (:issue:`4120`, :pull:`4360`). By `Julia Kent <https://github.com/jukent>`_.
83
128
- fix the signature of the plot methods. (:pull:`4359`) By `Justus Magin <https://github.com/keewis>`_.
84
129
- Fix :py:func:`xarray.apply_ufunc` with ``vectorize=True`` and ``exclude_dims`` (:issue:`3890`).
85
130
By `Mathias Hauser <https://github.com/mathause>`_.
@@ -88,6 +133,15 @@ Bug fixes
88
133
By `Jens Svensmark <https://github.com/jenssss>`_
89
134
- Fix incorrect legend labels for :py:meth:`Dataset.plot.scatter` (:issue:`4126`).
90
135
By `Peter Hausamann <https://github.com/phausamann>`_.
136
+
- Fix ``dask.optimize`` on ``DataArray`` producing an invalid Dask task graph (:issue:`3698`)
137
+
By `Tom Augspurger <https://github.com/TomAugspurger>`_
138
+
- Fix ``pip install .`` when no ``.git`` directory exists; namely when the xarray source
139
+
directory has been rsync'ed by PyCharm Professional for a remote deployment over SSH.
140
+
By `Guido Imperiale <https://github.com/crusaderky>`_
141
+
- Preserve dimension and coordinate order during :py:func:`xarray.concat` (:issue:`2811`, :issue:`4072`, :pull:`4419`).
142
+
By `Kai Mühlbauer <https://github.com/kmuehlbauer>`_.
143
+
- Avoid relying on :py:class:`set` objects for the ordering of the coordinates (:pull:`4409`)
144
+
By `Justus Magin <https://github.com/keewis>`_.
91
145
92
146
Documentation
93
147
~~~~~~~~~~~~~
@@ -97,15 +151,28 @@ Documentation
97
151
- Removed skipna argument from :py:meth:`DataArray.count`, :py:meth:`DataArray.any`, :py:meth:`DataArray.all`. (:issue:`755`)
98
152
By `Sander van Rijn <https://github.com/sjvrijn>`_
99
153
- Update the contributing guide to use merges instead of rebasing and state
100
-
that we squash-merge. (:pull:`4355`) By `Justus Magin <https://github.com/keewis>`_.
154
+
that we squash-merge. (:pull:`4355`). By `Justus Magin <https://github.com/keewis>`_.
155
+
- Make sure the examples from the docstrings actually work (:pull:`4408`).
156
+
By `Justus Magin <https://github.com/keewis>`_.
157
+
- Updated Vectorized Indexing to a clearer example.
158
+
By `Maximilian Roos <https://github.com/max-sixty>`_
101
159
102
160
Internal Changes
103
161
~~~~~~~~~~~~~~~~
162
+
163
+
- Fixed all doctests and enabled their running in CI.
164
+
By `Justus Magin <https://github.com/keewis>`_.
165
+
- Relaxed the :ref:`mindeps_policy` to support:
166
+
167
+
- all versions of setuptools released in the last 42 months (but no older than 38.4)
168
+
- all versions of dask and dask.distributed released in the last 12 months (but no
169
+
older than 2.9)
170
+
- all versions of other packages released in the last 12 months
0 commit comments