spatial.addWKTLayer
Procedure
Adds a new WKT layer with the given node property to hold the WKT string, returns the layer root node
Signature
spatial.addWKTLayer(name :: STRING, nodePropertyName :: STRING, indexConfig = :: STRING) :: (node :: NODE)
Input parameters
Name | Type | Default | Description |
---|---|---|---|
name |
STRING |
null |
The name of the layer |
nodePropertyName |
STRING |
null |
The property from which the WKT will be read |
indexConfig |
STRING |
"" |
The configuration of the newly created index |
Examples
Add a WKT geometry to a layer
CALL spatial.addWKTLayer('geom', 'wkt')
CALL spatial.addWKT('geom',"LINESTRING (15.2 60.1, 15.3 60.1)")
node |
---|
|
CALL spatial.closest('geom',{lon:15.2, lat:60.1}, 1.0)
node |
---|
|
Decode a geometry from a node property
Create a WKT layer
CALL spatial.addWKTLayer('geom','geom')
node |
---|
|
Decode a geometry
CREATE (n:Node {geom:'POINT(4.0 5.0)'}) RETURN spatial.decodeGeometry('geom',n) AS geometry
geometry |
---|
point({x: 4.0, y: 5.0, crs: 'cartesian'}) |