(self, key: Any)
| 869 | ) |
| 870 | |
| 871 | def _item_key_to_dict(self, key: Any) -> Mapping[Hashable, Any]: |
| 872 | if utils.is_dict_like(key): |
| 873 | return key |
| 874 | key = indexing.expanded_indexer(key, self.ndim) |
| 875 | return dict(zip(self.dims, key, strict=True)) |
| 876 | |
| 877 | def _getitem_coord(self, key: Any) -> Self: |
| 878 | from xarray.core.dataset_utils import _get_virtual_variable |
no outgoing calls
no test coverage detected