Welcome
@0709
That is an interesting topic for a first post. I did a bit of digging around a couple of days ago - I was looking at how other route planners behaved.
Kurviger has made some signifcicant changes since I last looked and they seem to be attempting to do what the Tread app does - assign calculation modes to individual 'segments'. A segment is the portion of route between two via points - which may include numerous shaping points.
But when I looked - the terms that they used did not match those used by garmin.
For the record - I assume that you have done this, but for anyone else looking into this thread in the future - here is a Gpx file of a route that I created using the Tread App and exported it as a GPX file. It has 7 segements and each segment is given a different calcualtions mode. In order:
00 Faster time
01 Direct
02 ShorterDistance
03 Adventurous / Faster
04 Adventurous / FastAndAdventurous
05 Adventurous / Adventurous
06 Adventurous / ExtraAdventurous
All of the Adventurous Calculation Modes also had the 'AdventurousLevel' tag which is what the second name is in the list above. These tags corresponded in order to the XT2 Adventurous Level of 1, 2, 3 and 4.
Code: Select all
<?xml version="1.0"?>
<gpx version="1.1" xmlns="http://www.topografix.com/GPX/1/1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:trp="http://www.garmin.com/xmlschemas/TripExtensions/v1">
<metadata>
<link href="https://www.garmin.com">
<text>Garmin Tread App™</text>
</link>
<time>1970-01-01T00:00:00</time>
</metadata>
<rte>
<name>Tread Route Test</name>
<rtept lat="53.961619986221194" lon="-2.0158299431204796">
<name>00 Start</name>
<sym>Flag, Green</sym>
<extensions>
<trp:ViaPoint>
<trp:CalculationMode>FasterTime</trp:CalculationMode>
</trp:ViaPoint>
</extensions>
</rtept>
<rtept lat="55.00131469219923" lon="-3.3080683741718531">
<name>01 A75</name>
<extensions>
<trp:ViaPoint>
<trp:CalculationMode>Direct</trp:CalculationMode>
</trp:ViaPoint>
</extensions>
</rtept>
<rtept lat="55.122201684862375" lon="-4.1818307340145111">
<name>02 A713</name>
<extensions>
<trp:ViaPoint>
<trp:CalculationMode>ShorterDistance</trp:CalculationMode>
</trp:ViaPoint>
</extensions>
</rtept>
<rtept lat="56.059849988669157" lon="-4.9842099566012621">
<name>03 JFH Point</name>
<sym>Flag, Blue</sym>
<extensions>
<trp:ViaPoint>
<trp:CalculationMode>Adventurous</trp:CalculationMode>
<trp:AdventurousLevel>Faster</trp:AdventurousLevel>
</trp:ViaPoint>
</extensions>
</rtept>
<rtept lat="57.215533889830112" lon="-5.4235130455344915">
<name>04 A87</name>
<extensions>
<trp:ViaPoint>
<trp:CalculationMode>Adventurous</trp:CalculationMode>
<trp:AdventurousLevel>FastAndAdventurous</trp:AdventurousLevel>
</trp:ViaPoint>
</extensions>
</rtept>
<rtept lat="57.765489919111133" lon="-5.6045699492096901">
<name>05 Via Point 5</name>
<sym>Flag, Blue</sym>
<extensions>
<trp:ViaPoint>
<trp:CalculationMode>Adventurous</trp:CalculationMode>
<trp:AdventurousLevel>Adventurous</trp:AdventurousLevel>
</trp:ViaPoint>
</extensions>
</rtept>
<rtept lat="57.951825745403767" lon="-5.1441134512424469">
<name>06 A835</name>
<extensions>
<trp:ViaPoint>
<trp:CalculationMode>Adventurous</trp:CalculationMode>
<trp:AdventurousLevel>ExtraAdventurous</trp:AdventurousLevel>
</trp:ViaPoint>
</extensions>
</rtept>
<rtept lat="58.502009930089116" lon="-4.2750599607825279">
<name>Destination</name>
<sym>Flag, Red</sym>
<extensions />
</rtept>
</rte>
</gpx>
But I notice one thing that is different in one of your screen shots. The use of the term 'Motorcycling' for the Transportation Mode.
The gpx file produced by the Tread App does not include a tranportation Mode. But when you look at the .trip file that the XT2 creates for each route it uses the term "zūmo Motorcycle"
All previous Zumos have set a default if the Transportation mode is not present, or if the Zumo doesn't recognise it. Perhaps (I don't know) the XT2 recognises the 'Motorcycling' Mode and doesn't switch to the default. By not putting anything int he gpx file, it switches to 'zūmo Motorcycle'.
Just a thought.
The other possibility is that the headers at the top of the gpx file are not pointing to the same formats.
That file included in the code box below was create by the Tread App, exported as a GPX file and then imported to the XT2. All of the settings for each segment in the route were set correctly.
Addendum
When the above route is sent as a gpx file to my phone and the phone opens it up with the Tread App the route is displayed ont e Tread App screen. Select Edit, and the route list shows each segment with the correct route level - Faster, Direct, Shorter, 1, 2, 3, 4.
However - when I import the same GPX file into the XT2 and let it sync via Tread and then select edit in the Tread app it shows different information
Faster, Direct, Shorter, 4, 4, 4, 4
I cannot check what values are set on the XT2 itself - as soon as you click Adventurous it sets the level to the level that was last selected - which is why I think the levels are showing as 4. That happens to be where I last moved the slider.
I'll move the slider to 2, delete the route and re-import the same route and see what it does then.
Yes - it has re-imported and levels are set as Faster, Direct, Shorter, 2, 2, 2, 2