[routing] Extended navigation info about next turn street/road #2658
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
2 participants
Due date
No due date set.
Dependencies
No dependencies set.
Reference: organicmaps/organicmaps-tmp#2658
Loading…
Add table
Reference in a new issue
No description provided.
Delete branch "navigation"
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?
2nd iteration for #849
Extended info about next street/road:
If no target - it will be replaced by name of next street.
If no [target:ref] - it will be replaced by [ref] of next road.
@ -77,2 +77,4 @@
else if (k == "destination:ref")
outType = Metadata::FMD_DESTINATION_REF;
else if (k == "junction:ref")
outType = Metadata::FMD_JUNCTION_REF;
Is there any difference in junction:ref and ref tag?
For highway=motorway_junction we already should take refs into (like) name. Can we make the same with junction:ref.
I suspect that we can merge ref and junction:ref
Wrong indentation.
@ -77,2 +77,4 @@
else if (k == "destination:ref")
outType = Metadata::FMD_DESTINATION_REF;
else if (k == "junction:ref")
outType = Metadata::FMD_JUNCTION_REF;
The reason why do we have all these tags separately to have an ability to handle incomplete data.
E.g. only JUNCTION_REF exists for link, but we can find calculate DESTINATION_REF from main road (by it's REF).
@ -77,2 +77,4 @@
else if (k == "destination:ref")
outType = Metadata::FMD_DESTINATION_REF;
else if (k == "junction:ref")
outType = Metadata::FMD_JUNCTION_REF;
I agree with destination:*, but I suspect that ref and junction:ref are the same and should be processed identically, e.g. transfer into name and draw on the map.
OK
@ -77,2 +77,4 @@
else if (k == "destination:ref")
outType = Metadata::FMD_DESTINATION_REF;
else if (k == "junction:ref")
outType = Metadata::FMD_JUNCTION_REF;
Ah, I understood. junction:ref is used for outgoing highway way, not in motorway_junction ..
OK
@ -77,2 +77,4 @@
else if (k == "destination:ref")
outType = Metadata::FMD_DESTINATION_REF;
else if (k == "junction:ref")
outType = Metadata::FMD_JUNCTION_REF;
tags for exit:
junction:ref is number of the junction (exit).
destination:ref - ref of next main road. Normally should match it's ref.
Added comment at RoadNameInfo definition definition.
@ -77,2 +77,4 @@
else if (k == "destination:ref")
outType = Metadata::FMD_DESTINATION_REF;
else if (k == "junction:ref")
outType = Metadata::FMD_JUNCTION_REF;
Right, currently I don't care about
motorway_junction
.But of course it would be better to get it, and use it's tag
ref
instead of tagjunction:ref
of link it last tag does not exist.But I don't know how to do it properly.
@ -77,2 +77,4 @@
else if (k == "destination:ref")
outType = Metadata::FMD_DESTINATION_REF;
else if (k == "junction:ref")
outType = Metadata::FMD_JUNCTION_REF;
@vng maybe you can guide me how to merge it in proper way? Or just change the code if it's easier than to explain 😄
@ -77,2 +77,4 @@
else if (k == "destination:ref")
outType = Metadata::FMD_DESTINATION_REF;
else if (k == "junction:ref")
outType = Metadata::FMD_JUNCTION_REF;
No need to merge. Yes, this tags are used for highway ways, so everything is fine.
@ -77,2 +77,4 @@
else if (k == "destination:ref")
outType = Metadata::FMD_DESTINATION_REF;
else if (k == "junction:ref")
outType = Metadata::FMD_JUNCTION_REF;
I just want to clarify.
Some links have
junction:ref
tag, and some have not.So we can fill missed data by finding appropriate junction point (
motorway_junction
) in the beginning of link, and using it'sref
tag.I hope now everything is ready.
I will add full name tests later, when maps will be regenerated with new tags.
@ -77,2 +77,4 @@
else if (k == "destination:ref")
outType = Metadata::FMD_DESTINATION_REF;
else if (k == "junction:ref")
outType = Metadata::FMD_JUNCTION_REF;
We can do it in the next iteration.
Hm, you mean that now if we have only highway=motorway_junction point with ref="Exit 55" (no other destination or junction tags in connected links), we don't make turn instruction like "Take exit 55" now?
Exactly. All information is taken from link only.
I suppose it should be like this:
highway=motorway_junction
and update link'sjunction:ref
with junction'sref
.Round all coordinates to avoid precision errors in most of cases.
@vng do we need it in this PR?
I don't like RoadNameInfo, since we don't need all this info during turns generation. Name is enough. All additional info is needed later. But I didn't found an elegant alternative to current implementation.
Also we will need mwm info to generate RoadShield properly when in the future will change to icons.
This solution looks good to me. Enhancements in generator step can be made later.
At least, destination and destination:ref should be kept, so RoadNameInfo as aggregator of different turn instruction infos is also ok.
Let's merge?
What is normalized here? Is "a;b" replaced by "a; b" ?
@ -102,2 +102,4 @@
RoutingSettings const & vehicleSettings, TurnItem & turnItem)
{
// This is for jump from initial point to start of the route. No direction is given.
/// @todo Sometimes results of GetPossibleTurns are empty, sometimes are invalid.
What should be done to fix it?
Yes. And trim a, b, ... just in case. Comment added. And fixed trimming for 1st item.
@ -102,2 +102,4 @@
RoutingSettings const & vehicleSettings, TurnItem & turnItem)
{
// This is for jump from initial point to start of the route. No direction is given.
/// @todo Sometimes results of GetPossibleTurns are empty, sometimes are invalid.
The best will be to fix GetPossibleTurns(). It should return valid results with proper angles.
OK
@ -102,2 +102,4 @@
RoutingSettings const & vehicleSettings, TurnItem & turnItem)
{
// This is for jump from initial point to start of the route. No direction is given.
/// @todo Sometimes results of GetPossibleTurns are empty, sometimes are invalid.
Comment added.
Are there many badly formatted values there? Isn't string.replace() enough?
E.g. "a; b" instead of "a;b" is typical mistake.
I would prefer to keep normalization.
If you think that it will affect generation time, it can be made right before output at routing::GetFullRoadName().
I suppose it will better.
Moved to routing::GetFullRoadName()
Why move? Initially it was in generator and let stay there.
I want as much flexibility as possible.
As far as I understand concern of @biodranik potential problem is increased generation time.
Otherwise there is no reason to simplify formatting.
GetFullRoadName() is called is called only once per position update so it should not be a problem there.
I don't know his concern, but definitely not generation time here. If you need to make normalization - do it. And the best place for it is generator.
So "New York" destination will be replaced with "New; York" :)
Better to leave ";," separators and call strings::Trim(d) inside.
We do all normalization at the generator, to save device battery.
Please, rebase on fresh master, I changed Trim notation and removed strange returning value.
Should be like this:
Thank you, It took me some time to understand why does it work.
Just in case created ValidateAndFormat_destination, and your solution passed all crazy tests :)
OK
This is excellent, thank you! Are there any plans to make this appear graphically similar to highway signs, like a larger green rectangle with a larger highway font?
@zyphlar Are highway signs the same in all countries?
Obviously not, but highway signs often also don't look like this.
A large, easily readable "sign" that pops up alongside the turn arrow would be an improvement regardless of the color or style. When turn directions are presented as medium sized plain text in a monochrome header, it can be difficult to parse when driving.
In any case I'm not asking project maintainers to debate the nature of road signage, I'm asking this contributor if they intend on further improvements. If not, I might try and dig into contributing myself.
I would start collecting the most common sign colors for the most popular countries to make it easier for implementers. Ideally a number of screenshots from other navs too. But the best is the "close to reality" color scheme.
@zyphlar for sure I am going to continue improving this.
I agree that most important thing is readability.
The basic thing is font size.
To allow increasing we need to use 2 lines for vertical mode (and it looks reasonable to me).
So we can change
"[exit_number]: destination_name"
to
"[EXIT_NUMBER]:
DESTINATION_NAME".
I suppose font size can be increased x1.5 (and for sure it should be bold).
Excellent just checking. As you know we have some pretty good examples documented in the parent issue.
What about:
Not sure about 3. See organicmaps/organicmaps#849 (comment)
Let's start with 1-2.
@biodranik can you do it?
That should be easy, add
android:singleLine="false"
attribute for the TextView. In iOS it should be also easy.The best way I can imagine would be like I wrote out in markdown in the parent issue, with ref, destination, and maybe also name on separate lines. The arrow suffices for "take exit" and the word "to" is only really spoken it's probably better and more standard to just have them separated by line breaks.
Line breaks will take a lot of space at the top, which may be important to see where actually the turn goes.
@biodranik Yesterday I discovered that multi-lined approach is already implemented in iOS and Android:)
I have made screen by screen comparison Waze VS OM.
Waze is much more visible.
And day mode:

You are not considering:
Just to clarify.
It's not suggested to change anything in current layout. Only font size/color only for "extended street name"
Waze was selected for comparison since they implement similar approach. Just 1 multiline string with plain text.
Increasing the font and making the string 1+ lines of height is a simple change ATM, I agree.
Created #3182