Return this variable as an xarray.IndexVariable
(self)
| 567 | to_variable = utils.alias(to_base_variable, "to_variable") |
| 568 | |
| 569 | def to_index_variable(self) -> IndexVariable: |
| 570 | """Return this variable as an xarray.IndexVariable""" |
| 571 | return IndexVariable( |
| 572 | self._dims, self._data, self._attrs, encoding=self._encoding, fastpath=True |
| 573 | ) |
| 574 | |
| 575 | to_coord = utils.alias(to_index_variable, "to_coord") |
| 576 |