aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKristian Evers <kristianevers@gmail.com>2018-03-26 17:35:35 +0200
committerGitHub <noreply@github.com>2018-03-26 17:35:35 +0200
commita1d924593d55d462536b6243e2e29a5a0386d443 (patch)
treeebeef1fc5d3c0d788827f98b217e9a4f32c21f1e
parent970bad5516f5cca4c097e3fa34fe38ad77493b66 (diff)
parent4ac0f38ad0a74c4bd596a72edd6c993fe17553a4 (diff)
downloadPROJ-a1d924593d55d462536b6243e2e29a5a0386d443.tar.gz
PROJ-a1d924593d55d462536b6243e2e29a5a0386d443.zip
Merge pull request #902 from schwehr/gie-time
gie.c: Initialize test_time other fields.
-rw-r--r--src/gie.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gie.c b/src/gie.c
index 5685a6c2..14d0fde3 100644
--- a/src/gie.c
+++ b/src/gie.c
@@ -1950,7 +1950,7 @@ static int test_time(const char* args, double tol, double t_in, double t_exp) {
if (P == 0)
return 5;
- in.xyzt.t = t_in;
+ in = proj_coord(0.0, 0.0, 0.0, t_in);
out = proj_trans(P, PJ_FWD, in);
if (fabs(out.xyzt.t - t_exp) > tol) {