24QString QgsOffsetLinesAlgorithm::name()
const
26 return QStringLiteral(
"offsetline" );
29QString QgsOffsetLinesAlgorithm::displayName()
const
31 return QObject::tr(
"Offset lines" );
34QStringList QgsOffsetLinesAlgorithm::tags()
const
36 return QObject::tr(
"offset,linestring" ).split(
',' );
39QString QgsOffsetLinesAlgorithm::group()
const
41 return QObject::tr(
"Vector geometry" );
44QString QgsOffsetLinesAlgorithm::groupId()
const
46 return QStringLiteral(
"vectorgeometry" );
49QString QgsOffsetLinesAlgorithm::outputName()
const
51 return QObject::tr(
"Offset" );
54QString QgsOffsetLinesAlgorithm::shortHelpString()
const
56 return QObject::tr(
"This algorithm offsets lines by a specified distance. Positive distances will offset lines to the left, and negative distances "
57 "will offset to the right of lines.\n\n"
58 "The segments parameter controls the number of line segments to use to approximate a quarter circle when creating rounded offsets.\n\n"
59 "The join style parameter specifies whether round, miter or beveled joins should be used when offsetting corners in a line.\n\n"
60 "The miter limit parameter is only applicable for miter join styles, and controls the maximum distance from the offset curve to "
61 "use when creating a mitered join." );
64QString QgsOffsetLinesAlgorithm::shortDescription()
const
66 return QObject::tr(
"Offsets lines by a specified distance." );
69QIcon QgsOffsetLinesAlgorithm::icon()
const
74QString QgsOffsetLinesAlgorithm::svgIconPath()
const
79QgsOffsetLinesAlgorithm *QgsOffsetLinesAlgorithm::createInstance()
const
81 return new QgsOffsetLinesAlgorithm();
84void QgsOffsetLinesAlgorithm::initParameters(
const QVariantMap & )
86 auto offset = std::make_unique<QgsProcessingParameterDistance>( QStringLiteral(
"DISTANCE" ), QObject::tr(
"Distance" ), 10.0, QStringLiteral(
"INPUT" ) );
87 offset->setIsDynamic(
true );
89 offset->setDynamicLayerParameterName( QStringLiteral(
"INPUT" ) );
90 addParameter( offset.release() );
93 addParameter( segmentParam.release() );
95 auto joinStyleParam = std::make_unique<QgsProcessingParameterEnum>( QStringLiteral(
"JOIN_STYLE" ), QObject::tr(
"Join style" ), QStringList() << QObject::tr(
"Round" ) << QObject::tr(
"Miter" ) << QObject::tr(
"Bevel" ),
false, 0 );
96 addParameter( joinStyleParam.release() );
99 addParameter( miterLimitParam.release() );
102QList<int> QgsOffsetLinesAlgorithm::inputLayerTypes()
const
114 mOffset = parameterAsDouble( parameters, QStringLiteral(
"DISTANCE" ), context );
116 if ( mDynamicOffset )
117 mOffsetProperty = parameters.value( QStringLiteral(
"DISTANCE" ) ).value<
QgsProperty>();
119 mSegments = parameterAsInt( parameters, QStringLiteral(
"SEGMENTS" ), context );
120 mJoinStyle =
static_cast<Qgis::JoinStyle>( 1 + parameterAsInt( parameters, QStringLiteral(
"JOIN_STYLE" ), context ) );
121 mMiterLimit = parameterAsDouble( parameters, QStringLiteral(
"MITER_LIMIT" ), context );
133 double offset = mOffset;
134 if ( mDynamicOffset )
ProcessingSourceType
Processing data source types.
@ VectorLine
Vector line layers.
JoinStyle
Join styles for buffers.
@ Double
Double/float values.
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...
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 ¶meters, 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.
@ Double
Double value (including negative values).
A store for object properties.
QList< QgsFeature > QgsFeatureList