diff --git a/routing/routing_integration_tests/turn_test.cpp b/routing/routing_integration_tests/turn_test.cpp index e154b210ae..a8dc973243 100644 --- a/routing/routing_integration_tests/turn_test.cpp +++ b/routing/routing_integration_tests/turn_test.cpp @@ -1296,6 +1296,20 @@ UNIT_TEST(Cyprus_A1_A5_TurnTestNextRoad) TEST_EQUAL(ri.m_destination_ref, "A5", ()); } +UNIT_TEST(Zurich_UseMainTurn) +{ + TRouteResult const routeResult = + integration::CalculateRoute(integration::GetVehicleComponents(VehicleType::Car), + mercator::FromLatLon(47.364832, 8.5656975), {0., 0.}, + mercator::FromLatLon(47.3640678, 8.56567312)); + + Route const & route = *routeResult.first; + RouterResultCode const result = routeResult.second; + TEST_EQUAL(result, RouterResultCode::NoError, ()); + integration::TestTurnCount(route, 1); + integration::TestRouteLength(route, 135.573); +} + namespace { template void TestNoTurns(ContT const & cont) diff --git a/routing_common/car_model_coefs.hpp b/routing_common/car_model_coefs.hpp index 6f4f3c1e1e..04b85014e6 100644 --- a/routing_common/car_model_coefs.hpp +++ b/routing_common/car_model_coefs.hpp @@ -35,8 +35,8 @@ HighwayBasedFactors const kHighwayBasedFactors = { // By VNG: Changed 0.3 -> 0.95 for Road and 0.3 -> 1.0 for Track. // They are already have very small speeds (10, 5 respectively). // There are no (99%) traffic lights or pedestrian crossings on this kind of roads. - {HighwayType::HighwayService, InOutCityFactor(0.80)}, - {HighwayType::HighwayRoad, InOutCityFactor(0.95)}, + {HighwayType::HighwayService, InOutCityFactor(0.70)}, + {HighwayType::HighwayRoad, InOutCityFactor(0.90)}, {HighwayType::HighwayTrack, InOutCityFactor(1.0)}, {HighwayType::ManMadePier, InOutCityFactor(0.90)},