cf.Field.standard_error_multiplier

Field.standard_error_multiplier

The standard_error_multiplier CF property.

If a data variable with a standard_name modifier of 'standard_error' has this attribute, it indicates that the values are the stated multiple of one standard error. See http://cfconventions.org/latest.html for details.

Examples

>>> f.standard_error_multiplier = 2.0
>>> f.standard_error_multiplier
2.0
>>> del f.standard_error_multiplier
>>> f.set_property('standard_error_multiplier', 2.0)
>>> f.get_property('standard_error_multiplier')
2.0
>>> f.del_property('standard_error_multiplier')