spatial.addPointLayerGeohash
Procedure
Adds a new simple point layer with geohash based index, returns the layer root node
Signature
spatial.addPointLayerGeohash(name :: STRING, crsName = wgs84 :: STRING, indexConfig = :: STRING) :: (node :: NODE)
Input parameters
Name | Type | Default | Description |
---|---|---|---|
name |
STRING |
null |
The name of the layer |
crsName |
STRING |
"wgs84" |
The CRS to be used, valid values are: |
indexConfig |
STRING |
"" |
The configuration of the newly created index |
Examples
Create a layer to index a node
CALL spatial.addPointLayerGeohash('my-simple-geohash-layer')
node |
---|
|
Create a node to index
CREATE (n:Node {id: 42, latitude:60.1,longitude:15.2}) SET n.location=point(n) RETURN n
Index node
MATCH (n:Node) WITH n CALL spatial.addNode('my-simple-geohash-layer',n) YIELD node RETURN node
node |
---|
|
Find node within distance
CALL spatial.withinDistance('my-simple-geohash-layer',{lon:15.0,lat:60.0},100)
distance | node |
---|---|
|
|