geojson-stream-merge
v3.1.0
Published
Create a single FeatureCollection from line delimited GeoJSON FeatureCollections
Downloads
9
Readme
geojson-stream-merge
Creates a single valid FeatureCollection
from a file of line delimited features or feature collections.
Usage
CLI
npm install geojson-stream-merge
geojson-stream-merge --input test/test.json --output test/output.json
API
var gsm = require('geojson-stream-merge');
gsm(<path-to-input-file>, <path-to-output-file>, function (error, data) {
console.log('done');
});