QGIS API Documentation 3.37.0-Master (fdefdf9c27f)
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#include "qgsvectorlayer.h"
20
21#include <geos_c.h>
22
24
25QString QgsFixGeometriesAlgorithm::name() const
26{
27 return QStringLiteral( "fixgeometries" );
28}
29
30QString QgsFixGeometriesAlgorithm::displayName() const
31{
32 return QObject::tr( "Fix geometries" );
33}
34
35QStringList QgsFixGeometriesAlgorithm::tags() const
36{
37 return QObject::tr( "repair,invalid,geometry,make,valid,error" ).split( ',' );
38}
39
40QString QgsFixGeometriesAlgorithm::group() const
41{
42 return QObject::tr( "Vector geometry" );
43}
44
45QString QgsFixGeometriesAlgorithm::groupId() const
46{
47 return QStringLiteral( "vectorgeometry" );
48}
49
50Qgis::ProcessingFeatureSourceFlags QgsFixGeometriesAlgorithm::sourceFlags() const
51{
53}
54
55QString QgsFixGeometriesAlgorithm::outputName() const
56{
57 return QObject::tr( "Fixed geometries" );
58}
59
60Qgis::WkbType QgsFixGeometriesAlgorithm::outputWkbType( Qgis::WkbType type ) const
61{
63}
64
65QString QgsFixGeometriesAlgorithm::shortHelpString() const
66{
67 return QObject::tr( "This algorithm attempts to create a valid representation of a given invalid geometry without "
68 "losing any of the input vertices. Already-valid geometries are returned without further intervention. "
69 "Always outputs multi-geometry layer.\n\n"
70 "NOTE: M values will be dropped from the output." );
71}
72
73QgsFixGeometriesAlgorithm *QgsFixGeometriesAlgorithm::createInstance() const
74{
75 return new QgsFixGeometriesAlgorithm();
76}
77
78bool QgsFixGeometriesAlgorithm::supportInPlaceEdit( const QgsMapLayer *l ) const
79{
80 const QgsVectorLayer *layer = qobject_cast< const QgsVectorLayer * >( l );
81 if ( !layer )
82 return false;
83
85 return false;
86 // The algorithm would drop M, so disable it if the layer has M
87 return ! QgsWkbTypes::hasM( layer->wkbType() );
88}
89
90void QgsFixGeometriesAlgorithm::initParameters( const QVariantMap & )
91{
92 std::unique_ptr< QgsProcessingParameterEnum> methodParameter = std::make_unique< QgsProcessingParameterEnum >(
93 QStringLiteral( "METHOD" ),
94 QObject::tr( "Repair method" ),
95 QStringList{ QObject::tr( "Linework" ), QObject::tr( "Structure" ) },
96 0,
97 false );
98#if GEOS_VERSION_MAJOR==3 && GEOS_VERSION_MINOR<10
99 methodParameter->setDefaultValue( 0 );
100#else
101 methodParameter->setDefaultValue( 1 );
102#endif
103 addParameter( methodParameter.release() );
104}
105
106bool QgsFixGeometriesAlgorithm::prepareAlgorithm( const QVariantMap &parameters, QgsProcessingContext &context, QgsProcessingFeedback * )
107{
108 mMethod = static_cast< Qgis::MakeValidMethod>( parameterAsInt( parameters, QStringLiteral( "METHOD" ), context ) );
109#if GEOS_VERSION_MAJOR==3 && GEOS_VERSION_MINOR<10
110 if ( mMethod == Qgis::MakeValidMethod::Structure )
111 {
112 throw QgsProcessingException( "The structured method to make geometries valid requires a QGIS build based on GEOS 3.10 or later" );
113 }
114#endif
115 return true;
116}
117
118QgsFeatureList QgsFixGeometriesAlgorithm::processFeature( const QgsFeature &feature, QgsProcessingContext &, QgsProcessingFeedback *feedback )
119{
120 if ( !feature.hasGeometry() )
121 return QgsFeatureList() << feature;
122
123 QgsFeature outputFeature = feature;
124
125 QgsGeometry outputGeometry = outputFeature.geometry().makeValid( mMethod );
126 if ( outputGeometry.isNull() )
127 {
128 feedback->pushInfo( QObject::tr( "makeValid failed for feature %1 " ).arg( feature.id() ) );
129 outputFeature.clearGeometry();
130 return QgsFeatureList() << outputFeature;
131 }
132
133 if ( outputGeometry.wkbType() == Qgis::WkbType::Unknown ||
135 {
136 // keep only the parts of the geometry collection with correct type
137 const QVector< QgsGeometry > tmpGeometries = outputGeometry.asGeometryCollection();
138 QVector< QgsGeometry > matchingParts;
139 for ( const QgsGeometry &g : tmpGeometries )
140 {
141 if ( g.type() == feature.geometry().type() )
142 matchingParts << g;
143 }
144 if ( !matchingParts.empty() )
145 outputGeometry = QgsGeometry::collectGeometry( matchingParts );
146 else
147 outputGeometry = QgsGeometry();
148 }
149
150 if ( outputGeometry.type() != Qgis::GeometryType::Point )
151 {
152 // some data providers are picky about the geometries we pass to them: we can't add single-part geometries
153 // when we promised multi-part geometries, so ensure we have the right type
154 outputGeometry.convertToMultiType();
155 }
156
157 if ( QgsWkbTypes::geometryType( outputGeometry.wkbType() ) != QgsWkbTypes::geometryType( feature.geometry().wkbType() ) )
158 {
159 // don't keep geometries which have different types - e.g. lines converted to points
160 feedback->pushInfo( QObject::tr( "Fixing geometry for feature %1 resulted in %2, geometry has been dropped." ).arg( feature.id() ).arg( QgsWkbTypes::displayString( outputGeometry.wkbType() ) ) );
161 outputFeature.clearGeometry();
162 }
163 else
164 {
165 outputFeature.setGeometry( outputGeometry );
166 }
167 return QgsFeatureList() << outputFeature;
168}
169
MakeValidMethod
Algorithms to use when repairing invalid geometries.
Definition: qgis.h:1720
@ Structure
Structured method, first makes all rings valid and then merges shells and subtracts holes from shells...
@ SkipGeometryValidityChecks
Invalid geometry checks should always be skipped. This flag can be useful for algorithms which always...
WkbType
The WKB type describes the number of dimensions a geometry has.
Definition: qgis.h:182
@ Unknown
Unknown.
@ GeometryCollection
GeometryCollection.
QFlags< ProcessingFeatureSourceFlag > ProcessingFeatureSourceFlags
Flags which control how QgsProcessingFeatureSource fetches features.
Definition: qgis.h:3011
The feature class encapsulates a single feature including its unique ID, geometry and a list of field...
Definition: qgsfeature.h:56
QgsGeometry geometry
Definition: qgsfeature.h:67
void clearGeometry()
Removes any geometry associated with the feature.
Definition: qgsfeature.cpp:181
bool hasGeometry() const
Returns true if the feature has an associated geometry.
Definition: qgsfeature.cpp:230
void setGeometry(const QgsGeometry &geometry)
Set the feature's geometry.
Definition: qgsfeature.cpp:167
Q_GADGET QgsFeatureId id
Definition: qgsfeature.h:64
A geometry is the spatial representation of a feature.
Definition: qgsgeometry.h:162
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.
Q_GADGET bool isNull
Definition: qgsgeometry.h:164
Qgis::GeometryType type
Definition: qgsgeometry.h:165
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:75
Contains information about the context in which a processing algorithm is executed.
Custom exception class for processing related exceptions.
Definition: qgsexception.h:83
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 data sets.
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...
Definition: qgswkbtypes.h:862
static 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...
Definition: qgswkbtypes.h:347
static bool hasM(Qgis::WkbType type)
Tests whether a WKB type contains m values.
Definition: qgswkbtypes.h:1023
static Qgis::WkbType flatType(Qgis::WkbType type)
Returns the flat type for a WKB type.
Definition: qgswkbtypes.h:628
QList< QgsFeature > QgsFeatureList
Definition: qgsfeature.h:917