xarray icon indicating copy to clipboard operation
xarray copied to clipboard

N-D labeled arrays and datasets in Python

Results 629 xarray issues
Sort by recently updated
recently updated
newest added

- [ ] Closes #xxxx - [ ] Tests added - [ ] User visible changes (including notable bug fixes) are documented in `whats-new.rst` - [ ] New functions/methods are...

topic-indexing

- [x] Closes #9693 - [x] Closes #10013 - [ ] Tests added - [ ] User visible changes (including notable bug fixes) are documented in `whats-new.rst` - [ ]...

topic-documentation
topic-DataTree

### What is your issue? Looks like we can bump the min supported version for a number of our dependencies: ``` │ ┏━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━━━━━━┳━━━━━━━━┓ │ │ ┃ Package ┃ Required ┃...

contrib-help-wanted
dependencies

Our release action failed :( https://github.com/pydata/xarray/actions/runs/15565419295/job/43828236592 Looks like something else was dragging in `typing_extensions` earlier.

topic-documentation
Release
Automation

### What happened? Given: ``` index1 = np.array([1, 2, 3]) index2 = np.array([1, 2, 4]) srs = pd.Series(index=index1, data=1).convert_dtypes() arr = srs.to_xarray() ``` Now consider: ``` >>> arr.reindex(index=index2) ``` In...

bug
needs triage

Added a check for Python objects that neither have numpy dtype `dtype` attributes nor are one of the builtin types so that type promotion succeeds and defaults to `object` dtype....

topic-documentation

### What is your issue? `Dataset.interp` was updated to allow non-numeric dtypes in #5008 However, `DataArray.interp` still has an outdated check for numeric dtypes, meaning that other dtypes (e.g. datetimes)...

needs triage

### Is your feature request related to a problem? To resolve the ongoing discussion around extension array casting, an option that has arisen would be to add a `cast_extension_array` argument...

enhancement

### What happened? When I open a dataset without loading it and perform opperations with it. The data-array gets corrupted. The dimensions seem to be in a different order then...

bug

### What is your issue? Currently, in `Dataset.to_zarr()`, the `consolidated` parameter defaults to `None`, which means that xarray attempts to consolidate metadata by default. However, when using zarr_version=3, consolidated metadata...

topic-zarr