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.setprop('standard_error_multiplier', 2.0)
>>> f.getprop('standard_error_multiplier')
2.0
>>> f.delprop('standard_error_multiplier')