cf.gt

cf.gt(value, units=None, attr=None)[source]

Return a comparison object for a variable for being strictly greater than a value.

Parameters :
value : object

The value which a variable is to be compared with.

units : str or cf.Units, optional

The units of value. By default, the same units as the variable being tested are assumed, if applicable.

Returns :
out : cf.Comparison

The comparison object.

See also

eq, ge, ne, le, lt, set, wi, wo

Examples

>>> c = cf.gt(5)
>>> c
<CF Comparison: x gt 5>
>>> c.evaluate(6)
True
>>> c.evaluate(5)
False

Previous topic

cf.ge

Next topic

cf.le

This Page