(self, path, **kwargs)
| 2683 | |
| 2684 | @contextlib.contextmanager |
| 2685 | def open(self, path, **kwargs): |
| 2686 | with xr.open_dataset( |
| 2687 | path, engine="zarr", mode="r", **kwargs, **self.version_kwargs |
| 2688 | ) as ds: |
| 2689 | yield ds |
| 2690 | |
| 2691 | @contextlib.contextmanager |
| 2692 | def roundtrip( |
no test coverage detected