Provides an helper to invoke ogr2ogr and psql to import spatial file into PostGIS.
const ogr2pg = require('@mborne/ogr2pg');
const result = await ogr2pg({
'inputPath': 'place.shp',
'tableName': 'place'
});
console.log(result.status);
console.log(result.message);
console.log(result.command);
Name | Required? | Description | Default |
---|---|---|---|
inputPath |
YES | Input file path (.shp, .geojson, etc.) | |
encoding |
NO | Input encoding (UTF-8, LATIN1,...) | UTF-8 |
tableName |
YES | Output table name | |
createTable |
NO | Automatically create table (drop table if exists) | false |
schemaName |
NO | Output schema name | public |
createSchema |
NO | Automatically create schema if not exists | false |
promoteToMulti |
NO | Promote geometry to multi (ex : MultiPolygon instead of Polygon) | false |
skipFailures |
NO | skip failures when importing data | false |