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: rtree, geohash, zorder or hilbert

crsName

STRING

""

The CRS to be used, valid values are: wgs84

indexConfig

STRING

""

The configuration of the newly created index

Output parameters

Name Type Description

node

NODE

Examples

Create a native point layer

CALL spatial.addNativePointLayerXY('geom','x','y')
Table 1. Result
node
(:SpatialLayer {
    geomencoder: "org.neo4j.gis.spatial.encoders.SimplePointEncoder",
    geomencoder_config: "x:y",
    index_class: "org.neo4j.gis.spatial.index.LayerRTreeIndex",
    layer: "geom",
    layer_class: "org.neo4j.gis.spatial.SimplePointLayer"
})

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)
Table 2. Result
distance node
15.705713907526011
(:Node {
    bbox: [5.0,4.0,5.0,4.0],
    gtype: 1,
    id: 42,
    x: 5.0,
    y: 4.0
})