-
Notifications
You must be signed in to change notification settings - Fork 5
/
PJ_vandg2.c
45 lines (44 loc) · 1.08 KB
/
PJ_vandg2.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# define TOL 1e-10
# define TWORPI 0.63661977236758134308
#define PROJ_PARMS__ \
int vdg3;
#define PJ_LIB__
#include <projects.h>
PROJ_HEAD(vandg2, "van der Grinten II") "\n\tMisc Sph, no inv.";
PROJ_HEAD(vandg3, "van der Grinten III") "\n\tMisc Sph, no inv.";
FORWARD(s_forward); /* spheroid */
double x1, at, bt, ct;
bt = fabs(TWORPI * lp.phi);
if ((ct = 1. - bt * bt) < 0.)
ct = 0.;
else
ct = sqrt(ct);
if (fabs(lp.lam) < TOL) {
xy.x = 0.;
xy.y = PI * (lp.phi < 0. ? -bt : bt) / (1. + ct);
} else {
at = 0.5 * fabs(PI / lp.lam - lp.lam / PI);
if (P->vdg3) {
x1 = bt / (1. + ct);
xy.x = PI * (sqrt(at * at + 1. - x1 * x1) - at);
xy.y = PI * x1;
} else {
x1 = (ct * sqrt(1. + at * at) - at * ct * ct) /
(1. + at * at * bt * bt);
xy.x = PI * x1;
xy.y = PI * sqrt(1. - x1 * (x1 + 2. * at) + TOL);
}
if ( lp.lam < 0.) xy.x = -xy.x;
if ( lp.phi < 0.) xy.y = -xy.y;
}
return (xy);
}
FREEUP; if (P) pj_dalloc(P); }
ENTRY0(vandg2)
P->vdg3 = 0;
P->inv = 0; P->fwd = s_forward;
ENDENTRY(P)
ENTRY0(vandg3)
P->vdg3 = 1;
P->es = 0.; P->fwd = s_forward;
ENDENTRY(P)