cf.Field.standard_name

Field.standard_name

The standard_name CF property.

A standard name that references a description of a data in the standard name table (http://cfconventions.org/standard-names.html). See http://cfconventions.org/latest.html for details.

Examples

>>> f.standard_name = 'time'
>>> f.standard_name
'time'
>>> del f.standard_name
>>> f.set_property('standard_name', 'time')
>>> f.has_property('standard_name')
True
>>> f.get_property('standard_name')
'time'
>>> f.del_property('standard_name')