Return a name for the cell measure.
By default the name is the first found of the following:
- The measure attribute.
- The standard_name CF property.
- The id attribute.
- The long_name CF property, preceeded by the string 'long_name:'.
- The ncvar attribute, preceeded by the string 'ncvar:'.
- The value of the default parameter.
Note that c.name(identity=True) is equivalent to c.identity().
See also
Parameters: |
|
---|---|
Returns: |
|
Examples: |
>>> f.standard_name = 'air_temperature'
>>> f.long_name = 'temperature of the air'
>>> f.ncvar = 'tas'
>>> f.name()
'air_temperature'
>>> del f.standard_name
>>> f.name()
'long_name:temperature of the air'
>>> del f.long_name
>>> f.name()
'ncvar:tas'
>>> del f.ncvar
>>> f.name()
None
>>> f.name('no_name')
'no_name'
>>> f.standard_name = 'air_temperature'
>>> f.name('no_name')
'air_temperature'