aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorKristian Evers <kristianevers@gmail.com>2019-09-16 17:00:19 +0200
committerGitHub <noreply@github.com>2019-09-16 17:00:19 +0200
commit8a92356e9715a5845e329ff00bafcfc845b5b1ce (patch)
tree67ff69f211f413e85d851643293cb1f10e193af4 /src
parent3c0a5f0c147556f3badbef940fe5e415ff6f5708 (diff)
parent03276de30c2b2553ae6ad585b08b6377d2ae64c2 (diff)
downloadPROJ-8a92356e9715a5845e329ff00bafcfc845b5b1ce.tar.gz
PROJ-8a92356e9715a5845e329ff00bafcfc845b5b1ce.zip
Merge pull request #1582 from rschmunk/patch-1
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;