QGIS API Documentation 4.1.0-Master (5bf3c20f3c9)
Loading...
Searching...
No Matches
qgsalgorithmfixgeometries.cpp
Go to the documentation of this file.
1/***************************************************************************
2 qgsalgorithmfixgeometries.cpp
3 -----------------------------
4 begin : April 2017
5 copyright : (C) 2017 by Nyall Dawson
6 email : nyall dot dawson at gmail dot com
7 ***************************************************************************/
8
9/***************************************************************************
10 * *
11 * This program is free software; you can redistribute it and/or modify *
12 * it under the terms of the GNU General Public License as published by *
13 * the Free Software Foundation; either version 2 of the License, or *
14 * (at your option) any later version. *
15 * *
16 ***************************************************************************/
17
19
20#include <geos_c.h>
21
22#include "qgsvectorlayer.h"
23
24#include <QString>
25
26using namespace Qt::StringLiterals;
27
29
30QString QgsFixGeometriesAlgorithm::name() const
31{
32 return u"fixgeometries"_s;
33}
34
35QString QgsFixGeometriesAlgorithm::displayName() const
36{
37 return QObject::tr( "Fix geometries" );
38}
39
40QStringList QgsFixGeometriesAlgorithm::tags() const
41{
42 return QObject::tr( "repair,invalid,geometry,make,valid,error" ).split( ',' );
43}
44
45QString QgsFixGeometriesAlgorithm::group() const
46{
47 return QObject::tr( "Vector geometry" );
48}
49
50QString QgsFixGeometriesAlgorithm::groupId() const
51{
52 return u"vectorgeometry"_s;
53}
54
55Qgis::ProcessingFeatureSourceFlags QgsFixGeometriesAlgorithm::sourceFlags() const
56{
58}
59
60QString QgsFixGeometriesAlgorithm::outputName() const
61{
62 return QObject::tr( "Fixed geometries" );
63}
64
65Qgis::WkbType QgsFixGeometriesAlgorithm::outputWkbType( Qgis::WkbType type ) const
66{
68}
69
70QString QgsFixGeometriesAlgorithm::shortHelpString() const
71{
72 return QObject::tr(
73 "This algorithm attempts to create a valid representation of a given invalid geometry without "
74 "losing any of the input vertices. Already-valid geometries are returned without further intervention. "
75 "Always outputs multi-geometry layer.\n\n"
76 "NOTE: M values will be dropped from the output."
77 );
78}
79
80QString QgsFixGeometriesAlgorithm::shortDescription() const
81{
82 return QObject::tr( "Attempts to create a valid representation of a given invalid geometry without losing any of the input vertices." );
83}
84
85QgsFixGeometriesAlgorithm *QgsFixGeometriesAlgorithm::createInstance() const
86{
87 return new QgsFixGeometriesAlgorithm();
88}
89
90bool QgsFixGeometriesAlgorithm::supportInPlaceEdit( const QgsMapLayer *l ) const
91{
92 const QgsVectorLayer *layer = qobject_cast<const QgsVectorLayer *>( l );
93 if ( !layer )
94 return false;
95
97 return false;
98 // The algorithm would drop M, so disable it if the layer has M
99 return !QgsWkbTypes::hasM( layer->wkbType() );
100}
101
102void QgsFixGeometriesAlgorithm::initParameters( const QVariantMap & )
103{
104 auto methodParameter = std::make_unique<QgsProcessingParameterEnum>( u"METHOD"_s, QObject::tr( "Repair method" ), QStringList { QObject::tr( "Linework" ), QObject::tr( "Structure" ) }, 0, false );
105#if GEOS_VERSION_MAJOR == 3 && GEOS_VERSION_MINOR < 10
106 methodParameter->setDefaultValue( 0 );
107#else
108 methodParameter->setDefaultValue( 1 );
109#endif
110 addParameter( methodParameter.release() );
111}
112
113bool QgsFixGeometriesAlgorithm::prepareAlgorithm( const QVariantMap &parameters, QgsProcessingContext &context, QgsProcessingFeedback * )
114{
115 mMethod = static_cast<Qgis::MakeValidMethod>( parameterAsInt( parameters, u"METHOD"_s, context ) );
116#if GEOS_VERSION_MAJOR == 3 && GEOS_VERSION_MINOR < 10
117 if ( mMethod == Qgis::MakeValidMethod::Structure )
118 {
119 throw QgsProcessingException( QObject::tr( "The structured method to make geometries valid requires a QGIS build based on GEOS 3.10 or later" ) );
120 }
121#endif
122 return true;
123}
124
125QgsFeatureList QgsFixGeometriesAlgorithm::processFeature( const QgsFeature &feature, QgsProcessingContext &, QgsProcessingFeedback *feedback )
126{
127 if ( !feature.hasGeometry() )
128 return QgsFeatureList() << feature;
129
130 QgsFeature outputFeature = feature;
131
132 QgsGeometry outputGeometry = outputFeature.geometry().makeValid( mMethod );
133 if ( outputGeometry.isNull() )
134 {
135 feedback->pushInfo( QObject::tr( "makeValid failed for feature %1 " ).arg( feature.id() ) );
136 outputFeature.clearGeometry();
137 return QgsFeatureList() << outputFeature;
138 }
139
140 if ( outputGeometry.wkbType() == Qgis::WkbType::Unknown || QgsWkbTypes::flatType( outputGeometry.wkbType() ) == Qgis::WkbType::GeometryCollection )
141 {
142 // keep only the parts of the geometry collection with correct type
143 const QVector<QgsGeometry> tmpGeometries = outputGeometry.asGeometryCollection();
144 QVector<QgsGeometry> matchingParts;
145 for ( const QgsGeometry &g : tmpGeometries )
146 {
147 if ( g.type() == feature.geometry().type() )
148 matchingParts << g;
149 }
150 if ( !matchingParts.empty() )
151 outputGeometry = QgsGeometry::collectGeometry( matchingParts );
152 else
153 outputGeometry = QgsGeometry();
154 }
155
156 if ( outputGeometry.type() != Qgis::GeometryType::Point )
157 {
158 // some data providers are picky about the geometries we pass to them: we can't add single-part geometries
159 // when we promised multi-part geometries, so ensure we have the right type
160 outputGeometry.convertToMultiType();
161 }
162
163 if ( QgsWkbTypes::geometryType( outputGeometry.wkbType() ) != QgsWkbTypes::geometryType( feature.geometry().wkbType() ) )
164 {
165 // don't keep geometries which have different types - e.g. lines converted to points
166 feedback->pushInfo( QObject::tr( "Fixing geometry for feature %1 resulted in %2, geometry has been dropped." ).arg( feature.id() ).arg( QgsWkbTypes::displayString( outputGeometry.wkbType() ) ) );
167 outputFeature.clearGeometry();
168 }
169 else
170 {
171 outputFeature.setGeometry( outputGeometry );
172 }
173 return QgsFeatureList() << outputFeature;
174}
175
@ Point
Points.
Definition qgis.h:380
MakeValidMethod
Algorithms to use when repairing invalid geometries.
Definition qgis.h:2260
@ Structure
Structured method, first makes all rings valid and then merges shells and subtracts holes from shells...
Definition qgis.h:2262
@ SkipGeometryValidityChecks
Invalid geometry checks should always be skipped. This flag can be useful for algorithms which always...
Definition qgis.h:3828
WkbType
The WKB type describes the number of dimensions a geometry has.
Definition qgis.h:294
@ Unknown
Unknown.
Definition qgis.h:295
@ GeometryCollection
GeometryCollection.
Definition qgis.h:303
QFlags< ProcessingFeatureSourceFlag > ProcessingFeatureSourceFlags
Flags which control how QgsProcessingFeatureSource fetches features.
Definition qgis.h:3839
The feature class encapsulates a single feature including its unique ID, geometry and a list of field...
Definition qgsfeature.h:60
QgsFeatureId id
Definition qgsfeature.h:68
QgsGeometry geometry
Definition qgsfeature.h:71
void clearGeometry()
Removes any geometry associated with the feature.
bool hasGeometry() const
Returns true if the feature has an associated geometry.
void setGeometry(const QgsGeometry &geometry)
Set the feature's geometry.
A geometry is the spatial representation of a feature.
static QgsGeometry collectGeometry(const QVector< QgsGeometry > &geometries)
Creates a new multipart geometry from a list of QgsGeometry objects.
QgsGeometry makeValid(Qgis::MakeValidMethod method=Qgis::MakeValidMethod::Linework, bool keepCollapsed=false) const
Attempts to make an invalid geometry valid without losing vertices.
QVector< QgsGeometry > asGeometryCollection() const
Returns contents of the geometry as a list of geometries.
Qgis::GeometryType type
bool convertToMultiType()
Converts single type geometry into multitype geometry e.g.
Qgis::WkbType wkbType() const
Returns type of the geometry as a WKB type (point / linestring / polygon etc.).
Base class for all map layer types.
Definition qgsmaplayer.h:83
Contains information about the context in which a processing algorithm is executed.
Custom exception class for processing related exceptions.
bool supportInPlaceEdit(const QgsMapLayer *layer) const override
Checks whether this algorithm supports in-place editing on the given layer Default implementation for...
Base class for providing feedback from a processing algorithm.
virtual void pushInfo(const QString &info)
Pushes a general informational message from the algorithm.
Represents a vector layer which manages a vector based dataset.
bool isSpatial() const final
Returns true if this is a geometry layer and false in case of NoGeometry (table only) or UnknownGeome...
Q_INVOKABLE Qgis::WkbType wkbType() const final
Returns the WKBType or WKBUnknown in case of error.
static Qgis::GeometryType geometryType(Qgis::WkbType type)
Returns the geometry type for a WKB type, e.g., both MultiPolygon and CurvePolygon would have a Polyg...
static Q_INVOKABLE QString displayString(Qgis::WkbType type)
Returns a non-translated display string type for a WKB type, e.g., the geometry name used in WKT geom...
static Qgis::WkbType promoteNonPointTypesToMulti(Qgis::WkbType type)
Promotes a WKB geometry type to its multi-type equivalent, with the exception of point geometry types...
static Q_INVOKABLE bool hasM(Qgis::WkbType type)
Tests whether a WKB type contains m values.
static Qgis::WkbType flatType(Qgis::WkbType type)
Returns the flat type for a WKB type.
QList< QgsFeature > QgsFeatureList