Variables with different chunking patterns along the same dim? #9118
Unanswered
TomNicholas
asked this question in
Q&A
Replies: 1 comment 4 replies
-
No.
Yes, but it makes ad-hoc choices. You're better off just calling |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Is it a problem to have multiple variables with different chunking patterns along the same dimension?
e.g. a 3D variable with chunks
{time: 1, z_t: 60, nlat: 384, nlon: 320}
and a 2D variable with chunks{time: 60, nlat: 384, nlon: 320}
alongside each other in the same zarr store / xarray Dataset?I remember some issue where calling
ds.chunksizes
on such an object would raise an error asking you to callunify_chunks
first...Is this what
unify_chunks
is intended for correcting? (That function has basically no documentation...)Beta Was this translation helpful? Give feedback.
All reactions