Gpx file is an XML document used to track spatio-temporal information. It look like:
<gpx>
<trk>
<segment>
<trkpt lat="...", lon="..."></trkpt>
</segment>
</trk>
</gpx>
Except gpx
super-tag, every tag can be replaced more and more. The question is: What use of segment
tag? Why trkpt
tag can't be collected directly inside parent trk
tag? What concept behind the organization of trkpt
in set of segment
? I've search for this on official gpx website, http://www.topografix.com/gpx.asp, but i've found nothing! :(
Best Regards MC