Array¶
zarrista.Array ¶
A read-only Zarr array.
dimension_names
property
¶
The dimension names, if any were specified.
__getitem__ ¶
__getitem__(selection: Selection) -> Data
Read a region with numpy-style basic indexing, e.g. arr[0:10, :, 5].
Sugar for retrieve_array_subset.
open
staticmethod
¶
open(store: FilesystemStore | MemoryStore, path: str = '/') -> Array
Open the array stored at path in store.
zarrista.AsyncArray ¶
A read-only Zarr array backed by an async store.
dimension_names
property
¶
The dimension names, if any were specified.
__getitem__
async
¶
__getitem__(selection: Selection) -> Data
Read a region with numpy-style basic indexing: await arr[0:10, :, 5].
Sugar for retrieve_array_subset.
open_async
async
staticmethod
¶
open_async(store: AsyncStore, path: str = '/') -> AsyncArray
Open the array stored at path in store.
store may be an obstore ObjectStore or an icechunk Session.