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 <matkoniecz@gmail.com>

Signed-off-by: Mateusz Konieczny <matkoniecz@gmail.com>
This commit is contained in:
Mateusz Konieczny 2024-11-21 07:13:02 +01:00 committed by Konstantin Pastbin
parent 72ca71d956
commit 0351898147

View file

@ -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)