Class SpatialOverlaps
- Namespace
- YndigoBlue.Velocity.Functions
- Assembly
- YndigoBlue.Velocity.dll
Represents the ST_Overlaps spatial predicate function that tests if two geometries overlap.
public class SpatialOverlaps : Function, IElement, ICheckItem, IDefaultItem, IFilterItem
- Inheritance
-
SpatialOverlaps
- Implements
Remarks
The ST_Overlaps function returns true if the two spatial objects have the same dimension, share some but not all points in common, and the intersection has the same dimension as the geometries themselves. According to the DE-9IM model, this means their interiors intersect, but neither geometry is completely within the other. Typically used for polygon-polygon or line-line comparisons. Useful for finding partially overlapping features like overlapping land parcels or service areas. OGC-compliant.
Constructors
- SpatialOverlaps(Geometry, Column)
Initializes a new instance of ST_Overlaps with a geometry literal and column.
- SpatialOverlaps(Column, Geometry)
Initializes a new instance of ST_Overlaps with a column and geometry literal.
- SpatialOverlaps(Column, Geography)
Initializes a new instance of ST_Overlaps with a column and geography literal.
- SpatialOverlaps(Geography, Column)
Initializes a new instance of ST_Overlaps with a geography literal and column.