aboutsummaryrefslogtreecommitdiff
path: root/src/iso19111/coordinateoperation.cpp
diff options
context:
space:
mode:
authorEven Rouault <even.rouault@spatialys.com>2020-10-02 21:52:33 +0200
committerEven Rouault <even.rouault@spatialys.com>2020-10-02 21:52:33 +0200
commitd00b2bdec084921dfa9dd505bb3f7617f941a964 (patch)
treeeb7d5b49c0eb15a939c5a4fe8eda85f02e2238b0 /src/iso19111/coordinateoperation.cpp
parent1cd25bb01d7a703b9556abdf57035ee0424faa26 (diff)
downloadPROJ-d00b2bdec084921dfa9dd505bb3f7617f941a964.tar.gz
PROJ-d00b2bdec084921dfa9dd505bb3f7617f941a964.zip
CoordinateOperation: fix issue with ballpark flag not being copied with shallowClone() which affected result sorting
Diffstat (limited to 'src/iso19111/coordinateoperation.cpp')
-rw-r--r--src/iso19111/coordinateoperation.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/iso19111/coordinateoperation.cpp b/src/iso19111/coordinateoperation.cpp
index ef262cc8..ffdf0987 100644
--- a/src/iso19111/coordinateoperation.cpp
+++ b/src/iso19111/coordinateoperation.cpp
@@ -608,6 +608,7 @@ struct CoordinateOperation::Private {
interpolationCRS_(other.interpolationCRS_),
sourceCoordinateEpoch_(other.sourceCoordinateEpoch_),
targetCoordinateEpoch_(other.targetCoordinateEpoch_),
+ hasBallparkTransformation_(other.hasBallparkTransformation_),
strongRef_(other.strongRef_ ? internal::make_unique<CRSStrongRef>(
*(other.strongRef_))
: nullptr) {}