MCPcopy Index your code
hub / github.com/pydata/xarray / open_dataset

Method open_dataset

xarray/backends/common.py:778–788  ·  view source on GitHub ↗

Backend open_dataset method used by Xarray in :py:func:`~xarray.open_dataset`.

(
        self,
        filename_or_obj: T_PathFileOrDataStore,
        *,
        drop_variables: str | Iterable[str] | None = None,
    )

Source from the content-addressed store, hash-verified

776 return txt
777
778 def open_dataset(
779 self,
780 filename_or_obj: T_PathFileOrDataStore,
781 *,
782 drop_variables: str | Iterable[str] | None = None,
783 ) -> Dataset:
784 """
785 Backend open_dataset method used by Xarray in :py:func:`~xarray.open_dataset`.
786 """
787
788 raise NotImplementedError()
789
790 def guess_can_open(
791 self,

Callers 1

open_datasetFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected