24 QString QgsInterpolatePointAlgorithm::name()
const 26 return QStringLiteral(
"interpolatepoint" );
29 QString QgsInterpolatePointAlgorithm::displayName()
const 31 return QObject::tr(
"Interpolate point on line" );
34 QStringList QgsInterpolatePointAlgorithm::tags()
const 36 return QObject::tr(
"linestring,reference,referencing,distance,interpolate" ).split(
',' );
39 QString QgsInterpolatePointAlgorithm::group()
const 41 return QObject::tr(
"Vector geometry" );
44 QString QgsInterpolatePointAlgorithm::groupId()
const 46 return QStringLiteral(
"vectorgeometry" );
49 QString QgsInterpolatePointAlgorithm::outputName()
const 51 return QObject::tr(
"Interpolated points" );
54 QString QgsInterpolatePointAlgorithm::shortHelpString()
const 56 return QObject::tr(
"This algorithm creates a point geometry interpolated at a set distance along line or curve geometries.\n\n" 57 "Z and M values are linearly interpolated from existing values.\n\n" 58 "If a multipart geometry is encountered, only the first part is considered when " 59 "interpolating the point.\n\n" 60 "If the specified distance is greater than the curve's length, the resultant feature will have a null geometry." );
63 QString QgsInterpolatePointAlgorithm::shortDescription()
const 65 return QObject::tr(
"Interpolates a point along lines at a set distance." );
68 QList<int> QgsInterpolatePointAlgorithm::inputLayerTypes()
const 88 QgsInterpolatePointAlgorithm *QgsInterpolatePointAlgorithm::createInstance()
const 90 return new QgsInterpolatePointAlgorithm();
93 void QgsInterpolatePointAlgorithm::initParameters(
const QVariantMap & )
95 std::unique_ptr< QgsProcessingParameterDistance> distance = qgis::make_unique< QgsProcessingParameterDistance >( QStringLiteral(
"DISTANCE" ),
96 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 );
Base class for providing feedback from a processing algorithm.
Invalid geometry checks should always be skipped. This flag can be useful for algorithms which always...
QList< QgsFeature > QgsFeatureList
QgsGeometry interpolate(double distance) const
Returns an interpolated point on the geometry at the specified distance.
A geometry is the spatial representation of a feature.
The feature class encapsulates a single feature including its id, geometry and a list of field/values...
Positive double value (including 0)
bool hasGeometry() const
Returns true if the feature has an associated geometry.
static bool hasZ(Type type)
Tests whether a WKB type contains the z-dimension.
Type
The WKB type describes the number of dimensions a geometry has.
static Type addM(Type type)
Adds the m dimension to a WKB type and returns the new type.
static Type addZ(Type type)
Adds the z dimension to a WKB type and returns the new type.
A store for object properties.
QgsExpressionContext & expressionContext()
Returns the expression context.
Definition for a property.
Flag
Flags controlling how QgsProcessingFeatureSource fetches features.
void setGeometry(const QgsGeometry &geometry)
Set the feature's geometry.
SourceType
Data source types enum.
static bool hasM(Type type)
Tests whether a WKB type contains m values.
Contains information about the context in which a processing algorithm is executed.
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...