Backend open_dataset method used by Xarray in :py:func:`~xarray.open_dataset`.
(
self,
filename_or_obj: T_PathFileOrDataStore,
)
| 788 | raise NotImplementedError() |
| 789 | |
| 790 | def guess_can_open( |
| 791 | self, |
| 792 | filename_or_obj: T_PathFileOrDataStore, |
| 793 | ) -> bool: |
| 794 | """ |
| 795 | Backend open_dataset method used by Xarray in :py:func:`~xarray.open_dataset`. |
| 796 | """ |
| 797 | |
| 798 | return False |
| 799 | |
| 800 | def open_datatree( |
| 801 | self, |
no outgoing calls