QGIS API Documentation 3.41.0-Master (af5edcb665c)
Loading...
Searching...
No Matches
qgsalgorithmconverttocurves.cpp
Go to the documentation of this file.
1/***************************************************************************
2 qgsalgorithmconverttocurves.cpp
3 ---------------------
4 begin : March 2018
5 copyright : (C) 2018 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
21
22QString QgsConvertToCurvesAlgorithm::name() const
23{
24 return QStringLiteral( "converttocurves" );
25}
26
27QString QgsConvertToCurvesAlgorithm::displayName() const
28{
29 return QObject::tr( "Convert to curved geometries" );
30}
31
32QStringList QgsConvertToCurvesAlgorithm::tags() const
33{
34 return QObject::tr( "straight,segmentize,curves,curved,circular" ).split( ',' );
35}
36
37QString QgsConvertToCurvesAlgorithm::group() const
38{
39 return QObject::tr( "Vector geometry" );
40}
41
42QString QgsConvertToCurvesAlgorithm::groupId() const
43{
44 return QStringLiteral( "vectorgeometry" );
45}
46
47QString QgsConvertToCurvesAlgorithm::outputName() const
48{
49 return QObject::tr( "Curves" );
50}
51
52QString QgsConvertToCurvesAlgorithm::shortHelpString() const
53{
54 return QObject::tr( "This algorithm converts a geometry into its curved geometry equivalent.\n\n"
55 "Already curved geometries will be retained without change." );
56}
57
58QgsConvertToCurvesAlgorithm *QgsConvertToCurvesAlgorithm::createInstance() const
59{
60 return new QgsConvertToCurvesAlgorithm();
61}
62
63QList<int> QgsConvertToCurvesAlgorithm::inputLayerTypes() const
64{
65 return QList<int>() << static_cast<int>( Qgis::ProcessingSourceType::VectorLine ) << static_cast<int>( Qgis::ProcessingSourceType::VectorPolygon );
66}
67
68void QgsConvertToCurvesAlgorithm::initParameters( const QVariantMap & )
69{
70 std::unique_ptr<QgsProcessingParameterNumber> tolerance = std::make_unique<QgsProcessingParameterNumber>( QStringLiteral( "DISTANCE" ), QObject::tr( "Maximum distance tolerance" ), Qgis::ProcessingNumberParameterType::Double, 0.000001, false, 0, 10000000.0 );
71 tolerance->setIsDynamic( true );
72 tolerance->setDynamicPropertyDefinition( QgsPropertyDefinition( QStringLiteral( "DISTANCE" ), QObject::tr( "Maximum distance tolerance" ), QgsPropertyDefinition::DoublePositive ) );
73 tolerance->setDynamicLayerParameterName( QStringLiteral( "INPUT" ) );
74 addParameter( tolerance.release() );
75
76 std::unique_ptr<QgsProcessingParameterNumber> angleTolerance = std::make_unique<QgsProcessingParameterNumber>( QStringLiteral( "ANGLE" ), QObject::tr( "Maximum angle tolerance" ), Qgis::ProcessingNumberParameterType::Double, 0.000001, false, 0, 45.0 );
77 angleTolerance->setIsDynamic( true );
78 angleTolerance->setDynamicPropertyDefinition( QgsPropertyDefinition( QStringLiteral( "ANGLE" ), QObject::tr( "Maximum angle tolerance" ), QgsPropertyDefinition::DoublePositive ) );
79 angleTolerance->setDynamicLayerParameterName( QStringLiteral( "INPUT" ) );
80 addParameter( angleTolerance.release() );
81}
82
83bool QgsConvertToCurvesAlgorithm::prepareAlgorithm( const QVariantMap &parameters, QgsProcessingContext &context, QgsProcessingFeedback * )
84{
85 mTolerance = parameterAsDouble( parameters, QStringLiteral( "DISTANCE" ), context );
86 mDynamicTolerance = QgsProcessingParameters::isDynamic( parameters, QStringLiteral( "DISTANCE" ) );
87 if ( mDynamicTolerance )
88 mToleranceProperty = parameters.value( QStringLiteral( "DISTANCE" ) ).value<QgsProperty>();
89
90 mAngleTolerance = parameterAsDouble( parameters, QStringLiteral( "ANGLE" ), context );
91 mDynamicAngleTolerance = QgsProcessingParameters::isDynamic( parameters, QStringLiteral( "ANGLE" ) );
92 if ( mDynamicAngleTolerance )
93 mAngleToleranceProperty = parameters.value( QStringLiteral( "ANGLE" ) ).value<QgsProperty>();
94
95 return true;
96}
97
98QgsFeatureList QgsConvertToCurvesAlgorithm::processFeature( const QgsFeature &feature, QgsProcessingContext &context, QgsProcessingFeedback * )
99{
100 QgsFeature f = feature;
101 if ( f.hasGeometry() )
102 {
103 const QgsGeometry geometry = f.geometry();
104 double tolerance = mTolerance;
105 if ( mDynamicTolerance )
106 tolerance = mToleranceProperty.valueAsDouble( context.expressionContext(), tolerance );
107 double angleTolerance = mAngleTolerance;
108 if ( mDynamicAngleTolerance )
109 angleTolerance = mAngleToleranceProperty.valueAsDouble( context.expressionContext(), angleTolerance );
110
111 f.setGeometry( geometry.convertToCurves( tolerance, angleTolerance * M_PI / 180.0 ) );
112 }
113 return QgsFeatureList() << f;
114}
115
116Qgis::WkbType QgsConvertToCurvesAlgorithm::outputWkbType( Qgis::WkbType inputWkbType ) const
117{
118 if ( QgsWkbTypes::isCurvedType( inputWkbType ) )
119 return inputWkbType;
120
122 switch ( QgsWkbTypes::geometryType( inputWkbType ) )
123 {
127 return inputWkbType;
128
131 break;
132
135 break;
136 }
137
138 if ( QgsWkbTypes::isMultiType( inputWkbType ) )
139 outType = QgsWkbTypes::multiType( outType );
140
141 if ( QgsWkbTypes::hasZ( inputWkbType ) )
142 outType = QgsWkbTypes::addZ( outType );
143
144 if ( QgsWkbTypes::hasM( inputWkbType ) )
145 outType = QgsWkbTypes::addM( outType );
146
147 return outType;
148}
149
150
@ VectorPolygon
Vector polygon layers.
@ VectorLine
Vector line layers.
@ Polygon
Polygons.
@ Unknown
Unknown types.
@ Null
No geometry.
WkbType
The WKB type describes the number of dimensions a geometry has.
Definition qgis.h:256
@ CompoundCurve
CompoundCurve.
@ Unknown
Unknown.
@ CurvePolygon
CurvePolygon.
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 convertToCurves(double distanceTolerance=1e-8, double angleTolerance=1e-8) const
Attempts to convert a non-curved geometry into a curved geometry type (e.g.
Contains information about the context in which a processing algorithm is executed.
QgsExpressionContext & expressionContext()
Returns the expression context.
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
@ DoublePositive
Positive double value (including 0)
Definition qgsproperty.h:56
A store for object properties.
double valueAsDouble(const QgsExpressionContext &context, double defaultValue=0.0, bool *ok=nullptr) const
Calculates the current value of the property and interprets it as a double.
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 bool isMultiType(Qgis::WkbType type)
Returns true if the WKB type is a multi type.
static Qgis::WkbType addM(Qgis::WkbType type)
Adds the m dimension to a WKB type and returns the new type.
static Qgis::WkbType addZ(Qgis::WkbType type)
Adds the z dimension to a WKB type and returns the new type.
static bool hasZ(Qgis::WkbType type)
Tests whether a WKB type contains the z-dimension.
static bool hasM(Qgis::WkbType type)
Tests whether a WKB type contains m values.
static Qgis::WkbType multiType(Qgis::WkbType type)
Returns the multi type for a WKB type.
static bool isCurvedType(Qgis::WkbType type)
Returns true if the WKB type is a curved type or can contain curved geometries.
QList< QgsFeature > QgsFeatureList