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

Method open_datatree

xarray/backends/common.py:800–812  ·  view source on GitHub ↗

Backend open_datatree method used by Xarray in :py:func:`~xarray.open_datatree`. If implemented, set the class variable supports_groups to True.

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

Source from the content-addressed store, hash-verified

798 return False
799
800 def open_datatree(
801 self,
802 filename_or_obj: T_PathFileOrDataStore,
803 *,
804 drop_variables: str | Iterable[str] | None = None,
805 ) -> DataTree:
806 """
807 Backend open_datatree method used by Xarray in :py:func:`~xarray.open_datatree`.
808
809 If implemented, set the class variable supports_groups to True.
810 """
811
812 raise NotImplementedError()
813
814 def open_groups_as_dict(
815 self,

Callers 3

open_datatreeFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected