spatial.getFeatureAttributes

Procedure

Returns feature attributes of the given layer

Signature

spatial.getFeatureAttributes(name :: STRING) :: (name :: STRING)

Input parameters

Name Type Default Description

name

STRING

null

The name of the layer

Output parameters

Name Type Description

name

STRING

Examples

Get the feature attributes of a layer

CALL spatial.addWKTLayer('geom','wkt')
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"
})
CALL spatial.getFeatureAttributes('geom')
Result

No results

CALL spatial.setFeatureAttributes('geom',['name','type','color'])
Table 2. 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",
    layerprops: ["name","type","color"]
})
CALL spatial.getFeatureAttributes('geom')
Table 3. Result
name

name

type

color