cfdm.Index.data¶
-
Index.
data
¶ The data.
f.data
is equivalent tof.get_data()
.Note that a
Data
instance is returned. Use thearray
attribute to get the data as anumpy
array.The units, calendar and fill value properties are, if set, inserted into the data.
New in version (cfdm): 1.7.0
See also
- Returns
Data
The data.
Examples
>>> f = cfdm.Index() >>> f.set_data(cfdm.Data(numpy.arange(10.))) >>> f.has_data() True >>> d = f.data >>> d <Data(10): [0.0, ..., 9.0]> >>> f.data.shape (10,)