Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVladimir Byko-Ianko <v.bykoianko@corp.mail.ru>2018-12-26 13:08:51 +0300
committerVlad Mihaylenko <vxmihaylenko@gmail.com>2018-12-29 16:15:43 +0300
commitfb740ca33225b3e8d49ec38397e0204ad5312a35 (patch)
tree330170d83ac5b1817fa8894a1f1168454c093be4 /routing_common
parent50d57aa2e4417261a2c9f5bc8c178368a9ab2f13 (diff)
[routing] ETA fix in Geormany and other places with maxspeed=none.
Diffstat (limited to 'routing_common')
-rw-r--r--routing_common/maxspeed_conversion.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/routing_common/maxspeed_conversion.cpp b/routing_common/maxspeed_conversion.cpp
index 23f7ec5906..0a8529afa8 100644
--- a/routing_common/maxspeed_conversion.cpp
+++ b/routing_common/maxspeed_conversion.cpp
@@ -46,7 +46,7 @@ uint16_t Maxspeed::GetSpeedInUnits(bool forward) const
uint16_t Maxspeed::GetSpeedKmPH(bool forward) const
{
- uint16_t constexpr kNoneSpeedLimitKmPH = 1000;
+ uint16_t constexpr kNoneSpeedLimitKmPH = 150;
uint16_t constexpr kWalkSpeedLimitKmPH = 6;
auto speedInUnits = GetSpeedInUnits(forward);