spatial.withinDistance
Procedure
Returns all geometry nodes and their ordered distance in the layer within the distance to the given coordinate
Signature
spatial.withinDistance(layerName :: STRING, coordinate :: ANY, distanceInKm :: FLOAT) :: (node :: NODE, distance :: FLOAT)
Input parameters
Name | Type | Default | Description |
---|---|---|---|
layerName |
STRING |
null |
The name of the layer |
coordinate |
ANY |
null |
A valid value for the coordinate is a:
|
distanceInKm |
FLOAT |
null |
The distance in kilometers within which to search for geometries |
Examples
Create a native point layer
CALL spatial.addNativePointLayerXY('geom','x','y')
node |
---|
|
create a node and add it to the index
CREATE (n:Node {id: 42, x: 5.0, y: 4.0}) WITH n CALL spatial.addNode('geom',n) YIELD node RETURN node
Find node within distance
CALL spatial.withinDistance('geom',point({latitude:4.1,longitude:5.1}),100)
distance | node |
---|---|
|
|