cf.DomainAncillary.lower_bounds¶
-
DomainAncillary.
lower_bounds
¶ The lower cell bounds in a
cf.Data
object.c.lower_bounds
is equivalent toc.bounds.data.min(axes=-1)
.New in version 2.0.
See also
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]