spatial.importShapefile

Procedure

Imports the the provided shape-file from URI to a layer of the same name, returns the count of data added

Signature

spatial.importShapefile(uri :: STRING) :: (count :: INTEGER)

Input parameters

Name Type Default Description

uri

STRING

null

The path of the file to import the data from

Output parameters

Name Type Description

count

INTEGER

Examples

Import a shape-file

CALL spatial.importShapefile('shp/highway.shp')
Table 1. Result
count
143
CALL spatial.layers()
Table 2. Result
name signature

highway

EditableLayer(name='highway', encoder=WKBGeometryEncoder(geom='geometry', bbox='bbox'))