Justus Magin
Justus Magin
the only doubt is about what should happen upstream in `numpy` (if anything should happen at all), so that shouldn't block us here
> I think that mental model gets us to a simple correct answer 98% of the time (the only remaining ambiguities are a couple of small cases on whether a...
The lacking code completion (at least when that is not built on top of type hints) is a bug in `xarray`: the accessors are not included in `__dir__`. I'm no...
See pydata/xarray#9985: this is pretty easy to get to work
> **name collisions with data member attributes** this is not an issue if you use dictionary getitem syntax (`xr.Dataset` was created as a `dict` of `DataArray` objects): `ds[name]` will always...
before you spend more time here: could you check if the version that was integrated into `xarray` does this already? And if not, open the PR there? Edit: but yes,...
okay, sure. I'd still recommend checking the version in `xarray` (which is not public API yet so may still change – though this is pretty unlikely at this point) to...
I've copied over the docstring of `open_dataset` to `open_groups` and `open_datatree` and changed the code of `_datatree_from_backend_datatree` to both copy over `_close` and to protect the data against modifications. Which...
> I'm happy to merge this @keewis ? me too! Feel free to go ahead and merge.
we don't support the variable syntax in `Variable.__getitem__`, so it tries to convert the tuple to an array, which fails. You can get this to work by passing an actual...