Skip to content

Commit 24398fa

Browse files
authored
Added ford annotation for DataFlagEncoder (graphhopper#973)
* Added ford annotation for DataFlagEncoder * Added Translation * Changed method naming
1 parent ccdfcb8 commit 24398fa

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+74
-15
lines changed

core/src/main/java/com/graphhopper/routing/util/DataFlagEncoder.java

Lines changed: 22 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,7 @@
2424
import com.graphhopper.routing.util.spatialrules.SpatialRuleLookup;
2525
import com.graphhopper.routing.util.spatialrules.TransportationMode;
2626
import com.graphhopper.routing.weighting.GenericWeighting;
27-
import com.graphhopper.util.ConfigMap;
28-
import com.graphhopper.util.EdgeIteratorState;
29-
import com.graphhopper.util.Helper;
30-
import com.graphhopper.util.PMap;
27+
import com.graphhopper.util.*;
3128
import com.graphhopper.util.shapes.GHPoint;
3229
import org.slf4j.Logger;
3330
import org.slf4j.LoggerFactory;
@@ -77,6 +74,7 @@ public class DataFlagEncoder extends AbstractFlagEncoder {
7774
private final Map<String, Integer> transportModeMap = new HashMap<>();
7875
private final int transportModeTunnelValue;
7976
private final int transportModeBridgeValue;
77+
private final int transportModeFordValue;
8078
private long bit0;
8179
private EncodedDoubleValue carFwdMaxspeedEncoder;
8280
private EncodedDoubleValue carBwdMaxspeedEncoder;
@@ -141,6 +139,7 @@ public DataFlagEncoder(int speedBits, double speedFactor, int maxTurnCosts) {
141139
}
142140
transportModeTunnelValue = transportModeMap.get("tunnel");
143141
transportModeBridgeValue = transportModeMap.get("bridge");
142+
transportModeFordValue = transportModeMap.get("ford");
144143

145144
List<String> surfaceList = Arrays.asList("_default", "asphalt", "unpaved", "paved", "gravel",
146145
"ground", "dirt", "grass", "concrete", "paving_stones", "sand", "compacted", "cobblestone", "mud", "ice");
@@ -273,9 +272,9 @@ int getAccessValue(ReaderWay way) {
273272
}
274273
}
275274

276-
if (spatialRuleLookupEnabled() && accessValue == 0) {
275+
if (isSpatialRuleLookupEnabled() && accessValue == 0) {
277276
// TODO Fix transportation mode when adding other forms of transportation
278-
switch (getSpatialRule(way).getAccessValue(way.getTag("highway", ""), TransportationMode.MOTOR_VEHICLE, AccessValue.ACCESSIBLE)){
277+
switch (getSpatialRule(way).getAccessValue(way.getTag("highway", ""), TransportationMode.MOTOR_VEHICLE, AccessValue.ACCESSIBLE)) {
279278
case ACCESSIBLE:
280279
accessValue = accessMap.get("yes");
281280
break;
@@ -325,7 +324,7 @@ public long handleWayTags(ReaderWay way, long allowed, long relationFlags) {
325324

326325
// MAXSPEED
327326
double maxSpeed = parseSpeed(way.getTag("maxspeed"));
328-
if (spatialRuleLookupEnabled() && maxSpeed < 0) {
327+
if (isSpatialRuleLookupEnabled() && maxSpeed < 0) {
329328
// TODO What if no maxspeed is set, but only forward and backward, and both are higher than the usually allowed?
330329
maxSpeed = getSpatialRule(way).getMaxSpeed(way.getTag("highway", ""), maxSpeed);
331330
}
@@ -413,7 +412,7 @@ public long handleWayTags(ReaderWay way, long allowed, long relationFlags) {
413412
flags = accessEncoder.setValue(flags, getAccessValue(way));
414413

415414

416-
if(spatialRuleLookupEnabled()){
415+
if (isSpatialRuleLookupEnabled()) {
417416
GHPoint estimatedCenter = way.getTag("estimated_center", null);
418417
if (estimatedCenter != null) {
419418
SpatialRule rule = spatialRuleLookup.lookupRule(estimatedCenter);
@@ -427,7 +426,7 @@ public long handleWayTags(ReaderWay way, long allowed, long relationFlags) {
427426
}
428427
}
429428

430-
private boolean spatialRuleLookupEnabled(){
429+
private boolean isSpatialRuleLookupEnabled() {
431430
if (spatialRules > 0) {
432431
if (spatialRuleLookup == null)
433432
throw new IllegalStateException("This encoder was asked to store spatial IDs for every edge, " +
@@ -631,6 +630,10 @@ public boolean isTransportModeBridge(EdgeIteratorState edge) {
631630
return transportModeEncoder.getValue(edge.getFlags()) == this.transportModeBridgeValue;
632631
}
633632

633+
public boolean isTransportModeFord(long flags) {
634+
return transportModeEncoder.getValue(flags) == this.transportModeFordValue;
635+
}
636+
634637
public String getTransportModeAsString(EdgeIteratorState edge) {
635638
int val = getTransportMode(edge);
636639
for (Entry<String, Integer> e : transportModeMap.entrySet()) {
@@ -842,6 +845,16 @@ public DataFlagEncoder setSpatialRuleLookup(SpatialRuleLookup spatialRuleLookup)
842845
return this;
843846
}
844847

848+
@Override
849+
public InstructionAnnotation getAnnotation(long flags, Translation tr) {
850+
if (isTransportModeFord(flags)) {
851+
return new InstructionAnnotation(1, tr.tr("way_contains_ford"));
852+
}
853+
854+
return super.getAnnotation(flags, tr);
855+
}
856+
857+
845858
@Override
846859
protected String getPropertiesString() {
847860
return super.getPropertiesString() +

core/src/main/resources/com/graphhopper/util/ar.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ roundabout_exit=في الدوران ، أتخذ مخرج %1$s
5050
roundabout_exit_onto=في الدوران ، أتخذ مخرج %1$s من خلال %2$s
5151
total_ascend=
5252
total_descend=
53+
way_contains_ford=
5354
web.start_label=
5455
web.intermediate_label=
5556
web.end_label=

core/src/main/resources/com/graphhopper/util/ast.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ roundabout_exit=Na rotonda, toma la salida %1$s
5050
roundabout_exit_onto=Na rotonda, toma la salida %1$s haza %2$s
5151
total_ascend=%1$s d'ascensu total
5252
total_descend=%1$s de descensu total
53+
way_contains_ford=
5354
web.start_label=Principiu
5455
web.intermediate_label=Intermediu
5556
web.end_label=Final

core/src/main/resources/com/graphhopper/util/bg.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ roundabout_exit=На кръговото кръстовище използвай
5050
roundabout_exit_onto=На кръговото кръстовище използвай изход %1$s по %2$s
5151
total_ascend=
5252
total_descend=
53+
way_contains_ford=
5354
web.start_label=
5455
web.intermediate_label=
5556
web.end_label=

core/src/main/resources/com/graphhopper/util/ca.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ roundabout_exit=A la rotonda, agafa la %1$s sortida
5050
roundabout_exit_onto=A la rotonda, agafa la sortida %1$s cap a %2$s
5151
total_ascend=%1$s pujada total
5252
total_descend=%1$s baixada total
53+
way_contains_ford=
5354
web.start_label=Punt d'inici
5455
web.intermediate_label=Punt intermig
5556
web.end_label=Punt final

core/src/main/resources/com/graphhopper/util/cs_CZ.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ roundabout_exit=Na kruhovém objezdu použijte %1$s. výjezd
5050
roundabout_exit_onto=Na kruhovém objezdu použijte %1$s. výjezd, směrem na %2$s
5151
total_ascend=Celkové stoupání %1$s
5252
total_descend=Celkové klesání %1$s
53+
way_contains_ford=
5354
web.start_label=Start
5455
web.intermediate_label=Zastávka
5556
web.end_label=Cíl

core/src/main/resources/com/graphhopper/util/da_DK.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ roundabout_exit=I rundkørslen, tag udkørsel %1$s
5050
roundabout_exit_onto=I rundskørslen, ta udkørsel %1$s ind på %2$s
5151
total_ascend=
5252
total_descend=
53+
way_contains_ford=
5354
web.start_label=
5455
web.intermediate_label=
5556
web.end_label=

core/src/main/resources/com/graphhopper/util/de_DE.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ roundabout_exit=Im Kreisverkehr Ausfahrt %1$s nehmen
5050
roundabout_exit_onto=Im Kreisverkehr Ausfahrt %1$s auf %2$s nehmen
5151
total_ascend=%1$s Gesamtaufstieg
5252
total_descend=%1$s Gesamtabstieg
53+
way_contains_ford=es liegt eine Furt auf dem Weg
5354
web.start_label=Start
5455
web.intermediate_label=Zwischenziel
5556
web.end_label=Ziel

core/src/main/resources/com/graphhopper/util/el.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ roundabout_exit=Στον κυκλικό κόμβο βγείτε στην έξο
5050
roundabout_exit_onto=Στον κυκλικό κόμβο βγείτε στην έξοδο %1$s στην %2$s
5151
total_ascend=%1$s συνολική ανάβαση
5252
total_descend=%1$s συνολική κατάβαση
53+
way_contains_ford=
5354
web.start_label=Αφετηρία
5455
web.intermediate_label=Ενδιάμεσο σημείο
5556
web.end_label=Προορισμός

core/src/main/resources/com/graphhopper/util/en_US.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ roundabout_exit=At roundabout, take exit %1$s
5050
roundabout_exit_onto=At roundabout, take exit %1$s onto %2$s
5151
total_ascend=%1$s total ascend
5252
total_descend=%1$s total descend
53+
way_contains_ford=there is ford along the way
5354
web.start_label=Start
5455
web.intermediate_label=Intermediate
5556
web.end_label=End

core/src/main/resources/com/graphhopper/util/es.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ roundabout_exit=En la rotonda, toma la %1$sª salida
5050
roundabout_exit_onto=En la rotonda, toma la %1$sª salida hacia %2$s
5151
total_ascend=Ascender %1$s en total
5252
total_descend=Descender %1$s en total
53+
way_contains_ford=
5354
web.start_label=Punto de partida
5455
web.intermediate_label=Punto intermedio
5556
web.end_label=Punto de finalización

core/src/main/resources/com/graphhopper/util/fa.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ roundabout_exit=در میدان خروجی %1$s را انتخاب کنید
5050
roundabout_exit_onto=در میدان خروجی %1$s به %2$s را انتخاب کنید
5151
total_ascend=
5252
total_descend=
53+
way_contains_ford=
5354
web.start_label=
5455
web.intermediate_label=
5556
web.end_label=

core/src/main/resources/com/graphhopper/util/fi.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ roundabout_exit=Liikenneympyrästä poistu %1$s. liittymästä
5050
roundabout_exit_onto=Liikenneympyrästä poistu %1$s. liittymästä suuntaan %2$s
5151
total_ascend=
5252
total_descend=
53+
way_contains_ford=
5354
web.start_label=
5455
web.intermediate_label=
5556
web.end_label=

core/src/main/resources/com/graphhopper/util/fil.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ roundabout_exit=Sa rotonda, lumabas sa exit %1$s
5050
roundabout_exit_onto=Sa rotonda, lumabas sa exit papunta %1$s %2$s
5151
total_ascend=
5252
total_descend=
53+
way_contains_ford=
5354
web.start_label=
5455
web.intermediate_label=
5556
web.end_label=

core/src/main/resources/com/graphhopper/util/fr_CH.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ roundabout_exit=Au giratoire, prenez la %1$s sortie
5050
roundabout_exit_onto=Au giratoire, prenez la %1$s sortie vers %2$s
5151
total_ascend=%1$s de dénivelé positif
5252
total_descend=%1$s de dénivelé négatif
53+
way_contains_ford=
5354
web.start_label=Départ
5455
web.intermediate_label=Point intermédiaire
5556
web.end_label=Arrivée

core/src/main/resources/com/graphhopper/util/fr_FR.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ roundabout_exit=Au rond-point, prenez la %1$s sortie
5050
roundabout_exit_onto=Au rond-point, prenez la %1$s sortie vers %2$s
5151
total_ascend=%1$s de dénivelé positif
5252
total_descend=%1$s de dénivelé négatif
53+
way_contains_ford=
5354
web.start_label=Départ
5455
web.intermediate_label=Point intermédiaire
5556
web.end_label=Arrivée

core/src/main/resources/com/graphhopper/util/gl.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ roundabout_exit=Na rotonda tome a saída %1$s
5050
roundabout_exit_onto=Na rotonda, tome a saída %1$s cara %2$s
5151
total_ascend=
5252
total_descend=
53+
way_contains_ford=
5354
web.start_label=
5455
web.intermediate_label=
5556
web.end_label=

core/src/main/resources/com/graphhopper/util/he.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ roundabout_exit=בכיכר, יש לצאת ביציאה %1$s
5050
roundabout_exit_onto=בכיכר, יש לצאת ביציאה %1$s לתוך %2$s
5151
total_ascend=עלייה כוללת של %1$s
5252
total_descend=ירידה כוללת של %1$s
53+
way_contains_ford=
5354
web.start_label=התחלה
5455
web.intermediate_label=אמצע
5556
web.end_label=סוף

core/src/main/resources/com/graphhopper/util/hr_HR.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ roundabout_exit=Sa kružnog toka izađite na izlaz %1$s
5050
roundabout_exit_onto=Sa kružnog toka izađite na izlaz %1$s na %2$s
5151
total_ascend=%1$s ukupni uspon
5252
total_descend=
53+
way_contains_ford=
5354
web.start_label=Početak
5455
web.intermediate_label=Posrednik
5556
web.end_label=Kraj

core/src/main/resources/com/graphhopper/util/hsb.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ roundabout_exit=we kružnym wobchadźe %1$s. wujězd wzać
5050
roundabout_exit_onto=we kružnym wobchadźe %1$s. wujězd na %2$s wzać
5151
total_ascend=
5252
total_descend=
53+
way_contains_ford=
5354
web.start_label=
5455
web.intermediate_label=
5556
web.end_label=

core/src/main/resources/com/graphhopper/util/hu_HU.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ roundabout_exit=Hagyja el a körförgalmat, kihajtó %1$s
5050
roundabout_exit_onto=Hagyja el a körförgalmat, kihajtó %1$s, aztán hajtson rá %2$s
5151
total_ascend=
5252
total_descend=
53+
way_contains_ford=
5354
web.start_label=
5455
web.intermediate_label=
5556
web.end_label=

core/src/main/resources/com/graphhopper/util/it.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ roundabout_exit=Nella rotatoria, prendere l'uscita %1$s
5050
roundabout_exit_onto=Nella rotatoria, prendere l'uscita %1$s su %2$s
5151
total_ascend=%1$s di dislivello positivo
5252
total_descend=%1$s di dislivello negativo
53+
way_contains_ford=
5354
web.start_label=Partenza
5455
web.intermediate_label=Punto intermedio
5556
web.end_label=Arrivo

core/src/main/resources/com/graphhopper/util/ja.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ roundabout_exit=円形交差点の出口%1$sへ
5050
roundabout_exit_onto=円形交差点の出口%1$sから%2$sへ
5151
total_ascend=
5252
total_descend=
53+
way_contains_ford=
5354
web.start_label=
5455
web.intermediate_label=
5556
web.end_label=

core/src/main/resources/com/graphhopper/util/ko.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ roundabout_exit=로터리에서 %1$s 진출
5050
roundabout_exit_onto=로터리에서 %1$s 진출 후 %2$s 이동
5151
total_ascend=%1$s 오르막길
5252
total_descend=%1$s 내리막길
53+
way_contains_ford=
5354
web.start_label=출발
5455
web.intermediate_label=경유
5556
web.end_label=도착

core/src/main/resources/com/graphhopper/util/lt_LT.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ roundabout_exit=Žiede išvažiuokite %1$s išvažiavime
5050
roundabout_exit_onto=Žiede išvažiuokite %1$s išvažiavime į %2$s
5151
total_ascend=
5252
total_descend=
53+
way_contains_ford=
5354
web.start_label=
5455
web.intermediate_label=
5556
web.end_label=

core/src/main/resources/com/graphhopper/util/ne.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ roundabout_exit=घुम्तीमा %1$s नम्बर को मोड
5050
roundabout_exit_onto=घुम्तीमा %1$s नम्बर को मोडबाट निस्केर %2$s मा जानुहोस
5151
total_ascend=
5252
total_descend=
53+
way_contains_ford=
5354
web.start_label=
5455
web.intermediate_label=
5556
web.end_label=

core/src/main/resources/com/graphhopper/util/nl.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ roundabout_exit=neem afslag %1$s op de rotonde
5050
roundabout_exit_onto=neem afslag %1$s naar %2$s op de rotonde
5151
total_ascend=
5252
total_descend=
53+
way_contains_ford=
5354
web.start_label=
5455
web.intermediate_label=
5556
web.end_label=

core/src/main/resources/com/graphhopper/util/pl_PL.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ roundabout_exit=Zjedź z ronda %1$s zjazdem
5050
roundabout_exit_onto=Zjedź z ronda %1$s zjazdem na %2$s
5151
total_ascend=
5252
total_descend=
53+
way_contains_ford=
5354
web.start_label=
5455
web.intermediate_label=
5556
web.end_label=

core/src/main/resources/com/graphhopper/util/pt_BR.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ roundabout_exit=Na rotatória, saia na %1$s saída
5050
roundabout_exit_onto=Na rotatória, saia na %1$s saida em direção a %2$s
5151
total_ascend=subida de %1$s
5252
total_descend=descida de %1$s
53+
way_contains_ford=
5354
web.start_label=Inicio
5455
web.intermediate_label=Intermediário
5556
web.end_label=Fim

core/src/main/resources/com/graphhopper/util/pt_PT.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ roundabout_exit=Na rotunda, saia na %1$s saída
5050
roundabout_exit_onto=Na rotunda, saia na %1$s saida em direção a %2$s
5151
total_ascend=
5252
total_descend=
53+
way_contains_ford=
5354
web.start_label=
5455
web.intermediate_label=
5556
web.end_label=

core/src/main/resources/com/graphhopper/util/ro.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ roundabout_exit=În sensul giratoriu folosiți ieșirea %1$s
5050
roundabout_exit_onto=În sensul giratoriu folosiți ieșirea %1$s către %2$s
5151
total_ascend=urcare %1$s
5252
total_descend=coborâre %1$s
53+
way_contains_ford=
5354
web.start_label=Pornire
5455
web.intermediate_label=Intermediar
5556
web.end_label=Sfârșit

core/src/main/resources/com/graphhopper/util/ru.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ roundabout_exit=У кольца используйте съезд %1$s
5050
roundabout_exit_onto=У кольца используйте съезд %1$s на %2$s
5151
total_ascend=подъём на %1$s
5252
total_descend=спуск на %1$s
53+
way_contains_ford=
5354
web.start_label=Начало
5455
web.intermediate_label=Промежуточная точка
5556
web.end_label=Конец

core/src/main/resources/com/graphhopper/util/sk.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ roundabout_exit=Na kruhovom objazde, ho opustite cez %1$s. výjazd
5050
roundabout_exit_onto=Na kruhovom objazde, ho opustite cez %1$s. výjazd na %2$s
5151
total_ascend=%1$s celkové stúpanie
5252
total_descend=%1$s celkové klesanie
53+
way_contains_ford=
5354
web.start_label=Začiatok
5455
web.intermediate_label=Bod trasy
5556
web.end_label=Koniec

core/src/main/resources/com/graphhopper/util/sl_SI.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ roundabout_exit=V krožišču izberite izhod %1$s
5050
roundabout_exit_onto=V krožišču izberite izhod %1$s na %2$s
5151
total_ascend=Skupni vzpon: %1$s
5252
total_descend=Skupni spust: %1$s
53+
way_contains_ford=
5354
web.start_label=Začetna točka
5455
web.intermediate_label=Vmesna točka
5556
web.end_label=Končna točka

core/src/main/resources/com/graphhopper/util/sv_SE.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ roundabout_exit=I rondellen, ta avfart %1$s
5050
roundabout_exit_onto=I rondellen, ta avfart %1$s in på %2$s
5151
total_ascend=
5252
total_descend=
53+
way_contains_ford=
5354
web.start_label=
5455
web.intermediate_label=
5556
web.end_label=

core/src/main/resources/com/graphhopper/util/tr.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ roundabout_exit=kavşaktan %1$s cıkışa gir
5050
roundabout_exit_onto=kavşaktan %1$s cıkıştan %2$s sokağa gir
5151
total_ascend=
5252
total_descend=
53+
way_contains_ford=
5354
web.start_label=
5455
web.intermediate_label=
5556
web.end_label=

core/src/main/resources/com/graphhopper/util/uk.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ roundabout_exit=На кільці використовуйте з’їзд %1$s
5050
roundabout_exit_onto=На кільці використовуйте з’їзд %1$s на %2$s
5151
total_ascend=%1$s загалом підйому
5252
total_descend=%1$s загалом спуску
53+
way_contains_ford=
5354
web.start_label=Початок
5455
web.intermediate_label=Проміжна точка
5556
web.end_label=Кінець

core/src/main/resources/com/graphhopper/util/vi_VI.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ roundabout_exit=Tại vòng xoay, rẽ lối rẽ %1$s
5050
roundabout_exit_onto=Tại vòng xoay, rẽ lối rẽ %1$s vào đường %2$s
5151
total_ascend=Đi tiếp %1$s nữa
5252
total_descend=
53+
way_contains_ford=
5354
web.start_label=
5455
web.intermediate_label=
5556
web.end_label=

core/src/main/resources/com/graphhopper/util/zh_CN.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ roundabout_exit=在环岛内,使用%1$s出口出环岛
5050
roundabout_exit_onto=在环岛内,使用%1$s出口出环岛,进入%2$s
5151
total_ascend=
5252
total_descend=
53+
way_contains_ford=
5354
web.start_label=
5455
web.intermediate_label=
5556
web.end_label=

0 commit comments

Comments
 (0)