QGIS API Documentation
3.26.3-Buenos Aires (65e4edfdad)
|
Go to the documentation of this file.
18 #ifndef QGS_GEOMETRY_DUPLICATE_CHECK_H
19 #define QGS_GEOMETRY_DUPLICATE_CHECK_H
35 const QMap<QString, QgsFeaturePool *> &featurePools,
36 const QMap<QString, QList<QgsFeatureId>> &duplicates )
38 , mDuplicates( duplicates )
40 QMap<QString, QList<QgsFeatureId>>
duplicates()
const {
return mDuplicates; }
52 QMap<QString, QList<QgsFeatureId>> mDuplicates;
54 static QString duplicatesString(
const QMap<QString, QgsFeaturePool *> &featurePools,
const QMap<QString, QList<QgsFeatureId>> &duplicates );
67 void collectErrors(
const QMap<QString, QgsFeaturePool *> &featurePools, QList<QgsGeometryCheckError *> &errors, QStringList &messages,
QgsFeedback *feedback,
const LayerFeatureIds &ids = LayerFeatureIds() )
const override;
68 void fixError(
const QMap<QString, QgsFeaturePool *> &featurePools,
QgsGeometryCheckError *error,
int method,
const QMap<QString, int> &mergeAttributeIndices, Changes &changes )
const override;
72 QString
description()
const override {
return factoryDescription(); }
73 QString
id()
const override {
return factoryId(); }
79 static QString factoryId();
85 #endif // QGS_GEOMETRY_DUPLICATE_CHECK_H
A duplicate geometry check error.
const QgsGeometryCheck * check() const
The geometry check that created this error.
QgsFeatureId featureId() const
The id of the feature on which this error has been detected.
QgsGeometryCheck::CheckType checkType() const override
Returns the check type.
QMap< QString, QList< QgsFeatureId > > duplicates() const
static QString factoryDescription()
QList< QgsWkbTypes::GeometryType > compatibleGeometryTypes() const override
A list of geometry types for which this check can be performed.
static bool factoryIsCompatible(QgsVectorLayer *layer)
virtual Q_DECL_DEPRECATED QStringList resolutionMethods() const
Returns a list of descriptions for available resolutions for errors.
virtual void collectErrors(const QMap< QString, QgsFeaturePool * > &featurePools, QList< QgsGeometryCheckError * > &errors, QStringList &messages, QgsFeedback *feedback, const LayerFeatureIds &ids=QgsGeometryCheck::LayerFeatureIds()) const =0
The main worker method.
QString description() const override
Returns a human readable description for this check.
QgsGeometryDuplicateCheckError(const QgsGeometryCheck *check, const QgsGeometryCheckerUtils::LayerFeature &layerFeature, const QgsPointXY &errorLocation, const QMap< QString, QgsFeaturePool * > &featurePools, const QMap< QString, QList< QgsFeatureId >> &duplicates)
This class implements a geometry check.
virtual void fixError(const QMap< QString, QgsFeaturePool * > &featurePools, QgsGeometryCheckError *error, int method, const QMap< QString, int > &mergeAttributeIndices, Changes &changes) const
Fixes the error error with the specified method.
static QList< QgsWkbTypes::GeometryType > factoryCompatibleGeometryTypes()
Base class for feedback objects to be used for cancellation of something running in a worker thread.
QString id() const override
Returns an id for this check.
A duplicate geometry check.
Base configuration for geometry checks.
A layer feature combination to uniquely identify and access a feature in a set of layers.
bool isEqual(QgsGeometryCheckError *other) const override
Check if this error is equal to other.
A class to represent a 2D point.
Represents a vector layer which manages a vector based data sets.
CheckType
The type of a check.
Utility class for identifying a unique vertex within a geometry.
const QString & layerId() const
The id of the layer on which this error has been detected.
This represents an error reported by a geometry check.
QgsGeometryDuplicateCheck(QgsGeometryCheckContext *context, const QVariantMap &configuration)