Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type GPX ¶
type GPX struct { Tracks []struct { Segments []struct { Points []GPXTrkPoint `xml:"trkpt"` } `xml:"trkseg"` } `xml:"trk"` }
type GPXExtension ¶
type GPXExtensionSet ¶
type GPXExtensionSet struct {
Children []GPXExtension `xml:",any"`
}
func (GPXExtensionSet) Named ¶
func (e GPXExtensionSet) Named(name string) GPXExtension
type GPXTrkPoint ¶
type GPXTrkPoint struct { Lat float64 `xml:"lat,attr"` Lon float64 `xml:"lon,attr"` Time time.Time `xml:"time"` Extensions GPXExtensionSet `xml:"extensions"` }
Click to show internal directories.
Click to hide internal directories.