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