Class SpatialRelationOp
- java.lang.Object
-
- org.openjump.core.attributeoperations.SpatialRelationOp
-
public class SpatialRelationOp extends Object
Contains methods to extract sets of features which fullfill some spatial criterion.notes:
- use "intersects" only for polygon geometries (condition intersection area > 0)
- "contains" can be used for polygons and points (centroid from polygon is calculated)
- Author:
- sstein
-
-
Field Summary
Fields Modifier and Type Field Description static int
CONTAINS
static int
COVEREDBY
static int
INTERSECTS
-
Constructor Summary
Constructors Constructor Description SpatialRelationOp()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static List
evaluateSpatial(int spatialRelation, org.locationtech.jts.index.quadtree.Quadtree featureTree, org.locationtech.jts.geom.Geometry g, double radius)
note: if input feature is point and spatial attribute is "intersect" or "covered by" the candidate features are selected from a 10.0m radiusstatic String
getName(int spatialRel)
-
-
-
Field Detail
-
CONTAINS
public static final int CONTAINS
- See Also:
- Constant Field Values
-
INTERSECTS
public static final int INTERSECTS
- See Also:
- Constant Field Values
-
COVEREDBY
public static final int COVEREDBY
- See Also:
- Constant Field Values
-
-
Method Detail
-
getName
public static String getName(int spatialRel)
-
evaluateSpatial
public static List evaluateSpatial(int spatialRelation, org.locationtech.jts.index.quadtree.Quadtree featureTree, org.locationtech.jts.geom.Geometry g, double radius)
note: if input feature is point and spatial attribute is "intersect" or "covered by" the candidate features are selected from a 10.0m radius- Parameters:
spatialRelation
- spatial relationfeatureTree
- feature index as a Quadtreeg
- a Geometryradius
- a searching radius- Returns:
- ArrayList of Feature fullfilling the spatial criterion
-
-