pyinterp.geometry.geographic.algorithms.envelope

Contents

pyinterp.geometry.geographic.algorithms.envelope#

pyinterp.geometry.geographic.algorithms.envelope(geometry: pyinterp.core.geometry.geographic.Point) pyinterp.core.geometry.geographic.Box#
pyinterp.geometry.geographic.algorithms.envelope(geometry: pyinterp.core.geometry.geographic.Segment) pyinterp.core.geometry.geographic.Box
pyinterp.geometry.geographic.algorithms.envelope(geometry: pyinterp.core.geometry.geographic.Box) pyinterp.core.geometry.geographic.Box
pyinterp.geometry.geographic.algorithms.envelope(geometry: pyinterp.core.geometry.geographic.LineString) pyinterp.core.geometry.geographic.Box
pyinterp.geometry.geographic.algorithms.envelope(geometry: pyinterp.core.geometry.geographic.Ring) pyinterp.core.geometry.geographic.Box
pyinterp.geometry.geographic.algorithms.envelope(geometry: pyinterp.core.geometry.geographic.Polygon) pyinterp.core.geometry.geographic.Box
pyinterp.geometry.geographic.algorithms.envelope(geometry: pyinterp.core.geometry.geographic.MultiPoint) pyinterp.core.geometry.geographic.Box
pyinterp.geometry.geographic.algorithms.envelope(geometry: pyinterp.core.geometry.geographic.MultiLineString) pyinterp.core.geometry.geographic.Box
pyinterp.geometry.geographic.algorithms.envelope(geometry: pyinterp.core.geometry.geographic.MultiPolygon) pyinterp.core.geometry.geographic.Box

Calculates the envelope (bounding box) of a geometry.

The envelope is the smallest axis-aligned box that contains the entire geometry.

Parameters:

geometry – Geometric object to compute envelope for.

Returns:

A Box representing the minimum bounding rectangle.