aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorKristian Evers <kristianevers@gmail.com>2018-03-20 20:05:02 +0100
committerKristian Evers <kristianevers@gmail.com>2018-03-20 20:06:25 +0100
commitae3527d4d5720b0eb29cfdcf434738163c1b280c (patch)
tree99c40ce20ac8da258f11916ed100d7abe0bce968 /src
parent23a028ffa05c4dc70f51d36750238720cdaf4467 (diff)
downloadPROJ-ae3527d4d5720b0eb29cfdcf434738163c1b280c.tar.gz
PROJ-ae3527d4d5720b0eb29cfdcf434738163c1b280c.zip
Add 'exact' flag to Helmert operation when doing cs2cs emulation. Fixes #871. (#873)
Diffstat (limited to 'src')
-rw-r--r--src/proj_4D_api.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/proj_4D_api.c b/src/proj_4D_api.c
index ceb5bc34..6bb0760a 100644
--- a/src/proj_4D_api.c
+++ b/src/proj_4D_api.c
@@ -490,7 +490,7 @@ Returns 1 on success, 0 on failure
def = malloc (100+n);
if (0==def)
return 0;
- sprintf (def, "break_cs2cs_recursion proj=helmert %s transpose", s);
+ sprintf (def, "break_cs2cs_recursion proj=helmert exact %s transpose", s);
Q = proj_create (P->ctx, def);
pj_inherit_ellipsoid_def (P, Q);
free (def);