Increase logging for direction calculation and TTS #8911

Merged
root merged 3 commits from 8822-log-directions into master 2024-08-13 19:07:35 +00:00
Member

Fixes #8822

See below sample output. We have the GPS coordinate of each point in the route, the turn detail, and the road name info, which is most/all of the info needed to reconstruct direction/announcement decisions.

We also have the preexisting TTS/TTSn logging for what's actually spoken, and a new "TTS Distance" log entry that helps diagnose early/late announcements (it's a simple calculation based on a fixed number of seconds to begin the announcement and the current speed, with min/max bounds. See turns_notification_manager.cpp line 41, it's currently hardcoded to 8 seconds in both a vehicle and as a pedestrian, though obviously there's more to it than that, and more than one announcement per turn.)

routing/index_router.cpp:714 CalculateSubroute(): Routing in mode: Joints
base/timer.cpp:178 ~ScopedTimerWithLog(): Route build time: 13 ms
routing/routing_helpers.cpp:75 ReconstructRoute(): ms::LatLon(60.9380125, -90.022555)
    TurnItem { m_index = 1, m_turn = None, m_lanes = [0: ], m_exitNum = 0, m_pedestrianDir = None }
    RoadNameInfo { m_name = Main Street, m_ref = , m_junction_ref = , m_destination_ref = , m_destination = , m_isLink = 0 }
    ms::LatLon(60.9383305, -90.022643)
    TurnItem { m_index = 3, m_turn = TurnLeft, m_lanes = [0: ], m_exitNum = 0, m_pedestrianDir = None }
    RoadNameInfo { m_name = Main Street, m_ref = , m_junction_ref = , m_destination_ref = , m_destination = , m_isLink = 0 }
    ms::LatLon(60.9384824, -90.023255)
    TurnItem { m_index = 4, m_turn = TurnRight, m_lanes = [0: ], m_exitNum = 0, m_pedestrianDir = None }
    RoadNameInfo { m_name = 2nd Street, m_ref = , m_junction_ref = , m_destination_ref = , m_destination = , m_isLink = 0 }
    ms::LatLon(60.9387672, -90.023317)
    TurnItem { m_index = 8, m_turn = ReachedYourDestination, m_lanes = [0: ], m_exitNum = 0, m_pedestrianDir = None }
    RoadNameInfo { m_name = , m_ref = , m_junction_ref = , m_destination_ref = , m_destination = , m_isLink = 0 }
routing/index_router.cpp:662 DoCalculateRoute(): Route length: 143.657 meters. ETA: 20.2653 seconds.
routing/async_router.cpp:230 LogCode(): Route found, elapsed seconds: 2.24976

// ComputeDistToPronounceDistM decides on 40 meters, we're 201m from turn, so start speaking at 240m out (which is now). Current speed is 5m/s
routing/turns_notification_manager.cpp:193 GenerateFirstTurnSound(): TTS Distance to pronounce/turn/start/speed: 40 201.111 240 5
routing/turns_tts_text.cpp:231 GetTurnNotification(): TTSn In two hundred meters Turn left onto 3rd Street
routing/turns_tts_text.cpp:249 GetTurnNotification(): TTS Then In two hundred and fifty meters Turn left.

// ComputeDistToPronounceDistM decides on 40 meters, we're 39m from turn, so start speaking now. Current speed is 5m/s
routing/turns_notification_manager.cpp:215 GenerateFirstTurnSound(): TTS Distance to pronounce/turn/speed: 40 39.7995 5
routing/turns_tts_text.cpp:231 GetTurnNotification(): TTSn Turn left onto Main Street
routing/turns_tts_text.cpp:249 GetTurnNotification(): TTS Then In four hundred meters Turn right.

// ComputeDistToPronounceDistM decides on 111 meters, we're 88m from turn, so start speaking now. Current speed is 13.8m/s
routing/turns_notification_manager.cpp:215 GenerateFirstTurnSound(): TTS Distance to pronounce/turn/speed: 111 88.6049 13.8889
routing/turns_tts_text.cpp:231 GetTurnNotification(): TTSn Turn right onto 4th Street
routing/turns_tts_text.cpp:249 GetTurnNotification(): TTS Then In four hundred meters Turn right.

// ComputeDistToPronounceDistM decides on 111 meters, we're 109m from turn, so start speaking now. Current speed is 13.8m/s
routing/turns_notification_manager.cpp:215 GenerateFirstTurnSound(): TTS Distance to pronounce/turn/speed: 111 109.42 13.8889
routing/turns_tts_text.cpp:231 GetTurnNotification(): TTSn Turn right onto 2nd Street
routing/turns_tts_text.cpp:249 GetTurnNotification(): TTS Then In three hundred meters You’ll arrive.
Fixes #8822 See below sample output. We have the GPS coordinate of each point in the route, the turn detail, and the road name info, which is most/all of the info needed to reconstruct direction/announcement decisions. We also have the preexisting TTS/TTSn logging for what's actually spoken, and a new "TTS Distance" log entry that helps diagnose early/late announcements (it's a simple calculation based on a fixed number of seconds to begin the announcement and the current speed, with min/max bounds. See turns_notification_manager.cpp line 41, it's currently hardcoded to 8 seconds in both a vehicle and as a pedestrian, though obviously there's more to it than that, and more than one announcement per turn.) <pre> routing/index_router.cpp:714 CalculateSubroute(): Routing in mode: Joints base/timer.cpp:178 ~ScopedTimerWithLog(): Route build time: 13 ms routing/routing_helpers.cpp:75 ReconstructRoute(): ms::LatLon(60.9380125, -90.022555) TurnItem { m_index = 1, m_turn = None, m_lanes = [0: ], m_exitNum = 0, m_pedestrianDir = None } RoadNameInfo { m_name = Main Street, m_ref = , m_junction_ref = , m_destination_ref = , m_destination = , m_isLink = 0 } ms::LatLon(60.9383305, -90.022643) TurnItem { m_index = 3, m_turn = TurnLeft, m_lanes = [0: ], m_exitNum = 0, m_pedestrianDir = None } RoadNameInfo { m_name = Main Street, m_ref = , m_junction_ref = , m_destination_ref = , m_destination = , m_isLink = 0 } ms::LatLon(60.9384824, -90.023255) TurnItem { m_index = 4, m_turn = TurnRight, m_lanes = [0: ], m_exitNum = 0, m_pedestrianDir = None } RoadNameInfo { m_name = 2nd Street, m_ref = , m_junction_ref = , m_destination_ref = , m_destination = , m_isLink = 0 } ms::LatLon(60.9387672, -90.023317) TurnItem { m_index = 8, m_turn = ReachedYourDestination, m_lanes = [0: ], m_exitNum = 0, m_pedestrianDir = None } RoadNameInfo { m_name = , m_ref = , m_junction_ref = , m_destination_ref = , m_destination = , m_isLink = 0 } routing/index_router.cpp:662 DoCalculateRoute(): Route length: 143.657 meters. ETA: 20.2653 seconds. routing/async_router.cpp:230 LogCode(): Route found, elapsed seconds: 2.24976 // ComputeDistToPronounceDistM decides on 40 meters, we're 201m from turn, so start speaking at 240m out (which is now). Current speed is 5m/s routing/turns_notification_manager.cpp:193 GenerateFirstTurnSound(): TTS Distance to pronounce/turn/start/speed: 40 201.111 240 5 routing/turns_tts_text.cpp:231 GetTurnNotification(): TTSn In two hundred meters Turn left onto 3rd Street routing/turns_tts_text.cpp:249 GetTurnNotification(): TTS Then In two hundred and fifty meters Turn left. // ComputeDistToPronounceDistM decides on 40 meters, we're 39m from turn, so start speaking now. Current speed is 5m/s routing/turns_notification_manager.cpp:215 GenerateFirstTurnSound(): TTS Distance to pronounce/turn/speed: 40 39.7995 5 routing/turns_tts_text.cpp:231 GetTurnNotification(): TTSn Turn left onto Main Street routing/turns_tts_text.cpp:249 GetTurnNotification(): TTS Then In four hundred meters Turn right. // ComputeDistToPronounceDistM decides on 111 meters, we're 88m from turn, so start speaking now. Current speed is 13.8m/s routing/turns_notification_manager.cpp:215 GenerateFirstTurnSound(): TTS Distance to pronounce/turn/speed: 111 88.6049 13.8889 routing/turns_tts_text.cpp:231 GetTurnNotification(): TTSn Turn right onto 4th Street routing/turns_tts_text.cpp:249 GetTurnNotification(): TTS Then In four hundred meters Turn right. // ComputeDistToPronounceDistM decides on 111 meters, we're 109m from turn, so start speaking now. Current speed is 13.8m/s routing/turns_notification_manager.cpp:215 GenerateFirstTurnSound(): TTS Distance to pronounce/turn/speed: 111 109.42 13.8889 routing/turns_tts_text.cpp:231 GetTurnNotification(): TTSn Turn right onto 2nd Street routing/turns_tts_text.cpp:249 GetTurnNotification(): TTS Then In three hundred meters You’ll arrive. </pre>
biodranik (Migrated from github.com) reviewed 2024-08-10 12:55:42 +00:00
biodranik (Migrated from github.com) commented 2024-08-10 12:50:16 +00:00
          LOG(LINFO, ("TTS meters to pronounce", distanceToPronounceNotificationM, "meters to turn", distanceToTurnMeters, "meters to start pronounce", startPronounceDistMeters, "speed m/s", m_speedMetersPerSecond));
```suggestion LOG(LINFO, ("TTS meters to pronounce", distanceToPronounceNotificationM, "meters to turn", distanceToTurnMeters, "meters to start pronounce", startPronounceDistMeters, "speed m/s", m_speedMetersPerSecond)); ```
biodranik (Migrated from github.com) commented 2024-08-10 12:55:33 +00:00
    LOG(LINFO,("TTS meters to pronounce", distanceToPronounceNotificationM, "meters to turn", distanceToTurnMeters, "speed m/s", m_speedMetersPerSecond));
```suggestion LOG(LINFO,("TTS meters to pronounce", distanceToPronounceNotificationM, "meters to turn", distanceToTurnMeters, "speed m/s", m_speedMetersPerSecond)); ```
vng (Migrated from github.com) approved these changes 2024-08-12 02:21:42 +00:00
biodranik (Migrated from github.com) approved these changes 2024-08-13 19:07:26 +00:00
biodranik (Migrated from github.com) left a comment

Thanks!

Thanks!
This repo is archived. You cannot comment on pull requests.
No reviewers
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
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference: organicmaps/organicmaps-tmp#8911
No description provided.