aboutsummaryrefslogtreecommitdiff
path: root/src/transform.cpp
diff options
context:
space:
mode:
authorKristian Evers <kristianevers@gmail.com>2019-02-14 19:22:18 +0100
committerGitHub <noreply@github.com>2019-02-14 19:22:18 +0100
commita813ad65cfb819bfa295dfbacdf577b258377c93 (patch)
treec7855676df4213a6b5a39e1ab6c0f09b2ec2527a /src/transform.cpp
parent63c7ba2e229bfd94389d17bdedc002489232027f (diff)
parent12689e3d858d66e5e00e8d99f9326ef91cc0a384 (diff)
downloadPROJ-a813ad65cfb819bfa295dfbacdf577b258377c93.tar.gz
PROJ-a813ad65cfb819bfa295dfbacdf577b258377c93.zip
Merge pull request #1264 from kbevers/remove-t_obs
Clean up time handling in helmert and deformation
Diffstat (limited to 'src/transform.cpp')
-rw-r--r--src/transform.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/transform.cpp b/src/transform.cpp
index 486178d0..d111d835 100644
--- a/src/transform.cpp
+++ b/src/transform.cpp
@@ -75,14 +75,15 @@ static int adjust_axis( projCtx ctx, const char *axis, int denormalize_flag,
**
*/
-static const int transient_error[60] = {
+static const int transient_error[70] = {
/* 0 1 2 3 4 5 6 7 8 9 */
/* 0 to 9 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
/* 10 to 19 */ 0, 0, 0, 0, 1, 1, 0, 1, 1, 1,
/* 20 to 29 */ 1, 0, 0, 0, 0, 0, 0, 1, 0, 0,
/* 30 to 39 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
/* 40 to 49 */ 0, 0, 0, 0, 0, 0, 0, 0, 1, 0,
- /* 50 to 59 */ 1, 0, 1, 0, 1, 1, 1, 1, 0, 0 };
+ /* 50 to 59 */ 1, 0, 1, 0, 1, 1, 1, 1, 0, 0,
+ /* 60 to 69 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,};
/* -------------------------------------------------------------------- */