cf.Transform.identity

Transform.identity(default=None)[source]

Return the identity of the transform.

The identity is the standard_name of a formula_terms-type transform or the grid_mapping_name of grid_mapping-type transform.

Parameters :
default : optional

If the transform has no identity then return default. By default, default is None.

Returns :
out :

The identity.

Examples

>>> t.identity()
'rotated_latitude_longitude'
>>> t.identity()
'atmosphere_hybrid_height_coordinate'

Previous topic

cf.Transform.equivalent

Next topic

cf.Transform.match

This Page