-
Notifications
You must be signed in to change notification settings - Fork 25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Rechunk xarray #45
Comments
Yes absolutely. This is in fact the most likely way users would want to interact with rechunker. One challenge is that xarray does not (easily) expose the underlying stores that were used to create the Dataset objects. (Those may not even exist if the data has been modified from its on-disk version.) What we could easily do in the short term would be to work with the dask arrays (as implemented in #27) for each variable. |
Fixed in #52 |
It would be useful to be able to use rechunker directly on an xarray Dataset (or DataArray), similar to the xarray chunk method.
The text was updated successfully, but these errors were encountered: