Deepak Cherian
Deepak Cherian
Interesting suggestion. Here are some disconnected thoughts. ----- For a related problem, we already have [`filter_by_attrs`](https://docs.xarray.dev/en/stable/generated/xarray.Dataset.filter_by_attrs.html). Perhaps we should generalize to `Dataset.filter_by` that takes a `name`, `attrs`, `dims` and does...
I agree, would be interesting to explore the new CoordinateTransformIndex & Xproj. There seem to be many parallels with the RasterIndex work in https://github.com/dcherian/rasterix/
> Ideally I think there would be a version of "auto" that never splits any chunks I think this is partly why Xarray normalizes "auto"-chunks. I agree with deleting that...
`ds.drop_encoding().to_zarr("store-v3.zarr")` should work, as long as you're ok with default compression
@benbovy shall we merge?
@benbovy shall we merge?
This seems to work for me with those versions ``` # /// script # requires-python = ">=3.10" # dependencies = [ # "xarray==2025.11.0", # "pandas", # "dask==2025.11.0", # "distributed==2025.11.0", #...
I'm inclined to blame pandas (https://github.com/pandas-dev/pandas/issues/2728, https://github.com/pydata/xarray/issues/9836) and I suspect there's at least one shallow-copy somewhere in that align code path. One way to check would be to write a...
Shall we raise instead if attempting to write shards when `async.concurrency` is `1`?