cf.BoundedVariable.bounds¶
-
BoundedVariable.
bounds
¶ The
cf.Bounds
object containing the cell bounds.New in version 2.0.
See also
Examples: >>> c <CF {+Variable}: latitude(64) degrees_north> >>> c.bounds <CF Bounds: latitude(64, 2) degrees_north> >>> c.bounds = b AttributeError: Can't set 'bounds' attribute. Consider the insert_bounds method. >>> c.bounds.max() <CF Data: 90.0 degrees_north> >>> c.bounds -= 1 AttributeError: Can't set 'bounds' attribute. Consider the insert_bounds method. >>> b = c.bounds >>> b -= 1 >>> c.bounds.max() <CF Data: 89.0 degrees_north>