cf.CellMethod.within¶
-
CellMethod.
within
¶ The cell method’s within qualifier.
These describe how climatological statistics have been derived.
See also
Examples
>>> c >>> c <CF CellMethod: time: minimum> >>> print(c.within) None >>> c.within = 'years' >>> c <CF CellMethod: time: minimum within years> >>> del c.within >>> c <CF CellMethod: time: minimum>