(values: tuple, dim: Shape, **kwargs)
| 189 | |
| 190 | @staticmethod |
| 191 | def __stack__(values: tuple, dim: Shape, **kwargs) -> 'Geometry': |
| 192 | from ._geom_ops import GeometryStack |
| 193 | return GeometryStack(math.layout(values, dim)) |
| 194 | |
| 195 | def __replace_dims__(self, dims: Tuple[str, ...], new_dims: Shape, **kwargs) -> 'UniformGrid': |
| 196 | resolution = math.rename_dims(self.resolution, dims, new_dims).spatial |
nothing calls this directly
no test coverage detected