1
0
Fork 0
mirror of https://github.com/Luzifer/gpxhydrant.git synced 2024-11-09 16:00:03 +00:00

Fix: Followed linter advice

This commit is contained in:
Knut Ahlers 2016-05-07 15:17:14 +02:00
parent bb2661f03d
commit b024d1569d
Signed by: luzifer
GPG key ID: DC2729FDD34BE99E

View file

@ -6,6 +6,7 @@ import (
"time" "time"
) )
// GPX represents the contents of an GPX file
type GPX struct { type GPX struct {
XMLName xml.Name `xml:"gpx"` XMLName xml.Name `xml:"gpx"`
Metadata struct { Metadata struct {
@ -24,6 +25,7 @@ type GPX struct {
Waypoints []Waypoint `xml:"wpt"` Waypoints []Waypoint `xml:"wpt"`
} }
// Waypoint represents a single waypoint inside a GPX file
type Waypoint struct { type Waypoint struct {
XMLName xml.Name `xml:"wpt"` XMLName xml.Name `xml:"wpt"`
Latitude float64 `xml:"lat,attr"` Latitude float64 `xml:"lat,attr"`
@ -37,6 +39,7 @@ type Waypoint struct {
Type string `xml:"type"` Type string `xml:"type"`
} }
// ParseGPXData reads the contents of the GPX file and returns a parsed version
func ParseGPXData(in io.Reader) (*GPX, error) { func ParseGPXData(in io.Reader) (*GPX, error) {
out := &GPX{} out := &GPX{}
return out, xml.NewDecoder(in).Decode(out) return out, xml.NewDecoder(in).Decode(out)