diff --git a/python/plugins/processing/algs/gdal/AssignProjection.py b/python/plugins/processing/algs/gdal/AssignProjection.py index 431b3a3ade1..21211f5933c 100644 --- a/python/plugins/processing/algs/gdal/AssignProjection.py +++ b/python/plugins/processing/algs/gdal/AssignProjection.py @@ -64,6 +64,11 @@ class AssignProjection(GdalAlgorithm): def icon(self): return QIcon(os.path.join(pluginPath, 'images', 'gdaltools', 'projection-add.png')) + def tags(self): + tags = self.tr('assign,set,transform,reproject,crs,srs').split(',') + tags.extend(super().tags()) + return tags + def group(self): return self.tr('Raster projections')