pyinterp.geometry.cartesian.algorithms.disjoint#
- pyinterp.geometry.cartesian.algorithms.disjoint(geometry1: pyinterp.core.geometry.cartesian.Point, geometry2: pyinterp.core.geometry.cartesian.Point) bool#
- pyinterp.geometry.cartesian.algorithms.disjoint(geometry1: pyinterp.core.geometry.cartesian.Point, geometry2: pyinterp.core.geometry.cartesian.Box) bool
- pyinterp.geometry.cartesian.algorithms.disjoint(geometry1: pyinterp.core.geometry.cartesian.Point, geometry2: pyinterp.core.geometry.cartesian.Polygon) bool
- pyinterp.geometry.cartesian.algorithms.disjoint(geometry1: pyinterp.core.geometry.cartesian.Point, geometry2: pyinterp.core.geometry.cartesian.MultiPolygon) bool
- pyinterp.geometry.cartesian.algorithms.disjoint(geometry1: pyinterp.core.geometry.cartesian.Box, geometry2: pyinterp.core.geometry.cartesian.Point) bool
- pyinterp.geometry.cartesian.algorithms.disjoint(geometry1: pyinterp.core.geometry.cartesian.Box, geometry2: pyinterp.core.geometry.cartesian.Box) bool
- pyinterp.geometry.cartesian.algorithms.disjoint(geometry1: pyinterp.core.geometry.cartesian.Box, geometry2: pyinterp.core.geometry.cartesian.Polygon) bool
- pyinterp.geometry.cartesian.algorithms.disjoint(geometry1: pyinterp.core.geometry.cartesian.LineString, geometry2: pyinterp.core.geometry.cartesian.LineString) bool
- pyinterp.geometry.cartesian.algorithms.disjoint(geometry1: pyinterp.core.geometry.cartesian.LineString, geometry2: pyinterp.core.geometry.cartesian.Polygon) bool
- pyinterp.geometry.cartesian.algorithms.disjoint(geometry1: pyinterp.core.geometry.cartesian.LineString, geometry2: pyinterp.core.geometry.cartesian.Box) bool
- pyinterp.geometry.cartesian.algorithms.disjoint(geometry1: pyinterp.core.geometry.cartesian.Polygon, geometry2: pyinterp.core.geometry.cartesian.Point) bool
- pyinterp.geometry.cartesian.algorithms.disjoint(geometry1: pyinterp.core.geometry.cartesian.Polygon, geometry2: pyinterp.core.geometry.cartesian.Box) bool
- pyinterp.geometry.cartesian.algorithms.disjoint(geometry1: pyinterp.core.geometry.cartesian.Polygon, geometry2: pyinterp.core.geometry.cartesian.Polygon) bool
- pyinterp.geometry.cartesian.algorithms.disjoint(geometry1: pyinterp.core.geometry.cartesian.Polygon, geometry2: pyinterp.core.geometry.cartesian.MultiPolygon) bool
- pyinterp.geometry.cartesian.algorithms.disjoint(geometry1: pyinterp.core.geometry.cartesian.MultiPolygon, geometry2: pyinterp.core.geometry.cartesian.Point) bool
- pyinterp.geometry.cartesian.algorithms.disjoint(geometry1: pyinterp.core.geometry.cartesian.MultiPolygon, geometry2: pyinterp.core.geometry.cartesian.Polygon) bool
- pyinterp.geometry.cartesian.algorithms.disjoint(geometry1: pyinterp.core.geometry.cartesian.MultiPolygon, geometry2: pyinterp.core.geometry.cartesian.MultiPolygon) bool
Checks if two geometries are disjoint (do not intersect).
Two geometries are disjoint if they have no point in common.
- Parameters:
geometry1 – First geometric object.
geometry2 – Second geometric object.
- Returns:
True if the geometries are disjoint, False otherwise.