Hi,
Not very hard to do – Mapsource does this automatically for you (got no experience with Basecamp) but if you don’t have that here is the signature for multiple tracks (and to color the tracks).
Tracks colors and the metadata xml-node and a.f.a.i.k. garmin related..
I masked the timestamps and coordinates and removed all but 2 trackspoints since you only need to know how the xml is formed
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
<gpx xmlns="https://www.topografix.com/GPX/1/1" creator="MapSource 6.16.3" version="1.1" xmlns:xsi="https://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="https://www.topografix.com/GPX/1/1 https://www.topografix.com/GPX/1/1/gpx.xsd">
<metadata>
<link >
<text>Garmin International</text>
</link>
<time>YYYY-MM-DDTHH:mm:ssZ</time>
<bounds maxlat="xx.xxxxx" maxlon="xx.xxxxx" minlat="xx.xxxxx" minlon="xx.xxxxx"/>
</metadata>
<trk>
<name>TrackName1</name>
<extensions>
<gpxx:TrackExtension xmlns:gpxx="https://www.garmin.com/xmlschemas/GpxExtensions/v3">
<gpxx:DisplayColor>Cyan</gpxx:DisplayColor>
</gpxx:TrackExtension>
</extensions>
<trkseg>
<trkpt lat="xx.xxxxx" lon="x.xxxxx">
<time>YYYY-MM-DDTHH:mm:ssZ</time>
</trkpt>
<trkpt lat="xx.xxxxx" lon="x.xxxxx">
<time>YYYY-MM-DDTHH:mm:ssZ</time>
</trkpt>
</trkseg>
</trk>
<trk>
<name>TrackName2</name>
<extensions>
<gpxx:TrackExtension xmlns:gpxx="https://www.garmin.com/xmlschemas/GpxExtensions/v3">
<gpxx:DisplayColor>Red</gpxx:DisplayColor>
</gpxx:TrackExtension>
</extensions>
<trkseg>
<trkpt lat="xx.xxxxx" lon="x.xxxxx">
<time>YYYY-MM-DDTHH:mm:ssZ</time>
</trkpt>
<trkpt lat="xx.xxxxx" lon="x.xxxxx">
<time>YYYY-MM-DDTHH:mm:ssZ</time>
</trkpt>
</trkseg>
</trk>
</gpx>
-
This reply was modified 7 years, 7 months ago by shades404. Reason: layout
-
This reply was modified 7 years, 7 months ago by shades404.