I have 3 GPX files exported from Garmin Connect. Each one corresponds to a part of a big route of 77,98Km splitted like this:
* 1 is for Sat, 19 Sep 2015 15:35, 6:55:12, 32,87Km
* 2 is for Sat, 19 Sep 2015 22:30, 7:24:22, 29,00Km
* 3 is for Sun, 20 Sep 2015 5:55, 4:49:14, 16,11Km
After I merge all 3 GPX into one (using GPXEditor), and merge all tracks, I try to import it again to Garmin Connect for having the complete activity (i.e. total time, total kilometers, etc.) but I always get the error that the combined file has already been uploaded and it points to the activity 1.
I've changed the timestamp for the combined GPX file without success. I've done the same trick for combine activities without problems.
What is the problem?
How can I import this combined activity to GC?
Thanks.
First activity starts with the following code:
<?xml version="1.0" encoding="UTF-8"?>
<gpx version="1.1" creator="Garmin Connect"
xsi:schemaLocation="www.topografix.com/.../1 www.topografix.com/.../gpx.xsd www.garmin.com/.../v3 www.garmin.com/.../GpxExtensionsv3.xsd www.garmin.com/.../v1 www.garmin.com/.../TrackPointExtensionv1.xsd"
xmlns="www.topografix.com/.../1"
xmlns:gpxtpx="www.garmin.com/.../v1"
xmlns:gpxx="www.garmin.com/.../v3" xmlns:xsi="www.w3.org/.../XMLSchema-instance">
<metadata>
<link href="connect.garmin.com">
<text>Garmin Connect</text>
</link>
<time>2015-09-19T13:35:12.000Z</time>
</metadata>
<trk>
<name>Seva Carrera</name>
<trkseg>
<trkpt lon="2.303769690915942" lat="41.815417259931564">
<ele>836.2000122070312</ele>
<time>2015-09-19T13:35:13.000Z</time>
</trkpt>
<trkpt lon="2.3036502487957478" lat="41.81539412587881">
<ele>836.0</ele>
<time>2015-09-19T13:35:21.000Z</time>
</trkpt>
The combined one starts with the following code:
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<gpx version="1.1" creator="GPX Editor 1.3.83.1509" xmlns="www.topografix.com/.../1" xmlns:xsi="www.w3.org/.../XMLSchema-instance" xsi:schemaLocation="www.topografix.com/.../1 www.topografix.com/.../gpx.xsd">
<metadata>
<link href="connect.garmin.com">
<text>Garmin Connect</text>
</link>
<time>2015-09-19T15:35:00Z</time>
<bounds minlat="41.5923661831766" minlon="1.83598707430065" maxlat="41.8154172599316" maxlon="2.30376969091594" />
</metadata>
<trk>
<name>Matagalls - Montserrat 2015 (combinado)</name>
<trkseg>
<trkpt lat="41.8154172599316" lon="2.30376969091594">
<ele>836.200012207031</ele>
<time>2015-09-19T13:35:13Z</time>
</trkpt>
<trkpt lat="41.8153941258788" lon="2.30365024879575">
<ele>836</ele>
<time>2015-09-19T13:35:21Z</time>
</trkpt>