Added UTM and MGRS formats support #5225
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#5225
Loading…
Add table
Reference in a new issue
No description provided.
Delete branch "issues-5204-utm-and-mgrs-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?
Working on issue #5204 .
Conversion formulas took from https://github.com/Turbo87/utm (lan,lon ↔ UTM) and proj4js (UTM ↔ MGRS).
Android
Added two new coordinate formats: UTM and MGRS. Added label to understand which format is shown.
Some coordinates are not convertable to UTM or MGRS (

lat <= -80
orlat > 84
). In such cases'N/A'
value is shown:Search
UTM and MGRS formats are parsed to lat,lon in search field:
Testing
Generated some test cases manually. And took sample dataset https://s3.amazonaws.com/mgrs.io/mgrsToGeo_WE.txt and converted to test cases.
Because of big number of cases filesPicked subset of those test cases.utm_mgrs_utils_tests.cpp
andutm_mgrs_coords_match_test.cpp
became huge. Should I keep all test cases?TODO
Long to string conversion. Am I reinventing the wheel here?
String to long conversion. Am I reinventing the wheel here?
nit: Rename showLabel or isShowLabel?
Hm, try:
Don't know what if negative, but you can do ss << '-'
@ -0,0 +523,4 @@
UTMPoint utm = LatLonToUtm(lat, lon);
return UTMtoStr(utm);
}
Well, ok here, but please setup your editor:
@ -620,0 +616,4 @@
coords_found = true;
results.emplace_back(lat, lon);
}
I'd prefer to declare double lat, lon; once on top. And remove useless block braces {}
Put this using inside namespace search. Or don't use using at all.
Well, string::size_type is a useless overkill (but with correct semantics). Use size_t instead.
strings::to_int64
So MGRStoLatLon should take integer or float values by design?
txt.find_first_no_of(" \t\r");
math::PowUint
math::PowUint
Renamed method
It works. Added special case for negative numbers.
@ -0,0 +523,4 @@
UTMPoint utm = LatLonToUtm(lat, lon);
return UTMtoStr(utm);
}
Reformatted code.
@ -620,0 +616,4 @@
coords_found = true;
results.emplace_back(lat, lon);
}
Removed extra
{}
and don't declaredouble lat, lon
multiple times.Moved into namespace.
Replaced with
size_t
.When I parse UTM or MGRS I use only integers. E.g.
"15 N 500000 4649776"
. But after parsing is done conversion from UTM/MRGS parameters to lat, lot is done using double values.Fixed using
find_first_not_of
Fixed
Fixed
Should it be a template that accepts all integer types and fails for float types? Or should floating point numbers also be supported?
Are these definitions really necessary? It will be harder to edit their signature in two places when necessary.
Please use constexpr everywhere where possible.
math::pi ?
Please add comments on what it means or a link to the source of this code.
base::RadToDeg?
base::DegToRad?
These function names do not follow our code convention.
Why
std::optional<string>
can't be used here and in other similar places?All const variables should be marked as const.
ditto
Can std::optionalms::LatLon be used for return type?
Underscored variables do not follow our convention...
ditto for return type?
return std::optional<double>
?ditto
Or if you find std::optional too heavy, please introduce kInvalid... constant instead.
const?
There are many similar typos.
const?
pos + 1 ?
const...
That's easier to read.
I say that probably better to take long input easting, northing values, no?
I did refactoring to use 'int' variable as long as possible. Now
MGRStoLatLon
takes int arguments.Fixed
Refactored function to accept any integer type.
Refactored functions. Removed forward declarations. Reordered functions.
Added
constexpr
all over the code. ReplacedPI
withmath::pi
.Fixed
Replaced my function with
base::RadToDeg
.Fixed
Renamed all function to camel-case.
Added
std::optional<string>
to all functions and JNI calls.Fixed.
Fixed.
Replaced with
return nullopt;
Fixed formatting
No more
bool
return type. This function now returnsoptional<LatLon>
.Introduced
kInvalidEastingNorthing
to mark invalid easting and northing.Fixed. Introduced kInvalidEastingNorthing to mark invalid easting and northing.
Fixed formatting.
Fixed formatting.
Fixed formatting.
Fixed.
Fixed.
pos
is nowconst
.Fixed formatting.
Added
const
all over the code.Well, LGTM here, but
I'd prefer to use std::string and an empty string if error, instead of
optional<string>
Well, better to make shortcut function
std::optional<std::string> OPT(std::string s) { return s; }
But, I'd prefer to avoid
optional<string>
if we have an empty string, no?just
struct UTMPoint
maybeLatLon->m_lat
maybeLatLon->m_lon
Fixed. Using
->
operator could be little slower 'cause it unpacks optional. But this code is not used often.I replaced
optional<string>
withstring
. Removed this macro.Fixed struct definition.
LGTM. Squash! all commits into one when merge.
Thank you! Please update or create an issue to finish coordinates support for iOS UI.