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.setprop('Conventions', 'CF-1.6')
>>> f.getprop('Conventions')
'CF-1.6'
>>> f.delprop('Conventions')