-
Notifications
You must be signed in to change notification settings - Fork 66
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
is .zarr/ suffix strictly required? any other ".subsuffixes." considered (like in .ome.zarr) #738
Comments
Thanks for the well researched issue =) The second URL is not recongzied as a zarr image because it has itk-vtk-viewer/src/IO/ZarrMultiscaleSpatialImage.js Lines 12 to 13 in 3622a93
So adding the itk-vtk-viewer/test/zarrTest.js Lines 30 to 60 in 3622a93
Zarr URL format does seem to be a continual pain point: We could add another URL parameter
|
+1 on adding explicit option to specify the format - "explicit better than implicit" they said while language is called after a part of the name of a movie coincidental with a full name of a snake... |
FYI, we now addressed this on our (dandidav) end by adding |
For DANDI we are considering to implement custom support for zarr "filesets" versioning.
There is an experimental webdav which is reverse proxied by apache at is https://dandi.centerforopenneuroscience.org .
What we discovered, is that despite the fact that our integration works just fine for URLs like https://kitware.github.io/itk-vtk-viewer/app/?gradientOpacity=0.3&image=https://dandiarchive.s3.amazonaws.com/zarr/6c18ad23-8bc9-404e-b902-d9ccb598dfca (BTW, doesn't work if you add trailing
/
since then it doesn't strip it before adding/.zattrs
and fails), it does not work for https://kitware.github.io/itk-vtk-viewer/app/?gradientOpacity=0.3&image=https://dandi.centerforopenneuroscience.org/zarrs/6c1/8ad/6c18ad23-8bc9-404e-b902-d9ccb598dfca/c33f80763aafea111b5c51c291b22238-83143--96359783338 or with trailing/
and you get justwith console showing
But if I add
.zarr/
(through rewrite at apache level to remove.zarr
for the forwarded to webdav URL) -- it works: https://kitware.github.io/itk-vtk-viewer/app/?gradientOpacity=0.3&image=https://dandi.centerforopenneuroscience.org/zarrs/6c1/8ad/6c18ad23-8bc9-404e-b902-d9ccb598dfca/c33f80763aafea111b5c51c291b22238-83143--96359783338.zarrSo the question is really - is
.zarr
suffix required for the tool? but then how come it works for original URL pointing to S3 prefix?Also, looking forward -- is subsuffix, like
.ome
in.ome.zarr
somehow important/used? (I hope not)Thank you in advance for the answers/ideas.
The text was updated successfully, but these errors were encountered: