Skip to content

Commit

Permalink
Merge pull request #8336 from m-kuhn/doNotReportEnvelopeAsGap
Browse files Browse the repository at this point in the history
Do not report envelope as gap
  • Loading branch information
m-kuhn committed Oct 26, 2018
2 parents 2c835f9 + 32cdf3a commit 0633ee0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/analysis/vector/geometry_checker/qgsgeometrygapcheck.cpp
Expand Up @@ -98,7 +98,8 @@ void QgsGeometryGapCheck::collectErrors( const QMap<QString, QgsFeaturePool *> &
{
std::unique_ptr<QgsAbstractGeometry> gapGeom( QgsGeometryCheckerUtils::getGeomPart( diffGeom.get(), iPart )->clone() );
// Skip the gap between features and boundingbox
if ( gapGeom->boundingBox() == envelope->boundingBox() )
const double spacing = context()->tolerance;
if ( gapGeom->boundingBox().snappedToGrid( spacing ) == envelope->boundingBox().snappedToGrid( spacing ) )
{
continue;
}
Expand Down

0 comments on commit 0633ee0

Please sign in to comment.