cf.FieldAncillary.valid_max

FieldAncillary.valid_max

The valid_max CF property.

The largest valid value of the data. See http://cfconventions.org/latest.html for details.

Examples

>>> f.valid_max = 100.0
>>> f.valid_max
100.0
>>> del f.valid_max
>>> f.set_property('valid_max', 100.0)
>>> f.has_property('valid_max')
True
>>> f.get_property('valid_max')
100.0
>>> f.del_property('valid_max')