From 0351898147f8199ad078d452f097c804cea0d44b Mon Sep 17 00:00:00 2001 From: Mateusz Konieczny Date: Thu, 21 Nov 2024 07:13:02 +0100 Subject: [PATCH] clarify meaning of route parameters see https://github.com/organicmaps/organicmaps/pull/9692#pullrequestreview-2447577894 as a newbie in this code I was unsure what is the meaning of these parameters Signed-off-by: Mateusz Konieczny Signed-off-by: Mateusz Konieczny --- routing_common/vehicle_model.hpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/routing_common/vehicle_model.hpp b/routing_common/vehicle_model.hpp index 0153e8d316..4394788021 100644 --- a/routing_common/vehicle_model.hpp +++ b/routing_common/vehicle_model.hpp @@ -105,8 +105,9 @@ struct SpeedKMpH bool IsValid() const { return m_weight > 0 && m_eta > 0; } - double m_weight = 0.0; // KMpH - double m_eta = 0.0; // KMpH + double m_weight = 0.0; // KMpH - speed in km/h adjusted for desirability + // cycling on very large road may be fast but speed used for route finding will be treated as much lower + double m_eta = 0.0; // KMpH - actual expected speed in km/h, used to display expected arrival time }; /// \brief Factors which modify weight and ETA speed on feature in case of bad pavement (reduce)