MCPcopy Index your code
hub / github.com/pydata/xarray / to_iris

Method to_iris

xarray/core/dataarray.py:4677–4681  ·  view source on GitHub ↗

Convert this array into an iris.cube.Cube

(self)

Source from the content-addressed store, hash-verified

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:

Calls 1

to_irisFunction · 0.90