31.08.2009, 16:34
(This post was last modified: 31.08.2009, 16:42 by routeconverter.)
I've loaded one of your test files into my IDE and the screenshot clearly shows the problems:
Excerpt from the GPX 1.1 XML Schema:
If you'd like to store speed within an element, you could use the trekbuddy's extension - then RouteConverter can read the speed of the files out of the box:
- the version field has to be 1.1 if the namespace is http://www.topografix.com/GPX/1/1
- there is no element speed in GPX 1.1 (there was one in GPX 1.0 though)
Excerpt from the GPX 1.1 XML Schema:
Code:
<xsd:attribute name="version" type="xsd:string" use="required" fixed="1.1">
<xsd:annotation>
<xsd:documentation>
You must include the version number in your GPX document.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>If you'd like to store speed within an element, you could use the trekbuddy's extension - then RouteConverter can read the speed of the files out of the box:
Code:
<gpx version="1.1" creator="TrekBuddy 0.9.84" xmlns="http://www.topografix.com/GPX/1/1" xmlns:nmea="http://trekbuddy.net/2009/01/gpx/nmea">
<trk>
<trkseg>
<trkpt lat="52.554441907" lon="9.317555543">
<ele>100.0</ele>
<time>2009-05-29T12:14:01+02:00</time>
<fix>3d</fix>
<sat>6</sat>
<extensions>
<nmea:course>84.8</nmea:course>
<nmea:speed>12.7</nmea:speed>
</extensions>
</trkpt>
--
Christian
Christian
