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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
|
/*
Created by Jacques Bertin in 1953, this projection was the go-to choice
of the French cartographic school when they wished to represent phenomena
on a global scale.
Formula designed by Philippe Rivière, 2017.
https://visionscarto.net/bertin-projection-1953
Port to PROJ by Philippe Rivière, 21 September 2018
*/
#define PJ_LIB__
#include <errno.h>
#include <math.h>
#include "proj_internal.h"
#include "proj.h"
#include "projects.h"
PROJ_HEAD(bertin1953, "Bertin 1953")
"\n\tMisc Sph no inv.";
struct pj_opaque {
double cos_delta_phi, sin_delta_phi, cos_delta_gamma, sin_delta_gamma, deltaLambda;
};
static XY s_forward (LP lp, PJ *P) {
XY xy = {0.0,0.0};
struct pj_opaque *Q = P->opaque;
double fu = 1.4, k = 12., w = 1.68, d;
/* Rotate */
double cosphi, x, y, z, z0;
lp.lam += PJ_TORAD(-16.5);
cosphi = cos(lp.phi);
x = cos(lp.lam) * cosphi;
y = sin(lp.lam) * cosphi;
z = sin(lp.phi);
z0 = z * Q->cos_delta_phi + x * Q->sin_delta_phi;
lp.lam = atan2(y * Q->cos_delta_gamma - z0 * Q->sin_delta_gamma,
x * Q->cos_delta_phi - z * Q->sin_delta_phi);
z0 = z0 * Q->cos_delta_gamma + y * Q->sin_delta_gamma;
lp.phi = asin(z0);
lp.lam = adjlon(lp.lam);
/* Adjust pre-projection */
if (lp.lam + lp.phi < -fu) {
d = (lp.lam - lp.phi + 1.6) * (lp.lam + lp.phi + fu) / 8.;
lp.lam += d;
lp.phi -= 0.8 * d * sin(lp.phi + M_PI / 2.);
}
/* Project with Hammer (1.68,2) */
cosphi = cos(lp.phi);
d = sqrt(2./(1. + cosphi * cos(lp.lam / 2.)));
xy.x = w * d * cosphi * sin(lp.lam / 2.);
xy.y = d * sin(lp.phi);
/* Adjust post-projection */
d = (1. - cos(lp.lam * lp.phi)) / k;
if (xy.y < 0.) {
xy.x *= 1. + d;
}
if (xy.y > 0.) {
xy.x *= 1. + d / 1.5 * xy.x * xy.x;
}
return xy;
}
PJ *PROJECTION(bertin1953) {
struct pj_opaque *Q = pj_calloc (1, sizeof (struct pj_opaque));
if (0==Q)
return pj_default_destructor (P, ENOMEM);
P->opaque = Q;
P->lam0 = 0;
P->phi0 = PJ_TORAD(-42.);
Q->cos_delta_phi = cos(P->phi0);
Q->sin_delta_phi = sin(P->phi0);
Q->cos_delta_gamma = 1.;
Q->sin_delta_gamma = 0.;
P->es = 0.;
P->fwd = s_forward;
return P;
}
|