The upper coordinate bounds in a cf.Data object.
See also
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]