Working with remote data #526
Replies: 3 comments 2 replies
-
What is meant by "consolidated" here in #278 ? |
Beta Was this translation helpful? Give feedback.
-
Hi @vjcitn, it refers to putting all the metadata of a Zarr store into a single file at the root level. This is done for two reasons: 1) reduce the number of requests to the remote data; 2) actually be able to discover which data is available in a store for those file systems for which You can find more details and info in the docs from the |
Beta Was this translation helpful? Give feedback.
-
@berombau Hi Benjamin, I am trying our your branch. Really cool work. import zarr
from spatialdata import SpatialData
s3_address = "https://s3.embl.de/spatialdata/spatialdata-sandbox/merfish.zarr/"
root = zarr.open_consolidated(s3_address, mode="r", metadata_key="zmetadata")
root.info
>... Groups images, points, shapes, tables ...
sdata = SpatialData.read(root)
sdata
>FileNotFoundError: https://s3.embl.de/spatialdata/spatialdata-sandbox/merfish.zarr/ any idea why this is not working? |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Working with remote data is currently only partially supported. Here is a collections of related issues and pull requests that constitute a good point to get started from.
Any user request/feedback from users is highly welcomed! 😊
Beta Was this translation helpful? Give feedback.
All reactions