Problem with export to GPX format

I've export a travel route to gpx format, but when I try to upload to VeoGeo and gps visiualizer they both couldn't read the file

VeoGeo -- Invalid Data - Expected Gpx Version 1.0 or Version 1.1 File
GPS Visiualizer -- No valid GPS data detected!

I'm using RaceChrono v1.00

Why?

Comments

  • edited August 2008
    got it, for some reason the export file has an extra set of un-closing <trk> and <trkseg> tags near the end of file. removed it and works

    <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?>
    <?xml-stylesheet type="text/xsl" href="details.xsl"?>
    <gpx
    version="1.0"
    creator="RaceChrono v1.00 - http://www.racechrono.com/"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns="http://www.topografix.com/GPX/1/0"
    xmlns:topografix="http://www.topografix.com/GPX/Private/TopoGrafix/0/1"
    xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/GPX/1/0/gpx.xsd http://www.topografix.com/GPX/Private/TopoGrafix/0/1 http://www.topografix.com/GPX/Private/TopoGrafix/0/1/topografix.xsd">
    <name><![CDATA[C]]></name>
    <desc><![CDATA[]]></desc>
    <author><![CDATA[]]></author>
    <trk>
    <name><![CDATA[Traveled route]]></name>
    <number>1</number>
    <trkseg>
    <trkpt lat="42.3094240" lon="-71.3848057"><time>2008-08-26T13:52:52.606Z</time><ele>60.60</ele><sat>0</sat><speed>0.10</speed></trkpt>
    ... ...
    <trkpt lat="42.3079882" lon="-71.3860632"><time>2008-08-26T13:53:39.000Z</time><ele>54.30</ele><sat>5</sat><speed>29.80</speed></trkpt>
    </trkseg>
    </trk>
    <trk>
    <name><![CDATA[Traveled route]]></name>
    <number>1</number>
    <trkseg>
    </gpx>
  • edited August 2008
    Oops, thanks for the bug report, this will be fixed in the next version! This happens only when exporting in "traveled route" scope. For now, just remove the open tags at the end if you have problems (the trk and trkseg at the end).
  • This is fixed in v1.01 beta.
  • I'm getting the same error with gpx file exported from 1.02 beta
  • I will improve the GPX export for the next beta. Found some other problems as well.
Sign In or Register to comment.