Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

coati

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

coati

Transform GeoJSON data to PostgreSQL/PostGIS data

  • 0.4.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Weekly downloads
 
Created
Source

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

Usage

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

var coati = require('coati');
var 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 -c db.config -t providers -g geom 'OBJECTID:id, ProvName:name'

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

Todo

  • Allow passing db arguments individually, e.g. --db.name, --db.host, --db.user, --db.password
  • Up for suggestions..

Special Thanks

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

License

License is located here.

Keywords

FAQs

Package last updated on 13 Aug 2014

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc