spatial.layerTypes
Procedure
Returns the different registered layer types
Signature
spatial.layerTypes() :: (id :: STRING, encoder :: STRING, layer :: STRING, index :: STRING, crsName :: STRING, defaultEncoderConfig :: STRING)
Output parameters
| Name | Type | Description |
|---|---|---|
id |
STRING |
The id of the Layer-Type |
encoder |
STRING |
The identifier of the encoder to use |
layer |
STRING |
The identifier of the layer to use |
index |
STRING |
The identifier of the index to use |
crsName |
STRING |
The CRS to use |
defaultEncoderConfig |
STRING |
The default configuration used for the encoder |
Examples
List the available layer types
CALL spatial.layerTypes()
| crsName | defaultEncoderConfig | encoder | id | index | layer |
|---|---|---|---|---|---|
WGS84(DD) |
longitude:latitude |
SimplePointEncoder |
Geohash |
geohash |
SimplePointLayer |
WGS84(DD) |
longitude:latitude |
SimplePointEncoder |
Hilbert |
hilbert |
SimplePointLayer |
WGS84(DD) |
location |
NativePointEncoder |
NativeGeohash |
geohash |
SimplePointLayer |
WGS84(DD) |
location |
NativePointEncoder |
NativeHilbert |
hilbert |
SimplePointLayer |
WGS84(DD) |
location |
NativePointEncoder |
NativePoint |
rtree |
SimplePointLayer |
WGS84(DD) |
geometry |
NativePointsEncoder |
NativePoints |
rtree |
EditableLayer |
WGS84(DD) |
location |
NativePointEncoder |
NativeZOrder |
zorder |
SimplePointLayer |
WGS84(DD) |
geometry |
OSMGeometryEncoder |
OSM |
rtree |
OSMLayer |
WGS84(DD) |
longitude:latitude |
SimplePointEncoder |
SimplePoint |
rtree |
SimplePointLayer |
WGS84(DD) |
geometry |
WKBGeometryEncoder |
WKB |
rtree |
EditableLayer |
WGS84(DD) |
geometry |
WKTGeometryEncoder |
WKT |
rtree |
EditableLayer |
WGS84(DD) |
longitude:latitude |
SimplePointEncoder |
ZOrder |
zorder |
SimplePointLayer |