QGIS API Documentation 3.99.0-Master (357b655ed83)
Loading...
Searching...
No Matches
qgsalgorithmoffsetlines.cpp
Go to the documentation of this file.
1/***************************************************************************
2 qgsalgorithmoffsetlines.cpp
3 ---------------------
4 begin : July 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
20#include "qgsapplication.h"
21
22#include <QString>
23
24using namespace Qt::StringLiterals;
25
27
28QString QgsOffsetLinesAlgorithm::name() const
29{
30 return u"offsetline"_s;
31}
32
33QString QgsOffsetLinesAlgorithm::displayName() const
34{
35 return QObject::tr( "Offset lines" );
36}
37
38QStringList QgsOffsetLinesAlgorithm::tags() const
39{
40 return QObject::tr( "offset,linestring" ).split( ',' );
41}
42
43QString QgsOffsetLinesAlgorithm::group() const
44{
45 return QObject::tr( "Vector geometry" );
46}
47
48QString QgsOffsetLinesAlgorithm::groupId() const
49{
50 return u"vectorgeometry"_s;
51}
52
53QString QgsOffsetLinesAlgorithm::outputName() const
54{
55 return QObject::tr( "Offset" );
56}
57
58QString QgsOffsetLinesAlgorithm::shortHelpString() const
59{
60 return QObject::tr( "This algorithm offsets lines by a specified distance. Positive distances will offset lines to the left, and negative distances "
61 "will offset to the right of lines.\n\n"
62 "The segments parameter controls the number of line segments to use to approximate a quarter circle when creating rounded offsets.\n\n"
63 "The join style parameter specifies whether round, miter or beveled joins should be used when offsetting corners in a line.\n\n"
64 "The miter limit parameter is only applicable for miter join styles, and controls the maximum distance from the offset curve to "
65 "use when creating a mitered join." );
66}
67
68QString QgsOffsetLinesAlgorithm::shortDescription() const
69{
70 return QObject::tr( "Offsets lines by a specified distance." );
71}
72
73QIcon QgsOffsetLinesAlgorithm::icon() const
74{
75 return QgsApplication::getThemeIcon( u"/algorithms/mAlgorithmOffsetLines.svg"_s );
76}
77
78QString QgsOffsetLinesAlgorithm::svgIconPath() const
79{
80 return QgsApplication::iconPath( u"/algorithms/mAlgorithmOffsetLines.svg"_s );
81}
82
83QgsOffsetLinesAlgorithm *QgsOffsetLinesAlgorithm::createInstance() const
84{
85 return new QgsOffsetLinesAlgorithm();
86}
87
88void QgsOffsetLinesAlgorithm::initParameters( const QVariantMap & )
89{
90 auto offset = std::make_unique<QgsProcessingParameterDistance>( u"DISTANCE"_s, QObject::tr( "Distance" ), 10.0, u"INPUT"_s );
91 offset->setIsDynamic( true );
92 offset->setDynamicPropertyDefinition( QgsPropertyDefinition( u"DISTANCE"_s, QObject::tr( "Distance" ), QgsPropertyDefinition::Double ) );
93 offset->setDynamicLayerParameterName( u"INPUT"_s );
94 addParameter( offset.release() );
95
96 auto segmentParam = std::make_unique<QgsProcessingParameterNumber>( u"SEGMENTS"_s, QObject::tr( "Segments" ), Qgis::ProcessingNumberParameterType::Integer, 8, false, 1 );
97 addParameter( segmentParam.release() );
98
99 auto joinStyleParam = std::make_unique<QgsProcessingParameterEnum>( u"JOIN_STYLE"_s, QObject::tr( "Join style" ), QStringList() << QObject::tr( "Round" ) << QObject::tr( "Miter" ) << QObject::tr( "Bevel" ), false, 0 );
100 addParameter( joinStyleParam.release() );
101
102 auto miterLimitParam = std::make_unique<QgsProcessingParameterNumber>( u"MITER_LIMIT"_s, QObject::tr( "Miter limit" ), Qgis::ProcessingNumberParameterType::Double, 2, false, 1 );
103 addParameter( miterLimitParam.release() );
104}
105
106QList<int> QgsOffsetLinesAlgorithm::inputLayerTypes() const
107{
108 return QList<int>() << static_cast<int>( Qgis::ProcessingSourceType::VectorLine );
109}
110
111Qgis::ProcessingSourceType QgsOffsetLinesAlgorithm::outputLayerType() const
112{
114}
115
116bool QgsOffsetLinesAlgorithm::prepareAlgorithm( const QVariantMap &parameters, QgsProcessingContext &context, QgsProcessingFeedback * )
117{
118 mOffset = parameterAsDouble( parameters, u"DISTANCE"_s, context );
119 mDynamicOffset = QgsProcessingParameters::isDynamic( parameters, u"DISTANCE"_s );
120 if ( mDynamicOffset )
121 mOffsetProperty = parameters.value( u"DISTANCE"_s ).value<QgsProperty>();
122
123 mSegments = parameterAsInt( parameters, u"SEGMENTS"_s, context );
124 mJoinStyle = static_cast<Qgis::JoinStyle>( 1 + parameterAsInt( parameters, u"JOIN_STYLE"_s, context ) );
125 mMiterLimit = parameterAsDouble( parameters, u"MITER_LIMIT"_s, context );
126
127 return true;
128}
129
130QgsFeatureList QgsOffsetLinesAlgorithm::processFeature( const QgsFeature &feature, QgsProcessingContext &context, QgsProcessingFeedback * )
131{
132 if ( feature.hasGeometry() )
133 {
134 QgsFeature f = feature;
135 const QgsGeometry geometry = feature.geometry();
136
137 double offset = mOffset;
138 if ( mDynamicOffset )
139 offset = mOffsetProperty.valueAsDouble( context.expressionContext(), offset );
140
141 const QgsGeometry offsetGeometry = geometry.offsetCurve( offset, mSegments, mJoinStyle, mMiterLimit );
142 f.setGeometry( offsetGeometry );
143 return QgsFeatureList() << f;
144 }
145 else
146 {
147 return QgsFeatureList() << feature;
148 }
149}
150
ProcessingSourceType
Processing data source types.
Definition qgis.h:3602
@ VectorLine
Vector line layers.
Definition qgis.h:3606
JoinStyle
Join styles for buffers.
Definition qgis.h:2179
@ Double
Double/float values.
Definition qgis.h:3875
static QIcon getThemeIcon(const QString &name, const QColor &fillColor=QColor(), const QColor &strokeColor=QColor())
Helper to get a theme icon.
static QString iconPath(const QString &iconFile)
Returns path to the desired icon file.
The feature class encapsulates a single feature including its unique ID, geometry and a list of field...
Definition qgsfeature.h:60
QgsGeometry geometry
Definition qgsfeature.h:71
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 offsetCurve(double distance, int segments, Qgis::JoinStyle joinStyle, double miterLimit) const
Returns an offset line at a given distance and side from an input line.
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:47
@ Double
Double value (including negative values).
Definition qgsproperty.h:57
A store for object properties.
QList< QgsFeature > QgsFeatureList