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: design_notes/flexible_indexes_notes.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -150,15 +150,15 @@ In general explicit index creation should be preferred over implicit index creat
150
150
151
151
For which coordinates?
152
152
153
-
-A. only 1D coordinates with a name matching their dimension name
154
-
-B. all 1D coordinates
153
+
-1A. only 1D coordinates with a name matching their dimension name
154
+
-1B. all 1D coordinates
155
155
156
156
When to create it?
157
157
158
-
-A. each time when a new Dataset/DataArray is created
159
-
-B. only when we need it (i.e., when calling `.sel()` or `indexes`)
158
+
-2A. each time when a new Dataset/DataArray is created
159
+
-2B. only when we need it (i.e., when calling `.sel()` or `indexes`)
160
160
161
-
Options A and A are what Xarray currently does and may be the best choice considering that indexes could possibly be invalidated by coordinate mutation.
161
+
Options 1A and 2A are what Xarray currently does and may be the best choice considering that indexes could possibly be invalidated by coordinate mutation.
162
162
163
163
Besides `pandas.Index`, other indexes currently supported in Xarray like `CFTimeIndex` could be built depending on the coordinate data type.
Copy file name to clipboardExpand all lines: doc/whats-new.rst
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -30,13 +30,15 @@ Deprecations
30
30
Bug Fixes
31
31
~~~~~~~~~
32
32
33
+
- Fix ``.plot`` error when using positional args with ``col`` and
34
+
``row`` (:issue:`11104` :pull:`11111`).
35
+
By `Julia Signell <https://github.com/jsignell>`_.
33
36
- Slightly amend `Xarray's Zarr Encoding Specification doc <https://docs.xarray.dev/en/latest/internals/zarr-encoding-spec.html>`_ for clarity, and provide a code comment in ``xarray.backends.zarr._get_zarr_dims_and_attrs`` referencing the doc (:issue:`8749` :pull:`11013`).
34
37
By `Ewan Short <https://github.com/eshort0401>`_.
35
38
- Fix silent data corruption when writing dask arrays to sharded Zarr stores.
36
39
Dask chunk boundaries must now align with shard boundaries, not just internal
0 commit comments