I have a GPS device that sends its position via sms in a format like this:
2937.0864,5233.3686,55000
The first digit is latitude, the second digit is longitude and the third digit is alt. When I ask google maps to display the position, it shows an error:
"We could not understand the location 2937.0864,5233.3686"
How can I convert these numbers to valid GPS position? I am writing an app with OsmDroid and I want to use the correct GPS position to display map.
Any idea?