-
Notifications
You must be signed in to change notification settings - Fork 13
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
Last row/column fails when writing chunks #88
Comments
With a regular chunk grid, all chunks must have the same size, even those that extend beyond the end of the array. There are a few options here, but just always using |
FYI this is something that has irked me in the spec of Zarr V3, because it is a waste of bytes. I would like to have a A |
Ok, thanks for the clear up. I'll give the subset approach a shot. |
I've added some additional docs in #89; I hope that helps. |
I have an issue when generating Arrays where the last column or row does not fill the full chunk size.
As an example (mostly taken from the documentation directly)
The Chunk with Index (1,1) should only have shape (1,2) in this case. However when providing a correctly sized array the operation fails with the error that a (2,2) array was expected.
Or did I misunderstand how to assign into chunks directly?
The text was updated successfully, but these errors were encountered: