QGIS API Documentation 3.43.0-Master (e01d6d7c4c0)
qgsalgorithmorthogonalize.cpp
Go to the documentation of this file.
1/***************************************************************************
2 qgsalgorithmorthogonalize.cpp
3 ---------------------
4 begin : November 2019
5 copyright : (C) 2019 by Alexander Bruy
6 email : alexander dot bruy 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 "qgsprocessing.h"
20
22
23QString QgsOrthogonalizeAlgorithm::name() const
24{
25 return QStringLiteral( "orthogonalize" );
26}
27
28QString QgsOrthogonalizeAlgorithm::displayName() const
29{
30 return QObject::tr( "Orthogonalize" );
31}
32
33QStringList QgsOrthogonalizeAlgorithm::tags() const
34{
35 return QObject::tr( "rectangle,perpendicular,right,angles,square,quadrilateralise" ).split( ',' );
36}
37
38QString QgsOrthogonalizeAlgorithm::group() const
39{
40 return QObject::tr( "Vector geometry" );
41}
42
43QString QgsOrthogonalizeAlgorithm::groupId() const
44{
45 return QStringLiteral( "vectorgeometry" );
46}
47
48QString QgsOrthogonalizeAlgorithm::shortHelpString() const
49{
50 return QObject::tr( "Takes a line or polygon layer and attempts to orthogonalize "
51 "all the geometries in the layer. This process shifts the nodes "
52 "in the geometries to try to make every angle in the geometry "
53 "either a right angle or a straight line.\n\n"
54 "The angle tolerance parameter is used to specify the maximum "
55 "deviation from a right angle or straight line a node can have "
56 "for it to be adjusted. Smaller tolerances mean that only nodes "
57 "which are already closer to right angles will be adjusted, and "
58 "larger tolerances mean that nodes which deviate further from "
59 "right angles will also be adjusted.\n\n"
60 "The algorithm is iterative. Setting a larger number for the maximum "
61 "iterations will result in a more orthogonal geometry at the cost of "
62 "extra processing time." );
63}
64
65QString QgsOrthogonalizeAlgorithm::shortDescription() const
66{
67 return QObject::tr( "Takes a line or polygon layer and attempts to orthogonalize "
68 "all the geometries in the layer." );
69}
70
71QString QgsOrthogonalizeAlgorithm::outputName() const
72{
73 return QObject::tr( "Orthogonalized" );
74}
75
76QList<int> QgsOrthogonalizeAlgorithm::inputLayerTypes() const
77{
78 return QList<int>() << static_cast<int>( Qgis::ProcessingSourceType::VectorPolygon ) << static_cast<int>( Qgis::ProcessingSourceType::VectorLine );
79}
80
81QgsOrthogonalizeAlgorithm *QgsOrthogonalizeAlgorithm::createInstance() const
82{
83 return new QgsOrthogonalizeAlgorithm();
84}
85
86void QgsOrthogonalizeAlgorithm::initParameters( const QVariantMap & )
87{
88 auto angleToleranceParam = std::make_unique<QgsProcessingParameterNumber>( QStringLiteral( "ANGLE_TOLERANCE" ), QObject::tr( "Maximum angle tolerance (degrees)" ), Qgis::ProcessingNumberParameterType::Double, 15.0, false, 0.0, 45.0 );
89 angleToleranceParam->setIsDynamic( true );
90 angleToleranceParam->setDynamicPropertyDefinition( QgsPropertyDefinition( QStringLiteral( "Angle tolerance" ), QObject::tr( "Maximum angle tolerance (degrees)" ), QgsPropertyDefinition::Double ) );
91 angleToleranceParam->setDynamicLayerParameterName( QStringLiteral( "INPUT" ) );
92 addParameter( angleToleranceParam.release() );
93
94 auto maxIterations = std::make_unique<QgsProcessingParameterNumber>(
95 QStringLiteral( "MAX_ITERATIONS" ),
96 QObject::tr( "Maximum algorithm iterations" ),
98 1000, false, 1, 10000
99 );
100 maxIterations->setFlags( maxIterations->flags() | Qgis::ProcessingParameterFlag::Advanced );
101 addParameter( maxIterations.release() );
102}
103
104bool QgsOrthogonalizeAlgorithm::prepareAlgorithm( const QVariantMap &parameters, QgsProcessingContext &context, QgsProcessingFeedback * )
105{
106 mAngleTolerance = parameterAsDouble( parameters, QStringLiteral( "ANGLE_TOLERANCE" ), context );
107 mDynamicAngleTolerance = QgsProcessingParameters::isDynamic( parameters, QStringLiteral( "ANGLE_TOLERANCE" ) );
108 if ( mDynamicAngleTolerance )
109 mAngleToleranceProperty = parameters.value( QStringLiteral( "ANGLE_TOLERANCE" ) ).value<QgsProperty>();
110
111 mMaxIterations = parameterAsDouble( parameters, QStringLiteral( "MAX_ITERATIONS" ), context );
112
113 return true;
114}
115
116QgsFeatureList QgsOrthogonalizeAlgorithm::processFeature( const QgsFeature &feature, QgsProcessingContext &context, QgsProcessingFeedback * )
117{
118 QgsFeature f = feature;
119
120 if ( f.hasGeometry() )
121 {
122 double angleTolerance = mAngleTolerance;
123 if ( mDynamicAngleTolerance )
124 angleTolerance = mAngleToleranceProperty.valueAsDouble( context.expressionContext(), angleTolerance );
125
126 const QgsGeometry outputGeometry = f.geometry().orthogonalize( 1.0e-8, mMaxIterations, angleTolerance );
127 if ( outputGeometry.isNull() )
128 throw QgsProcessingException( QObject::tr( "Error orthogonalizing geometry" ) );
129
130 f.setGeometry( outputGeometry );
131 }
132
133 return QgsFeatureList() << f;
134}
135
@ VectorPolygon
Vector polygon layers.
@ VectorLine
Vector line layers.
@ Advanced
Parameter is an advanced parameter which should be hidden from users by default.
The feature class encapsulates a single feature including its unique ID, geometry and a list of field...
Definition qgsfeature.h:58
QgsGeometry geometry
Definition qgsfeature.h:69
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.
QgsGeometry orthogonalize(double tolerance=1.0E-8, int maxIterations=1000, double angleThreshold=15.0) const
Attempts to orthogonalize a line or polygon geometry by shifting vertices to make the geometries angl...
Contains information about the context in which a processing algorithm is executed.
QgsExpressionContext & expressionContext()
Returns the expression context.
Custom exception class for processing related exceptions.
Base class for providing feedback from a processing algorithm.
static bool isDynamic(const QVariantMap &parameters, const QString &name)
Returns true if the parameter with matching name is a dynamic parameter, and must be evaluated once f...
Definition for a property.
Definition qgsproperty.h:45
@ Double
Double value (including negative values)
Definition qgsproperty.h:55
A store for object properties.
QList< QgsFeature > QgsFeatureList