Read multiple geospatial files
Maintainer(s):
yutannihilation
Installing and Loading
INSTALL st_read_multi FROM community;
LOAD st_read_multi;
Example
LOAD spatial;
SELECT * REPLACE (ST_GeomFromWkb(geometry) as geometry) FROM ST_Read_Multi('path/to/*.geojson');
About st_read_multi
Read multiple geospatial files. Currently, only GeoJSON and GeoPackages are supported.
Added Functions
function_name | function_type | description | comment | examples |
---|---|---|---|---|
st_read_multi | table | Read multiple geospatial files. Currently, only GeoJSON and GeoPackages are supported. | NULL | [FROM ST_Read_Multi('path/to/*.geojson');] |