Add support for KMB files generated with latest MapsMe #8935
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#8935
Loading…
Add table
Reference in a new issue
No description provided.
Delete branch "kmb-v9mm-support"
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?
Latest MapsMe app upgraded its KMB format version to
9
. The easy fix is to parse it the same way as we parse V8 format.This fix works for some test files. But need to verify with more cases.
TODO: Update unit tests.
Update 2024.09.14
Introduced new version
V9MM
which inheritsV8MM
and have little change in tracks format.Updated unit tests.
Update 2024.09.14
Fixed format of version
V9MM
to support multi-geometry.Updated unit tests.
Let's add a comment that we likely discover an issue and a need for a separate if later )
Great, thanks!
@ -26,11 +24,19 @@ enum class Version : uint8_t
// tags to kml
V9 = 9, // 01 October 2020: add minZoom to bookmarks
Maybe
?
@ -265,4 +273,4 @@
m_header.m_eosOffset = m_header.m_stringsOffset;
m_header.m_stringsOffset = m_header.m_compilationsOffset;
}
}
Why is it a warning? Maybe info or no log at all?
Will
work?
Nope. In
DECLARE_VISITOR_AND_DEBUG_PRINT(...)
macro we define order of serialization/deserialization of fields. So new field should be mentioned there. But we can ommitbool operator==(...)
bool operator!=(...)
Those are never used. And inherit
TrackData ConvertToLatestVersion()
from TrackDataV8MM.@ -265,4 +273,4 @@
m_header.m_eosOffset = m_header.m_stringsOffset;
m_header.m_stringsOffset = m_header.m_compilationsOffset;
}
}
Reduced log level to
Info
This block is equivalent to the previous.
Why do we have all these copy-paste? With new TrackDataV9MM, FileDataV9MM etc?
UPD: Aha, bool for Tracks. Well, ok, but can make a bit cleaner (template FileDataMM)
@ -0,0 +43,4 @@
return data;
}
std::vector<MultiGeometry> m_multiGeometry;
By default
MultiGeometry
struct supports multiple lines. But reader (see visitors.hpp:671 ) always parses only single geometry.To minimize changes I parse
vector<MultiGeometry>
each containing a single line. And then merge multiple geometries into in single one.How to improve it?
@biodranik @vng please verify
MultiGeometry mergeGeometry(std::vector<MultiGeometry> aGeometries)
function. It could have memory leacks.Thanks! @vng how to make it cleaner?
@vng can you please help and apply a cleaner patch?
If m_multigeometry is not needed after merging, then the best way is to avoid unnecessary allocations and copies:
Thanks @strump and @vng ! This will make many users happy.