pyinterp.geometry.geographic.algorithms.touches#
- pyinterp.geometry.geographic.algorithms.touches(geometry1: pyinterp.core.geometry.geographic.Point, geometry2: pyinterp.core.geometry.geographic.Point) bool#
- pyinterp.geometry.geographic.algorithms.touches(geometry1: pyinterp.core.geometry.geographic.Point, geometry2: pyinterp.core.geometry.geographic.LineString) bool
- pyinterp.geometry.geographic.algorithms.touches(geometry1: pyinterp.core.geometry.geographic.Point, geometry2: pyinterp.core.geometry.geographic.Ring) bool
- pyinterp.geometry.geographic.algorithms.touches(geometry1: pyinterp.core.geometry.geographic.Point, geometry2: pyinterp.core.geometry.geographic.Polygon) bool
- pyinterp.geometry.geographic.algorithms.touches(geometry1: pyinterp.core.geometry.geographic.Point, geometry2: pyinterp.core.geometry.geographic.MultiLineString) bool
- pyinterp.geometry.geographic.algorithms.touches(geometry1: pyinterp.core.geometry.geographic.Point, geometry2: pyinterp.core.geometry.geographic.MultiPolygon) bool
- pyinterp.geometry.geographic.algorithms.touches(geometry1: pyinterp.core.geometry.geographic.LineString, geometry2: pyinterp.core.geometry.geographic.LineString) bool
- pyinterp.geometry.geographic.algorithms.touches(geometry1: pyinterp.core.geometry.geographic.LineString, geometry2: pyinterp.core.geometry.geographic.Ring) bool
- pyinterp.geometry.geographic.algorithms.touches(geometry1: pyinterp.core.geometry.geographic.LineString, geometry2: pyinterp.core.geometry.geographic.Polygon) bool
- pyinterp.geometry.geographic.algorithms.touches(geometry1: pyinterp.core.geometry.geographic.LineString, geometry2: pyinterp.core.geometry.geographic.MultiLineString) bool
- pyinterp.geometry.geographic.algorithms.touches(geometry1: pyinterp.core.geometry.geographic.LineString, geometry2: pyinterp.core.geometry.geographic.MultiPolygon) bool
- pyinterp.geometry.geographic.algorithms.touches(geometry1: pyinterp.core.geometry.geographic.Ring, geometry2: pyinterp.core.geometry.geographic.LineString) bool
- pyinterp.geometry.geographic.algorithms.touches(geometry1: pyinterp.core.geometry.geographic.Ring, geometry2: pyinterp.core.geometry.geographic.Ring) bool
- pyinterp.geometry.geographic.algorithms.touches(geometry1: pyinterp.core.geometry.geographic.Ring, geometry2: pyinterp.core.geometry.geographic.Polygon) bool
- pyinterp.geometry.geographic.algorithms.touches(geometry1: pyinterp.core.geometry.geographic.Ring, geometry2: pyinterp.core.geometry.geographic.MultiLineString) bool
- pyinterp.geometry.geographic.algorithms.touches(geometry1: pyinterp.core.geometry.geographic.Ring, geometry2: pyinterp.core.geometry.geographic.MultiPolygon) bool
- pyinterp.geometry.geographic.algorithms.touches(geometry1: pyinterp.core.geometry.geographic.Polygon, geometry2: pyinterp.core.geometry.geographic.Point) bool
- pyinterp.geometry.geographic.algorithms.touches(geometry1: pyinterp.core.geometry.geographic.Polygon, geometry2: pyinterp.core.geometry.geographic.LineString) bool
- pyinterp.geometry.geographic.algorithms.touches(geometry1: pyinterp.core.geometry.geographic.Polygon, geometry2: pyinterp.core.geometry.geographic.Ring) bool
- pyinterp.geometry.geographic.algorithms.touches(geometry1: pyinterp.core.geometry.geographic.Polygon, geometry2: pyinterp.core.geometry.geographic.Polygon) bool
- pyinterp.geometry.geographic.algorithms.touches(geometry1: pyinterp.core.geometry.geographic.Polygon, geometry2: pyinterp.core.geometry.geographic.MultiLineString) bool
- pyinterp.geometry.geographic.algorithms.touches(geometry1: pyinterp.core.geometry.geographic.Polygon, geometry2: pyinterp.core.geometry.geographic.MultiPolygon) bool
- pyinterp.geometry.geographic.algorithms.touches(geometry1: pyinterp.core.geometry.geographic.MultiLineString, geometry2: pyinterp.core.geometry.geographic.Point) bool
- pyinterp.geometry.geographic.algorithms.touches(geometry1: pyinterp.core.geometry.geographic.MultiLineString, geometry2: pyinterp.core.geometry.geographic.LineString) bool
- pyinterp.geometry.geographic.algorithms.touches(geometry1: pyinterp.core.geometry.geographic.MultiLineString, geometry2: pyinterp.core.geometry.geographic.Ring) bool
- pyinterp.geometry.geographic.algorithms.touches(geometry1: pyinterp.core.geometry.geographic.MultiLineString, geometry2: pyinterp.core.geometry.geographic.Polygon) bool
- pyinterp.geometry.geographic.algorithms.touches(geometry1: pyinterp.core.geometry.geographic.MultiLineString, geometry2: pyinterp.core.geometry.geographic.MultiLineString) bool
- pyinterp.geometry.geographic.algorithms.touches(geometry1: pyinterp.core.geometry.geographic.MultiLineString, geometry2: pyinterp.core.geometry.geographic.MultiPolygon) bool
- pyinterp.geometry.geographic.algorithms.touches(geometry1: pyinterp.core.geometry.geographic.MultiPolygon, geometry2: pyinterp.core.geometry.geographic.Point) bool
- pyinterp.geometry.geographic.algorithms.touches(geometry1: pyinterp.core.geometry.geographic.MultiPolygon, geometry2: pyinterp.core.geometry.geographic.LineString) bool
- pyinterp.geometry.geographic.algorithms.touches(geometry1: pyinterp.core.geometry.geographic.MultiPolygon, geometry2: pyinterp.core.geometry.geographic.Ring) bool
- pyinterp.geometry.geographic.algorithms.touches(geometry1: pyinterp.core.geometry.geographic.MultiPolygon, geometry2: pyinterp.core.geometry.geographic.Polygon) bool
- pyinterp.geometry.geographic.algorithms.touches(geometry1: pyinterp.core.geometry.geographic.MultiPolygon, geometry2: pyinterp.core.geometry.geographic.MultiLineString) bool
- pyinterp.geometry.geographic.algorithms.touches(geometry1: pyinterp.core.geometry.geographic.MultiPolygon, geometry2: pyinterp.core.geometry.geographic.MultiPolygon) bool
Checks if two geometries touch (have at least one boundary point in common, but no interior points).
Two geometries touch if they have at least one point in common, but their interiors do not intersect.
- Parameters:
geometry1 – First geometric object.
geometry2 – Second geometric object.
- Returns:
True if the geometries touch, False otherwise.