Skip to content

ecosystem2/parse-gpx

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

parse gpx

codecov.io Build Status

Parses gpx files into json for data processing, for..................reasons.

usage

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
});

dev

npm test
npm run coverage

license

do wutever u want whenever u want

About

parse gpx files into json

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%