cf.CellMethods.within

CellMethods.within

Each cell method’s within keyword.

These describe how climatological statistics have been derived.

See also

over

Examples:
>>> c = cf.CellMethods('time: minimum area: mean')       
>>> c
<CF CellMethods: time: minimum time: mean>
>>> c.within
(None, None)
>>> c[0].within = 'years'
>>> c[1].over = 'years'
>>> c.within
>>> ('years', None)
>>> c
<CF CellMethods: time: minimum within years time: mean over years>
>>> d = c[0]
>>> d
<CF CellMethods: time: minimum within years>
>>> del d.within
>>> d.within
(None,)
>>> d
<CF CellMethods: time: minimum>
>>> del c[1].over
>>> c
<CF CellMethods: time: minimum time: mean>