Action disabled: register

How can I export tours from Kurviger to Sygic?

Please note, Kurviger can export routes for Sygic now. The excel list should not be required anymore.

I will leave excel list script below, if anyone might need to convert coordinates to Sygic from a different source.



Unfortunately the direct export of kurviger routes to Sygic does not work (yet), so I created a small excel-tool.

The script in the Excel file converts the tours created by kurviger.de from the format Navigon Mobile Navigator URL (.txt) in the Sygic URL format.

In this way the tours created online can still easily be imported into Sygic.

I hope the tool works for you, otherwise you are welcome to contact me in the forum.

  1. Create tour and export as Navigon Mobile Navigator URL (.txt)
  2. Open exported file and copy content
  3. Copy Copy text next to Navigon URL (to cell C5)
  4. Click the Convert button
  5. The Sygic URL is already in the cache
  6. Send Sygic URL to mobile via e-mail (or similar)
  7. Open URL on mobile, the route should be opened in Sygic

The Excel file with the macro can be downloaded here.

If you prefer to insert the macro yourself in Excel, or if you would like to view the code before downloading, you are welcome to do so here.

Sub convert()
'
' Navigon Link kopieren und in Sygic zelle einfuegen
'

'
    Range("C5").Select
    Selection.Copy
    Range("C7").Select
    ActiveSheet.Paste
    
'
' Header austauschen
'

'
    Worksheets("Tabelle1").Range("C7").Replace What:="navigon://route/?target=coordinate//", Replacement:= _
        "com.sygic.aura://coordinate|", LookAt:=xlPart, SearchOrder:=xlByRows, _
        MatchCase:=False, SearchFormat:=False, ReplaceFormat:=False

'
' Einleitung neuer Koordinate austauschen
'

'
    Worksheets("Tabelle1").Range("C7").Replace What:="&target=coordinate//", Replacement:="|", LookAt:= _
        xlPart, SearchOrder:=xlByRows, MatchCase:=False, SearchFormat:=False, _
        ReplaceFormat:=False

'
' Trennung Laengen- und Breitengrad austauschen
'

'
    Worksheets("Tabelle1").Range("C7").Replace What:="/", Replacement:="|", LookAt:=xlPart, SearchOrder _
        :=xlByRows, MatchCase:=False, SearchFormat:=False, ReplaceFormat:=False

'
' Header korrigieren
'

'
    Worksheets("Tabelle1").Range("C7").Replace What:="||", Replacement:="//", LookAt:=xlPart, SearchOrder _
        :=xlByRows, MatchCase:=False, SearchFormat:=False, ReplaceFormat:=False

'
' Footer in Navigon Link einfuegen
'

'
    Range("C7").Select
    ActiveCell.Value = ActiveCell.Value & "|drive"
    Selection.Copy
End Sub
  • web/faq/sygic_excel_export.txt
  • Last modified: 2019/03/21 16:57
  • by admin