[Navigation] Unnecessary TurnRight in some situations #2438
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#2438
Loading…
Add table
Reference in a new issue
No description provided.
Delete branch "%!s()"
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?
We have some funny situation like this:

When route goes through the bridge TurnRight direction is received:
Why?
A - Go back 2 segments from junction, but not more than 100 meters (30 meters here).
B - Go back 2 segments from junction, but not more than 120 meters (130 meters here).
Another example:

Also it's not discarded (like TurnSlightRight) because of alternatives are not aligned with ingoing segment.
My suggestion is to reconsider:
Also it's not discarded (like TurnSlightRight) because of alternatives are not aligned with ingoing segment.
@vng could it be that directions are wrong because of different road types (with and without a bridge)?
It happens to any route. With or without bridge.
With bridge such directions are just more awkward.
Just to clarify. For logic from point 1 following code is responsible
(no bugs, the question is only about design and parameters):
@vng what do you think?
About what? If the example on topic start, why do we have turn instruction if there are no alternative turns on the way? Am I missing something?
@vng it was from the very begining. I don't know why.
Looks like no need to keep such single turn no matter what is its angle.
If everyone is OK with it, I will make changes.
Hm, please, check this test RussiaMoscowSvobodaStTest.
Seems like we added regression here (+1 turn) and exactly on the bridge. There was no bridge turn before, according to the test.
The question 1 (Turn direction determination) is much more complicated.
But I think we need to change it too.
This is is bicycle_turn_test.cpp::TurnsNearKhladkombinatTest

We have TurnRight here because of 53 degrees angle between ingoing segment (black),
and vector from ingoingPoint to outgoingPoint (red).
Both points defined according to the code from organicmaps/organicmaps#2438 (comment).
Here my suggestion is to not allow to go back second time for ingoingPoint determination.
It should not be done because of sharp angle with 1st back edge.
For some reason now we have this check for outgoingPoint only (and only when segment changes, not path points inside segment).
Agree. Looks like I not by intension removed discarding of RightTurn/LeftTurn if no alternative is present.
So I will put it back.
But again I don't think that determination by angle between vectors of TurnLeft is appropriate here (before discarding).

Just imagine additional alternative real TurnLeft here (then discarding will not be applied)
But again I don't think that determination by angle between vectors of TurnLeft is appropriate here (before discarding). Just imagine additional alternative real TurnLeft here (then discarding will not be applied)
I understand, but have no ideas here. Please, make as you think will be better. You are really doing great with turns :)
Do we have real geometry points when calculating turns or only ingoing/outgoing edge's points?
Sure. We have all the data.
Thank you :)
Ok I will make all changes by myself.
And I hope for assistance in generation of new interesting UnitTests only :)
BTW, why we don't use OSRM directions?
Well, we did use algorithm part before (~2014-2016), but later folks made own routing implementation based on A*.
Contraction hierarchies (that was used in OSRM, now I don't know its architecture) are not suitable for traffic. Pedestrian routing also not good with CH.
If you think that we can take some parts of OSRM (like turns resolving), feel free to investigate.
I did OSRM compression and adaptation for mobiles in Mapbox, but now they use Valhalla engine. And seems like OSRM is not in active developing, while Valhalla is.
Thank you for clarification.
Let's make the best Turn Resolving by ourself!
I digged in so much that I can not resist from doing it :)