-
Notifications
You must be signed in to change notification settings - Fork 3
add tensorstore as an optional backend #13
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
and If we consider just the case of creating groups, at the moment we have this (ref): to_zarr(spec: GroupSpec, store: BaseStore, path: str) -> zarr.Group) Suppose we change this to to_zarr(spec: GroupSpec, store: Union[BaseStore, tensorstore.StoreLike, zarrita.StoreLike], path: str) -> Union[zarr.Group, tensorstore.GroupLike, zarrita.Group]) Assuming that tensorstore and zarrita both provide a Second, unless we define
alternatives
|
e.g.,
to_zarr(engine='tensorstore')
vsto_zarr(engine='zarr_python')
The text was updated successfully, but these errors were encountered: