cf.Coordinate.dump

class cf.Coordinate(public_attributes={}, private_attributes={})

Bases: cf.space.Variable

A CF coordinate object.

Refer to the Variable and Grid classes and the cf package for details.

Special private attributes

In addition to the special private attributes inherited from the Variable class, the following private attributes have special definitions and it is recommended to set them accordingly.

Attribute Description
bounds The coordinate’s CoordinateBounds object.
climatology An indicator to specify if the coordinate’s bounds are intervals of climatological time.
transform A pointer to the coordinate’s Transform object.
dump(id=None, omit=())

Return a string containing a full description of the coordinate.

Parameters:
  • id (str) – Optional. Set the common prefix of component names. If None then defaults to the class name.
  • omit (sequence) – Optional. Omit the given attributes from the description.
Returns:

A string containing the description of the coordinate.

See also

cf.dump

This Page