pyinterp.geometry.cartesian.algorithms.crosses#
- pyinterp.geometry.cartesian.algorithms.crosses(geometry1: pyinterp.core.geometry.cartesian.Point, geometry2: pyinterp.core.geometry.cartesian.LineString) bool#
- pyinterp.geometry.cartesian.algorithms.crosses(geometry1: pyinterp.core.geometry.cartesian.Point, geometry2: pyinterp.core.geometry.cartesian.Ring) bool
- pyinterp.geometry.cartesian.algorithms.crosses(geometry1: pyinterp.core.geometry.cartesian.Point, geometry2: pyinterp.core.geometry.cartesian.Polygon) bool
- pyinterp.geometry.cartesian.algorithms.crosses(geometry1: pyinterp.core.geometry.cartesian.Point, geometry2: pyinterp.core.geometry.cartesian.MultiLineString) bool
- pyinterp.geometry.cartesian.algorithms.crosses(geometry1: pyinterp.core.geometry.cartesian.Point, geometry2: pyinterp.core.geometry.cartesian.MultiPolygon) bool
- pyinterp.geometry.cartesian.algorithms.crosses(geometry1: pyinterp.core.geometry.cartesian.LineString, geometry2: pyinterp.core.geometry.cartesian.Point) bool
- pyinterp.geometry.cartesian.algorithms.crosses(geometry1: pyinterp.core.geometry.cartesian.LineString, geometry2: pyinterp.core.geometry.cartesian.LineString) bool
- pyinterp.geometry.cartesian.algorithms.crosses(geometry1: pyinterp.core.geometry.cartesian.LineString, geometry2: pyinterp.core.geometry.cartesian.Ring) bool
- pyinterp.geometry.cartesian.algorithms.crosses(geometry1: pyinterp.core.geometry.cartesian.LineString, geometry2: pyinterp.core.geometry.cartesian.Polygon) bool
- pyinterp.geometry.cartesian.algorithms.crosses(geometry1: pyinterp.core.geometry.cartesian.LineString, geometry2: pyinterp.core.geometry.cartesian.MultiLineString) bool
- pyinterp.geometry.cartesian.algorithms.crosses(geometry1: pyinterp.core.geometry.cartesian.LineString, geometry2: pyinterp.core.geometry.cartesian.MultiPolygon) bool
- pyinterp.geometry.cartesian.algorithms.crosses(geometry1: pyinterp.core.geometry.cartesian.Ring, geometry2: pyinterp.core.geometry.cartesian.Point) bool
- pyinterp.geometry.cartesian.algorithms.crosses(geometry1: pyinterp.core.geometry.cartesian.Polygon, geometry2: pyinterp.core.geometry.cartesian.Point) bool
- pyinterp.geometry.cartesian.algorithms.crosses(geometry1: pyinterp.core.geometry.cartesian.MultiLineString, geometry2: pyinterp.core.geometry.cartesian.Point) bool
- pyinterp.geometry.cartesian.algorithms.crosses(geometry1: pyinterp.core.geometry.cartesian.MultiLineString, geometry2: pyinterp.core.geometry.cartesian.LineString) bool
- pyinterp.geometry.cartesian.algorithms.crosses(geometry1: pyinterp.core.geometry.cartesian.MultiLineString, geometry2: pyinterp.core.geometry.cartesian.Ring) bool
- pyinterp.geometry.cartesian.algorithms.crosses(geometry1: pyinterp.core.geometry.cartesian.MultiLineString, geometry2: pyinterp.core.geometry.cartesian.Polygon) bool
- pyinterp.geometry.cartesian.algorithms.crosses(geometry1: pyinterp.core.geometry.cartesian.MultiLineString, geometry2: pyinterp.core.geometry.cartesian.MultiLineString) bool
- pyinterp.geometry.cartesian.algorithms.crosses(geometry1: pyinterp.core.geometry.cartesian.MultiLineString, geometry2: pyinterp.core.geometry.cartesian.MultiPolygon) bool
- pyinterp.geometry.cartesian.algorithms.crosses(geometry1: pyinterp.core.geometry.cartesian.MultiPolygon, geometry2: pyinterp.core.geometry.cartesian.MultiPolygon) bool
Checks if the first geometry crosses the second geometry.
- Parameters:
geometry1 – First geometric object.
geometry2 – Second geometric object.
- Returns:
True if geometry1 crosses geometry2, False otherwise.