1.0.0 • Published 8 years ago

geocsv v1.0.0

Weekly downloads
3
License
MIT
Repository
github
Last release
8 years ago

geocsv

GeoJSON to CSV module

Install

npm install geocsv

Usage

var geocsv = require('geocsv');

geocsv.createCSVStream(filename, function (err, stream) {
  stream.on('data', function (data) {
    console.log(data.toString());
  });
});

All fields from properties are mapped as a column, and geometry is converted into Well Known Text.

Contributing

Contributions welcome! Please read the contributing guidelines first.

License

MIT