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-09-26 19:01:18 +0300
committerVlad Mihaylenko <vxmihaylenko@gmail.com>2018-09-28 11:54:01 +0300
commit45c863ad7fb8c3dc82b4d054f748f4484a27f53f (patch)
treec81a62b4b46ce72174cc882cfaa855093f920af8 /routing_common
parent0d56bdf27aa010e83c28627541d6296b225a9e05 (diff)
More routing quality tests and some factor updates.
Diffstat (limited to 'routing_common')
-rw-r--r--routing_common/car_model.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/routing_common/car_model.cpp b/routing_common/car_model.cpp
index d706147ce6..1aa3d1c686 100644
--- a/routing_common/car_model.cpp
+++ b/routing_common/car_model.cpp
@@ -23,9 +23,9 @@ using SpeedKMpH = VehicleModel::SpeedKMpH;
// in city out city
InOutCitySpeedKMpH const kSpeedMotorwayKMpH(SpeedKMpH(115.37), SpeedKMpH(115.37));
InOutCitySpeedKMpH const kSpeedMotorwayLinkKMpH(SpeedKMpH(60.0), SpeedKMpH(60.0));
-InOutCitySpeedKMpH const kSpeedTrunkKMpH(SpeedKMpH(80.0), SpeedKMpH(93.89));
+InOutCitySpeedKMpH const kSpeedTrunkKMpH(SpeedKMpH(80.0), SpeedKMpH(100.0));
InOutCitySpeedKMpH const kSpeedTrunkLinkKMpH(SpeedKMpH(50.0), SpeedKMpH(50.0));
-InOutCitySpeedKMpH const kSpeedPrimaryKMpH(SpeedKMpH(60.0), SpeedKMpH(84.29));
+InOutCitySpeedKMpH const kSpeedPrimaryKMpH(SpeedKMpH(60.0), SpeedKMpH(90.0));
InOutCitySpeedKMpH const kSpeedPrimaryLinkKMpH(SpeedKMpH(30.0), SpeedKMpH(60.0));
InOutCitySpeedKMpH const kSpeedSecondaryKMpH(SpeedKMpH(45.0), SpeedKMpH(72.23));
InOutCitySpeedKMpH const kSpeedSecondaryLinkKMpH(SpeedKMpH(25.0), SpeedKMpH(50.0));