cf.DomainAncillary.properties¶
-
DomainAncillary.
properties
()[source]¶ Return all properties.
See also
- Returns
dict
The properties.
Examples
>>> f.properties() {} >>> f.set_properties( ... {'standard_name': 'air_pressure', 'long_name': 'Air Pressure'}) >>> f.properties() {'standard_name': 'air_pressure', 'foo': 'bar', 'long_name': 'Air Pressure'} >>> f.set_properties({'standard_name': 'air_pressure', 'foo': 'bar'}) >>> f.properties() {'standard_name': 'air_pressure', 'foo': 'bar', 'long_name': 'Air Pressure'} >>> f.clear_properties() {'standard_name': 'air_pressure', 'foo': 'bar', 'long_name': 'Air Pressure'} >>> f.properties() {}