diff options
| author | Even Rouault <even.rouault@spatialys.com> | 2020-12-14 21:42:15 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-12-14 21:42:15 +0100 |
| commit | 8b1ef9504d0bcfbd8433df943e307bbd1aa30c4f (patch) | |
| tree | 30e2d3909d33c04f7966f996f90c971cd7023ade /src/iso19111/io.cpp | |
| parent | bfc54bbac8550e18d352468032ad0b3d5ca2d328 (diff) | |
| parent | 95340fb1d1011d6864d82b60194eb77df9e9e38f (diff) | |
| download | PROJ-8b1ef9504d0bcfbd8433df943e307bbd1aa30c4f.tar.gz PROJ-8b1ef9504d0bcfbd8433df943e307bbd1aa30c4f.zip | |
Merge pull request #2486 from rouault/fix_bound_proj_ntf_paris_to_bound_geog_ntf_paris_rebased
createOperations(): fix inconsistent chaining exception when transforming from BoundCRS of projected CRS based on NTF Paris to BoundCRS of geog CRS NTF Paris
Diffstat (limited to 'src/iso19111/io.cpp')
| -rw-r--r-- | src/iso19111/io.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/iso19111/io.cpp b/src/iso19111/io.cpp index 86ece49d..dc51c5d9 100644 --- a/src/iso19111/io.cpp +++ b/src/iso19111/io.cpp @@ -4238,7 +4238,8 @@ createBoundCRSSourceTransformationCRS(const crs::CRSPtr &sourceCRS, sourceGeographicCRS->datum()->ellipsoid(), util::optional<std::string>(), datum::PrimeMeridian::GREENWICH), - sourceGeographicCRS->coordinateSystem()) + cs::EllipsoidalCS::createLatitudeLongitude( + common::UnitOfMeasure::DEGREE)) .as_nullable(); } } else { |
