public interface SpatialRelation
Most of these relations are defined in "OpenGIS Simple Features Specification for SQL, rev. 1.1 (OGC 99-049), section 2.1.13.3. "
| Modifier and Type | Field and Description | 
|---|---|
| static int | CONTAINSThe first geometry spatially contains the second | 
| static int | CROSSESThe geometries cross | 
| static int | DISJOINTThe geometries are spatially dijoint | 
| static int | EQUALSThe geometries are spatially equal to each other. | 
| static int | FILTERThe bounding box of the first geometry intersects the bounding box of the second | 
| static int | INTERSECTSThe first geometry intersects the second | 
| static int | OVERLAPSThe geometries spatially overlap | 
| static int | TOUCHESThe geometries touch | 
| static int | WITHINThe first geometry is spatially within the second | 
static final int EQUALS
static final int DISJOINT
static final int TOUCHES
static final int CROSSES
static final int WITHIN
static final int OVERLAPS
static final int CONTAINS
static final int INTERSECTS
static final int FILTER
This relation is not defined in OGC 99-049, it corresponds to the Postgis '&&' operator.
Copyright © 2001-2020 Red Hat, Inc. All Rights Reserved.