-
Notifications
You must be signed in to change notification settings - Fork 27
Support for zipped zarr files #189
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
Comments
Yes, you can read from a zipped Zarr file with Here is an example in the tests, where Lines 240 to 243 in 8d65246
I imagine the goal with reading from cloud storage would be to only download the needed parts of the zip file. This should be possible, but I don't know enough about cloud storage to say how easy this would be to do. |
Many thanks for your prompt answer. For local filesystem I implemented something based on p7zip_jll, unzipping the file on a temporary folder, but this way looks way better. I will check this soon. |
I would take a look at the Zarr v3 sharding codec which allows many chunks to be consolidated into a few (or one) file. I intend to implement this feature here in the near future. |
Hello,
is it foreseen to add the support of zipped zar files (on local filesystem as well as on cloud storage)? It is very valuable in the case of cloud storage. Regarding the python library, it can open zipped files from cloud storage if the zarr has zero compression, and the archive must not containt the root folder.
Many thanks in advance for feedbacks,
Vincent
The text was updated successfully, but these errors were encountered: