aboutsummaryrefslogtreecommitdiff
path: root/src/PJ_eqearth.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/PJ_eqearth.c')
-rw-r--r--src/PJ_eqearth.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/PJ_eqearth.c b/src/PJ_eqearth.c
index 5a2e74fd..bbe1295f 100644
--- a/src/PJ_eqearth.c
+++ b/src/PJ_eqearth.c
@@ -18,7 +18,7 @@ Added ellipsoidal equations by Bojan Savric, 22 August 2018
#include "projects.h"
-PROJ_HEAD(eqearth, "Equal Earth") "\n\tPCyl., Sph&Ell";
+PROJ_HEAD(eqearth, "Equal Earth") "\n\tPCyl, Sph&Ell";
/* A1..A4, polynomial coefficients */
#define A1 1.340264
@@ -62,7 +62,7 @@ static XY e_forward (LP lp, PJ *P) { /* Ellipsoidal/spheroidal, forwar
xy.x = lp.lam * cos(psi) / (M * (A1 + 3 * A2 * psi2 + psi6 * (7 * A3 + 9 * A4 * psi2)));
xy.y = psi * (A1 + A2 * psi2 + psi6 * (A3 + A4 * psi2));
-
+
/* Adjusting x and y for authalic radius */
xy.x *= Q->rqda;
xy.y *= Q->rqda;