Mapping of :py:class:`~xarray.indexes.Index` objects used for label based indexing.
(self)
| 983 | |
| 984 | @property |
| 985 | def xindexes(self) -> Indexes[Index]: |
| 986 | """Mapping of :py:class:`~xarray.indexes.Index` objects |
| 987 | used for label based indexing. |
| 988 | """ |
| 989 | return Indexes(self._indexes, {k: self._coords[k] for k in self._indexes}) |
| 990 | |
| 991 | @property |
| 992 | def coords(self) -> DataArrayCoordinates: |