cf.Field.max

Field.max()[source]

The maximum of the data array.

Examples 1:
>>> d = f.max()
Returns:
out: cf.Data

The maximum of the data array.

Examples 2:
>>> f.data
<CF Data: [[[236.512756348, ..., 256.93371582]]] K>
>>> f.max()
311.343780518
>>> f.max().data
<CF Data: 311.343780518 K>