Currently I'm trying to convert integer latitude
and longitude
to decimal (degrees). The specification from where I get the data says:
| Latitude | Position latitude | Integer, number of 1/10th of a second |
| Longitude | Position longitude | Integer, number of 1/10th of a second |
Here is a sample number:
- Latitude:
1914383
- Longitude:
371352
What I need, is something in this format:
- Latitude:
51.39796
- Longitude:
14.62539
How can I convert those formats?
I've seen a few implementations in c#, but nothing that was really usable for me, or I don't get how this might work. What I've tried:
Converting GPS coordinates (latitude and longitude) to decimal and Converting latitude and longitude to decimal values
Thanks a lot