Skip to content

Commit

Permalink
[processing] Rename 'export/add geometry columns' alg + add tags for …
Browse files Browse the repository at this point in the history
…discoverability
  • Loading branch information
nyalldawson committed Feb 4, 2017
1 parent cb9314a commit ab03453
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/plugins/processing/algs/qgis/ExportGeometryInfo.py
Expand Up @@ -52,7 +52,8 @@ def getIcon(self):
return QIcon(os.path.join(pluginPath, 'images', 'ftools', 'export_geometry.png'))

def defineCharacteristics(self):
self.name, self.i18n_name = self.trAlgorithm('Export/Add geometry columns')
self.name, self.i18n_name = self.trAlgorithm('Add geometry columns and measures')
self.tags = self.trAlgorithm('export,measurements,areas,lengths,perimeters,latitudes,longitudes,,x,y,z,extract,points,lines,polygons')
self.group, self.i18n_group = self.trAlgorithm('Vector table tools')

self.calc_methods = [self.tr('Layer CRS'),
Expand Down Expand Up @@ -120,7 +121,6 @@ def processAlgorithm(self, feedback):
coordTransform = QgsCoordinateTransform(layCRS, mapCRS)

outFeat = QgsFeature()
inGeom = QgsGeometry()

outFeat.initAttributes(len(fields))
outFeat.setFields(fields)
Expand Down

0 comments on commit ab03453

Please sign in to comment.