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,
)
| 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, |