forked from organicmaps/organicmaps-tmp
[OpenLR] Bugfix. Crash on one-edged route.
This commit is contained in:
parent
25be811a83
commit
54259598ee
2 changed files with 6 additions and 5 deletions
|
@ -86,11 +86,9 @@ private:
|
|||
bool HasFakeEndings() const { return m_path && m_path->m_hasFake; }
|
||||
|
||||
LinkPtr m_path = nullptr;
|
||||
uint32_t m_bearingDiff = std::numeric_limits<uint32_t>::max(); // Domain is roughly [0, 30]
|
||||
double m_pathDistanceDiff =
|
||||
std::numeric_limits<uint32_t>::max(); // Domain is roughly [0, 25]
|
||||
double m_startPointDistance =
|
||||
std::numeric_limits<uint32_t>::max(); // Domain is roughly [0, 50]
|
||||
uint32_t m_bearingDiff = std::numeric_limits<uint32_t>::max(); // Domain is roughly [0, 30]
|
||||
double m_pathDistanceDiff = std::numeric_limits<double>::max(); // Domain is roughly [0, 25]
|
||||
double m_startPointDistance = std::numeric_limits<double>::max(); // Domain is roughly [0, 50]
|
||||
};
|
||||
|
||||
// Note: In all methods below if |isLastPoint| is true than algorithm should
|
||||
|
|
|
@ -124,6 +124,8 @@ void ExpandFakes(Index const & index, Graph & g, Graph::EdgeVector & path)
|
|||
ASSERT(!path.empty(), ());
|
||||
|
||||
ExpandFake(path, begin(path), index, g);
|
||||
if (path.empty())
|
||||
return;
|
||||
ExpandFake(path, --end(path), index, g);
|
||||
}
|
||||
|
||||
|
@ -365,6 +367,7 @@ bool OpenLRDecoder::DecodeSingleSegment(LinearSegment const & segment, Index con
|
|||
path.m_segmentId.Set(segment.m_segmentId);
|
||||
|
||||
auto const & points = segment.GetLRPs();
|
||||
CHECK_GREATER(points.size(), 1, ("A segment cannot consist of less than two points"));
|
||||
vector<vector<Graph::EdgeVector>> lineCandidates;
|
||||
lineCandidates.reserve(points.size());
|
||||
LOG(LDEBUG, ("Decoding segment:", segment.m_segmentId, "with", points.size(), "points"));
|
||||
|
|
Loading…
Add table
Reference in a new issue