aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorKristian Evers <kristianevers@gmail.com>2018-12-26 09:33:02 +0100
committerGitHub <noreply@github.com>2018-12-26 09:33:02 +0100
commit355d681ed88019e97742344bd642c2fd97e700a1 (patch)
treec6b20286abda6096225da904f2c668711b8e24d3 /src
parent14481b2f63ec8830ed23b18711637ad8066661f5 (diff)
parent5d39ae0bb01d142a69552ce3553dd61b75db4ae8 (diff)
downloadPROJ-355d681ed88019e97742344bd642c2fd97e700a1.tar.gz
PROJ-355d681ed88019e97742344bd642c2fd97e700a1.zip
Merge pull request #1207 from pelson/healpix_fix
Fixed rHealpix projection, closing #1206.
Diffstat (limited to 'src')
-rw-r--r--src/PJ_healpix.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/PJ_healpix.c b/src/PJ_healpix.c
index ee575abf..3a88695f 100644
--- a/src/PJ_healpix.c
+++ b/src/PJ_healpix.c
@@ -499,8 +499,8 @@ static XY combine_caps(double x, double y, int north_square, int south_square,
double a[2];
/* Workaround cppcheck git issue */
double* pa = a;
- pa[0] = -3*M_FORTPI + ((inverse == 0) ? 0 : capmap.cn) *M_HALFPI;
- pa[1] = M_HALFPI;
+ pa[0] = -3*M_FORTPI + ((inverse == 0) ? pole : capmap.cn) *M_HALFPI;
+ pa[1] = ((capmap.region == north) ? 1 : -1) *M_HALFPI;
vector_add(ret_dot, a, vector);
}