UTM coordinates format fix #9286

Merged
root merged 3 commits from utm-coord-format-fix into master 2024-09-14 17:53:06 +00:00
Member

Closes #8593

Old-new-UTM-format

In old UTM format zone letter could be either N for Northern Hemisphere or S for Southern. This information is enough to convert UTM format back to latitude and longitude.

But most geospatial applications use full zone letter instead. Updated UTM format to generate valid zone letter (the same way as we generate it for MGRS format).

TODO: Implement Universal Polar Stereographic (UPS) coordinate system for areas with lat < -80 and lat >= 84. See code for reference.

Closes #8593 ![Old-new-UTM-format](https://github.com/user-attachments/assets/be538f06-6ab7-402f-a574-086d5c8b3d17) In old UTM format zone letter could be either `N` for Northern Hemisphere or `S` for Southern. This information is enough to convert UTM format back to latitude and longitude. But most geospatial applications use full zone letter instead. Updated UTM format to generate valid zone letter (the same way as we generate it for MGRS format). TODO: Implement Universal Polar Stereographic (UPS) coordinate system for areas with lat < -80 and lat >= 84. See [code](https://github.com/mrJean1/PyGeodesy/blob/master/pygeodesy/ups.py) for reference.
vng (Migrated from github.com) reviewed 2024-09-14 13:44:31 +00:00
vng (Migrated from github.com) commented 2024-09-14 13:29:32 +00:00

nit: if (!maybeZoneLetter)

nit: if (!maybeZoneLetter)
vng (Migrated from github.com) commented 2024-09-14 13:41:37 +00:00

So we return just anything that is not even initialized?
Probably, there is no problem here because I see:

  if (lat <= -80 || lat > 84)
    return {}; // Latitude limit exceeded.

everywhere in code.

I don't know if it is ok to have an invalid UTM for say (-88, 0), but this link gives a correct value (Z) for lat=-88
https://www.latlong.net/lat-long-utm.html

So we return just _anything_ that is not even initialized? Probably, there is no problem here because I see: ``` if (lat <= -80 || lat > 84) return {}; // Latitude limit exceeded. ``` everywhere in code. I don't know if it is ok to have an invalid UTM for say (-88, 0), but this link gives a correct value (Z) for lat=-88 https://www.latlong.net/lat-long-utm.html
strump reviewed 2024-09-14 15:03:15 +00:00
Author
Member

UTM coordinates near the North and South poles are calculated with completely different formulas. For that purpose Z zone letter was introduced. We doesn’t support it for the moment, because those areas are not very popular. Let me update the code to cover latitude values outside of [-80, 84) range

UTM coordinates near the North and South poles are calculated with completely different formulas. For that purpose `Z` zone letter was introduced. We doesn’t support it for the moment, because those areas are not very popular. Let me update the code to cover latitude values outside of `[-80, 84)` range
vng (Migrated from github.com) reviewed 2024-09-14 15:09:26 +00:00
vng (Migrated from github.com) commented 2024-09-14 15:09:25 +00:00

Ah, ok, no problem then, we can merge this PR now.
Just put ASSERT(maybeZoneLetter, (lat)); here without ifs. Caller side makes needed checks.

Ah, ok, no problem then, we can merge this PR now. Just put ```ASSERT(maybeZoneLetter, (lat));``` here without ifs. Caller side makes needed checks.
strump reviewed 2024-09-14 17:17:05 +00:00
Author
Member

Done! Simplified UTM zone letter check.

Done! Simplified UTM zone letter check.
vng (Migrated from github.com) approved these changes 2024-09-14 17:52:30 +00:00
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#9286
No description provided.