Skip to content
/ GeoCSV Public

Convert GeoJSON to CSV with a Streaming Parser

License

Notifications You must be signed in to change notification settings

OpenGov/GeoCSV

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

Convert GeoJSON to CSV with a Streaming Parser

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages