spatial.layer

Procedure

Returns the layer root node for the given layer name

Signature

spatial.layer(name :: STRING) :: (node :: NODE)

Input parameters

Name Type Default Description

name

STRING

null

the name of the layer

Output parameters

Name Type Description

node

NODE

Examples

Find an existing layer

Create a WKT layer

CALL spatial.addWKTLayer('geom','wkt')
CALL spatial.layer('geom')
Table 1. Result
node
(:SpatialLayer {
    geomencoder: "org.neo4j.gis.spatial.WKTGeometryEncoder",
    geomencoder_config: "wkt",
    index_class: "org.neo4j.gis.spatial.index.LayerRTreeIndex",
    layer: "geom",
    layer_class: "org.neo4j.gis.spatial.EditableLayerImpl"
})