xarray
xarray copied to clipboard
N-D labeled arrays and datasets in Python
### What is your issue? I am trying to scatter an large array and pass it as keyword argument to a function applied using `apply_ufunc` but that is currently not...
### What is your issue? Investigating the performance of our service, I came across the following code: https://github.com/pydata/xarray/blob/392a61484e80e6ccfd5774b68be51578077d4292/xarray/backends/zarr.py#L377 We are storing our zarr arrays in S3 using fsspec to wrap...
### Is your feature request related to a problem? If we have two objects with dims `x` and `x1`, then `xr.align(..., join="exact")` will pass because these dimensions are broadcastable. I'd...
### Is your feature request related to a problem? Since early on the project xarray has supported wrapping `dask.array` objects in a first-class manner. However recent work on flexible array...
### What is your issue? At Scipy @Carreau demo'ed a new docs engine: [Papyri](https://github.com/jupyter/papyri). (You can find the [talk slides here](https://github.com/jupyter/papyri/issues/166)). In short it looks awesome, and we should use...
It allows passing options to the constructor of a custom `Index` subclass, in case there's any relevant build options to expose to users. This could for example be the distance...
This is a (incomplete) checklist for #5816 to make it easier to find methods that are in need of examples and links to the narrative docs with further information (of...
### What happened? Hello, in xarray 0.20.1, I am getting the following error `ds = xr.Dataset({"foo": (("x", "y", "z"), [[[42]]]), "bar": (("y", "z"), [[24]])})` `ds.transpose("y", "z", "x")` ``` 868 """Depending...
### What happened? In testing an upgrade to the latest version of xarray in our systems, I noticed this test failing: ``` def test_weighted_operations_nonequal_coords(): # There are no weights for...
If anyone is looking for any bite-size contributions, the test suite is throwing off many warnings. Most of these indicate that something will break in the future without code changes;...