[Routing] Fixes: #2422 + GetTurnDirection() refactoring #2427
Labels
No labels
Accessibility
Accessibility
Address
Address
Android
Android
Android Auto
Android Auto
Android Automotive (AAOS)
Android Automotive (AAOS)
API
API
AppGallery
AppGallery
AppStore
AppStore
Battery and Performance
Battery and Performance
Blocker
Blocker
Bookmarks and Tracks
Bookmarks and Tracks
Borders
Borders
Bug
Bug
Build
Build
CarPlay
CarPlay
Classificator
Classificator
Community
Community
Core
Core
CrashReports
CrashReports
Cycling
Cycling
Desktop
Desktop
DevEx
DevEx
DevOps
DevOps
dev_sandbox
dev_sandbox
Directions
Directions
Documentation
Documentation
Downloader
Downloader
Drape
Drape
Driving
Driving
Duplicate
Duplicate
Editor
Editor
Elevation
Elevation
Enhancement
Enhancement
Epic
Epic
External Map Datasets
External Map Datasets
F-Droid
F-Droid
Fonts
Fonts
Frequently User Reported
Frequently User Reported
Fund
Fund
Generator
Generator
Good first issue
Good first issue
Google Play
Google Play
GPS
GPS
GSoC
GSoC
iCloud
iCloud
Icons
Icons
iOS
iOS
Legal
Legal
Linux Desktop
Linux Desktop
Linux packaging
Linux packaging
Linux Phone
Linux Phone
Mac OS
Mac OS
Map Data
Map Data
Metro
Metro
Navigation
Navigation
Need Feedback
Need Feedback
Night Mode
Night Mode
NLnet 2024-06-281
NLnet 2024-06-281
No Feature Parity
No Feature Parity
Opening Hours
Opening Hours
Outdoors
Outdoors
POI Info
POI Info
Privacy
Privacy
Public Transport
Public Transport
Raw Idea
Raw Idea
Refactoring
Refactoring
Regional
Regional
Regression
Regression
Releases
Releases
RoboTest
RoboTest
Route Planning
Route Planning
Routing
Routing
Ruler
Ruler
Search
Search
Security
Security
Styles
Styles
Tests
Tests
Track Recording
Track Recording
Translations
Translations
TTS
TTS
UI
UI
UX
UX
Walk Navigation
Walk Navigation
Watches
Watches
Web
Web
Wikipedia
Wikipedia
Windows
Windows
Won't fix
Won't fix
World Map
World Map
No milestone
No project
No assignees
1 participant
Due date
No due date set.
Dependencies
No dependencies set.
Reference: organicmaps/organicmaps-tmp#2427
Loading…
Add table
Reference in a new issue
No description provided.
Delete branch "navigation-turn-directions-2422"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Currently GetTurnDirection() is overcomplicated.
This is an attempt to make it more straightforward.
Also some bugs were found and fixed.
Full list nodes.candidates was used in many cases
but uturn had to be excluded.
The issue #2422 was expected to be handled even twice:
are not links and all other possible ways out are links.
the route goes along the rightmost candidate.
But both failed because of mentioned nodes.candidates problem.
Хотелось бы ещё больше комментариев там, где их нет )
@ -197,19 +197,26 @@ bool DiscardTurnByHighwayClass(TurnCandidates const & possibleTurns, TurnInfo co
}
/// * \returns false when
/// * for routes which go straight and don't go to a smaller road:
Надо соблюдать наше текущее соглашение о форматировании.
@ -208,3 +213,4 @@
TurnInfo const & turnInfo,
NumMwmIds const & numMwmIds)
{
double constexpr kMaxAbsAngleSameRoadClass = 70.0;
Это можно в одну строку вместо двух, и точку в конце.
@ -1155,0 +1143,4 @@
if (turnInfo.m_ingoing.m_onRoundabout || turnInfo.m_outgoing.m_onRoundabout)
{
bool const keepTurnByHighwayClass = KeepRoundaboutTurnByHighwayClass(nodes, turnInfo, numMwmIds);
turn.m_turn = GetRoundaboutDirection(turnInfo.m_ingoing.m_onRoundabout,
Тогда уже и hasMultiTurns на отдельную строку.
Не надо тут переносить на новую строку.
@ -1205,3 +1168,3 @@
if (!turn.m_keepAnyway && IsGoStraightOrSlightTurn(turn.m_turn) && nodes.candidates.size() != 1)
if (!turn.m_keepAnyway && IsGoStraightOrSlightTurn(turn.m_turn))
{
if (DiscardTurnByHighwayClass(nodes, turnInfo, numMwmIds, turn.m_turn) ||
Почему это условие должно выполняться? Надо комментарий в пустых скобках.
А по сути — зачем здесь создавать копию nodes.candidates? Если нужно модифицировать, то нужна ссылка:
auto & candidates_without_uturn = nodes.candidates;
Если часто нужно удалять первый элемент вектора, то имеет смысл использовать не вектор, а другую структуру данных, list или deque. @vng что думаешь?
@ -1243,1 +1204,3 @@
turn.m_turn = CarDirection::None;
// If the route goes along the rightmost or the leftmost way among available ones:
// 1. RightmostDirection or LeftmostDirection is selected
// 2. If the turn direction is |CarDirection::GoStraight|
@ -197,19 +197,26 @@ bool DiscardTurnByHighwayClass(TurnCandidates const & possibleTurns, TurnInfo co
}
/// * \returns false when
/// * for routes which go straight and don't go to a smaller road:
ок
@ -208,3 +213,4 @@
TurnInfo const & turnInfo,
NumMwmIds const & numMwmIds)
{
double constexpr kMaxAbsAngleSameRoadClass = 70.0;
ок
@ -1155,0 +1143,4 @@
if (turnInfo.m_ingoing.m_onRoundabout || turnInfo.m_outgoing.m_onRoundabout)
{
bool const keepTurnByHighwayClass = KeepRoundaboutTurnByHighwayClass(nodes, turnInfo, numMwmIds);
turn.m_turn = GetRoundaboutDirection(turnInfo.m_ingoing.m_onRoundabout,
ок
@ -1155,0 +1143,4 @@
if (turnInfo.m_ingoing.m_onRoundabout || turnInfo.m_outgoing.m_onRoundabout)
{
bool const keepTurnByHighwayClass = KeepRoundaboutTurnByHighwayClass(nodes, turnInfo, numMwmIds);
turn.m_turn = GetRoundaboutDirection(turnInfo.m_ingoing.m_onRoundabout,
ок
@ -1155,0 +1143,4 @@
if (turnInfo.m_ingoing.m_onRoundabout || turnInfo.m_outgoing.m_onRoundabout)
{
bool const keepTurnByHighwayClass = KeepRoundaboutTurnByHighwayClass(nodes, turnInfo, numMwmIds);
turn.m_turn = GetRoundaboutDirection(turnInfo.m_ingoing.m_onRoundabout,
ок
@ -1205,3 +1168,3 @@
if (!turn.m_keepAnyway && IsGoStraightOrSlightTurn(turn.m_turn) && nodes.candidates.size() != 1)
if (!turn.m_keepAnyway && IsGoStraightOrSlightTurn(turn.m_turn))
{
if (DiscardTurnByHighwayClass(nodes, turnInfo, numMwmIds, turn.m_turn) ||
это хороший вопрос.
выглядит так, что этот uturn нигде не нужен в GetTurnDirection.
из того, где все еще используется nodes:
Предлагаю вместе разобраться с DiscardTurnByIngoingAndOutgoingEdges и модифицировать оригинал.
@ -1205,3 +1168,3 @@
if (!turn.m_keepAnyway && IsGoStraightOrSlightTurn(turn.m_turn) && nodes.candidates.size() != 1)
if (!turn.m_keepAnyway && IsGoStraightOrSlightTurn(turn.m_turn))
{
if (DiscardTurnByHighwayClass(nodes, turnInfo, numMwmIds, turn.m_turn) ||
ок
@ -1243,1 +1204,3 @@
turn.m_turn = CarDirection::None;
// If the route goes along the rightmost or the leftmost way among available ones:
// 1. RightmostDirection or LeftmostDirection is selected
// 2. If the turn direction is |CarDirection::GoStraight|
ок
@ -1204,3 +1167,3 @@
// will be made after.
if (!turn.m_keepAnyway && IsGoStraightOrSlightTurn(turn.m_turn) && nodes.candidates.size() != 1)
if (!turn.m_keepAnyway && IsGoStraightOrSlightTurn(turn.m_turn))
{
Хм, такое вообще потенциально небезопасно, грубо говоря мы делаем memcpy(dest, src) где src, dest на одном буфере. Я бы написал так:
@ -1204,3 +1167,3 @@
// will be made after.
if (!turn.m_keepAnyway && IsGoStraightOrSlightTurn(turn.m_turn) && nodes.candidates.size() != 1)
if (!turn.m_keepAnyway && IsGoStraightOrSlightTurn(turn.m_turn))
{
Почему бы не использовать
candidatesWithoutUturn.erase(candidatesWithoutUturn.begin());
иcandidatesWithoutUturn.erase(candidatesWithoutUturn.rbegin());
?Очевидно, это не для этого PR, но надо бы придумать какую-то инфраструктуру для unit tests для
GetTurnDirection/MakeTurnAnnotation
@ -1204,3 +1167,3 @@
// will be made after.
if (!turn.m_keepAnyway && IsGoStraightOrSlightTurn(turn.m_turn) && nodes.candidates.size() != 1)
if (!turn.m_keepAnyway && IsGoStraightOrSlightTurn(turn.m_turn))
{
Тогда уж, pop_front(), pop_back(). В моем варианте меньше манипуляций с вектором. Он только присваивается, когда erase/pop_front() сделает его переалокацию.
Some tests failed here (turns_generator_test.cpp), but they are very straightforward like:
TEST_EQUAL(RightmostDirection(-20.), CarDirection::TurnSlightLeft, ());
So feel free to edit them.
To run tests:
./routing_tests
./routing_tests --filter="TestRightmostDirection"
После рефакторинга RighmostDirection поменялся. Если нет возражений - поправлю тесты.
@ -1204,3 +1167,3 @@
// will be made after.
if (!turn.m_keepAnyway && IsGoStraightOrSlightTurn(turn.m_turn) && nodes.candidates.size() != 1)
if (!turn.m_keepAnyway && IsGoStraightOrSlightTurn(turn.m_turn))
{
pop_back() да, а вот когда это у вектора появился pop_front() ? :)
@ -1204,3 +1167,3 @@
// will be made after.
if (!turn.m_keepAnyway && IsGoStraightOrSlightTurn(turn.m_turn) && nodes.candidates.size() != 1)
if (!turn.m_keepAnyway && IsGoStraightOrSlightTurn(turn.m_turn))
{
Исправил
Тесты RightmostDirection и LeftmostDirection исправлены.
Кстати говоря, у меня
3 tests failed:
opening_hours_serdes_tests.cpp::BitReaderWriter_OpeningHoursSerDes_Weekday_Usage_2
opening_hours_serdes_tests.cpp::BitReaderWriter_OpeningHoursSerDes_MonthHours_Usage
road_access_test.cpp::RoadAccess_WayBlockedWhenStartButOpenWhenReach
Странно что у вас не проходят эти тесты, на GA все прошло хорошо. Что у вас за ошибки?
@ -334,3 +333,4 @@
TEST_EQUAL(RightmostDirection(-170.), CarDirection::GoStraight, ());
}
UNIT_TEST(TestLeftmostDirection)
Could you explain why 90 degrees is TurnRight and -90 degrees is GoStraight?
The same with others .. Am I miss something with these angles?
@ -334,3 +333,4 @@
TEST_EQUAL(RightmostDirection(-170.), CarDirection::GoStraight, ());
}
UNIT_TEST(TestLeftmostDirection)
I was trying to explain it in RighmostDirection() definition:
If necessary I can make it more clear or move comments to \brief section.
@ -334,3 +333,4 @@
TEST_EQUAL(RightmostDirection(-170.), CarDirection::GoStraight, ());
}
UNIT_TEST(TestLeftmostDirection)
Ok, but could you also provide an example (in brief or description or when RighmostDirection/LeftmostDirection functions are called), who decided that the turn is "rightmost" or "leftmost"?
What does "rightmost/leftmost" actually mean?
@ -334,3 +333,4 @@
TEST_EQUAL(RightmostDirection(-170.), CarDirection::GoStraight, ());
}
UNIT_TEST(TestLeftmostDirection)
I see this block but can't understand what does it mean?
@ -334,3 +333,4 @@
TEST_EQUAL(RightmostDirection(-170.), CarDirection::GoStraight, ());
}
UNIT_TEST(TestLeftmostDirection)
Ah, if nodes.candidates are sorted by direction angle, then it makes sense :)
Ok, please, add some comments, but now I got the logic!
@ -334,3 +333,4 @@
TEST_EQUAL(RightmostDirection(-170.), CarDirection::GoStraight, ());
}
UNIT_TEST(TestLeftmostDirection)
Running road_access_test.cpp::RoadAccess_WayBlockedWhenStartButOpenWhenReach
FAILED
routing_tests/index_graph_tools.cpp:606 TEST(base::AlmostEqualAbs(pathWeight, expectedWeight, kEpsilon)) 10804 12802 [5: (0, 1) (1, 2) (2, 3) (3, 4) (4, 5) ]
Running opening_hours_serdes_tests.cpp::BitReaderWriter_OpeningHoursSerDes_MonthHours_Usage
FAILED
routing_tests/opening_hours_serdes_tests.cpp:823 TEST(oh.IsClosed(GetUnixtimeByDate(2020, Month::May, 6, 01 , 00 )))
Running opening_hours_serdes_tests.cpp::BitReaderWriter_OpeningHoursSerDes_Weekday_Usage_2
FAILED
routing_tests/opening_hours_serdes_tests.cpp:750 TEST(oh.IsOpen(GetUnixtimeByDate(2023, Month::Apr, Weekday::Saturday, 13 , 30 )))
@ -334,3 +333,4 @@
TEST_EQUAL(RightmostDirection(-170.), CarDirection::GoStraight, ());
}
UNIT_TEST(TestLeftmostDirection)
What is your env (Linux/MacOS) and toolchain (gcc/clang --version)?
Looks like OpeningHours (boost/spirit) is buggy on your system.
Do you have boost submodule latest and updated?
@ -334,3 +333,4 @@
TEST_EQUAL(RightmostDirection(-170.), CarDirection::GoStraight, ());
}
UNIT_TEST(TestLeftmostDirection)
BTW, try to run ./opening_hours_tests
@ -334,3 +333,4 @@
TEST_EQUAL(RightmostDirection(-170.), CarDirection::GoStraight, ());
}
UNIT_TEST(TestLeftmostDirection)
MacOS 12.13.1
Apple clang version 13.1.6 (clang-1316.0.21.2)
Target: x86_64-apple-darwin21.4.0
Thread model: posix
Boost just pulled.
*** 12 failures are detected in the test module "OpeningHours"
@ -334,3 +333,4 @@
TEST_EQUAL(RightmostDirection(-170.), CarDirection::GoStraight, ());
}
UNIT_TEST(TestLeftmostDirection)
Added:
@ -334,3 +333,4 @@
TEST_EQUAL(RightmostDirection(-170.), CarDirection::GoStraight, ());
}
UNIT_TEST(TestLeftmostDirection)
Strange, because I have exactly the same toolchain ..
@ -334,3 +333,4 @@
TEST_EQUAL(RightmostDirection(-170.), CarDirection::GoStraight, ());
}
UNIT_TEST(TestLeftmostDirection)
Do I need any additional data to run the tests?
I used "--filter=blob:limit=128k"
@ -334,3 +333,4 @@
TEST_EQUAL(RightmostDirection(-170.), CarDirection::GoStraight, ());
}
UNIT_TEST(TestLeftmostDirection)
No, you don't .. Could you show me:
cat 3party/boost/boost/version.hpp | grep "VERSION"
cat 3party/boost/boost/spirit/include/version.hpp | grep "VERSION"
cat 3party/boost/boost/phoenix/version.hpp | grep "VERSION"
@biodranik Approve?
@AntonM030481
Confirm that turn instructions engine now works better.
Checked and fixed on new generated data with routing_integration_tests master build.
There are still some turn issues. Please, check these tests if you have free time and feel free to ask.
This is "by-design-bug", because here is shuttle_train road, but will be good if we can do something here (skip turns in shuttle train and ferry).

route_test.cpp::GermanyShuttleTrainTest
There are minor bugs:
bicycle_turn_test.cpp::RussiaMoscowTatishchevaOnewayCarRoadTurnTest
bicycle_turn_test.cpp::TurnsNearAltufievskoeShosseLongFakeSegmentTest
bicycle_turn_test.cpp::TurnsNearKhladkombinatTest
turn_test.cpp::RussiaMoscowVarshavskoeShosseMKAD
turn_test.cpp::RussiaMoscowSvobodaStTest
@ -334,3 +333,4 @@
TEST_EQUAL(RightmostDirection(-170.), CarDirection::GoStraight, ());
}
UNIT_TEST(TestLeftmostDirection)
@ -334,3 +333,4 @@
TEST_EQUAL(RightmostDirection(-170.), CarDirection::GoStraight, ());
}
UNIT_TEST(TestLeftmostDirection)
How can I see the test routes in desktop?
I try to
Yes, this is not obvious .. After closing Routing Settings dialog, press ALT + LMB (current position), then SHIFT + LMB (destination point). Instead of mouse points, the app will take coordinates from dialog.
Maybe we can add a comment text in the dialog with these hints?
What is "Build Route" icon is responsible for?
Sounds natural that it will build road according to Routing Settings.
Second part of its tooltip is not clear for me in the context of the first part.
Well, not a good hint there.
So the tooltip should be: "Follow route mode only if route built from the current position".
Or always move current position to the start of a route when clicked.