From be9729341b1fa8f87677c23adff5045f33eb7999 Mon Sep 17 00:00:00 2001 From: Viktor Govako Date: Sun, 13 Mar 2022 23:57:54 +0300 Subject: [PATCH] [routing] Fixed undefined HighwayType. Signed-off-by: Viktor Govako --- generator/maxspeeds_builder.cpp | 37 +++++++++++-------- routing/geometry.hpp | 2 +- routing_common/vehicle_model.cpp | 1 + .../track_analyzer/crossroad_checker.cpp | 12 +++--- 4 files changed, 30 insertions(+), 22 deletions(-) diff --git a/generator/maxspeeds_builder.cpp b/generator/maxspeeds_builder.cpp index b41cd28343..0cab289543 100644 --- a/generator/maxspeeds_builder.cpp +++ b/generator/maxspeeds_builder.cpp @@ -129,11 +129,11 @@ public: if (!maxSpeed) return; - auto const osmid = GetOsmID(fid).GetSerialId(); + auto const osmID = GetOsmID(fid).GetSerialId(); #define LOG_MAX_SPEED(msg) if (false) LOG(LINFO, msg) - LOG_MAX_SPEED(("Start osmid =", osmid)); + LOG_MAX_SPEED(("Start osmid =", osmID)); // Recalculate link speed according to the ingoing highway. // See MaxspeedsCollector::CollectFeature. @@ -186,7 +186,7 @@ public: maxSpeed->SetUnits(s->GetUnits()); maxSpeed->SetForward(speed.GetSpeed()); - LOG(LINFO, ("Updated link speed for way", osmid, "with", *maxSpeed)); + LOG(LINFO, ("Updated link speed for way", osmID, "with", *maxSpeed)); break; } else if (s->GetForward() == routing::kCommonMaxSpeedValue && @@ -208,18 +208,18 @@ public: if (status == 0) { - LOG(LWARNING, ("Didn't find connected edge with speed for way", osmid)); + LOG(LWARNING, ("Didn't find connected edge with speed for way", osmID)); return; } } - LOG_MAX_SPEED(("End osmid =", osmid)); + LOG_MAX_SPEED(("End osmid =", osmID)); - AddSpeed(fid, *maxSpeed); + AddSpeed(fid, osmID, *maxSpeed); }); } - void AddSpeed(uint32_t featureID, Maxspeed const & speed) + void AddSpeed(uint32_t featureID, uint64_t osmID, Maxspeed const & speed) { // Add converted macro speed. SpeedInUnits const forward(speed.GetForward(), speed.GetUnits()); @@ -232,12 +232,12 @@ public: if (ftSpeed.m_forward == SpeedMacro::Undefined) { - LOG(LWARNING, ("Undefined macro for forward speed", forward, "in", GetOsmID(featureID))); + LOG(LWARNING, ("Undefined forward speed macro", forward, "for way", osmID)); return; } if (backward.IsValid() && backwardMacro == SpeedMacro::Undefined) { - LOG(LWARNING, ("Undefined macro for backward speed", backward, "in", GetOsmID(featureID))); + LOG(LWARNING, ("Undefined backward speed macro", backward, "for way", osmID)); } m_maxspeeds.push_back(ftSpeed); @@ -248,17 +248,24 @@ public: // Update average speed information. auto const & rd = GetRoad(featureID); - auto & info = m_avgSpeeds[rd.GetHighwayType()]; - double const lenKM = rd.GetRoadLengthM() / 1000.0; - for (auto const & s : { forward, backward }) + auto const hwType = rd.GetHighwayType(); + if (hwType) { - if (s.IsNumeric()) + auto & info = m_avgSpeeds[*hwType]; + + double const lenKM = rd.GetRoadLengthM() / 1000.0; + for (auto const & s : { forward, backward }) { - info.m_lengthKM += lenKM; - info.m_timeH += lenKM / s.GetSpeedKmPH(); + if (s.IsNumeric()) + { + info.m_lengthKM += lenKM; + info.m_timeH += lenKM / s.GetSpeedKmPH(); + } } } + else + LOG(LINFO, ("Undefined HighwayType for way", osmID)); } void SerializeMaxspeeds() const diff --git a/routing/geometry.hpp b/routing/geometry.hpp index edad1025e5..c8b42ce114 100644 --- a/routing/geometry.hpp +++ b/routing/geometry.hpp @@ -44,7 +44,7 @@ public: bool IsOneWay() const { return m_isOneWay; } SpeedKMpH const & GetSpeed(bool forward) const; - HighwayType GetHighwayType() const { return *m_highwayType; } + std::optional GetHighwayType() const { return m_highwayType; } bool IsPassThroughAllowed() const { return m_isPassThroughAllowed; } LatLonWithAltitude const & GetJunction(uint32_t junctionId) const diff --git a/routing_common/vehicle_model.cpp b/routing_common/vehicle_model.cpp index 10347a573a..2a9d1f8c28 100644 --- a/routing_common/vehicle_model.cpp +++ b/routing_common/vehicle_model.cpp @@ -126,6 +126,7 @@ std::optional VehicleModel::GetHighwayType(FeatureType & f) const return static_cast(classif().GetIndexForType(t)); } + // For example Denmark has "No track" profile (see kCarOptionsDenmark), but tracks exist in MWM. return {}; } diff --git a/track_analyzing/track_analyzer/crossroad_checker.cpp b/track_analyzing/track_analyzer/crossroad_checker.cpp index 3aa17c7d5f..5866194669 100644 --- a/track_analyzing/track_analyzer/crossroad_checker.cpp +++ b/track_analyzing/track_analyzer/crossroad_checker.cpp @@ -86,10 +86,10 @@ IsCrossroadChecker::Type IsCrossroadChecker::operator()(Segment const & current, if (jointId == Joint::kInvalidId) return Type::Count; - bool const isCurrentLink = IsHighwayLink(currentSegmentHwType); - bool const isNextLink = IsHighwayLink(nextSegmentHwType); - bool const isCurrentBig = IsBigHighway(currentSegmentHwType); - bool const isNextBig = IsBigHighway(nextSegmentHwType); + bool const isCurrentLink = IsHighwayLink(*currentSegmentHwType); + bool const isNextLink = IsHighwayLink(*nextSegmentHwType); + bool const isCurrentBig = IsBigHighway(*currentSegmentHwType); + bool const isNextBig = IsBigHighway(*nextSegmentHwType); if (currentSegmentFeatureId != nextSegmentFeatureId && currentSegmentHwType != nextSegmentHwType) { @@ -136,13 +136,13 @@ IsCrossroadChecker::Type IsCrossroadChecker::operator()(Segment const & current, } } - if (isCurrentLink && IsBigHighway(pointHwType)) + if (isCurrentLink && IsBigHighway(*pointHwType)) { retType = Type::IntersectionWithBig; return; } - if (FromSmallerToBigger(currentSegmentHwType, pointHwType)) + if (FromSmallerToBigger(*currentSegmentHwType, *pointHwType)) { retType = Type::IntersectionWithBig; return;