(self, index, dim=None, coord_dtype=None)
| 688 | self.coord_dtype = coord_dtype |
| 689 | |
| 690 | def _replace(self, index, dim=None, coord_dtype=None): |
| 691 | if dim is None: |
| 692 | dim = self.dim |
| 693 | if coord_dtype is None: |
| 694 | coord_dtype = self.coord_dtype |
| 695 | return type(self)(index, dim, coord_dtype, fastpath=True) |
| 696 | |
| 697 | @classmethod |
| 698 | def from_variables( |