Spatial Join

$function.description

Category: Geometric

Parameter:

Source:
Target:

Function ID: eu.esdihumboldt.cst.functions.geometric.spatialjoin

General explanation

Spatial joins can join objects from multiple feature types together based on the spatial relationship between their geometries. Spatial joins support the relation types contains, covered by, covers, crosses, equals, intersects, overlaps, touches, and within.

Spatial joins are implemented based on the DE-9IM model.

CONTAINS: Every point of the argument geometry is a point of this geometry, and the interiors of the two geometries have at least one point in common. Geometries do not contain their boundary. If a geometry A is a subset of the points in the boundary of a geometry B, B.contains(A) = false. CONTAINS is the converse of WITHIN.

COVEREDBY: Every point of this geometry is a point of the argument geometry. This predicate is similar to WITHIN but is more inclusive (i.e. returns true for more cases). COVEREDBY is the converse of COVERS

COVERS: Every point of the argument geometry is a point of this geometry. This predicate is similar to CONTAINS but is more inclusive (i.e. returns true for more cases). Unlike CONTAINS it does not distinguish between points in the boundary and in the interior of geometries. For most situations, COVERS should be used in preference to CONTAINS. COVERS is the converse of COVEREDBY.

CROSSES: The geometries have some but not all interior points in common.

EQUALS: Tests whether this geometry is topologically equal to the argument geometry.

INTERSECTS: The geometries have at least one point in common.

OVERLAPS: The geometries have at least one point each not shared by the other (or equivalently neither covers the other), they have the same dimension, and the intersection of the interiors of the two geometries has the same dimension as the geometries themselves.

TOUCHES: The geometries have at least one point in common, but their interiors do not intersect.

WITHIN: Every point of this geometry is a point of the argument geometry, and the interiors of the two geometries have at least one point in common. The boundary of the geometry is not within the geometry. If a geometry A is a subset of the points in the boundary of a geometry B, A.within(B) = false. WITHIN is converse of CONTAINS

Source:JTS Technical Documentation





Representation of Parameter (Advanced Documentation)

Representation of Inner Join :
true