cf.Coordinate.lower_bounds

Coordinate.lower_bounds

The lower coordinate bounds in a cf.Data object.

See also

bounds, upper_bounds

Examples

>>> print c.bounds.array
[[-1  1]
 [ 1  4]
 [ 4  7]]
>>> print c.lower_bounds.array
[-1  1  4]
>>> print c.upper_bounds.array
[ 1  4  7]
>>> print c.flip().bounds.array
[[ 7  4]
 [ 4  1]
 [ 1 -1]]
>>> print c.flip().lower_bounds.array
[ 7  4  1]
>>> print c.flip().upper_bounds.array
[ 4  1 -1]

Previous topic

cf.Coordinate.isscalar

Next topic

cf.Coordinate.mask

This Page