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,
)
| 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, |
no outgoing calls
no test coverage detected