seqdata.open_zarr

seqdata.open_zarr(store, group=None, synchronizer=None, chunks='auto', decode_cf=True, mask_and_scale=False, decode_times=True, concat_characters=False, decode_coords=True, drop_variables=None, consolidated=None, overwrite_encoded_chunks=False, chunk_store=None, storage_options=None, decode_timedelta=None, use_cftime=None, zarr_version=None, **kwargs)

Open a SeqData object from disk.

Parameters:
  • store (str, Path) – Path to the SeqData object.

  • group (str, optional) – Name of the group to open, by default None

  • synchronizer (None, optional) – Synchronizer to use, by default None

  • chunks ({None, True, False, int, dict, tuple}, optional) – Chunking scheme to use, by default “auto”

  • decode_cf (bool, optional) – Whether to decode CF conventions, by default True

  • mask_and_scale (bool, optional) – Whether to mask and scale data, by default False

  • decode_times (bool, optional) – Whether to decode times, by default True

  • concat_characters (bool, optional) – Whether to concatenate characters, by default False

  • decode_coords (bool, optional) – Whether to decode coordinates, by default True

  • drop_variables ({None, str, iterable}, optional) – Variables to drop, by default None

  • consolidated (bool, optional) – Whether to consolidate metadata, by default None

  • overwrite_encoded_chunks (bool, optional) – Whether to overwrite encoded chunks, by default False

  • chunk_store ({None, MutableMapping, str, Path}, optional) – Chunk store to use, by default None

  • storage_options (dict, optional) – Storage options to use, by default None

  • decode_timedelta (bool, optional) – Whether to decode timedeltas, by default None

  • use_cftime (bool, optional) – Whether to use cftime, by default None

  • zarr_version (int, optional) – Zarr version to use, by default None

Returns:

SeqData object

Return type:

xr.Dataset