spatial.addNativePointLayerXY
Procedure Deprecated
Adds a new point layer with the given properties for x and y coordinates, returns the layer root node
This procedure is deprecated by: spatial.addPointLayerXY |
Signature
spatial.addNativePointLayerXY(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 name of the property with the x coordinate |
yProperty |
STRING |
null |
The name of the property with the y coordinate |
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 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 |
---|---|
|
|