Next to hiking I am also interested in maps, kinda goes together me thinks. If one wants to know the distance between two coordinates in a mercator projection map, it is simply a question of calculating the distance with pythagoras, but this doesn't work over fast distances due to the curviture of the earth. So how do you calculate an accurate distance between two WGS84 coordinates that are far away from each other, like say New York and Cape Town?
Lets start with an easy one.
Lets calculate the distance between LAT 0* LON 0* and LAT 0* LON 90*. The angle traveled in the equatorial plane is 90*, the angle traveled in the 90* meridian plane is 0*. Knowing that the circumference of the earth is 42000km, the distance traveled is 90*/360* = 0,25 and 0,25 x 42000 = 10500km, easy.
But how can the distance between 10* LAT 0* LON and 0* LAT 10* LON be calculated?
Have fun, Eins

