geocsv
v1.0.0
Published
GeoJSON to CSV module
Downloads
5
Readme
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.