cf.BoundedVariable.lower_bounds¶
-
BoundedVariable.lower_bounds¶ The lower cell bounds in a
cf.Dataobject.c.lower_boundsis equivalent toc.bounds.data.min(axes=-1).New in version 2.0.
See also
Examples: >>> print c.bounds.array [[ 5 3] [ 3 1] [ 1 -1]] >>> c.lower_bounds <CF Data: [3, ..., -1]> >>> print c.lower_bounds.array [ 3 1 -1]