25 , mOverlapThresholdMapUnits( configurationValue<double>( QStringLiteral(
"maxOverlapArea" ) ) )
35 QList<QString> layerIds = featureIds.keys();
42 layerIds.removeOne( layerFeatureA.layer()->id() );
44 QgsRectangle bboxA = layerFeatureA.geometry().constGet()->boundingBox();
46 if ( !geomEngineA->isValid() )
48 messages.append( tr(
"Overlap check failed for (%1): the geometry is invalid" ).arg( layerFeatureA.id() ) );
59 if ( layerFeatureA.layer()->id() == layerFeatureB.layer()->id() && layerFeatureB.feature().id() >= layerFeatureA.feature().id() )
64 if ( geomEngineA->overlaps( layerFeatureB.geometry().constGet(), &errMsg ) )
66 std::unique_ptr<QgsAbstractGeometry> interGeom( geomEngineA->intersection( layerFeatureB.geometry().constGet() ) );
67 if ( interGeom && !interGeom->isEmpty() )
70 for (
int iPart = 0, nParts = interGeom->partCount(); iPart < nParts; ++iPart )
73 double area = interPart->
area();
80 else if ( !errMsg.isEmpty() )
82 messages.append( tr(
"Overlap check between features %1 and %2 %3" ).arg( layerFeatureA.id(), layerFeatureB.id(), errMsg ) );
115 std::unique_ptr< QgsAbstractGeometry > interGeom( geomEngineA->intersection( layerFeatureB.
geometry().
constGet(), &errMsg ) );
118 error->
setFixFailed( tr(
"Failed to compute intersection between overlapping features: %1" ).arg( errMsg ) );
124 for (
int iPart = 0, nParts = interGeom->partCount(); iPart < nParts; ++iPart )
134 if ( !interPart || interPart->
isEmpty() )
147 std::unique_ptr< QgsAbstractGeometry > diff1( geomEngineA->difference( interPart, &errMsg ) );
148 if ( !diff1 || diff1->isEmpty() )
157 std::unique_ptr< QgsAbstractGeometry > diff2( geomEngineB->difference( interPart, &errMsg ) );
158 if ( !diff2 || diff2->isEmpty() )
168 if ( !diff1 || !diff2 || shared1 == 0. || shared2 == 0. )
170 error->
setFixFailed( tr(
"Could not find shared edges between intersection and overlapping features" ) );
174 if ( shared1 < shared2 )
204 static QStringList methods = QStringList()
205 << tr(
"Remove overlapping area from neighboring polygon with shortest shared edge" )
206 << tr(
"No action" );
212 return factoryDescription();
222 return factoryFlags();
226 QString QgsGeometryOverlapCheck::factoryDescription()
228 return tr(
"Overlap" );
236 QString QgsGeometryOverlapCheck::factoryId()
238 return QStringLiteral(
"QgsGeometryOverlapCheck" );
241 QgsGeometryCheck::Flags QgsGeometryOverlapCheck::factoryFlags()
246 QList<QgsWkbTypes::GeometryType> QgsGeometryOverlapCheck::factoryCompatibleGeometryTypes()
253 return factoryCompatibleGeometryTypes().contains( layer->
geometryType() );
259 , mOverlappedFeature(
OverlappedFeature( overlappedFeature.layer(), overlappedFeature.feature().
id() ) )
266 return QCoreApplication::translate(
"QgsGeometryTypeCheckError",
"Overlap with %1 at feature %2" ).arg( mOverlappedFeature.
layerName(), QString::number( mOverlappedFeature.
featureId() ) );
A rectangle specified with double values.
Subtract the overlap region from the polygon.
static bool pointsFuzzyEqual(const QgsPointXY &p1, const QgsPointXY &p2, double tol)
Determine whether two points are equal up to the specified tolerance.
virtual bool isEmpty() const
Returns true if the geometry is empty.
bool getFeature(QgsFeatureId id, QgsFeature &feature, QgsFeedback *feedback=nullptr)
Retrieves the feature with the specified id into feature.
QgsGeometryOverlapCheck(const QgsGeometryCheckContext *context, const QVariantMap &configuration)
Checks for overlapping polygons.
static QgsAbstractGeometry * getGeomPart(QgsAbstractGeometry *geom, int partIdx)
const QgsCoordinateReferenceSystem mapCrs
The coordinate system in which calculations should be done.
A class to represent a 2D point.
const QgsPointXY & location() const
The location of the error in map units.
QMap< QString, QgsFeatureIds > toMap() const
QgsFeatureId featureId() const
Contains a set of layers and feature ids in those layers to pass to a geometry check.
CheckType
The type of a check.
QgsWkbTypes::GeometryType geometryType() const
Returns point, line or polygon.
A geometry is the spatial representation of a feature.
void fixError(const QMap< QString, QgsFeaturePool *> &featurePools, QgsGeometryCheckError *error, int method, const QMap< QString, int > &mergeAttributeIndices, Changes &changes) const override
Fix the error error with the specified method.
QList< QgsWkbTypes::GeometryType > compatibleGeometryTypes() const override
A list of geometry types for which this check can be performed.
QString layerName() const
void setObsolete()
Set the error status to obsolete.
The feature class encapsulates a single feature including its id, geometry and a list of field/values...
virtual QgsAbstractGeometry * clone() const =0
Clones the geometry by performing a deep copy.
QStringList resolutionMethods() const override
Returns a list of descriptions for available resolutions for errors.
virtual void updateFeature(QgsFeature &feature)=0
Updates a feature in this pool.
void setFixFailed(const QString &reason)
Set the error status to failed and specify the reason for failure.
virtual QgsPoint centroid() const
Returns the centroid of the geometry.
Base class for feedback objects to be used for cancelation of something running in a worker thread...
Base configuration for geometry checks.
QgsGeometryCheck::Flags flags() const override
Flags for this geometry check.
static double sharedEdgeLength(const QgsAbstractGeometry *geom1, const QgsAbstractGeometry *geom2, double tol)
An error of a QgsGeometryOverlapCheck.
Utility class for identifying a unique vertex within a geometry.
const OverlappedFeature & overlappedFeature() const
Returns the overlapped feature.
QString description() const override
Returns a human readable description for this check.
A layer feature combination to uniquely identify and access a feature in a set of layers...
This class implements a geometry check.
virtual double area() const
Returns the area of the geometry.
Abstract base class for all geometries.
QMap< QString, QgsFeatureIds > allLayerFeatureIds(const QMap< QString, QgsFeaturePool *> &featurePools) const
Returns all layers and feature ids.
const QString & layerId() const
The id of the layer on which this error has been detected.
const double tolerance
The tolerance to allow for in geometry checks.
const QgsGeometryCheckContext * mContext
const double reducedTolerance
The tolerance to allow for in geometry checks.
A list of layers and feature ids for each of these layers.
const QgsAbstractGeometry * constGet() const
Returns a non-modifiable (const) reference to the underlying abstract geometry primitive.
static void filter1DTypes(QgsAbstractGeometry *geom)
void collectErrors(const QMap< QString, QgsFeaturePool *> &featurePools, QList< QgsGeometryCheckError *> &errors, QStringList &messages, QgsFeedback *feedback, const LayerFeatureIds &ids=LayerFeatureIds()) const override
The main worker method.
QMap< QString, QMap< QgsFeatureId, QList< QgsGeometryCheck::Change > > > Changes
A collection of changes.
bool isCanceled() const
Tells whether the operation has been canceled already.
A feature pool is based on a vector layer and caches features.
QString id() const override
Returns an id for this check.
Descripts a change to fix a geometry.
void setFixed(int method)
Set the status to fixed and specify the method that has been used to fix the error.
void setGeometry(const QgsGeometry &geometry)
Set the feature's geometry.
const QgsCoordinateTransformContext transformContext
The coordinate transform context with which transformations will be done.
QgsFeatureId featureId() const
The id of the feature on which this error has been detected.
QgsCoordinateReferenceSystem crs() const
The coordinate reference system of this layer.
This represents an error reported by a geometry check.
static std::unique_ptr< QgsGeometryEngine > createGeomEngine(const QgsAbstractGeometry *geometry, double tolerance)
QString description() const override
The error description.
QVariant value() const
An additional value for the error.
Represents a vector layer which manages a vector based data sets.
Something has been updated.
QgsGeometryOverlapCheckError(const QgsGeometryCheck *check, const QgsGeometryCheckerUtils::LayerFeature &layerFeature, const QgsGeometry &geometry, const QgsPointXY &errorLocation, const QVariant &value, const QgsGeometryCheckerUtils::LayerFeature &overlappedFeature)
Creates a new overlap check error for check and the layerFeature combination.
This change happens on feature level.
This geometry check should be available in layer validation on the vector layer peroperties.
The check controls a whole layer (topology checks)
const QgsGeometry & geometry() const
Returns the geometry of this feature.