xarray_eop.eop.open_eop_dataset#
- xarray_eop.eop.open_eop_dataset(product_urlpath: str | Path, *, drop_variables: Tuple[str] | None = None, group: str | None = None, storage_options: dict[str, Any] | None = None, decode_times: bool | None = None) Dataset#
Opens a dataset from a zarr file It is used to define the “eop” backend to xarray.open_dataset. It is equivalent to the standard “zarr” backend, forcing the options chunks={} to enforce lazy loading
- Parameters:
product_urlpath – path to the zarr file
drop_variables – Not yet implemented - inactve., by default None
optional – Not yet implemented - inactve., by default None
group – If the zarr file is en EO product, group is added to the product path to get the dataset, by default None
optional – If the zarr file is en EO product, group is added to the product path to get the dataset, by default None
storage_options – Options to set to the backend if product is in a cloud storage, by default None
optional – Options to set to the backend if product is in a cloud storage, by default None
decode_times – xarray decode_times option, by default None
optional – xarray decode_times option, by default None
- Return type:
_description_