cf.Field.source¶
-
Field.source¶ The source CF property.
The method of production of the original data. If it was model-generated,
sourceshould name the model and its version, as specifically as could be useful. If it is observational,sourceshould characterise it (for example,'surface observation'or'radiosonde'). See http://cfconventions.org/latest.html for details.Examples
>>> f.source = 'radiosonde' >>> f.source 'radiosonde' >>> del f.source
>>> f.set_property('source', 'surface observation') >>> f.get_property('source') 'surface observation' >>> f.del_property('source')