Table of Contents

Class SpatialIntersects

Namespace
YndigoBlue.Velocity.Functions
Assembly
YndigoBlue.Velocity.dll

Represents the ST_Intersects spatial predicate function that tests if two geometries have any points in common.

public class SpatialIntersects : Function, IElement, ICheckItem, IDefaultItem, IFilterItem
Inheritance
SpatialIntersects
Implements

Remarks

The ST_Intersects function returns true if the two spatial objects have at least one point in common (their interiors or boundaries intersect). This is the inverse of ST_Disjoint. According to the DE-9IM model, two geometries intersect if their intersection is not empty. This is one of the most commonly used spatial predicates for finding overlapping or touching features. OGC-compliant.

Constructors

SpatialIntersects(Geometry, Column)

Initializes a new instance of ST_Intersects with a geometry literal and column.

SpatialIntersects(Column, Geometry)

Initializes a new instance of ST_Intersects with a column and geometry literal.

SpatialIntersects(Column, Geography)

Initializes a new instance of ST_Intersects with a column and geography literal.

SpatialIntersects(Geography, Column)

Initializes a new instance of ST_Intersects with a geography literal and column.