Skip to content

Commit

Permalink
Fix "Extract vertices" alg help text
Browse files Browse the repository at this point in the history
  • Loading branch information
agiudiceandrea authored Feb 23, 2024
1 parent 71cb884 commit 1660c71
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/analysis/processing/qgsalgorithmextractvertices.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ QString QgsExtractVerticesAlgorithm::groupId() const

QString QgsExtractVerticesAlgorithm::shortHelpString() const
{
return QObject::tr( "This algorithm takes a line or polygon layer and generates a point layer with points representing the vertices in the input lines or polygons. The attributes associated to each point are the same ones associated to the line or polygon that the point belongs to." ) +
return QObject::tr( "This algorithm takes a vector layer and generates a point layer with points representing the vertices in the input geometry. The attributes associated to each point are the same ones associated to the feature that the point belongs to." ) +
QStringLiteral( "\n\n" ) +
QObject::tr( "Additional fields are added to the point indicating the vertex index (beginning at 0), the vertex’s part and its index within the part (as well as its ring for polygons), distance along original geometry and bisector angle of vertex for original geometry." );
}
Expand Down

0 comments on commit 1660c71

Please sign in to comment.