aboutsummaryrefslogtreecommitdiff
path: root/src/projections/aitoff.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/projections/aitoff.cpp')
-rw-r--r--src/projections/aitoff.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/projections/aitoff.cpp b/src/projections/aitoff.cpp
index effd2c29..9388b75a 100644
--- a/src/projections/aitoff.cpp
+++ b/src/projections/aitoff.cpp
@@ -62,8 +62,8 @@ FORWARD(s_forward); /* spheroid */
#endif
-static XY s_forward (LP lp, PJ *P) { /* Spheroidal, forward */
- XY xy = {0.0,0.0};
+static PJ_XY s_forward (PJ_LP lp, PJ *P) { /* Spheroidal, forward */
+ PJ_XY xy = {0.0,0.0};
struct pj_opaque *Q = static_cast<struct pj_opaque*>(P->opaque);
double c, d;
@@ -100,8 +100,8 @@ static XY s_forward (LP lp, PJ *P) { /* Spheroidal, forward */
*
************************************************************************************/
-static LP s_inverse (XY xy, PJ *P) { /* Spheroidal, inverse */
- LP lp = {0.0,0.0};
+static PJ_LP s_inverse (PJ_XY xy, PJ *P) { /* Spheroidal, inverse */
+ PJ_LP lp = {0.0,0.0};
struct pj_opaque *Q = static_cast<struct pj_opaque*>(P->opaque);
int iter, MAXITER = 10, round = 0, MAXROUND = 20;
double EPSILON = 1e-12, D, C, f1, f2, f1p, f1l, f2p, f2l, dp, dl, sl, sp, cp, cl, x, y;