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 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168
|
/*
** libproj -- library of cartographic projections
**
** Copyright (c) 2006 Gerald I. Evenden
*/
static const char
LIBPROJ_ID[] = "Id";
/*
** Permission is hereby granted, free of charge, to any person obtaining
** a copy of this software and associated documentation files (the
** "Software"), to deal in the Software without restriction, including
** without limitation the rights to use, copy, modify, merge, publish,
** distribute, sublicense, and/or sell copies of the Software, and to
** permit persons to whom the Software is furnished to do so, subject to
** the following conditions:
**
** The above copyright notice and this permission notice shall be
** included in all copies or substantial portions of the Software.
**
** THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
** EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
** MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
** IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
** CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
** TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
** SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
#define PROJ_PARMS__ \
double rho0; \
double fc[5], ic[5];
#define PROJ_LIB__
#include <lib_proj.h>
#include <complex.h>
PROJ_HEAD(ftmerc, "French Transverse Mercator") "\n\tCyl, Ell";
/* forward series constants */
#define FC00 1.
#define FC02 -0.25
#define FC04 -0.046875
#define FC06 -0.01953125
#define FC08 -0.01068115234375
#define FC22 0.125
#define FC24 -0.01041666666666666666666666667
#define FC26 -0.0087890625
#define FC28 -0.004888237847222222222222222222
#define FC44 0.01692708333333333333333333333
#define FC46 0.0033203125
#define FC48 -0.0004218207465277777777777777778
#define FC66 0.003971354166666666666666666667
#define FC68 0.002090308779761904761904761905
#define FC88 0.001200382293216765873015873016
/* inverse series constants */
#define IC00 1.
#define IC02 -0.25
#define IC04 -0.046875
#define IC06 -0.01953125
#define IC08 -0.01068115234375
#define IC22 0.125
#define IC24 0.02083333333333333333333333333
#define IC26 0.00341796875
#define IC28 0.00001627604166666666666666666667
#define IC44 0.001302083333333333333333333333
#define IC46 0.00234375
#define IC48 0.001516384548611111111111111111
#define IC66 0.0005533854166666666666666666667
#define IC68 0.0006580171130952380952380952381
#define IC88 0.0001064966595362103174603174603
static void
fs_init(double *s, double es) {
double t = es * es;
s[0] = FC00 + es * (FC02 + es * (FC04 + es * (FC06 + es * FC08)));
s[1] = es * (FC22 + es * (FC24 + es * (FC26 + es * FC28)));
s[2] = t * (FC44 + es * (FC46 + es * FC48));
t *= es;
s[3] = t * (FC66 + es * FC68);
s[4] = t * es * FC88;
}
static void
is_init(double *s, double es) {
double t = es * es;
s[0] = IC00 + es * (IC02 + es * (IC04 + es * (IC06 + es * IC08)));
s[1] = es * (IC22 + es * (IC24 + es * (IC26 + es * IC28)));
s[2] = t * (IC44 + es * (IC46 + es * IC48));
t *= es;
s[3] = t * (IC66 + es * IC68);
s[4] = t * es * IC88;
}
static double complex
cevals(double complex z, double *c) {
double complex zp;
int i;
zp = z * *c;
for (i = 2; i <= 8; i += 2)
zp += *++c * csin(i * z);
return zp;
}
static double complex
icevals(double complex z, double *c) {
double complex zp;
int i;
zp = z /= *c;
for (i = 2; i <= 8; i += 2)
zp -= *++c * csin(i * z);
return zp;
}
FORWARD(e_forward); /* ellipsoid */
double psi, beta, psi_s;
double complex z;
psi = proj_psi(lp.phi, sin(lp.phi), P->e);
beta = asin(sin(lp.lam) / cosh(psi));
psi_s = log(tan(FORTPI + 0.5 * beta));
z = (atan(sinh(psi) / cos(lp.lam)))+ psi_s * I;
z = cevals(z, P->fc);
xy.x = cimag(z) * P->k0;
xy.y = (creal(z) - P->rho0) * P->k0;
return (xy);
}
INVERSE(e_inverse); /* ellipsoid */
double complex z;
double L, Ls, psi;
xy.x /= P->k0;
xy.y = xy.y / P->k0 + P->rho0;
z = xy.y + xy.x * I;
z = icevals(z, P->ic);
L = creal(z);
Ls = cimag(z);
lp.lam = atan(sinh(Ls) / cos(L));
psi = asin(sin(L) / cosh(Ls));
L = log(tan(FORTPI + 0.5 * psi));
lp.phi = proj_apsi(L, P->e);
return (lp);
}
FREEUP;
if (P) free(P);
}
ENTRY0(ftmerc)
void *en;
fs_init(P->fc, P->es);
is_init(P->ic, P->es);
en = proj_mdist_ini(P->es);
if (en) {
P->rho0 = proj_mdist(P->phi0, sin(P->phi0), cos(P->phi0), en);
free(en);
}
P->fwd = e_forward;
P->inv = e_inverse;
ENDENTRY(P)
/*
** Log: proj_ftmerc.c
** Revision 3.4 2008/06/26 15:18:06 gie
** some minor repairs, still non-C90
**
** Revision 3.3 2006/06/19 01:06:04 gie
** removed 'dummy' from entry
**
** Revision 3.2 2006/06/19 00:58:58 gie
** fix IdId: proj_ftmerc.c,v 1.1 2008-11-07 16:41:14 jeff Exp $
**
** Revision 3.1 2006/06/19 00:54:57 gie
** initial
**
*/
|