spatial.addNativePointLayerWithConfig
Procedure
Adds a new native point layer with the given configuration, returns the layer root node
Signature
spatial.addNativePointLayerWithConfig(name :: STRING, encoderConfig :: STRING, indexType = rtree :: STRING, crsName = :: STRING, indexConfig = :: STRING) :: (node :: NODE)
Input parameters
Name | Type | Default | Description |
---|---|---|---|
name |
STRING |
null |
The name of the layer |
encoderConfig |
STRING |
null |
The configuration of the encoder that is used by layer to en-/decode the geometry of indexed nodes |
indexType |
STRING |
"rtree" |
The type of the index algorithm to be used, valid values are: |
crsName |
STRING |
"" |
The CRS to be used, valid values are: |
indexConfig |
STRING |
"" |
The configuration of the newly created index |
Examples
Create a native point layer with a configuration
CALL spatial.addNativePointLayerWithConfig('geom','pos:mbr','hilbert')
node |
---|
|