Skip to content

Commit

Permalink
[processing] Add 'thiessen' tag to QGIS' voronoi polygons algorithm
Browse files Browse the repository at this point in the history
(cherry picked from commit 8a85cae)
  • Loading branch information
nirvn authored and nyalldawson committed Jan 13, 2021
1 parent 6bb50f9 commit 798d97f
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions python/plugins/processing/algs/qgis/VoronoiPolygons.py
Expand Up @@ -85,6 +85,9 @@ def name(self):
def displayName(self):
return self.tr('Voronoi polygons')

def tags(self):
return self.tr('thiessen').split(',')

def processAlgorithm(self, parameters, context, feedback):
source = self.parameterAsSource(parameters, self.INPUT, context)
if source is None:
Expand Down

0 comments on commit 798d97f

Please sign in to comment.