25QString QgsInterpolatePointAlgorithm::name()
const
27 return QStringLiteral(
"interpolatepoint" );
30QString QgsInterpolatePointAlgorithm::displayName()
const
32 return QObject::tr(
"Interpolate point on line" );
35QStringList QgsInterpolatePointAlgorithm::tags()
const
37 return QObject::tr(
"linestring,reference,referencing,distance,interpolate" ).split(
',' );
40QString QgsInterpolatePointAlgorithm::group()
const
42 return QObject::tr(
"Vector geometry" );
45QString QgsInterpolatePointAlgorithm::groupId()
const
47 return QStringLiteral(
"vectorgeometry" );
50QString QgsInterpolatePointAlgorithm::outputName()
const
52 return QObject::tr(
"Interpolated points" );
55QString QgsInterpolatePointAlgorithm::shortHelpString()
const
57 return QObject::tr(
"This algorithm creates a point geometry interpolated at a set distance along line or curve geometries.\n\n"
58 "Z and M values are linearly interpolated from existing values.\n\n"
59 "If a multipart geometry is encountered, only the first part is considered when "
60 "interpolating the point.\n\n"
61 "If the specified distance is greater than the curve's length, the resultant feature will have a null geometry." );
64QString QgsInterpolatePointAlgorithm::shortDescription()
const
66 return QObject::tr(
"Interpolates a point along lines at a set distance." );
69QList<int> QgsInterpolatePointAlgorithm::inputLayerTypes()
const
89QgsInterpolatePointAlgorithm *QgsInterpolatePointAlgorithm::createInstance()
const
91 return new QgsInterpolatePointAlgorithm();
94void QgsInterpolatePointAlgorithm::initParameters(
const QVariantMap & )
96 auto distance = std::make_unique<QgsProcessingParameterDistance>( QStringLiteral(
"DISTANCE" ), QObject::tr(
"Distance" ), 0.0, QStringLiteral(
"INPUT" ),
false, 0 );
97 distance->setIsDynamic(
true );
99 distance->setDynamicLayerParameterName( QStringLiteral(
"INPUT" ) );
100 addParameter( distance.release() );
111 mDistance = parameterAsDouble( parameters, QStringLiteral(
"DISTANCE" ), context );
113 if ( mDynamicDistance )
114 mDistanceProperty = parameters.value( QStringLiteral(
"DISTANCE" ) ).value<
QgsProperty>();
125 double distance = mDistance;
126 if ( mDynamicDistance )
127 distance = mDistanceProperty.valueAsDouble( context.
expressionContext(), distance );
ProcessingSourceType
Processing data source types.
@ VectorPoint
Vector point layers.
@ VectorPolygon
Vector polygon layers.
@ VectorLine
Vector line layers.
@ SkipGeometryValidityChecks
Invalid geometry checks should always be skipped. This flag can be useful for algorithms which always...
WkbType
The WKB type describes the number of dimensions a geometry has.
QFlags< ProcessingFeatureSourceFlag > ProcessingFeatureSourceFlags
Flags which control how QgsProcessingFeatureSource fetches features.
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 interpolate(double distance) const
Returns an interpolated point on the geometry at the specified distance.
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.
@ DoublePositive
Positive double value (including 0).
A store for object properties.
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 Q_INVOKABLE bool hasZ(Qgis::WkbType type)
Tests whether a WKB type contains the z-dimension.
static Q_INVOKABLE bool hasM(Qgis::WkbType type)
Tests whether a WKB type contains m values.
QList< QgsFeature > QgsFeatureList