diff options
| author | Even Rouault <even.rouault@spatialys.com> | 2019-02-14 16:38:08 +0100 |
|---|---|---|
| committer | Even Rouault <even.rouault@spatialys.com> | 2019-02-14 16:38:08 +0100 |
| commit | 63c7ba2e229bfd94389d17bdedc002489232027f (patch) | |
| tree | 055d062b4745df8d5cf7204a7f72c8a793dc74c7 /src | |
| parent | 620234a944103b7328848d218441abe80d56d563 (diff) | |
| download | PROJ-63c7ba2e229bfd94389d17bdedc002489232027f.tar.gz PROJ-63c7ba2e229bfd94389d17bdedc002489232027f.zip | |
Coordinate operations where a grid is present, but not in grid_alternatives table, should be considered as known to be sorted first
Diffstat (limited to 'src')
| -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 14b1024d..d964cdc1 100644 --- a/src/iso19111/coordinateoperation.cpp +++ b/src/iso19111/coordinateoperation.cpp @@ -10018,7 +10018,7 @@ struct FilterResults { !gridDesc.available) { gridsAvailable = false; } - if (gridDesc.packageName.empty()) { + if (gridDesc.packageName.empty() && !gridDesc.available) { gridsKnown = false; } } |
