Skip to content

Commit

Permalink
Expands docs
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Aug 15, 2018
1 parent c6a91da commit 0ddbb3f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
6 changes: 5 additions & 1 deletion src/analysis/processing/qgsalgorithminterpolatepoint.cpp
Expand Up @@ -53,7 +53,11 @@ QString QgsInterpolatePointAlgorithm::outputName() const

QString QgsInterpolatePointAlgorithm::shortHelpString() const
{
return QObject::tr( "This algorithm creates a point geometry interpolated at a set distance along line geometries." );
return QObject::tr( "This algorithm creates a point geometry interpolated at a set distance along line or curve geometries.\n\n"
"Z and M values are linearly interpolated from existing values.\n\n"
"If a multipart geometry is encountered, only the first part is considered when "
"interpolating the point.\n\n"
"If the specified distance is greater than the curve's length, the resultant feature will have a null geometry." );
}

QString QgsInterpolatePointAlgorithm::shortDescription() const
Expand Down
4 changes: 3 additions & 1 deletion src/analysis/processing/qgsalgorithmlinesubstring.cpp
Expand Up @@ -56,7 +56,9 @@ QString QgsLineSubstringAlgorithm::shortHelpString() const
return QObject::tr( "This algorithm returns the portion of a line (or curve) which falls "
"between the specified start and end distances (measured from the "
"beginning of the line).\n\n"
"Z and M values are linearly interpolated from existing values." );
"Z and M values are linearly interpolated from existing values.\n\n"
"If a multipart geometry is encountered, only the first part is considered when "
"calculating the substring." );
}

QString QgsLineSubstringAlgorithm::shortDescription() const
Expand Down

0 comments on commit 0ddbb3f

Please sign in to comment.