Return this variable as an xarray.IndexVariable
(self)
| 2943 | return self._to_index().equals(other._to_index()) |
| 2944 | |
| 2945 | def to_index_variable(self) -> IndexVariable: |
| 2946 | """Return this variable as an xarray.IndexVariable""" |
| 2947 | return self.copy(deep=False) |
| 2948 | |
| 2949 | to_coord = utils.alias(to_index_variable, "to_coord") |
| 2950 |