cf.DimensionCoordinate.lower_bounds

DimensionCoordinate.lower_bounds

The lower dimension coordinate bounds in a cf.Data object.

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]