spatial.addPointLayerXY
Procedure
Adds a new simple point layer with the given properties for x and y coordinates, returns the layer root node
Signature
spatial.addPointLayerXY(name :: STRING, xProperty :: STRING, yProperty :: STRING, indexType = rtree :: STRING, crsName = :: STRING, indexConfig = :: STRING) :: (node :: NODE)
Input parameters
Name | Type | Default | Description |
---|---|---|---|
name |
STRING |
null |
The name of the layer |
xProperty |
STRING |
null |
The property of the node to read the x coordinate from |
yProperty |
STRING |
null |
The property of the node to read the y coordinate from |
indexType |
STRING |
"rtree" |
The type of the index algorithm to be used, valid values are: |
crsName |
STRING |
"" |
The CRS to be used, valid values are: |
indexConfig |
STRING |
"" |
The configuration of the newly created 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