datacube.utils.geometry.BoundingBox#
- class datacube.utils.geometry.BoundingBox(left, bottom, right, top)[source]#
Bounding box, defining extent in cartesian coordinates.
Create new instance of BoundingBox(left, bottom, right, top)
- __init__()#
Methods
__init__()buffered(ybuff, xbuff)Return a new BoundingBox, buffered in the x and y dimensions.
count(value, /)Return number of occurrences of value.
from_points(p1, p2)BoundingBox from 2 points
from_xy(x, y)BoundingBox from x and y ranges
index(value[, start, stop])Return first index of value.
transform(transform)Transform bounding box through a linear transform
Attributes
Alias for field number 1
heightAlias for field number 0
Extract four corners of the bounding box
range_xrange_yAlias for field number 2
span_xspan_yAlias for field number 3
width- bottom#
Alias for field number 1
- buffered(ybuff, xbuff)[source]#
Return a new BoundingBox, buffered in the x and y dimensions.
- Parameters:
- Return type:
- Returns:
new BoundingBox
- count(value, /)#
Return number of occurrences of value.
- index(value, start=0, stop=9223372036854775807, /)#
Return first index of value.
Raises ValueError if the value is not present.
- left#
Alias for field number 0
- right#
Alias for field number 2
- top#
Alias for field number 3