I'm looking for an explanation on why there are 2 different mercator formulas discussed on these sites.

I understand this to be the correct mercator projection algorithm:

http://en.wikipedia.org/wiki/Mercator_projection

y = ln|sec(lat) + tan(lat)| 

However, this site refers to something completely different: http://wiki.openstreetmap.org/wiki/Mercator

#include <math.h>
double lat2y(double a) { return 180/M_PI * log(tan(M_PI/4+a*(M_PI/180)/2)); }

Any ideas?

link|improve this question

42% accept rate
feedback

2 Answers

up vote 3 down vote accepted

Both formulas are equal.

sec(x) + tan(x) = [ 1 + sin(x) ] / cos(x)

tan(pi/4 + x/2) = sin(pi/4 + x/2) / cos(pi/4 + x/2) =

= [cos(x/2) + sin(x/2)] / [cos(x/2) - sin(x/2)] =

= [cos(x/2) + sin(x/2)]^2 / [cos(x/2) - sin(x/2)] / [cos(x/2) + sin(x/2)] =

= [1 + 2*cos(x/2)*sin(x/2)] / [cos^2(x/2) - sin^2(x/2)] =

= [1 + sin(x)] / cos(x)

The latter formula is more convenient for numerical calculations, because it involves the computation of the trigonometric function only once.

link|improve this answer
this does appear to be correct after more testing. – glutz Feb 4 at 20:31
feedback

The first projection approximates the globe as a cylinder, which is good if you don't travel too near the poles.

The second projection assumes that we live on a sphere, which is a better approximation but also makes the math more complicated. As we can see in the formulas.

link|improve this answer
1  
Wrong. Both formulas are equal. Plus they don't approximate anything. They just project a sphere onto a plane, whereas the transformation is conformal - i.e. conserves angles, hence conserves "local" geometry. – valdo Feb 4 at 19:59
do you agree that they are equal, as noted below? – glutz Feb 4 at 20:01
feedback

Your Answer

 
or
required, but never shown

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