On Sun, 25 Sep 2022 18:03:04 -0700, Jeff Liebermann <
je...@cruzio.com>
wrote:
Yet another problem.
From Tom's rides, I tried exporting the data from Strava to a GPX
file, and found that all of the rides are recording only the location
and elevation like this:
<trkpt lat="37.7012410" lon="-122.1434130">
<ele>17.6</ele>
</trkpt>
<trkpt lat="37.7014460" lon="-122.1429390">
<ele>17.8</ele>
</trkpt>
<trkpt lat="37.7016450" lon="-122.1424000">
<ele>18.2</ele>
</trkpt>
From one of my walks, a proper GPX export file should include
location, elevation and time, so that speed can be calculated. It
should look like this:
<trkpt lat="37.0840720" lon="-122.0618930">
<ele>161.3</ele>
<time>2022-08-05T16:44:11Z</time>
</trkpt>
<trkpt lat="37.0840690" lon="-122.0619110">
<ele>161.4</ele>
<time>2022-08-05T16:44:12Z</time>
</trkpt>
<trkpt lat="37.0840700" lon="-122.0619140">
<ele>161.4</ele>
<time>2022-08-05T16:44:13Z</time>
</trkpt>
My guess(tm) is that there is a setting in either Strava or the Garmin
Edge 830, that limits which GPS data is recorded. There might be a
connection between this oddity and the rather high speeds recorded,
but I can't determine that from here.
In GPX 1.0, the speed was recorded. In GPX 1.1, the speed is NOT
recorded, but can be calculated using distance divided by time:
<
https://www.javawa.nl/analyser_en.html>
When I run the program on Tom's GPX file, there is no speed graph.
However, my walk GPX file properly displays the speed.
Hey Tom... please fix this.