cf.DomainAncillary.upper_bounds¶
-
DomainAncillary.
upper_bounds
¶ The upper cell bounds.
The upper cell bounds are returned in a
cf.Data
object.Note that
c.upper_bounds
is equivalent toc.bounds.data.max(axes=-1)
.New in version 2.0.
See also
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])