aboutsummaryrefslogtreecommitdiff
path: root/src/gauss.cpp
diff options
context:
space:
mode:
authorEven Rouault <even.rouault@spatialys.com>2018-12-26 14:22:34 +0100
committerEven Rouault <even.rouault@spatialys.com>2018-12-30 21:48:56 +0100
commit1b1d60e83a20412aeca3e440705df820979af03b (patch)
treea96858922bc09392b5cea01750b05115f4f3afff /src/gauss.cpp
parentc9b32000d5fc12705bea92e6509fbedb37193012 (diff)
downloadPROJ-1b1d60e83a20412aeca3e440705df820979af03b.tar.gz
PROJ-1b1d60e83a20412aeca3e440705df820979af03b.zip
projects.h: remove deprecated XY, XYZ, LP, LPZ, UV, UVW, projUV and projUVW structures
Diffstat (limited to 'src/gauss.cpp')
-rw-r--r--src/gauss.cpp9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/gauss.cpp b/src/gauss.cpp
index 2db713ad..d7354bdc 100644
--- a/src/gauss.cpp
+++ b/src/gauss.cpp
@@ -28,6 +28,7 @@
#include <math.h>
#include <stdlib.h>
+#include "proj.h"
#include "projects.h"
#define MAX_ITER 20
@@ -70,9 +71,9 @@ void *pj_gauss_ini(double e, double phi0, double *chi, double *rc) {
return ((void *)en);
}
-LP pj_gauss(projCtx ctx, LP elp, const void *data) {
+PJ_LP pj_gauss(projCtx ctx, PJ_LP elp, const void *data) {
const struct GAUSS *en = (const struct GAUSS *)data;
- LP slp;
+ PJ_LP slp;
(void) ctx;
slp.phi = 2. * atan( en->K *
@@ -82,9 +83,9 @@ LP pj_gauss(projCtx ctx, LP elp, const void *data) {
return(slp);
}
-LP pj_inv_gauss(projCtx ctx, LP slp, const void *data) {
+PJ_LP pj_inv_gauss(projCtx ctx, PJ_LP slp, const void *data) {
const struct GAUSS *en = (const struct GAUSS *)data;
- LP elp;
+ PJ_LP elp;
double num;
int i;