cf.Field.featureType

Field.featureType

The featureType CF property.

The type of discrete sampling geometry, such as point or timeSeriesProfile. See http://cfconventions.org/latest.html for details.

New in version 2.0.

Examples

>>> f.featureType = 'trajectoryProfile'
>>> f.featureType
'trajectoryProfile'
>>> del f.featureType
>>> f.set_property('featureType', 'profile')
>>> f.get_property('featureType')
'profile'
>>> f.del_property('featureType')