Parses gpx files into json for data processing, for..................reasons.
The gpx file will be converted to an Array of TrackPoint
objects. Containing the latitude, longitude, elevation, and a timestamp.
const parseGpx = require('parse-gpx');
let file = './path/to/some.gpx';
parseGpx(file).then(track => {
console.log(track[0].latitude); // 43.512926660478115
});
npm test
npm run coverage
do wutever u want whenever u want