Re: GPX without elevation data
Posted by MichaelRaz on
URL: http://maprun.308.s1.nabble.com/GPX-without-elevation-data-tp819p821.html
Not sure if this can be helpful (and can't validate it works) but it should be easy to add fake elevation tags in the GPX file. One example using Notepad++ (it is free):
Open the GPX file and select
Search->Replace
In the dialog box make sure following is checked/selected
Wrap around (in case you don't start at the top)
Search Mode Regular Expression
Paste the following text into the Find what:
(<trkpt.*?>)
and into the Replace with:
\1\n \t\t<ele>0</ele>
Click Replace All - it will take a couple of seconds. This just finds each <trkpt line and replaces it with the same followed by a linefeed, couple of tabs (for readability) and a <ele>0</ele> line. A flat run!