Procedures & Functions

Neo4j Spatial is also packaged as a ZIP file that can be unzipped into the Neo4j Server $NEO4J_HOME/plugins directory. After restarting the server, you should be able to use the following procedure and function calls from the Cypher query language.

spatial

Qualified Name Type

Adds a new layer with the given type (see spatial.layerTypes) and configuration. Returns the layers root node.

Procedure

Adds a new layer with the given encoder class and configuration, returns the layer root node

Procedure

Adds a new native point layer, returns the layer root node

Procedure

Adds a new native point layer with geohash based index, returns the layer root node

Procedure

Adds a new native point layer with hilbert curve based index, returns the layer root node

Procedure

Adds a new native point layer with the given configuration, returns the layer root node

Procedure

Adds a new point layer with the given properties for x and y coordinates, returns the layer root node

Procedure

Adds a new native point layer with z-order curve based index, returns the layer root node

Procedure

Adds the given node to the layer, returns the geometry-node

Procedure

Adds the given nodes list to the layer, returns the count

Procedure

Adds a new simple point layer, returns the layer root node

Procedure

Adds a new simple point layer with geohash based index, returns the layer root node

Procedure

Adds a new simple point layer with hilbert curve based index, returns the layer root node

Procedure

Adds a new simple point layer with the given configuration, returns the layer root node

Procedure

Adds a new simple point layer with the given properties for x and y coordinates, returns the layer root node

Procedure

Adds a new simple point layer with z-order curve based index, returns the layer root node

Procedure

Adds the given WKT string to the layer, returns the created geometry node

Procedure

Adds a new WKT layer with the given node property to hold the WKT string, returns the layer root node

Procedure

Adds the given WKT string list to the layer, returns the created geometry nodes

Procedure

Returns a geometry object as an external geometry type to be returned to a client

Procedure

Returns a geometry object as the Neo4j geometry type, to be passed to other functions or procedures or returned to a client

Function

Returns a Map object representing the Geometry, to be passed to other procedures or returned to a client

Function

Finds all geometry nodes in the given layer within the lower left and upper right coordinates of a box. A valid value for the coordinate is a:

  • JTS Coordinate

  • Neo4j Coordinate

  • Neo4j Point

  • Map with keys 'latitude' and 'longitude'

  • Map with keys 'lat' and 'lon'"

  • Node or Relationship with properties 'latitude' and 'longitude'

  • Node or Relationship with properties 'lat' and 'lon'

Procedure

Finds all geometry nodes in the layer within the distance to the given coordinate

Procedure

Returns a geometry of a layer node as the Neo4j geometry type, to be passed to other procedures or returned to a client

Function

Returns feature attributes of the given layer

Procedure

Imports the the provided osm-file from URI to a layer of the same name, returns the count of data added

Procedure

Imports the the provided osm-file from URI to a layer, returns the count of data added

Procedure

Imports the the provided shape-file from URI to a layer of the same name, returns the count of data added

Procedure

Imports the the provided shape-file from URI to the given layer, returns the count of data added

Procedure

Returns all geometry nodes that intersect the given geometry (shape, polygon) in the layer

Procedure

Returns the layer root node for the given layer name

Procedure

Returns the different registered layer types

Procedure

Returns name, and details for all layers

Procedure

Converts a point or point array to WKT

Function

Lists all spatial procedures with name and signature

Procedure

Removes the given layer

Procedure

Removes the given node from the layer, returns the geometry-node

Procedure

Removes the given nodes from the layer, returns the count of nodes removed

Procedure

Sets the feature attributes of the given layer

Procedure

Upgrades an older spatial data model and returns a list of layers upgraded

Procedure

Returns all geometry nodes and their ordered distance in the layer within the distance to the given coordinate

Procedure

Converts a WKT to GeoJson structure

Function

spatial.addNode

Qualified Name Type

Adds the given node to the layer, returns the geometry-node

Procedure

spatial.addNodes

Qualified Name Type

Adds the given nodes list to the layer, returns the count

Procedure

spatial.removeNode

Qualified Name Type

Removes the given node from the layer, returns the geometry-node

Procedure

spatial.removeNodes

Qualified Name Type

Removes the given nodes from the layer, returns the count of nodes removed

Procedure