From 72aacffa5b7295e397bff2cb66f47122b2e03950 Mon Sep 17 00:00:00 2001 From: sonora Date: Mon, 7 Sep 2015 10:41:46 +0200 Subject: [PATCH] fine tune lead time --- OsmAnd/src/net/osmand/plus/routing/VoiceRouter.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/OsmAnd/src/net/osmand/plus/routing/VoiceRouter.java b/OsmAnd/src/net/osmand/plus/routing/VoiceRouter.java index d1d6ca2a0c..0b1a5cdf8a 100644 --- a/OsmAnd/src/net/osmand/plus/routing/VoiceRouter.java +++ b/OsmAnd/src/net/osmand/plus/routing/VoiceRouter.java @@ -128,7 +128,7 @@ public class VoiceRouter { PREPARE_DISTANCE = 1500; // [125 sec] PREPARE_DISTANCE_END = 1200; // [100 sec] TURN_IN_DISTANCE = 300; // 23 sec - TURN_IN_DISTANCE_END = 195; // 15 sec + TURN_IN_DISTANCE_END = 210; // 16 sec TURN_DISTANCE = 50; // 7 sec TURN_DEFAULT_SPEED = 7f; // 25 km/h DEFAULT_SPEED = 13; // 48 km/h @@ -164,7 +164,7 @@ public class VoiceRouter { PREPARE_DISTANCE = (int) (DEFAULT_SPEED * 115); PREPARE_DISTANCE_END = (int) (DEFAULT_SPEED * 92); TURN_IN_DISTANCE = (int) (DEFAULT_SPEED * 23); - TURN_IN_DISTANCE_END = (int) (DEFAULT_SPEED * 15); + TURN_IN_DISTANCE_END = (int) (DEFAULT_SPEED * 16); TURN_DISTANCE = (int) (DEFAULT_SPEED * 7); } }