Convert this array into an iris.cube.Cube
(self)
| 4675 | return result |
| 4676 | |
| 4677 | def to_iris(self) -> iris_Cube: |
| 4678 | """Convert this array into an iris.cube.Cube""" |
| 4679 | from xarray.convert import to_iris |
| 4680 | |
| 4681 | return to_iris(self) |
| 4682 | |
| 4683 | @classmethod |
| 4684 | def from_iris(cls, cube: iris_Cube) -> Self: |