[routing] ETA fix in Geormany and other places with maxspeed=none.

This commit is contained in:
Vladimir Byko-Ianko 2018-12-26 13:08:51 +03:00 committed by Vlad Mihaylenko
parent 50d57aa2e4
commit fb740ca332

View file

@ -46,7 +46,7 @@ uint16_t Maxspeed::GetSpeedInUnits(bool forward) const
uint16_t Maxspeed::GetSpeedKmPH(bool forward) const
{
uint16_t constexpr kNoneSpeedLimitKmPH = 1000;
uint16_t constexpr kNoneSpeedLimitKmPH = 150;
uint16_t constexpr kWalkSpeedLimitKmPH = 6;
auto speedInUnits = GetSpeedInUnits(forward);