-
Notifications
You must be signed in to change notification settings - Fork 54
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
Using a ZipStore instead of FSStore #298
Comments
...you left one out: with the spec(s)! The background is that Zarr v2 doesn't properly specify zip storage, i.e., it's a A conceivable route (still not standardized) that wouldn't require code changes would be to use
See an example here: https://github.com/zarr-developers/outreachy_2022_testing_zipstore/blob/main/real%20%20world%20data/main.py#L53 |
@joshmoore this is terrible 😂 Does v3 have zip in the standard or also no? 😬 I'm starting to think I should use a (😱) tiff... 😅 |
Well that seems dramatic... 😄
Not yet, no. It will need a champion. In general, I think focus is currently on ZEP0002/sharding to solve the big many-files problem rather than the smaller set-of-files-isn't-as-usable problem.
To some extent, this might just be the case, if what you are trying to do is avoid the use of a complexer format that you don't fully need. |
Yeah my point is, if I have a single, small, single-scale image, even just a folder with two metadata files and a subfolder with a single chunk is way more complex than one file. I think for ome-zarr to be the format for sharing images, this needs to be solved... |
Definitely agreed. I think the question is where (& when) that sits on the road between where we are and where we want to be. |
This issue has been mentioned on Image.sc Forum. There might be relevant details there: https://forum.image.sc/t/saving-volumetric-data-with-voxel-size-colormap-annotations/85537/1 |
This issue has been mentioned on Image.sc Forum. There might be relevant details there: https://forum.image.sc/t/saving-volumetric-data-with-voxel-size-colormap-annotations/85537/13 |
Hello!
I'm trying to write an ome-zarr for a small-ish dataset — ~90MB compressed. Because it's much easier to share single files than folders I want to try using a ZipStore. However, when I use a ZipStore zarr, napari-ome-zarr doesn't seem to be able to open the file. I'm not sure whether this is an issue with the plugin, with ome-zarr-py, or (really quite probable) my own confusion — I can't seem to even find the array in the ZipStore manually. 😬
Here's a small distillation of what I'm trying to do. In the code below I create two zarr files, one using
ome_zarr.io.parse_url
, and another usingzarr.ZipStore
. The code runs and writes the image to the ZipStore, but then I can't open it withnapari-ome-zarr
.Any advice would be appreciated! If there's a fix to be made somewhere in the code, as always, I'm happy to contribute, if someone can point me in the right direction! 🙏
The text was updated successfully, but these errors were encountered: