spatial.intersects
Procedure
Returns all geometry nodes that intersect the given geometry (shape, polygon) in the layer
Input parameters
Name | Type | Default | Description |
---|---|---|---|
layerName |
STRING |
null |
The name of the layer |
geometry |
ANY |
null |
A WKT string or a coordinate. A valid value for the coordinate is a:
|
Examples
Find geometries in a polygon
CALL spatial.addPointLayer('geom')
UNWIND [ {name:'a',latitude:60.1,longitude:15.2}, {name:'b',latitude:60.3,longitude:15.5} ] as point
CREATE (n:Node)
SET n += point
WITH n
CALL spatial.addNode('geom',n) YIELD node
RETURN node.name as name
name |
---|
a |
b |
CALL spatial.intersects('geom','POLYGON((15.3 60.2, 15.3 60.4, 15.7 60.4, 15.7 60.2, 15.3 60.2))') YIELD node
RETURN node.name as name
name |
---|
b |