Mohamed Ben Dhaou
Mohamed Ben Dhaou

Reputation: 1124

Convert Degrees Minutes Seconds coordinates to decimal in Android

I have a database with coordinates in Degrees Minutes Seconds format, is there any way to change them to decimal coordinates using Android built in function or is there any simpler way to show such coordinates in a mapview ?

Upvotes: 0

Views: 3387

Answers (1)

Captain Giraffe
Captain Giraffe

Reputation: 14705

minutes and seconds are just base 60, decimals would be

theDegees = degrees+ minutes /60 + seconds/(60*60)

mind the integer ops

Upvotes: 3

Related Questions