diff --git a/lib/iris/cube.py b/lib/iris/cube.py index 67da6df725..9ace516555 100644 --- a/lib/iris/cube.py +++ b/lib/iris/cube.py @@ -492,9 +492,13 @@ def __init__(self, data, standard_name=None, long_name=None, Args: * data - A numpy array containing the phenomenon values or a data manager - object. This object defines the shape of the cube and the value - in each cell. + An object, usually a numpy array, containing the phenomenon + values or a data manager object. This object defines the shape + of the cube and the value in each cell. + + If the object contains phenomenon values it can be a numpy + array, an array subclass or an *array_like* as described in + :func:`numpy.asarray`. See :attr:`Cube.data` and :class:`iris.fileformats.manager.DataManager`