spatial.removeNode
Procedure
Removes the given node from the layer, returns the geometry-node
Input parameters
Name | Type | Default | Description |
---|---|---|---|
layerName |
STRING |
null |
The name of the layer |
node |
NODE |
null |
The node to remove from the index |
Examples
Create a point layer with X and Y properties
CALL spatial.addPointLayerXY('geom','lon','lat')
Add two nodes to the layer
CREATE (n1:Node {id: 1, lat:60.1,lon:15.2}),(n2:Node {id: 2, lat:60.1,lon:15.3}) WITH n1,n2 CALL spatial.addNodes('geom',[n1,n2]) YIELD count RETURN n1,n2,count
count | n1 | n2 |
---|---|---|
|
|
|
Find nodes within distance
CALL spatial.withinDistance('geom',{lon:15.0,lat:60.0},100)
distance | node |
---|---|
|
|
|
|
Remove node 1
MATCH (node) WHERE node.id = 1
CALL spatial.removeNode('geom', node) YIELD nodeId
RETURN nodeId
CALL spatial.withinDistance('geom',{lon:15.0,lat:60.0},100)
distance | node |
---|---|
|
|
Remove node 2
MATCH (node) WHERE node.id = 2
CALL spatial.removeNode.byId('geom', elementId(node)) YIELD nodeId
RETURN nodeId
CALL spatial.withinDistance('geom',{lon:15.0,lat:60.0},100)
Result
No results