aboutsummaryrefslogtreecommitdiff
path: root/src/projections/mbt_fps.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/projections/mbt_fps.cpp')
-rw-r--r--src/projections/mbt_fps.cpp9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/projections/mbt_fps.cpp b/src/projections/mbt_fps.cpp
index 66ed9458..6edc4103 100644
--- a/src/projections/mbt_fps.cpp
+++ b/src/projections/mbt_fps.cpp
@@ -2,6 +2,7 @@
#include <math.h>
+#include "proj.h"
#include "projects.h"
PROJ_HEAD(mbt_fps, "McBryde-Thomas Flat-Pole Sine (No. 2)") "\n\tCyl, Sph";
@@ -15,8 +16,8 @@ PROJ_HEAD(mbt_fps, "McBryde-Thomas Flat-Pole Sine (No. 2)") "\n\tCyl, Sph";
#define C_y 1.44492
#define C1_2 0.33333333333333333333333333
-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};
double k, V, t;
int i;
(void) P;
@@ -36,8 +37,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};
double t;
lp.phi = C2 * (t = aasin(P->ctx,xy.y / C_y));