Hi frendz,
I need to calculate the decimal latitude and longitude value from the following latitude and longitude value.
latitude 11006805N longitude 076577304E

Recommended Answers

All 3 Replies

Member Avatar for Unhnd_Exception

Degrees + (Minutes / 60) + (Seconds / 3600)

I'm assuming the above lat is 110 degrees 06.805 minutes and long is 76 degrees 57.7304

110 + (6.85 / 60) + (0/3600) = 110.1141667
76 + (57.7304 / 60) + (0/3600) = 76.9621733

South lat make negative, West long make negative.

commented: Guess they weren't UTM values after all :) +14
commented: useful +4

@Unhnd_Exception: I believe they may actually be Northing and Easting UTM values.

Degrees + (Minutes / 60) + (Seconds / 3600)

I'm assuming the above lat is 110 degrees 06.805 minutes and long is 76 degrees 57.7304

110 + (6.85 / 60) + (0/3600) = 110.1141667
76 + (57.7304 / 60) + (0/3600) = 76.9621733

Thanks for your reply. Now its working fine with this formula.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.