10.02.2017, 21:30
In Routeconverter 2.19, the speed information is removed from the GPX file on save. You can see this happen immediately after save the speed column in the position list is emptied.
It is also in the output GPX files.
My input file start with
When it gets saved, it looks like this. All <speed> tags are gone and this is the output:
I also notice that the <ele> gets rounded to one decimal. While this is not a big deal, I think it is bad form to change the contents of tags without reason or warning.
It is also in the output GPX files.
My input file start with
Code:
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<gpx creator="Mobile Action http://www.mobileaction.com/1.1" version="1.0" xmlns="http://www.topografix.com/GPX/1/0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/GPX/1/0/gpx.xsd">
<trk>
<name>20170210-203645(1)</name>
<desc>Color:004000ff</desc>
<trkseg>
<trkpt lat="51.324043" lon="5.992455">
<ele>39.570000</ele>
<time>2016-09-17T14:25:04Z</time>
<speed>6.75</speed>
</trkpt>
<trkpt lat="51.324047" lon="5.992549">
<ele>39.529999</ele>
<time>2016-09-17T14:25:05Z</time>
<speed>6.85</speed>
</trkpt>
<trkpt lat="51.324001" lon="5.992729">
<ele>38.469997</ele>
<time>2016-09-17T14:25:07Z</time>
<speed>6.88</speed>
</trkpt>
<trkpt lat="51.323956" lon="5.992913">
<ele>37.090000</ele>
<time>2016-09-17T14:25:09Z</time>
<speed>7.02</speed>
</trkpt>
<trkpt lat="51.323914" lon="5.993102">
<ele>36.419998</ele>
<time>2016-09-17T14:25:11Z</time>
<speed>7.02</speed>
</trkpt>
<trkpt lat="51.323879" lon="5.993301">
<ele>36.230000</ele>
<time>2016-09-17T14:25:13Z</time>
<speed>6.50</speed>
</trkpt>
When it gets saved, it looks like this. All <speed> tags are gone and this is the output:
Code:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<gpx xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.topografix.com/GPX/1/1" xmlns:nmea="http://trekbuddy.net/2009/01/gpx/nmea" xmlns:trp="http://www.garmin.com/xmlschemas/TripExtensions/v1" xmlns:gpxtrx="http://www.garmin.com/xmlschemas/GpxExtensions/v3" xmlns:gpxtpx="http://www.garmin.com/xmlschemas/TrackPointExtension/v2" version="1.1" creator="Generated by Christian Pesch's RouteConverter. See http://www.routeconverter.com">
<trk>
<name>20170210-203645(1)</name>
<desc>Color:004000ff</desc>
<trkseg>
<trkpt lat="51.324043" lon="5.992455">
<ele>39.6</ele>
<time>2016-09-17T14:25:04.000Z</time>
<name>Position 1</name>
</trkpt>
<trkpt lat="51.324047" lon="5.992549">
<ele>39.5</ele>
<time>2016-09-17T14:25:05.000Z</time>
<name>Position 2</name>
</trkpt>
<trkpt lat="51.324001" lon="5.992729">
<ele>38.5</ele>
<time>2016-09-17T14:25:07.000Z</time>
<name>Position 3</name>
</trkpt>
<trkpt lat="51.323956" lon="5.992913">
<ele>37.1</ele>
<time>2016-09-17T14:25:09.000Z</time>
<name>Position 4</name>
</trkpt>
<trkpt lat="51.323914" lon="5.993102">
<ele>36.4</ele>
<time>2016-09-17T14:25:11.000Z</time>
<name>Position 5</name>
</trkpt>
<trkpt lat="51.323879" lon="5.993301">
<ele>36.2</ele>
<time>2016-09-17T14:25:13.000Z</time>
<name>Position 6</name>
</trkpt>
I also notice that the <ele> gets rounded to one decimal. While this is not a big deal, I think it is bad form to change the contents of tags without reason or warning.