Skip to content

rndz/gpx

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Go library to parse gpx files

So far it only maps gpx file to a struct (as defined in http://www.topografix.com/GPX/1/1) and is able to count track total distance.

Usage:

import "github.com/rndz/gpx"

func main() {
    g, err := gpx.ParseFile("file.gpx")
	if err != nil {
		panic(err)
	}
    // Print track distance(km).
	fmt.Println(g.Distance())

    // Use track point information
	for _, track := range g.Trk {
		for _, segment := range track.Trkseg {
			for _, pt := range segment.Trkpt {
                // Do something with pt.Lat, pt.Lon, etc...
			}
		}
	}
}

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages