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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
|
/***********************************************************************
Kinematic datum shifting utilizing a deformation model
Kristian Evers, 2017-10-29
************************************************************************
Perform datum shifts by means of a deformation/velocity model.
X_out = X_in + (T_ct - T_obs)*DX
Y_out = Y_in + (T_ct - T_obs)*DY
Z_out = Z_in + (T_ct - T_obs)*DZ
The deformation operation takes cartesian coordinates as input and
returns cartesian coordinates as well.
Corrections in the gridded model are in east, north, up (ENU) space.
Hence the input coordinates needs to be converted to ENU-space when
searching for corrections in the grid. The corrections are then converted
to cartesian PJ_XYZ-space and applied to the input coordinates (also in
cartesian space).
A full deformation model is described by two grids, one for the horizontal
components and one for the vertical component. The horizontal grid is
stored in CTable/CTable2 and the vertical grid is stored in the GTX
format. The NTv2 format should not be used for this purpose since grid-
values are scaled upon reading. Both grids are expected to contain
grid-values in units of mm/year in ENU-space.
************************************************************************
* Copyright (c) 2017, Kristian Evers
*
* 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 PJ_LIB__
#include <errno.h>
#include "proj.h"
#include "proj_internal.h"
#include <math.h>
PROJ_HEAD(deformation, "Kinematic grid shift");
#define TOL 1e-8
#define MAX_ITERATIONS 10
namespace { // anonymous namespace
struct pj_opaque {
double dt;
double t_epoch;
PJ *cart;
};
} // anonymous namespace
/********************************************************************************/
static PJ_XYZ get_grid_shift(PJ* P, const PJ_XYZ& cartesian) {
/********************************************************************************
Read correction values from grid. The cartesian input coordinates are
converted to geodetic coordinates in order look up the correction values
in the grid. Once the grid corrections are read we need to convert them
from ENU-space to cartesian PJ_XYZ-space. ENU -> PJ_XYZ formula described in:
Nørbech, T., et al, 2003(?), "Transformation from a Common Nordic Reference
Frame to ETRS89 in Denmark, Finland, Norway, and Sweden – status report"
********************************************************************************/
PJ_COORD geodetic, shift, temp;
double sp, cp, sl, cl;
int previous_errno = proj_errno_reset(P);
/* cartesian to geodetic */
geodetic.lpz = pj_inv3d(cartesian, static_cast<struct pj_opaque*>(P->opaque)->cart);
/* look up correction values in grids */
shift.lp = proj_hgrid_value(P, geodetic.lp);
shift.enu.u = proj_vgrid_value(P, geodetic.lp, 1.0);
if (proj_errno(P) == PJD_ERR_GRID_AREA)
proj_log_debug(P, "deformation: coordinate (%.3f, %.3f) outside deformation model",
proj_todeg(geodetic.lpz.lam), proj_todeg(geodetic.lpz.phi));
/* grid values are stored as mm/yr, we need m/yr */
shift.xyz.x /= 1000;
shift.xyz.y /= 1000;
shift.xyz.z /= 1000;
/* pre-calc cosines and sines */
sp = sin(geodetic.lpz.phi);
cp = cos(geodetic.lpz.phi);
sl = sin(geodetic.lpz.lam);
cl = cos(geodetic.lpz.lam);
/* ENU -> PJ_XYZ */
temp.xyz.x = -sp*cl*shift.enu.n - sl*shift.enu.e + cp*cl*shift.enu.u;
temp.xyz.y = -sp*sl*shift.enu.n + cl*shift.enu.e + cp*sl*shift.enu.u;
temp.xyz.z = cp*shift.enu.n + sp*shift.enu.u;
shift.xyz = temp.xyz;
proj_errno_restore(P, previous_errno);
return shift.xyz;
}
/********************************************************************************/
static PJ_XYZ reverse_shift(PJ *P, PJ_XYZ input, double dt) {
/********************************************************************************
Iteratively determine the reverse grid shift correction values.
*********************************************************************************/
PJ_XYZ out, delta, dif;
double z0;
int i = MAX_ITERATIONS;
delta = get_grid_shift(P, input);
/* Store the origial z shift for later application */
z0 = delta.z;
/* When iterating to find the best horizontal coordinate we also carry */
/* along the z-component, since we need it for the cartesian -> geodetic */
/* conversion. The z-component adjustment is overwritten with z0 after */
/* the loop has finished. */
out.x = input.x - dt*delta.x;
out.y = input.y - dt*delta.y;
out.z = input.z + dt*delta.z;
do {
delta = get_grid_shift(P, out);
if (delta.x == HUGE_VAL)
break;
dif.x = out.x + dt*delta.x - input.x;
dif.y = out.y + dt*delta.y - input.y;
dif.z = out.z - dt*delta.z - input.z;
out.x += dif.x;
out.y += dif.y;
out.z += dif.z;
} while ( --i && hypot(dif.x, dif.y) > TOL );
out.z = input.z - dt*z0;
return out;
}
static PJ_XYZ forward_3d(PJ_LPZ lpz, PJ *P) {
struct pj_opaque *Q = (struct pj_opaque *) P->opaque;
PJ_COORD out, in;
PJ_XYZ shift;
in.lpz = lpz;
out = in;
if (Q->dt == HUGE_VAL) {
out = proj_coord_error(); /* in the 3D case +t_obs must be specified */
proj_log_debug(P, "deformation: +dt must be specified");
return out.xyz;
}
shift = get_grid_shift(P, in.xyz);
out.xyz.x += Q->dt * shift.x;
out.xyz.y += Q->dt * shift.y;
out.xyz.z += Q->dt * shift.z;
return out.xyz;
}
static PJ_COORD forward_4d(PJ_COORD in, PJ *P) {
struct pj_opaque *Q = (struct pj_opaque *) P->opaque;
double dt;
PJ_XYZ shift;
PJ_COORD out = in;
if (Q->dt != HUGE_VAL) {
dt = Q->dt;
} else {
dt = in.xyzt.t - Q->t_epoch ;
}
shift = get_grid_shift(P, in.xyz);
out.xyzt.x += dt*shift.x;
out.xyzt.y += dt*shift.y;
out.xyzt.z += dt*shift.z;
return out;
}
static PJ_LPZ reverse_3d(PJ_XYZ in, PJ *P) {
struct pj_opaque *Q = (struct pj_opaque *) P->opaque;
PJ_COORD out;
out.xyz = in;
if (Q->dt == HUGE_VAL) {
out = proj_coord_error(); /* in the 3D case +t_obs must be specified */
proj_log_debug(P, "deformation: +dt must be specified");
return out.lpz;
}
out.xyz = reverse_shift(P, in, Q->dt);
return out.lpz;
}
static PJ_COORD reverse_4d(PJ_COORD in, PJ *P) {
struct pj_opaque *Q = (struct pj_opaque *) P->opaque;
PJ_COORD out = in;
double dt;
if (Q->dt != HUGE_VAL) {
dt = Q->dt;
} else {
dt = in.xyzt.t - Q->t_epoch;
}
out.xyz = reverse_shift(P, in.xyz, dt);
return out;
}
static PJ *destructor(PJ *P, int errlev) {
if (nullptr==P)
return nullptr;
if (nullptr==P->opaque)
return pj_default_destructor (P, errlev);
if (static_cast<struct pj_opaque*>(P->opaque)->cart)
static_cast<struct pj_opaque*>(P->opaque)->cart->destructor (static_cast<struct pj_opaque*>(P->opaque)->cart, errlev);
return pj_default_destructor(P, errlev);
}
PJ *TRANSFORMATION(deformation,1) {
int has_xy_grids = 0;
int has_z_grids = 0;
struct pj_opaque *Q = static_cast<struct pj_opaque*>(pj_calloc (1, sizeof (struct pj_opaque)));
if (nullptr==Q)
return destructor(P, ENOMEM);
P->opaque = (void *) Q;
// Pass a dummy ellipsoid definition that will be overridden just afterwards
Q->cart = proj_create(P->ctx, "+proj=cart +a=1");
if (Q->cart == nullptr)
return destructor(P, ENOMEM);
/* inherit ellipsoid definition from P to Q->cart */
pj_inherit_ellipsoid_def (P, Q->cart);
has_xy_grids = pj_param(P->ctx, P->params, "txy_grids").i;
has_z_grids = pj_param(P->ctx, P->params, "tz_grids").i;
/* Build gridlists. Both horizontal and vertical grids are mandatory. */
if (!has_xy_grids || !has_z_grids) {
proj_log_error(P, "deformation: Both +xy_grids and +z_grids should be specified.");
return destructor(P, PJD_ERR_NO_ARGS );
}
proj_hgrid_init(P, "xy_grids");
if (proj_errno(P)) {
proj_log_error(P, "deformation: could not find requested xy_grid(s).");
return destructor(P, PJD_ERR_FAILED_TO_LOAD_GRID);
}
proj_vgrid_init(P, "z_grids");
if (proj_errno(P)) {
proj_log_error(P, "deformation: could not find requested z_grid(s).");
return destructor(P, PJD_ERR_FAILED_TO_LOAD_GRID);
}
Q->dt = HUGE_VAL;
if (pj_param(P->ctx, P->params, "tdt").i) {
Q->dt = pj_param(P->ctx, P->params, "ddt").f;
}
if (pj_param_exists(P->params, "t_obs")) {
proj_log_error(P, "deformation: +t_obs parameter is deprecated. Use +dt instead.");
return destructor(P, PJD_ERR_MISSING_ARGS);
}
Q->t_epoch = HUGE_VAL;
if (pj_param(P->ctx, P->params, "tt_epoch").i) {
Q->t_epoch = pj_param(P->ctx, P->params, "dt_epoch").f;
}
if (Q->dt == HUGE_VAL && Q->t_epoch == HUGE_VAL) {
proj_log_error(P, "deformation: either +dt or +t_epoch needs to be set.");
return destructor(P, PJD_ERR_MISSING_ARGS);
}
if (Q->dt != HUGE_VALL && Q->t_epoch != HUGE_VALL) {
proj_log_error(P, "deformation: +dt or +t_epoch are mutually exclusive.");
return destructor(P, PJD_ERR_MUTUALLY_EXCLUSIVE_ARGS);
}
P->fwd4d = forward_4d;
P->inv4d = reverse_4d;
P->fwd3d = forward_3d;
P->inv3d = reverse_3d;
P->fwd = nullptr;
P->inv = nullptr;
P->left = PJ_IO_UNITS_CARTESIAN;
P->right = PJ_IO_UNITS_CARTESIAN;
P->destructor = destructor;
return P;
}
|