diff options
| author | Even Rouault <even.rouault@spatialys.com> | 2020-04-16 00:44:39 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-04-16 00:44:39 +0200 |
| commit | 000fa21d070e64200bc877b9d14444262e1a14b5 (patch) | |
| tree | 6d5dd2c3841bb87ec0816e6c9e9593b5091731a3 /include | |
| parent | c91966953d9ad327cbb3b9d80842cc0d3957df42 (diff) | |
| parent | 4be093e9d23b53915ed88a1c0da06f6833456a69 (diff) | |
| download | PROJ-000fa21d070e64200bc877b9d14444262e1a14b5.tar.gz PROJ-000fa21d070e64200bc877b9d14444262e1a14b5.zip | |
Merge pull request #2155 from rouault/fix_2143
createOperations(): do not remove ballpark transformation if there are only grid based operations, even if they cover the whole area of use (fixes #2143)
Diffstat (limited to 'include')
| -rw-r--r-- | include/proj/coordinateoperation.hpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/proj/coordinateoperation.hpp b/include/proj/coordinateoperation.hpp index c7459416..686a0c73 100644 --- a/include/proj/coordinateoperation.hpp +++ b/include/proj/coordinateoperation.hpp @@ -1759,6 +1759,10 @@ class PROJ_GCC_DLL CoordinateOperationContext { PROJ_DLL void setDesiredAccuracy(double accuracy); + PROJ_DLL void setAllowBallparkTransformations(bool allow); + + PROJ_DLL bool getAllowBallparkTransformations() const; + /** Specify how source and target CRS extent should be used to restrict * candidate operations (only taken into account if no explicit area of * interest is specified. */ |
