Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Refine algorithm name and tags
- Loading branch information
Showing
with
2 additions
and
2 deletions.
-
+2
−2
python/plugins/processing/algs/qgis/PointsAlongGeometry.py
|
@@ -58,7 +58,7 @@ def icon(self): |
|
|
return QIcon(os.path.join(pluginPath, 'images', 'ftools', 'extract_nodes.png')) |
|
|
|
|
|
def tags(self): |
|
|
return self.tr('create,interpolate,points,lines').split(',') |
|
|
return self.tr('create,interpolate,points,lines,regular,distance,by').split(',') |
|
|
|
|
|
def group(self): |
|
|
return self.tr('Vector geometry') |
|
@@ -85,7 +85,7 @@ def name(self): |
|
|
return 'pointsalonglines' |
|
|
|
|
|
def displayName(self): |
|
|
return self.tr('Points along lines') |
|
|
return self.tr('Points along geometry') |
|
|
|
|
|
def processAlgorithm(self, parameters, context, feedback): |
|
|
source = self.parameterAsSource(parameters, self.INPUT, context) |
|
|