diff options
| author | Kristian Evers <kristianevers@gmail.com> | 2019-06-23 12:05:51 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-06-23 12:05:51 +0200 |
| commit | 954bd87db12618e3264d0d5dc8a01b6bf82fec71 (patch) | |
| tree | 0599144567099b0a6f62f41aa0f4bcbc4687fc7d /src | |
| parent | b5341a102a0442ebeb3c7e89dd769c5b03000e8c (diff) | |
| parent | 11a53b7c0255087c2b324b36147deb837902dfb9 (diff) | |
| download | PROJ-954bd87db12618e3264d0d5dc8a01b6bf82fec71.tar.gz PROJ-954bd87db12618e3264d0d5dc8a01b6bf82fec71.zip | |
[Backport 6.1] +proj=ob_tran +o_proj=longlat: set right unit to PJ_IO_UNITS_WHATEVER so as to be able to chain with unitconvert (fixes #1525) (#1527)
[Backport 6.1] +proj=ob_tran +o_proj=longlat: set right unit to PJ_IO_UNITS_WHATEVER so as to be able to chain with unitconvert (fixes #1525)
Diffstat (limited to 'src')
| -rw-r--r-- | src/projections/ob_tran.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/projections/ob_tran.cpp b/src/projections/ob_tran.cpp index f9eaa6f0..4ae8dbe7 100644 --- a/src/projections/ob_tran.cpp +++ b/src/projections/ob_tran.cpp @@ -242,7 +242,7 @@ PJ *PROJECTION(ob_tran) { /* Support some rather speculative test cases, where the rotated projection */ /* is actually latlong. We do not want scaling in that case... */ if (Q->link->right==PJ_IO_UNITS_RADIANS) - P->right = PJ_IO_UNITS_PROJECTED; + P->right = PJ_IO_UNITS_WHATEVER; return P; |
