aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorKristian Evers <kristianevers@gmail.com>2019-09-17 09:47:37 +0200
committerGitHub <noreply@github.com>2019-09-17 09:47:37 +0200
commit03a01adf6c33cc56844331031862ef9c4bf5382a (patch)
treed87a92d536c9ad2de63c6b081842b874248d8f9a /src
parent355f43ca41ac4e9a01037e6481ce611da9c13805 (diff)
parentbc662fef4c4a353535cbb2cb80da798b0acb884e (diff)
downloadPROJ-03a01adf6c33cc56844331031862ef9c4bf5382a.tar.gz
PROJ-03a01adf6c33cc56844331031862ef9c4bf5382a.zip
[Backport 6.2] Debug Bertin1953 (#1617)
[Backport 6.2] Debug Bertin1953
Diffstat (limited to 'src')
-rw-r--r--src/projections/bertin1953.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/projections/bertin1953.cpp b/src/projections/bertin1953.cpp
index 63154084..b864f83a 100644
--- a/src/projections/bertin1953.cpp
+++ b/src/projections/bertin1953.cpp
@@ -67,7 +67,7 @@ static PJ_XY bertin1953_s_forward (PJ_LP lp, PJ *P) {
xy.x *= 1. + d;
}
if (xy.y > 0.) {
- xy.x *= 1. + d / 1.5 * xy.x * xy.x;
+ xy.y *= 1. + d / 1.5 * xy.x * xy.x;
}
return xy;