Neo4j Spatial Procedures
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 calls from the Cypher query language.
name | description | signature |
---|---|---|
|
"Adds a new layer with the given type (see spatial.getAllLayerTypes) and configuration, returns the layer root node" |
|
|
"Adds a new layer with the given encoder class and configuration, returns the layer root node" |
|
|
"Adds the given node to the layer, returns the geometry-node" |
|
|
"Adds the given nodes list to the layer, returns the count" |
|
|
"Adds a new simple point layer, returns the layer root node" |
|
|
"Adds a new simple point layer with the given configuration, returns the layer root node" |
|
|
"Adds a new simple point layer with the given properties for x and y coordinates, returns the layer root node" |
|
|
"Adds the given WKT string to the layer, returns the created geometry node" |
|
|
"Adds a new WKT layer with the given node property to hold the WKT string, returns the layer root node" |
|
|
"Adds the given WKT string list to the layer, returns the created geometry nodes" |
|
|
"Returns a geometry object as an external geometry type to be returned to a client" |
|
|
"Returns a geometry object as an internal cypher geometry type, to be passed to other procedures but not returned to a client" |
|
|
"Finds all geometry nodes in the given layer within the lower left and upper right coordinates of a box" |
|
|
"Finds all geometry nodes in the layer within the distance to the given coordinate" |
|
|
"Returns a geometry of a layer node as internal cypher geometry type, to be passed to other procedures but not returned to a client" |
|
|
"Returns feature attributes of the given layer" |
|
|
"Imports the provided osm-file from URI to a layer of the same name, returns the count of data added" |
|
|
"Imports the provided osm-file from URI to a layer, returns the count of data added" |
|
|
"Imports the provided shape-file from URI to a layer of the same name, returns the count of data added" |
|
|
"Imports the provided shape-file from URI to the given layer, returns the count of data added" |
|
|
"Returns all geometry nodes that intersect the given geometry (shape, polygon) in the layer" |
|
|
"Returns the layer root node for the given layer name" |
|
|
"Returns the different registered layer types" |
|
|
"Returns name, and details for all layers" |
|
|
"Lists all spatial procedures with name and signature" |
|
|
"Removes the given layer" |
|
|
"Sets the feature attributes of the given layer" |
|
|
"Internal procedure, updates the geometry node with the given id with a new WKT string" |
|
|
"Returns all geometry nodes and their ordered distance in the layer within the distance to the given coordinate" |
|