I'm looking at the default Android Calendar database calendar.db
, and within it are Latitude/Longitude coordinates, but they are stored as integers.
For example, the latitude is stored as 68970387
and the actual latitude it should be is 68.97029043260628
(it's not exact, but it's close enough)
I've been reading all kinds of things about converting from Radians/Degrees, but none of these conversions work, so it appears that this has been rounded down into an integer, but I've never come across this before.
Does anyone have any information on this kind of latitude/longitude storage format?
Thanks