Greetings,

I have two coordinates:

(52.4412396, -6.563223)

and

(52.8912397, -6.683669)

The delta is:

(-0.4499999, 0.120446)

The distance moved is:

sqrt((-0.4499999)^2+(0.120446)^2)
=.465840261

How do I convert this to meters?!

I hope someone can help.

Many thanks in advance,

link|improve this question

possible duplicate of calculate distance between 2 gps coordinates – mtrw Jan 8 '11 at 18:09
feedback

1 Answer

up vote 1 down vote accepted

have a look here.

link|improve this answer
Thanks for finding the duplicate. – mtrw Jan 8 '11 at 18:10
Got it. Here's the great circle distance in java: public static double getGreatCircleDistance(double lat1, double long1, double lat2, double long2, double radius) { return radius * Math.acos(Math.sin(lat1) * Math.sin(lat2) + Math.cos(lat1) * Math.cos(lat2) * Math.cos(long2 - long1)); } where radius of the earth is 6378.1 Km – Eamorr Jan 8 '11 at 18:10
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.