Skip to content

Commit

Permalink
Correcting convergence formula for LCC. Fixes #16.
Browse files Browse the repository at this point in the history
  • Loading branch information
kbevers committed Jul 13, 2017
1 parent e09e24e commit 1c9e795
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/PJ_lcc.c
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ static void special(LP lp, PJ *P, struct FACTORS *fac) {
fac->code |= IS_ANAL_HK + IS_ANAL_CONV;
fac->k = fac->h = P->k0 * Q->n * rho /
pj_msfn(sin(lp.phi), cos(lp.phi), P->es);
fac->conv = - Q->n * lp.lam;
fac->conv = Q->n * lp.lam;
}


Expand Down

0 comments on commit 1c9e795

Please sign in to comment.