aboutsummaryrefslogtreecommitdiff
path: root/src/PJ_fahey.c
diff options
context:
space:
mode:
authorElliott Sales de Andrade <quantum.analyst@gmail.com>2015-05-29 23:13:36 -0400
committerElliott Sales de Andrade <quantum.analyst@gmail.com>2015-05-30 21:12:51 -0400
commitbd79986dccb136271800a08ee2548f77c435a863 (patch)
tree9ab470c022c1e1c78e1e3d7c34425038d7eaf057 /src/PJ_fahey.c
parentbc68930723d48f2669d6bd9ebe176614e9dd893d (diff)
downloadPROJ-bd79986dccb136271800a08ee2548f77c435a863.tar.gz
PROJ-bd79986dccb136271800a08ee2548f77c435a863.zip
Fix unused function argument warnings.
Diffstat (limited to 'src/PJ_fahey.c')
-rw-r--r--src/PJ_fahey.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/PJ_fahey.c b/src/PJ_fahey.c
index 93e9b38d..007fc906 100644
--- a/src/PJ_fahey.c
+++ b/src/PJ_fahey.c
@@ -3,11 +3,13 @@
PROJ_HEAD(fahey, "Fahey") "\n\tPcyl, Sph.";
#define TOL 1e-6
FORWARD(s_forward); /* spheroid */
+ (void) P;
xy.y = 1.819152 * ( xy.x = tan(0.5 * lp.phi) );
xy.x = 0.819152 * lp.lam * asqrt(1 - xy.x * xy.x);
return (xy);
}
INVERSE(s_inverse); /* spheroid */
+ (void) P;
lp.phi = 2. * atan(xy.y /= 1.819152);
lp.lam = fabs(xy.y = 1. - xy.y * xy.y) < TOL ? 0. :
xy.x / (0.819152 * sqrt(xy.y));