cf.Field.Conventions

Field.Conventions

The Conventions CF property.

The name of the conventions followed by the field. See http://cfconventions.org/latest.html for details.

Examples

>>> f.Conventions = 'CF-1.6'
>>> f.Conventions
'CF-1.6'
>>> del f.Conventions
>>> f.set_property('Conventions', 'CF-1.6')
>>> f.get_property('Conventions')
'CF-1.6'
>>> f.del_property('Conventions')