WIP: Fetch sidewalk name from nearest road #8975

Draft
RedAuburn wants to merge 2 commits from RedAuburn/dynamic-sidewalk-name into master
Member

Don't store sidewalk names in map file, and query sidewalk name from nearest road.
177kb savings in Greater London. not much but it's something.

These sidewalks have no name tagged in OSM.

https://github.com/user-attachments/assets/bee56282-8d2c-4fb7-a0ac-14d8006a9595

supersedes organicmaps/organicmaps#8861

Don't store sidewalk names in map file, and query sidewalk name from nearest road. 177kb savings in Greater London. not much but it's something. These sidewalks have no name tagged in OSM. https://github.com/user-attachments/assets/bee56282-8d2c-4fb7-a0ac-14d8006a9595 supersedes https://git.omaps.dev/organicmaps/organicmaps/pulls/8861
flomnes (Migrated from github.com) reviewed 2024-09-01 12:05:27 +00:00
@ -714,1 +714,4 @@
IsSidewalkChecker::IsSidewalkChecker() : BaseChecker(3 /* level */)
{
m_types.push_back(classif().GetTypeByPath({"highway", "footway", "sidewalk"}));
flomnes (Migrated from github.com) commented 2024-09-01 11:50:15 +00:00

I'm not sure why highway is present here, I wouldn't walk in one but hey, you do you

I'm not sure why **highway** is present here, I wouldn't walk in one but hey, you do you
@ -613,0 +615,4 @@
auto const & dataSource = m_featuresFetcher.GetDataSource();
search::ReverseGeocoder const coder(dataSource);
MwmSet::MwmId const mwmId = dataSource.GetMwmIdByCountryFile(platform::CountryFile(m_infoGetter->GetRegionCountryId(pt)));
return coder.GetNearbyStreets(mwmId, pt)[0];
flomnes (Migrated from github.com) commented 2024-09-01 11:45:47 +00:00

Empty coder.GetNearbyStreets(mwmId, pt) may not be handled properly.

Empty `coder.GetNearbyStreets(mwmId, pt)` may not be handled properly.
flomnes (Migrated from github.com) commented 2024-09-01 12:03:21 +00:00

This function is getting a bit complex, I would recommend splitting it into smaller functions (one for buildings, one for sidewalks, etc.).

Using free functions would allow to easily see side effects of each function, e.g

if (IsBookmark())
  std::tie(m_uiTitle, m_uiSecondaryTitle) = handleBookmark(/* ... */);
else if (IsBuilding())
  std::tie(m_uiTitle, m_uiAddress) = handleBuilding(/* ... */);
else if(IsSidewalk())
  std::tie(m_uiTitle, m_uiAddress) = handleSidewalk(/* ... */);
This function is getting a bit complex, I would recommend splitting it into smaller functions (one for buildings, one for sidewalks, etc.). Using free functions would allow to easily see side effects of each function, e.g ```cpp if (IsBookmark()) std::tie(m_uiTitle, m_uiSecondaryTitle) = handleBookmark(/* ... */); else if (IsBuilding()) std::tie(m_uiTitle, m_uiAddress) = handleBuilding(/* ... */); else if(IsSidewalk()) std::tie(m_uiTitle, m_uiAddress) = handleSidewalk(/* ... */); ```
flomnes (Migrated from github.com) commented 2024-09-01 11:43:50 +00:00
    search::ReverseGeocoder::Street nearestStreet = framework-> GetNearestStreet(m_buildInfo.m_mercator);
```suggestion search::ReverseGeocoder::Street nearestStreet = framework-> GetNearestStreet(m_buildInfo.m_mercator); ```
biodranik (Migrated from github.com) reviewed 2024-09-01 16:42:21 +00:00
biodranik (Migrated from github.com) commented 2024-09-01 16:42:21 +00:00

Is std::tie needed with C++17 and above?

Will auto const & [m_uiTitle, m_uiSecondaryTitle] = handleBookmark(/* ... */); work?

Is std::tie needed with C++17 and above? Will `auto const & [m_uiTitle, m_uiSecondaryTitle] = handleBookmark(/* ... */);` work?
flomnes (Migrated from github.com) reviewed 2024-09-01 17:41:31 +00:00
flomnes (Migrated from github.com) commented 2024-09-01 17:41:31 +00:00

No, because m_uiTitle and m_uiSecondaryTitle are already declared (as class data members in this example).

No, because `m_uiTitle` and `m_uiSecondaryTitle` are already declared (as class data members in this example).
biodranik (Migrated from github.com) reviewed 2024-09-01 17:43:27 +00:00
biodranik (Migrated from github.com) commented 2024-09-01 17:43:27 +00:00

Right, we're working with local variables 🤦‍♂️

Right, we're working with local variables 🤦‍♂️
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#8975
No description provided.