diff options
| author | Even Rouault <even.rouault@spatialys.com> | 2020-03-23 18:34:09 +0100 |
|---|---|---|
| committer | Even Rouault <even.rouault@spatialys.com> | 2020-03-24 10:18:17 +0100 |
| commit | 23d2941ef30f5fa62230606766ae8b9e296f814f (patch) | |
| tree | 042a08df700fa054bf4fd0d476ce527f08bcdb5a /src/iso19111/coordinateoperation.cpp | |
| parent | 9af705d630b0cd629daa0b8a28b82ba28752aa7d (diff) | |
| download | PROJ-23d2941ef30f5fa62230606766ae8b9e296f814f.tar.gz PROJ-23d2941ef30f5fa62230606766ae8b9e296f814f.zip | |
ESRI WKT import / identification: special case for NAD_1983_HARN_StatePlane_Colorado_North_FIPS_0501 with Foot_US unit (fixes #2086)
Diffstat (limited to 'src/iso19111/coordinateoperation.cpp')
| -rw-r--r-- | src/iso19111/coordinateoperation.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/iso19111/coordinateoperation.cpp b/src/iso19111/coordinateoperation.cpp index 63b11761..33210d24 100644 --- a/src/iso19111/coordinateoperation.cpp +++ b/src/iso19111/coordinateoperation.cpp @@ -2443,7 +2443,7 @@ bool ParameterValue::_isEquivalentTo(const util::IComparable *other, } switch (type()) { case Type::MEASURE: { - return value()._isEquivalentTo(otherPV->value(), criterion); + return value()._isEquivalentTo(otherPV->value(), criterion, 2e-10); } case Type::STRING: |
