Convert an iris.cube.Cube into an xarray.DataArray
(cls, cube: iris_Cube)
| 4682 | |
| 4683 | @classmethod |
| 4684 | def from_iris(cls, cube: iris_Cube) -> Self: |
| 4685 | """Convert an iris.cube.Cube into an xarray.DataArray""" |
| 4686 | from xarray.convert import from_iris |
| 4687 | |
| 4688 | return from_iris(cube) |
| 4689 | |
| 4690 | def _all_compat(self, other: Self, compat_str: str) -> bool: |
| 4691 | """Helper function for equals, broadcast_equals, and identical""" |