cf.DomainAncillary.lower_bounds

DomainAncillary.lower_bounds

The lower bounds of cells.

If there are no cell bounds then the coordinates are used as the lower bounds.

New in version 2.0.

See also

upper_bounds

Examples

>>> print(c.array)
[4  2  0]
>>> print(c.bounds.array)
[[ 5  3]
 [ 3  1]
 [ 1 -1]]
>>> c.lower_bounds
<CF Data(3): [3, 1, -1]>
>>> b = c.del_bounds()
>>> c.lower_bounds
<CF Data(3): [4, 2, 0]>