pyinterp.geometry.geographic.algorithms.crosses

Contents

pyinterp.geometry.geographic.algorithms.crosses#

pyinterp.geometry.geographic.algorithms.crosses(geometry1: pyinterp.core.geometry.geographic.Point, geometry2: pyinterp.core.geometry.geographic.LineString) bool#
pyinterp.geometry.geographic.algorithms.crosses(geometry1: pyinterp.core.geometry.geographic.Point, geometry2: pyinterp.core.geometry.geographic.Ring) bool
pyinterp.geometry.geographic.algorithms.crosses(geometry1: pyinterp.core.geometry.geographic.Point, geometry2: pyinterp.core.geometry.geographic.Polygon) bool
pyinterp.geometry.geographic.algorithms.crosses(geometry1: pyinterp.core.geometry.geographic.Point, geometry2: pyinterp.core.geometry.geographic.MultiLineString) bool
pyinterp.geometry.geographic.algorithms.crosses(geometry1: pyinterp.core.geometry.geographic.Point, geometry2: pyinterp.core.geometry.geographic.MultiPolygon) bool
pyinterp.geometry.geographic.algorithms.crosses(geometry1: pyinterp.core.geometry.geographic.LineString, geometry2: pyinterp.core.geometry.geographic.Point) bool
pyinterp.geometry.geographic.algorithms.crosses(geometry1: pyinterp.core.geometry.geographic.LineString, geometry2: pyinterp.core.geometry.geographic.LineString) bool
pyinterp.geometry.geographic.algorithms.crosses(geometry1: pyinterp.core.geometry.geographic.LineString, geometry2: pyinterp.core.geometry.geographic.Ring) bool
pyinterp.geometry.geographic.algorithms.crosses(geometry1: pyinterp.core.geometry.geographic.LineString, geometry2: pyinterp.core.geometry.geographic.Polygon) bool
pyinterp.geometry.geographic.algorithms.crosses(geometry1: pyinterp.core.geometry.geographic.LineString, geometry2: pyinterp.core.geometry.geographic.MultiLineString) bool
pyinterp.geometry.geographic.algorithms.crosses(geometry1: pyinterp.core.geometry.geographic.LineString, geometry2: pyinterp.core.geometry.geographic.MultiPolygon) bool
pyinterp.geometry.geographic.algorithms.crosses(geometry1: pyinterp.core.geometry.geographic.Ring, geometry2: pyinterp.core.geometry.geographic.Point) bool
pyinterp.geometry.geographic.algorithms.crosses(geometry1: pyinterp.core.geometry.geographic.Polygon, geometry2: pyinterp.core.geometry.geographic.Point) bool
pyinterp.geometry.geographic.algorithms.crosses(geometry1: pyinterp.core.geometry.geographic.MultiLineString, geometry2: pyinterp.core.geometry.geographic.Point) bool
pyinterp.geometry.geographic.algorithms.crosses(geometry1: pyinterp.core.geometry.geographic.MultiLineString, geometry2: pyinterp.core.geometry.geographic.LineString) bool
pyinterp.geometry.geographic.algorithms.crosses(geometry1: pyinterp.core.geometry.geographic.MultiLineString, geometry2: pyinterp.core.geometry.geographic.Ring) bool
pyinterp.geometry.geographic.algorithms.crosses(geometry1: pyinterp.core.geometry.geographic.MultiLineString, geometry2: pyinterp.core.geometry.geographic.Polygon) bool
pyinterp.geometry.geographic.algorithms.crosses(geometry1: pyinterp.core.geometry.geographic.MultiLineString, geometry2: pyinterp.core.geometry.geographic.MultiLineString) bool
pyinterp.geometry.geographic.algorithms.crosses(geometry1: pyinterp.core.geometry.geographic.MultiLineString, geometry2: pyinterp.core.geometry.geographic.MultiPolygon) bool
pyinterp.geometry.geographic.algorithms.crosses(geometry1: pyinterp.core.geometry.geographic.MultiPolygon, geometry2: pyinterp.core.geometry.geographic.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.