gpx-stream
v0.0.3
Published
Node module for streaming tracked points out of a GPX 1.1 string
Downloads
10
Readme
gpx-stream
Stream tracked points (<trkpt/>
nodes) from a GPX 1.1 input string.
Usage
var gpx = require('gpx-stream');
var points = new gpx();
var source = fs.createReadStream('./oregon.gpx');
source.pipe(points);
points.on('readable', function(){
var point;
while(point = points.read()){
console.log([
'Lat:', point.lat,
'Lon:', point.lon,
'elevation:', point.elevation,
'@time', point.time
].join(' '));
}
});
points.on('end', function(){
console.log('finished');
});