1.1.0 • Published 7 years ago

osm-adiff-parser v1.1.0

Weekly downloads
3
License
ISC
Repository
github
Last release
7 years ago

osm-adiff-parser

Parsers OSM augmented diff (.osc) and returns elements grouped by changeset ID. Based on the parser in planet-stream.

Setup

  • npm install osm-adiff-parser

Usage

var parser = require('osm-adiff-parser');

// to filter certain changesets

parser(xml, ['46613588', '46613589'], function(err,data) {
    console.log(data);
});

// to get all changesets

parser(xml, null, function(err,data) {
    console.log(data);
});