You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently Zarr handles Arrays with uniform chunking. Meaning all chunks have the same size (excepting end chunks, which can be shorter). It would be nice if Zarr could also handle non-uniform chunking. Meaning that chunks would still live on a grid, but may vary in size based on their location (IOW not only end chunks would have this feature).
Motivating use cases include saving a Dask Array with non-uniform chunking. Admittedly these could be rechunked if the chunk size is known. Though this comes with some overhead compared to not rechunking. When the chunk size is unknown, this cannot be easily accomplished.
The text was updated successfully, but these errors were encountered:
Currently Zarr handles Arrays with uniform chunking. Meaning all chunks have the same size (excepting end chunks, which can be shorter). It would be nice if Zarr could also handle non-uniform chunking. Meaning that chunks would still live on a grid, but may vary in size based on their location (IOW not only end chunks would have this feature).
Motivating use cases include saving a Dask Array with non-uniform chunking. Admittedly these could be rechunked if the chunk size is known. Though this comes with some overhead compared to not rechunking. When the chunk size is unknown, this cannot be easily accomplished.
The text was updated successfully, but these errors were encountered: