MCPcopy Create free account
hub / github.com/dask/dask / to_zarr

Method to_zarr

dask/array/core.py:3010–3021  ·  view source on GitHub ↗

Save array to the zarr storage format See https://zarr.readthedocs.io for details about the format. Refer to :func:`dask.array.to_zarr` for full documentation. See also -------- dask.array.to_zarr : equivalent function

(self, *args, **kwargs)

Source from the content-addressed store, hash-verified

3008 return nonzero(self)
3009
3010 def to_zarr(self, *args, **kwargs):
3011 """Save array to the zarr storage format
3012
3013 See https://zarr.readthedocs.io for details about the format.
3014
3015 Refer to :func:`dask.array.to_zarr` for full documentation.
3016
3017 See also
3018 --------
3019 dask.array.to_zarr : equivalent function
3020 """
3021 return to_zarr(self, *args, **kwargs)
3022
3023 def to_tiledb(self, uri, *args, **kwargs):
3024 """Save array to the TileDB storage manager

Calls 1

to_zarrFunction · 0.85