Skip to content

gijs/coati

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

47 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Coati Build Status

coati

Streams GeoJSON data to a PostGIS configured PostgreSQL database.

Note: Casts all geometry using ST_Multi, let me know if this is a problem

To get started, install coati, via npm install --save coati.

Usage

var coati = require('coati'),
  config = require('./config');

coati.go('insert', {
  config: config,
  inputFilePath: 'data.json',
  tableName: 'countries',
  propertiesMap: ['ObjID:id', 'Country_Name:name'],
  geometryColumnName: 'geom'
});

The config format is JSON with the following structure:

{
  "user": "test",
  "password": "password",
  "database": "myDb",
  "host": "localhost"
}

Command Line

npm install -g coati
coati insert -f data.json -t providers -g geom 'OBJECTID:id, ProvName:name'

See help, via coati -h for more information and available options.

Todo

  • Figure out a more clear way to map properties/geometry property
  • Up for suggestions..

Special Thanks

To Calvin Metcalf, who wrote most of the original code.

License

License is located here.

About

GeoJSON to PostgresSQL/PostGis

Resources

License

Stars

Watchers

Forks

Packages

No packages published