From f4f35ab88656b44e9165b9769451896c227f1be0 Mon Sep 17 00:00:00 2001 From: "R. Schmunk" <8718035+rschmunk@users.noreply.github.com> Date: Tue, 3 Sep 2019 15:56:03 -0400 Subject: Debug Bertin1953 Northern hemisphere "warp" implemented incorrectly. See #1579 --- src/projections/bertin1953.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') 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; -- cgit v1.2.3