QGIS API Documentation 3.99.0-Master (26c88405ac0)
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
25
26QString QgsFixGeometriesAlgorithm::name() const
27{
28 return QStringLiteral( "fixgeometries" );
29}
30
31QString QgsFixGeometriesAlgorithm::displayName() const
32{
33 return QObject::tr( "Fix geometries" );
34}
35
36QStringList QgsFixGeometriesAlgorithm::tags() const
37{
38 return QObject::tr( "repair,invalid,geometry,make,valid,error" ).split( ',' );
39}
40
41QString QgsFixGeometriesAlgorithm::group() const
42{
43 return QObject::tr( "Vector geometry" );
44}
45
46QString QgsFixGeometriesAlgorithm::groupId() const
47{
48 return QStringLiteral( "vectorgeometry" );
49}
50
51Qgis::ProcessingFeatureSourceFlags QgsFixGeometriesAlgorithm::sourceFlags() const
52{
54}
55
56QString QgsFixGeometriesAlgorithm::outputName() const
57{
58 return QObject::tr( "Fixed geometries" );
59}
60
61Qgis::WkbType QgsFixGeometriesAlgorithm::outputWkbType( Qgis::WkbType type ) const
62{
64}
65
66QString QgsFixGeometriesAlgorithm::shortHelpString() const
67{
68 return QObject::tr( "This algorithm attempts to create a valid representation of a given invalid geometry without "
69 "losing any of the input vertices. Already-valid geometries are returned without further intervention. "
70 "Always outputs multi-geometry layer.\n\n"
71 "NOTE: M values will be dropped from the output." );
72}
73
74QString QgsFixGeometriesAlgorithm::shortDescription() const
75{
76 return QObject::tr( "Attempts to create a valid representation of a given invalid geometry without losing any of the input vertices." );
77}
78
79QgsFixGeometriesAlgorithm *QgsFixGeometriesAlgorithm::createInstance() const
80{
81 return new QgsFixGeometriesAlgorithm();
82}
83
84bool QgsFixGeometriesAlgorithm::supportInPlaceEdit( const QgsMapLayer *l ) const
85{
86 const QgsVectorLayer *layer = qobject_cast<const QgsVectorLayer *>( l );
87 if ( !layer )
88 return false;
89
91 return false;
92 // The algorithm would drop M, so disable it if the layer has M
93 return !QgsWkbTypes::hasM( layer->wkbType() );
94}
95
96void QgsFixGeometriesAlgorithm::initParameters( const QVariantMap & )
97{
98 auto methodParameter = std::make_unique<QgsProcessingParameterEnum>(
99 QStringLiteral( "METHOD" ),
100 QObject::tr( "Repair method" ),
101 QStringList { QObject::tr( "Linework" ), QObject::tr( "Structure" ) },
102 0,
103 false
104 );
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, QStringLiteral( "METHOD" ), 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:359
MakeValidMethod
Algorithms to use when repairing invalid geometries.
Definition qgis.h:2180
@ Structure
Structured method, first makes all rings valid and then merges shells and subtracts holes from shells...
Definition qgis.h:2182
@ SkipGeometryValidityChecks
Invalid geometry checks should always be skipped. This flag can be useful for algorithms which always...
Definition qgis.h:3711
WkbType
The WKB type describes the number of dimensions a geometry has.
Definition qgis.h:277
@ Unknown
Unknown.
Definition qgis.h:278
@ GeometryCollection
GeometryCollection.
Definition qgis.h:286
QFlags< ProcessingFeatureSourceFlag > ProcessingFeatureSourceFlags
Flags which control how QgsProcessingFeatureSource fetches features.
Definition qgis.h:3722
The feature class encapsulates a single feature including its unique ID, geometry and a list of field...
Definition qgsfeature.h:58
QgsFeatureId id
Definition qgsfeature.h:66
QgsGeometry geometry
Definition qgsfeature.h:69
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:80
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