diff options
| author | Kristian Evers <kristianevers@gmail.com> | 2019-09-16 17:00:19 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-09-16 17:00:19 +0200 |
| commit | 8a92356e9715a5845e329ff00bafcfc845b5b1ce (patch) | |
| tree | 67ff69f211f413e85d851643293cb1f10e193af4 /src | |
| parent | 3c0a5f0c147556f3badbef940fe5e415ff6f5708 (diff) | |
| parent | 03276de30c2b2553ae6ad585b08b6377d2ae64c2 (diff) | |
| download | PROJ-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.cpp | 2 |
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; |
