1.0.0 • Published 7 years ago

osm-adiff-parser-saxjs v1.0.0

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

osm-adiff-parser-saxjs

Parses OSM augmented diff (.osc files) and returns elements grouped by changeset ids.

Setup

  • npm install --save 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);
});