From e6c18942cef87fb4c7ed42e7d906dce4586b65a3 Mon Sep 17 00:00:00 2001 From: Vladimir Byko-Ianko Date: Fri, 8 Jun 2018 11:14:56 +0300 Subject: [PATCH] Increasing pedestrian part for transit route to 50 minutes and 7 minutes per one km. --- routing/transit_world_graph.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/routing/transit_world_graph.hpp b/routing/transit_world_graph.hpp index 3e1df89e64..4e59c37315 100644 --- a/routing/transit_world_graph.hpp +++ b/routing/transit_world_graph.hpp @@ -66,9 +66,9 @@ private: static double MaxPedestrianTimeSec(double startToFinishDistanceM) { - // @todo(tatiana-kondakova) test and adjust constants. - // 25 min + 3 additional minutes per 1 km for now. - return 25 * 60 + (startToFinishDistanceM / 1000) * 3 * 60; + // @todo(bykoianko) test and adjust constants. + // 50 min + 3 additional minutes per 1 km for now. + return 50 * 60 + (startToFinishDistanceM / 1000) * 3 * 60; } RoadGeometry const & GetRealRoadGeometry(NumMwmId mwmId, uint32_t featureId);