cf.Coordinate.lower_bounds

Coordinate.lower_bounds

The lower cell bounds.

The lower cell bounds are returned in a cf.Data object.

Note that c.lower_bounds is equivalent to c.bounds.data.min(axes=-1).

New in version 2.0.

See also

bounds, upper_bounds

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]