Skip to content

Commit 0633ee0

Browse files
authored
Merge pull request #8336 from m-kuhn/doNotReportEnvelopeAsGap
Do not report envelope as gap
2 parents 2c835f9 + 32cdf3a commit 0633ee0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/analysis/vector/geometry_checker/qgsgeometrygapcheck.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,8 @@ void QgsGeometryGapCheck::collectErrors( const QMap<QString, QgsFeaturePool *> &
9898
{
9999
std::unique_ptr<QgsAbstractGeometry> gapGeom( QgsGeometryCheckerUtils::getGeomPart( diffGeom.get(), iPart )->clone() );
100100
// Skip the gap between features and boundingbox
101-
if ( gapGeom->boundingBox() == envelope->boundingBox() )
101+
const double spacing = context()->tolerance;
102+
if ( gapGeom->boundingBox().snappedToGrid( spacing ) == envelope->boundingBox().snappedToGrid( spacing ) )
102103
{
103104
continue;
104105
}

0 commit comments

Comments
 (0)