cf.CellMethod.over

CellMethod.over

The cell method’s over qualifier.

These describe how climatological statistics have been derived.

See also

within

Examples

>>> c
>>> c
<CF CellMethod: time: minimum>
>>> print(c.over)
None
>>> c.over = 'years'
>>> c
<CF CellMethod: time: minimum over years>
>>> del c.over
>>> c
<CF CellMethod: time: minimum>