aboutsummaryrefslogtreecommitdiff
path: root/src/pipeline.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/pipeline.cpp')
-rw-r--r--src/pipeline.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pipeline.cpp b/src/pipeline.cpp
index afa3b19a..a82fce31 100644
--- a/src/pipeline.cpp
+++ b/src/pipeline.cpp
@@ -330,7 +330,7 @@ static void set_ellipsoid(PJ *P) {
pj_calc_ellipsoid_params (P, P->a, P->es);
- geod_init(P->geod, P->a, (1 - sqrt (1 - P->es)));
+ geod_init(P->geod, P->a, P->es / (1 + sqrt(P->one_es)));
/* Re-attach the dangling list */
/* Note: cur will always be non 0 given argv_sentinel presence, */