cf.DimensionCoordinate.upper_bounds

DimensionCoordinate.upper_bounds

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

See also

bounds, lower_bounds

Examples:
>>> print c.bounds.array
[[ 5  3]
 [ 3  1]
 [ 1 -1]]
>>> c.upper_bounds      
<CF Data: [5, ..., 1]>
>>> c.upper_bounds.array     
array([5, 3, 1])