Neverendingo (Talk | contribs) m (Text replace - "<code bash>" to "<syntaxhighlight lang="bash">") |
Neverendingo (Talk | contribs) m (Text replace - "</code>" to "</syntaxhighlight>") |
||
| (One intermediate revision by one user not shown) | |||
| Line 17: | Line 17: | ||
cmake -DQTONLY=ON ../src | cmake -DQTONLY=ON ../src | ||
make routing-instructions | make routing-instructions | ||
| − | </ | + | </syntaxhighlight> |
The binary now lies in src/routing-instructions/routing-instructions and is ready to use. You can also run make install to have it installed. Notice that make install would also build and install Marble. You can do a manual installation instead: | The binary now lies in src/routing-instructions/routing-instructions and is ready to use. You can also run make install to have it installed. Notice that make install would also build and install Marble. You can do a manual installation instead: | ||
<syntaxhighlight lang="bash"> | <syntaxhighlight lang="bash"> | ||
sudo cp src/routing-instructions/routing-instructions /usr/local/bin/ | sudo cp src/routing-instructions/routing-instructions /usr/local/bin/ | ||
| − | </ | + | </syntaxhighlight> |
== Translations == | == Translations == | ||
The translation of driving instructions to a language other than english needs translation files. There is a bash script that automates the conversion for you: It downloads the latest translations for all languages supported by KDE, removes uneeded translations to keep the file size small and converts it to Qt's .qm translation format. | The translation of driving instructions to a language other than english needs translation files. There is a bash script that automates the conversion for you: It downloads the latest translations for all languages supported by KDE, removes uneeded translations to keep the file size small and converts it to Qt's .qm translation format. | ||
| − | < | + | <syntaxhighlight lang="text"> |
# Assuming you are in the build directory | # Assuming you are in the build directory | ||
cd .. | cd .. | ||
cd src/tools/translations | cd src/tools/translations | ||
./routing_instructions_i18n.bash | ./routing_instructions_i18n.bash | ||
| − | </ | + | </syntaxhighlight> |
While downloading and converting files, output like this is generated: | While downloading and converting files, output like this is generated: | ||
| − | < | + | <syntaxhighlight lang="text"> |
Processing translations, please wait. This can take some time... | Processing translations, please wait. This can take some time... | ||
en_GB: 9 of 24 driving instructions translated | en_GB: 9 of 24 driving instructions translated | ||
| Line 56: | Line 56: | ||
sr@ijekavian sr@ijekavianlatin sr@latin ta te tg th tr ug uz uz@cyrillic vi wa | sr@ijekavian sr@ijekavianlatin sr@latin ta te tg th tr ug uz uz@cyrillic vi wa | ||
xh zh_CN zh_HK | xh zh_CN zh_HK | ||
| − | </ | + | </syntaxhighlight> |
Once finished, a number of routing-instructions_$lang.qm files lie in the current directory. To have the routing-instructions binary find them, they need to be in one of these directories: | Once finished, a number of routing-instructions_$lang.qm files lie in the current directory. To have the routing-instructions binary find them, they need to be in one of these directories: | ||
| Line 66: | Line 66: | ||
<syntaxhighlight lang="bash">sudo mkdir -p /usr/share/marble/translations | <syntaxhighlight lang="bash">sudo mkdir -p /usr/share/marble/translations | ||
sudo mv routing-instructions_*.qm /usr/share/marble/translations/ | sudo mv routing-instructions_*.qm /usr/share/marble/translations/ | ||
| − | </ | + | </syntaxhighlight> |
The routing-instructions binary chooses that file for translation whose language code matches the current locale. For example, when using LC_ALL="de_DE.UTF-8" it would try to load routing-instructions_de_DE.qm in one of the above directories. If it's not found, it falls back to routing-instructions_de.qm and finally uses the builtin english language. | The routing-instructions binary chooses that file for translation whose language code matches the current locale. For example, when using LC_ALL="de_DE.UTF-8" it would try to load routing-instructions_de_DE.qm in one of the above directories. If it's not found, it falls back to routing-instructions_de.qm and finally uses the builtin english language. | ||
| Line 77: | Line 77: | ||
[3.0 km] Turn right into Rheinhafenstraße. Follow the road for 1.5 km. | [3.0 km] Turn right into Rheinhafenstraße. Follow the road for 1.5 km. | ||
[4.4 km] Turn left into Durmersheimer Straße. Follow the road for 60 m. | [4.4 km] Turn left into Durmersheimer Straße. Follow the road for 60 m. | ||
| − | </ | + | </syntaxhighlight> |
A conversion, overriding the system locale to translate to swedish: | A conversion, overriding the system locale to translate to swedish: | ||
| Line 85: | Line 85: | ||
[3.0 km] Sväng åt höger till Rheinhafenstraße. Följ vägen 1.5 km. | [3.0 km] Sväng åt höger till Rheinhafenstraße. Följ vägen 1.5 km. | ||
[4.4 km] Sväng åt vänster till Durmersheimer Straße. Följ vägen 60 m. | [4.4 km] Sväng åt vänster till Durmersheimer Straße. Följ vägen 60 m. | ||
| − | </ | + | </syntaxhighlight> |
The conversion can also be called in pipe mode: | The conversion can also be called in pipe mode: | ||
| Line 94: | Line 94: | ||
[3.0 km] Vire à direita em Rheinhafenstraße. Siga a estrada para a 1.5 km. | [3.0 km] Vire à direita em Rheinhafenstraße. Siga a estrada para a 1.5 km. | ||
[4.4 km] Vire à esquerda em Durmersheimer Straße. Siga a estrada para a 60 m. | [4.4 km] Vire à esquerda em Durmersheimer Straße. Siga a estrada para a 60 m. | ||
| − | </ | + | </syntaxhighlight> |
The --csv and --dense options are useful to process the generated text further: | The --csv and --dense options are useful to process the generated text further: | ||
| Line 102: | Line 102: | ||
49.007614,8.334716,右轉到 Rheinhafenstraße。 沿著路開到 1.5 km。 | 49.007614,8.334716,右轉到 Rheinhafenstraße。 沿著路開到 1.5 km。 | ||
48.999764,8.349166,左轉到 Durmersheimer Straße。 沿著路開到 60 m。 | 48.999764,8.349166,左轉到 Durmersheimer Straße。 沿著路開到 60 m。 | ||
| − | </ | + | </syntaxhighlight> |
See --help for other parameters. | See --help for other parameters. | ||
The application routing-instructions converts a textual representation of a route (a list of waypoints, road names and other meta information) to driving instructions. It is distributed as a part of Marble and was formerly called gosmore-instructions. It can generate driving instructions for Gosmore, Routino and Monav (Monav from within Marble only).
Contents |
The source code is distributed with Marble and can be compiled with cmake. The only dependency is Qt.
mkdir routing-instructions cd routing-instructions git clone git://anongit.kde.org/marble src mkdir build cd build cmake -DQTONLY=ON ../src make routing-instructions
The binary now lies in src/routing-instructions/routing-instructions and is ready to use. You can also run make install to have it installed. Notice that make install would also build and install Marble. You can do a manual installation instead:
sudo cp src/routing-instructions/routing-instructions /usr/local/bin/
The translation of driving instructions to a language other than english needs translation files. There is a bash script that automates the conversion for you: It downloads the latest translations for all languages supported by KDE, removes uneeded translations to keep the file size small and converts it to Qt's .qm translation format.
# Assuming you are in the build directory cd .. cd src/tools/translations ./routing_instructions_i18n.bash
While downloading and converting files, output like this is generated:
Processing translations, please wait. This can take some time... en_GB: 9 of 24 driving instructions translated es: 9 of 24 driving instructions translated et: 9 of 24 driving instructions translated gl: 9 of 24 driving instructions translated hr: 9 of 24 driving instructions translated nb: 10 of 10 driving instructions translated nds: 6 of 24 driving instructions translated nl: 24 of 24 driving instructions translated pt: 24 of 24 driving instructions translated pt_BR: 9 of 24 driving instructions translated sv: 24 of 24 driving instructions translated uk: 24 of 24 driving instructions translated x-test: 24 of 24 driving instructions translated zh_TW: 9 of 24 driving instructions translated Languages not yet translated: af ar as ast be be@latin bg bn bn_IN br ca ca@valencia crh cs csb cy da de el eo eu fa fi fr fy ga gu ha he hi hne hsb hu hy ia id is it ja ka kk km kn ko ku lb lt lv mai ml mk mr ms mt ne nn nso oc or pa pl ps ro ru rw se si sk sl sr sr@ijekavian sr@ijekavianlatin sr@latin ta te tg th tr ug uz uz@cyrillic vi wa xh zh_CN zh_HK
Once finished, a number of routing-instructions_$lang.qm files lie in the current directory. To have the routing-instructions binary find them, they need to be in one of these directories:
A manual installation of these files thus can be done like this:
sudo mkdir -p /usr/share/marble/translations sudo mv routing-instructions_*.qm /usr/share/marble/translations/
The routing-instructions binary chooses that file for translation whose language code matches the current locale. For example, when using LC_ALL="de_DE.UTF-8" it would try to load routing-instructions_de_DE.qm in one of the above directories. If it's not found, it falls back to routing-instructions_de.qm and finally uses the builtin english language.
A conversion with the output of a previous gosmore routing call in input.txt:
$ routing-instructions input.txt [ 0 m ] Continue on Hermann-Schneider-Allee. Follow the road for 2.0 km. [2.0 km] Continue on Daxlander Straße. Follow the road for 1.0 km. [3.0 km] Turn right into Rheinhafenstraße. Follow the road for 1.5 km. [4.4 km] Turn left into Durmersheimer Straße. Follow the road for 60 m.
A conversion, overriding the system locale to translate to swedish:
$ LC_ALL="sv" routing-instructions input.txt [ 0 m ] Fortsätt på Hermann-Schneider-Allee. Följ vägen 2.0 km. [2.0 km] Fortsätt på Daxlander Straße. Följ vägen 1.0 km. [3.0 km] Sväng åt höger till Rheinhafenstraße. Följ vägen 1.5 km. [4.4 km] Sväng åt vänster till Durmersheimer Straße. Följ vägen 60 m.
The conversion can also be called in pipe mode:
$ QUERY_STRING="flat=49.0&flon=8.3&tlat=49.0&tlon=8.35&fastest=1&v=motorcar" \ gosmore gosmore.pak | LC_ALL="pt_BR" routing-instructions [ 0 m ] Siga em frente em Hermann-Schneider-Allee. Siga a estrada para a 2.0 km. [2.0 km] Siga em frente em Daxlander Straße. Siga a estrada para a 1.0 km. [3.0 km] Vire à direita em Rheinhafenstraße. Siga a estrada para a 1.5 km. [4.4 km] Vire à esquerda em Durmersheimer Straße. Siga a estrada para a 60 m.
The --csv and --dense options are useful to process the generated text further:
$ LC_ALL="zh_TW" routing-instructions --csv input.txt 48.998184,8.299257,繼續開 Hermann-Schneider-Allee。 沿著路開到 2.0 km。 49.005632,8.322305,繼續開 Daxlander Straße。 沿著路開到 1.0 km。 49.007614,8.334716,右轉到 Rheinhafenstraße。 沿著路開到 1.5 km。 48.999764,8.349166,左轉到 Durmersheimer Straße。 沿著路開到 60 m。
See --help for other parameters.