Added UTM and MGRS formats support #5225

Merged
root merged 22 commits from issues-5204-utm-and-mgrs-support into master 2023-06-01 05:11:49 +00:00
Member

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.

Coordinates Copy menu
place-page-screenshots place-page-copy-menu

Some coordinates are not convertable to UTM or MGRS ( lat <= -80 or lat > 84). In such cases 'N/A' value is shown:

UTM and MGRS formats are parsed to lat,lon in search field:

search

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 files utm_mgrs_utils_tests.cpp and utm_mgrs_coords_match_test.cpp became huge. Should I keep all test cases? Picked subset of those test cases.

TODO

  • iPhone place page doesn't show new coordinates. Need another PR to add all new coordinates to iOS.
Working on issue #5204 . Conversion formulas took from https://github.com/Turbo87/utm (lan,lon ↔ UTM) and [proj4js](https://github.com/proj4js/mgrs) (UTM ↔ MGRS). ## Android Added two new coordinate formats: UTM and MGRS. Added label to understand which format is shown. | Coordinates | Copy menu | | ---- | ---- | | ![place-page-screenshots](https://github.com/organicmaps/organicmaps/assets/720808/63392754-9c2d-46f1-8e3a-4d3830b4c176) | ![place-page-copy-menu](https://github.com/organicmaps/organicmaps/assets/720808/06f7cd87-279a-49ec-8cd5-1e5cdb6b9d0a) | Some coordinates are not convertable to UTM or MGRS ( `lat <= -80` or `lat > 84`). In such cases `'N/A'` value is shown: <img src="https://github.com/organicmaps/organicmaps/assets/720808/a38288b6-9df3-4f3a-a9a8-107bd4118931" width="300px"/> ## Search UTM and MGRS formats are parsed to lat,lon in search field: <img src="https://github.com/organicmaps/organicmaps/assets/720808/34ce204d-af66-4af9-a89e-d97138542a7e" alt="search" width="300px"/> ## Testing Generated some test cases manually. And took sample dataset https://s3.amazonaws.com/mgrs.io/mgrsToGeo_WE.txt and converted to test cases. <s>Because of big number of cases files `utm_mgrs_utils_tests.cpp` and `utm_mgrs_coords_match_test.cpp` became huge. Should I keep all test cases?</s> Picked subset of those test cases. ## TODO * iPhone place page doesn't show new coordinates. Need another PR to add all new coordinates to iOS.
strump reviewed 2023-05-26 07:57:29 +00:00
Author
Member

Long to string conversion. Am I reinventing the wheel here?

Long to string conversion. Am I reinventing the wheel here?
Author
Member

String to long conversion. Am I reinventing the wheel here?

String to long conversion. Am I reinventing the wheel here?
vng (Migrated from github.com) reviewed 2023-05-27 02:18:44 +00:00
vng (Migrated from github.com) commented 2023-05-27 01:55:08 +00:00

nit: Rename showLabel or isShowLabel?

nit: Rename showLabel or isShowLabel?
vng (Migrated from github.com) commented 2023-05-27 01:59:03 +00:00

Hm, try:

std::ostringstream ss;
ss << std::setfill('0') << std::setw(prec) << l;

Don't know what if negative, but you can do ss << '-'

Hm, try: ``` std::ostringstream ss; ss << std::setfill('0') << std::setw(prec) << l; ``` Don't know what if negative, but you can do ss << '-'
@ -0,0 +523,4 @@
UTMPoint utm = LatLonToUtm(lat, lon);
return UTMtoStr(utm);
}
vng (Migrated from github.com) commented 2023-05-27 02:02:20 +00:00

Well, ok here, but please setup your editor:

  • use 2 spaces for tab instead of 4
  • use C++ braces, from the new line, not K&R style
  • do not use braces in one line expressions
Well, ok here, but please setup your editor: - use 2 spaces for _tab_ instead of 4 - use C++ braces, from the new line, not K&R style - do not use braces in _one line_ expressions
@ -620,0 +616,4 @@
coords_found = true;
results.emplace_back(lat, lon);
}
vng (Migrated from github.com) commented 2023-05-27 02:03:43 +00:00

I'd prefer to declare double lat, lon; once on top. And remove useless block braces {}

I'd prefer to declare double lat, lon; once on top. And remove useless block braces {}
vng (Migrated from github.com) commented 2023-05-27 02:06:08 +00:00

Put this using inside namespace search. Or don't use using at all.

Put this using inside namespace search. Or don't use using at all.
vng (Migrated from github.com) commented 2023-05-27 02:06:52 +00:00

Well, string::size_type is a useless overkill (but with correct semantics). Use size_t instead.

Well, string::size_type is a useless overkill (but with correct semantics). Use size_t instead.
vng (Migrated from github.com) commented 2023-05-27 02:08:54 +00:00

strings::to_int64

strings::to_int64
vng (Migrated from github.com) commented 2023-05-27 02:10:11 +00:00

So MGRStoLatLon should take integer or float values by design?

So MGRStoLatLon should take integer or float values by design?
vng (Migrated from github.com) commented 2023-05-27 02:11:39 +00:00

txt.find_first_no_of(" \t\r");

txt.find_first_no_of(" \t\r");
vng (Migrated from github.com) commented 2023-05-27 02:15:21 +00:00

math::PowUint

math::PowUint
vng (Migrated from github.com) commented 2023-05-27 02:16:19 +00:00

math::PowUint

math::PowUint
strump reviewed 2023-05-29 07:34:41 +00:00
strump reviewed 2023-05-29 07:35:21 +00:00
Author
Member

It works. Added special case for negative numbers.

It works. Added special case for negative numbers.
strump reviewed 2023-05-29 07:35:31 +00:00
@ -0,0 +523,4 @@
UTMPoint utm = LatLonToUtm(lat, lon);
return UTMtoStr(utm);
}
Author
Member

Reformatted code.

Reformatted code.
strump reviewed 2023-05-29 07:36:31 +00:00
@ -620,0 +616,4 @@
coords_found = true;
results.emplace_back(lat, lon);
}
Author
Member

Removed extra {} and don't declare double lat, lon multiple times.

Removed extra `{}` and don't declare `double lat, lon` multiple times.
strump reviewed 2023-05-29 07:36:46 +00:00
Author
Member

Moved into namespace.

Moved into namespace.
strump reviewed 2023-05-29 07:37:01 +00:00
Author
Member

Replaced with size_t.

Replaced with `size_t`.
strump reviewed 2023-05-29 07:39:27 +00:00
Author
Member

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.

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.
strump reviewed 2023-05-29 07:39:46 +00:00
Author
Member

Fixed using find_first_not_of

Fixed using `find_first_not_of`
strump reviewed 2023-05-29 07:39:56 +00:00
strump reviewed 2023-05-29 07:40:00 +00:00
biodranik (Migrated from github.com) reviewed 2023-05-29 11:56:27 +00:00
biodranik (Migrated from github.com) commented 2023-05-29 11:38:48 +00:00
  if (l < 0)
```suggestion if (l < 0) ```
biodranik (Migrated from github.com) commented 2023-05-29 11:39:43 +00:00

Should it be a template that accepts all integer types and fails for float types? Or should floating point numbers also be supported?

Should it be a template that accepts all integer types and fails for float types? Or should floating point numbers also be supported?
biodranik (Migrated from github.com) commented 2023-05-29 11:41:30 +00:00

Are these definitions really necessary? It will be harder to edit their signature in two places when necessary.

Are these definitions really necessary? It will be harder to edit their signature in two places when necessary.
biodranik (Migrated from github.com) commented 2023-05-29 11:41:48 +00:00

Please use constexpr everywhere where possible.

Please use constexpr everywhere where possible.
biodranik (Migrated from github.com) commented 2023-05-29 11:43:06 +00:00

math::pi ?

math::pi ?
biodranik (Migrated from github.com) commented 2023-05-29 11:43:26 +00:00

Please add comments on what it means or a link to the source of this code.

Please add comments on what it means or a link to the source of this code.
biodranik (Migrated from github.com) commented 2023-05-29 11:46:53 +00:00

base::RadToDeg?

base::RadToDeg?
biodranik (Migrated from github.com) commented 2023-05-29 11:47:08 +00:00

base::DegToRad?

base::DegToRad?
biodranik (Migrated from github.com) commented 2023-05-29 11:47:41 +00:00

These function names do not follow our code convention.

int ZoneNumberToCentralLongitude(int zone_number);
These function names do not follow our code convention. ```suggestion int ZoneNumberToCentralLongitude(int zone_number); ```
biodranik (Migrated from github.com) commented 2023-05-29 11:48:50 +00:00

Why std::optional<string> can't be used here and in other similar places?

Why `std::optional<string>` can't be used here and in other similar places?
biodranik (Migrated from github.com) commented 2023-05-29 11:49:58 +00:00

All const variables should be marked as const.

All const variables should be marked as const.
biodranik (Migrated from github.com) commented 2023-05-29 11:50:22 +00:00
  return to_string(point.zone_number) + string(1, point.zone_letter) + " " + \
```suggestion return to_string(point.zone_number) + string(1, point.zone_letter) + " " + \ ```
biodranik (Migrated from github.com) commented 2023-05-29 11:50:29 +00:00

ditto

ditto
biodranik (Migrated from github.com) commented 2023-05-29 11:51:40 +00:00
bool UTMtoLatLon(double easting, double northing, int zone_number, char zone_letter, double & lat, double & lon)

Can std::optionalms::LatLon be used for return type?

```suggestion bool UTMtoLatLon(double easting, double northing, int zone_number, char zone_letter, double & lat, double & lon) ``` Can std::optional<ms::LatLon> be used for return type?
biodranik (Migrated from github.com) commented 2023-05-29 11:52:16 +00:00

Underscored variables do not follow our convention...

Underscored variables do not follow our convention...
biodranik (Migrated from github.com) commented 2023-05-29 11:52:25 +00:00

ditto for return type?

ditto for return type?
biodranik (Migrated from github.com) commented 2023-05-29 11:52:44 +00:00

return std::optional<double>?

`return std::optional<double>`?
biodranik (Migrated from github.com) commented 2023-05-29 11:52:53 +00:00

ditto

ditto
biodranik (Migrated from github.com) commented 2023-05-29 11:53:21 +00:00

Or if you find std::optional too heavy, please introduce kInvalid... constant instead.

Or if you find std::optional too heavy, please introduce kInvalid... constant instead.
biodranik (Migrated from github.com) commented 2023-05-29 11:54:36 +00:00
  if (query.size() - pos < 2)
```suggestion if (query.size() - pos < 2) ```
biodranik (Migrated from github.com) commented 2023-05-29 11:54:46 +00:00

const?

const?
biodranik (Migrated from github.com) commented 2023-05-29 11:55:08 +00:00
size_t MatchZoneCode(string const & query, int & zone_code)

There are many similar typos.

```suggestion size_t MatchZoneCode(string const & query, int & zone_code) ``` There are many similar typos.
biodranik (Migrated from github.com) commented 2023-05-29 11:55:15 +00:00

const?
pos + 1 ?

const? pos + 1 ?
biodranik (Migrated from github.com) commented 2023-05-29 11:55:37 +00:00
size_t MatchZoneLetter(string const & query, char & zone_letter, size_t startPos)
```suggestion size_t MatchZoneLetter(string const & query, char & zone_letter, size_t startPos) ```
biodranik (Migrated from github.com) commented 2023-05-29 11:55:45 +00:00

const...

const...
biodranik (Migrated from github.com) commented 2023-05-29 11:56:01 +00:00
      n = n * 10 + (ch - '0');

That's easier to read.

```suggestion n = n * 10 + (ch - '0'); ``` That's easier to read.
vng (Migrated from github.com) reviewed 2023-05-29 15:18:26 +00:00
vng (Migrated from github.com) commented 2023-05-29 15:18:26 +00:00

I say that probably better to take long input easting, northing values, no?

I say that probably better to take long input easting, northing values, no?
strump reviewed 2023-05-30 12:28:37 +00:00
Author
Member

I did refactoring to use 'int' variable as long as possible. Now MGRStoLatLon takes int arguments.

I did refactoring to use 'int' variable as long as possible. Now `MGRStoLatLon` takes int arguments.
strump reviewed 2023-05-30 12:28:46 +00:00
Author
Member

Fixed

Fixed
strump reviewed 2023-05-30 12:29:19 +00:00
Author
Member

Refactored function to accept any integer type.

Refactored function to accept any integer type.
strump reviewed 2023-05-30 12:29:49 +00:00
Author
Member

Refactored functions. Removed forward declarations. Reordered functions.

Refactored functions. Removed forward declarations. Reordered functions.
strump reviewed 2023-05-30 12:30:14 +00:00
Author
Member

Added constexpr all over the code. Replaced PI with math::pi.

Added `constexpr` all over the code. Replaced `PI` with `math::pi`.
strump reviewed 2023-05-30 12:30:21 +00:00
strump reviewed 2023-05-30 12:30:47 +00:00
Author
Member

Replaced my function with base::RadToDeg.

Replaced my function with `base::RadToDeg`.
strump reviewed 2023-05-30 12:30:52 +00:00
strump reviewed 2023-05-30 12:31:09 +00:00
Author
Member

Renamed all function to camel-case.

Renamed all function to camel-case.
strump reviewed 2023-05-30 12:31:45 +00:00
Author
Member

Added std::optional<string> to all functions and JNI calls.

Added `std::optional<string>` to all functions and JNI calls.
strump reviewed 2023-05-30 12:31:54 +00:00
Author
Member

Fixed.

Fixed.
strump reviewed 2023-05-30 12:31:59 +00:00
Author
Member

Fixed.

Fixed.
strump reviewed 2023-05-30 12:32:22 +00:00
Author
Member

Replaced with return nullopt;

Replaced with `return nullopt;`
strump reviewed 2023-05-30 12:32:29 +00:00
Author
Member

Fixed formatting

Fixed formatting
strump reviewed 2023-05-30 12:33:06 +00:00
Author
Member

No more bool return type. This function now returns optional<LatLon>.

No more `bool` return type. This function now returns `optional<LatLon>`.
strump reviewed 2023-05-30 12:33:40 +00:00
Author
Member

Introduced kInvalidEastingNorthing to mark invalid easting and northing.

Introduced `kInvalidEastingNorthing` to mark invalid easting and northing.
strump reviewed 2023-05-30 12:33:54 +00:00
Author
Member

Fixed. Introduced kInvalidEastingNorthing to mark invalid easting and northing.

Fixed. Introduced kInvalidEastingNorthing to mark invalid easting and northing.
strump reviewed 2023-05-30 12:34:03 +00:00
Author
Member

Fixed formatting.

Fixed formatting.
strump reviewed 2023-05-30 12:34:13 +00:00
Author
Member

Fixed formatting.

Fixed formatting.
strump reviewed 2023-05-30 12:34:25 +00:00
Author
Member

Fixed formatting.

Fixed formatting.
strump reviewed 2023-05-30 12:34:31 +00:00
strump reviewed 2023-05-30 12:34:44 +00:00
Author
Member

Fixed. pos is now const.

Fixed. `pos` is now `const`.
strump reviewed 2023-05-30 12:34:58 +00:00
Author
Member

Fixed formatting.

Fixed formatting.
strump reviewed 2023-05-30 12:35:15 +00:00
Author
Member

Added const all over the code.

Added `const` all over the code.
vng (Migrated from github.com) reviewed 2023-05-30 19:22:58 +00:00
vng (Migrated from github.com) left a comment

Well, LGTM here, but

I'd prefer to use std::string and an empty string if error, instead of optional<string>

Well, LGTM here, but I'd prefer to use std::string and an empty string if error, instead of ```optional<string>```
vng (Migrated from github.com) commented 2023-05-30 19:18:47 +00:00

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?

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?
vng (Migrated from github.com) commented 2023-05-30 19:19:26 +00:00

just struct UTMPoint

just ```struct UTMPoint```
vng (Migrated from github.com) commented 2023-05-30 19:16:25 +00:00
auto ll = ...;
if (ll)
  emplace_back(ll->m_lat, ll->m_lon);
``` auto ll = ...; if (ll) emplace_back(ll->m_lat, ll->m_lon); ```
vng (Migrated from github.com) commented 2023-05-30 19:21:17 +00:00

maybeLatLon->m_lat

maybeLatLon->m_lat
vng (Migrated from github.com) commented 2023-05-30 19:21:27 +00:00

maybeLatLon->m_lon

maybeLatLon->m_lon
strump reviewed 2023-05-31 07:34:41 +00:00
Author
Member

Fixed. Using -> operator could be little slower 'cause it unpacks optional. But this code is not used often.

Fixed. Using `->` operator could be little slower 'cause it unpacks optional. But this code is not used often.
strump reviewed 2023-05-31 07:35:46 +00:00
Author
Member

I replaced optional<string> with string. Removed this macro.

I replaced `optional<string>` with `string`. Removed this macro.
strump reviewed 2023-05-31 07:36:20 +00:00
Author
Member

Fixed struct definition.

Fixed struct definition.
vng (Migrated from github.com) approved these changes 2023-05-31 19:54:35 +00:00
vng (Migrated from github.com) left a comment

LGTM. Squash! all commits into one when merge.

LGTM. Squash! all commits into one when merge.
biodranik (Migrated from github.com) approved these changes 2023-06-01 05:10:31 +00:00
biodranik (Migrated from github.com) left a comment

Thank you! Please update or create an issue to finish coordinates support for iOS UI.

Thank you! Please update or create an issue to finish coordinates support for iOS UI.
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#5225
No description provided.