Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Add tags for gdal_edit processing algorithm (#43484)
  • Loading branch information
AlisterH committed Jun 2, 2021
1 parent 0925273 commit c1c068b
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions python/plugins/processing/algs/gdal/AssignProjection.py
Expand Up @@ -64,6 +64,11 @@ def displayName(self):
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')

Expand Down

0 comments on commit c1c068b

Please sign in to comment.