cfdm.core.DimensionCoordinate.is_climatology

DimensionCoordinate.is_climatology()[source]

True if the coordinates are climatological.

New in version (cfdm): 1.8.9.0

Returns
bool

Whether or not the coordinates are climatological.

Examples

>>> c = cfdm.core.DimensionCoordinate()
>>> c.set_climatology(True)
>>> c.is_climatology()
True
>>>  c.get_climatology()
True
>>> c.del_climatology()
True
>>> c.is_climatology()
False
>>> print(c.get_climatology(None))
None
>>> print(c.del_climatology(None))
None
>>> c.set_climatology(False)
>>> c.is_climatology()
False