diff options
| author | Frank Warmerdam <warmerdam@pobox.com> | 2013-10-20 17:58:13 +0000 |
|---|---|---|
| committer | Frank Warmerdam <warmerdam@pobox.com> | 2013-10-20 17:58:13 +0000 |
| commit | 9067fbef75ab8ab6764eda88348ea5c1a4af67ec (patch) | |
| tree | e9b896004df4481fcf894f5e31eb6914ab52ee6b | |
| parent | 510f01ceb96f644e055b5439df46546a514592c4 (diff) | |
| download | PROJ-9067fbef75ab8ab6764eda88348ea5c1a4af67ec.tar.gz PROJ-9067fbef75ab8ab6764eda88348ea5c1a4af67ec.zip | |
Propogate ctx into sub-projection (#225).
git-svn-id: http://svn.osgeo.org/metacrs/proj/trunk@2389 4e78687f-474d-0410-85f9-8d5e500ac6b2
| -rw-r--r-- | ChangeLog | 6 | ||||
| -rw-r--r-- | src/PJ_ob_tran.c | 1 |
2 files changed, 7 insertions, 0 deletions
@@ -1,3 +1,9 @@ +2013-10-20 Frank Warmerdam <warmerdam@pobox.com> + + * src/cs2cs.c: Support -I when there is no +to projection. + + * src/PJ_ob_tran.c: Propogate ctx into sub-projection (#225). + 2013-10-03 Frank Warmerdam <warmerdam@pobox.com> * src/PJ_healpix.c: Fix healpix build on msvc. (#223) diff --git a/src/PJ_ob_tran.c b/src/PJ_ob_tran.c index 34e0f6b8..4ddba9a4 100644 --- a/src/PJ_ob_tran.c +++ b/src/PJ_ob_tran.c @@ -80,6 +80,7 @@ ENTRY1(ob_tran, link) /* copy existing header into new */ P->es = 0.; /* force to spherical */ P->link->params = P->params; + P->link->ctx = P->ctx; P->link->over = P->over; P->link->geoc = P->geoc; P->link->a = P->a; |
