From dbca0304d951ff27a18bfb401c2f4a043c5b2ef4 Mon Sep 17 00:00:00 2001 From: Alexander Bruy Date: Tue, 28 Feb 2017 12:37:48 +0200 Subject: [PATCH] [processing] rename algorithm groups in GDAL provider --- python/plugins/processing/algs/gdal/AssignProjection.py | 2 +- python/plugins/processing/algs/gdal/ClipByExtent.py | 2 +- python/plugins/processing/algs/gdal/ClipByMask.py | 2 +- python/plugins/processing/algs/gdal/ColorRelief.py | 2 +- python/plugins/processing/algs/gdal/GridAverage.py | 2 +- python/plugins/processing/algs/gdal/GridDataMetrics.py | 2 +- python/plugins/processing/algs/gdal/GridInvDist.py | 2 +- python/plugins/processing/algs/gdal/GridNearest.py | 2 +- python/plugins/processing/algs/gdal/aspect.py | 2 +- python/plugins/processing/algs/gdal/buildvrt.py | 2 +- python/plugins/processing/algs/gdal/contour.py | 2 +- python/plugins/processing/algs/gdal/extractprojection.py | 2 +- python/plugins/processing/algs/gdal/fillnodata.py | 2 +- python/plugins/processing/algs/gdal/gdal2tiles.py | 2 +- python/plugins/processing/algs/gdal/gdal2xyz.py | 2 +- python/plugins/processing/algs/gdal/gdaladdo.py | 2 +- python/plugins/processing/algs/gdal/gdalcalc.py | 2 +- python/plugins/processing/algs/gdal/gdaltindex.py | 2 +- python/plugins/processing/algs/gdal/hillshade.py | 2 +- python/plugins/processing/algs/gdal/information.py | 2 +- python/plugins/processing/algs/gdal/merge.py | 2 +- python/plugins/processing/algs/gdal/nearblack.py | 2 +- python/plugins/processing/algs/gdal/offsetcurve.py | 2 +- python/plugins/processing/algs/gdal/ogr2ogr.py | 2 +- python/plugins/processing/algs/gdal/ogr2ogrbuffer.py | 2 +- python/plugins/processing/algs/gdal/ogr2ogrclip.py | 2 +- python/plugins/processing/algs/gdal/ogr2ogrclipextent.py | 2 +- python/plugins/processing/algs/gdal/ogr2ogrdissolve.py | 2 +- python/plugins/processing/algs/gdal/ogr2ogrpointsonlines.py | 2 +- .../plugins/processing/algs/gdal/ogr2ogrtabletopostgislist.py | 2 +- python/plugins/processing/algs/gdal/ogr2ogrtopostgis.py | 2 +- python/plugins/processing/algs/gdal/ogr2ogrtopostgislist.py | 2 +- python/plugins/processing/algs/gdal/ogrinfo.py | 2 +- python/plugins/processing/algs/gdal/ogrsql.py | 2 +- python/plugins/processing/algs/gdal/onesidebuffer.py | 2 +- python/plugins/processing/algs/gdal/pct2rgb.py | 2 +- python/plugins/processing/algs/gdal/polygonize.py | 2 +- python/plugins/processing/algs/gdal/proximity.py | 2 +- python/plugins/processing/algs/gdal/rasterize.py | 2 +- python/plugins/processing/algs/gdal/rasterize_over.py | 2 +- python/plugins/processing/algs/gdal/retile.py | 2 +- python/plugins/processing/algs/gdal/rgb2pct.py | 2 +- python/plugins/processing/algs/gdal/roughness.py | 2 +- python/plugins/processing/algs/gdal/sieve.py | 2 +- python/plugins/processing/algs/gdal/slope.py | 2 +- python/plugins/processing/algs/gdal/tpi.py | 2 +- python/plugins/processing/algs/gdal/translate.py | 2 +- python/plugins/processing/algs/gdal/tri.py | 2 +- python/plugins/processing/algs/gdal/warp.py | 2 +- 49 files changed, 49 insertions(+), 49 deletions(-) diff --git a/python/plugins/processing/algs/gdal/AssignProjection.py b/python/plugins/processing/algs/gdal/AssignProjection.py index 81dfb7aaa945..117416e6d799 100644 --- a/python/plugins/processing/algs/gdal/AssignProjection.py +++ b/python/plugins/processing/algs/gdal/AssignProjection.py @@ -51,7 +51,7 @@ def getIcon(self): def defineCharacteristics(self): self.name, self.i18n_name = self.trAlgorithm('Assign projection') - self.group, self.i18n_group = self.trAlgorithm('[GDAL] Projections') + self.group, self.i18n_group = self.trAlgorithm('Raster projections') self.addParameter(ParameterRaster(self.INPUT, self.tr('Input layer'), False)) self.addParameter(ParameterCrs(self.CRS, diff --git a/python/plugins/processing/algs/gdal/ClipByExtent.py b/python/plugins/processing/algs/gdal/ClipByExtent.py index 311a49bae45a..a7700719b81d 100644 --- a/python/plugins/processing/algs/gdal/ClipByExtent.py +++ b/python/plugins/processing/algs/gdal/ClipByExtent.py @@ -58,7 +58,7 @@ def getIcon(self): def defineCharacteristics(self): self.name, self.i18n_name = self.trAlgorithm('Clip raster by extent') - self.group, self.i18n_group = self.trAlgorithm('[GDAL] Extraction') + self.group, self.i18n_group = self.trAlgorithm('Raster extraction') self.addParameter(ParameterRaster(self.INPUT, self.tr('Input layer'))) self.addParameter(ParameterString(self.NO_DATA, diff --git a/python/plugins/processing/algs/gdal/ClipByMask.py b/python/plugins/processing/algs/gdal/ClipByMask.py index 6a63cd93b016..6f7dd8eac433 100644 --- a/python/plugins/processing/algs/gdal/ClipByMask.py +++ b/python/plugins/processing/algs/gdal/ClipByMask.py @@ -67,7 +67,7 @@ def getIcon(self): def defineCharacteristics(self): self.name, self.i18n_name = self.trAlgorithm('Clip raster by mask layer') - self.group, self.i18n_group = self.trAlgorithm('[GDAL] Extraction') + self.group, self.i18n_group = self.trAlgorithm('Raster extraction') self.addParameter(ParameterRaster(self.INPUT, self.tr('Input layer'), False)) self.addParameter(ParameterVector(self.MASK, self.tr('Mask layer'), diff --git a/python/plugins/processing/algs/gdal/ColorRelief.py b/python/plugins/processing/algs/gdal/ColorRelief.py index d5b924a2b1b0..ae67fe3adb00 100644 --- a/python/plugins/processing/algs/gdal/ColorRelief.py +++ b/python/plugins/processing/algs/gdal/ColorRelief.py @@ -53,7 +53,7 @@ class ColorRelief(GdalAlgorithm): def defineCharacteristics(self): self.name, self.i18n_name = self.trAlgorithm('Color relief') - self.group, self.i18n_group = self.trAlgorithm('[GDAL] Analysis') + self.group, self.i18n_group = self.trAlgorithm('Raster analysis') self.addParameter(ParameterRaster(self.INPUT, self.tr('Input layer'))) self.addParameter(ParameterNumber( self.BAND, self.tr('Band number'), 1, 99, 1)) diff --git a/python/plugins/processing/algs/gdal/GridAverage.py b/python/plugins/processing/algs/gdal/GridAverage.py index c66ac026e0c7..f9f11c1908c9 100644 --- a/python/plugins/processing/algs/gdal/GridAverage.py +++ b/python/plugins/processing/algs/gdal/GridAverage.py @@ -64,7 +64,7 @@ def commandLineName(self): def defineCharacteristics(self): self.name, self.i18n_name = self.trAlgorithm('Grid (Moving average)') - self.group, self.i18n_group = self.trAlgorithm('[GDAL] Analysis') + self.group, self.i18n_group = self.trAlgorithm('Raster analysis') self.addParameter(ParameterVector(self.INPUT, self.tr('Input layer'), [dataobjects.TYPE_VECTOR_POINT])) self.addParameter(ParameterTableField(self.Z_FIELD, diff --git a/python/plugins/processing/algs/gdal/GridDataMetrics.py b/python/plugins/processing/algs/gdal/GridDataMetrics.py index cf7be900dc88..d2a87bc63e1a 100644 --- a/python/plugins/processing/algs/gdal/GridDataMetrics.py +++ b/python/plugins/processing/algs/gdal/GridDataMetrics.py @@ -69,7 +69,7 @@ def commandLineName(self): def defineCharacteristics(self): self.name, self.i18n_name = self.trAlgorithm('Grid (Data metrics)') - self.group, self.i18n_group = self.trAlgorithm('[GDAL] Analysis') + self.group, self.i18n_group = self.trAlgorithm('Raster analysis') self.addParameter(ParameterVector(self.INPUT, self.tr('Input layer'), [dataobjects.TYPE_VECTOR_POINT])) self.addParameter(ParameterTableField(self.Z_FIELD, diff --git a/python/plugins/processing/algs/gdal/GridInvDist.py b/python/plugins/processing/algs/gdal/GridInvDist.py index 07ebdfeba341..0a1a9a381730 100644 --- a/python/plugins/processing/algs/gdal/GridInvDist.py +++ b/python/plugins/processing/algs/gdal/GridInvDist.py @@ -68,7 +68,7 @@ def commandLineName(self): def defineCharacteristics(self): self.name, self.i18n_name = self.trAlgorithm('Grid (Inverse distance to a power)') - self.group, self.i18n_group = self.trAlgorithm('[GDAL] Analysis') + self.group, self.i18n_group = self.trAlgorithm('Raster analysis') self.addParameter(ParameterVector(self.INPUT, self.tr('Input layer'), [dataobjects.TYPE_VECTOR_POINT])) self.addParameter(ParameterTableField(self.Z_FIELD, diff --git a/python/plugins/processing/algs/gdal/GridNearest.py b/python/plugins/processing/algs/gdal/GridNearest.py index 9f8f42b7dc69..1aaa0036cf65 100644 --- a/python/plugins/processing/algs/gdal/GridNearest.py +++ b/python/plugins/processing/algs/gdal/GridNearest.py @@ -64,7 +64,7 @@ def commandLineName(self): def defineCharacteristics(self): self.name, self.i18n_name = self.trAlgorithm('Grid (Nearest neighbor)') - self.group, self.i18n_group = self.trAlgorithm('[GDAL] Analysis') + self.group, self.i18n_group = self.trAlgorithm('Raster analysis') self.addParameter(ParameterVector(self.INPUT, self.tr('Input layer'), [dataobjects.TYPE_VECTOR_POINT])) self.addParameter(ParameterTableField(self.Z_FIELD, diff --git a/python/plugins/processing/algs/gdal/aspect.py b/python/plugins/processing/algs/gdal/aspect.py index 6cfd2ad7cca8..7b9a757eb61c 100644 --- a/python/plugins/processing/algs/gdal/aspect.py +++ b/python/plugins/processing/algs/gdal/aspect.py @@ -50,7 +50,7 @@ class aspect(GdalAlgorithm): def defineCharacteristics(self): self.name, self.i18n_name = self.trAlgorithm('Aspect') - self.group, self.i18n_group = self.trAlgorithm('[GDAL] Analysis') + self.group, self.i18n_group = self.trAlgorithm('Raster analysis') self.addParameter(ParameterRaster(self.INPUT, self.tr('Input layer'))) self.addParameter(ParameterNumber( self.BAND, self.tr('Band number'), 1, 99, 1)) diff --git a/python/plugins/processing/algs/gdal/buildvrt.py b/python/plugins/processing/algs/gdal/buildvrt.py index 0aea7e6eb72c..af340b0680ab 100644 --- a/python/plugins/processing/algs/gdal/buildvrt.py +++ b/python/plugins/processing/algs/gdal/buildvrt.py @@ -56,7 +56,7 @@ def getIcon(self): def defineCharacteristics(self): self.name, self.i18n_name = self.trAlgorithm('Build Virtual Raster') - self.group, self.i18n_group = self.trAlgorithm('[GDAL] Miscellaneous') + self.group, self.i18n_group = self.trAlgorithm('Raster miscellaneous') self.addParameter(ParameterMultipleInput(self.INPUT, self.tr('Input layers'), dataobjects.TYPE_RASTER)) self.addParameter(ParameterSelection(self.RESOLUTION, diff --git a/python/plugins/processing/algs/gdal/contour.py b/python/plugins/processing/algs/gdal/contour.py index c44ee3e8979f..be8d46c86e00 100644 --- a/python/plugins/processing/algs/gdal/contour.py +++ b/python/plugins/processing/algs/gdal/contour.py @@ -56,7 +56,7 @@ def getIcon(self): def defineCharacteristics(self): self.name, self.i18n_name = self.trAlgorithm('Contour') - self.group, self.i18n_group = self.trAlgorithm('[GDAL] Extraction') + self.group, self.i18n_group = self.trAlgorithm('Raster extraction') self.addParameter(ParameterRaster(self.INPUT_RASTER, self.tr('Input layer'), False)) self.addParameter(ParameterNumber(self.INTERVAL, diff --git a/python/plugins/processing/algs/gdal/extractprojection.py b/python/plugins/processing/algs/gdal/extractprojection.py index aae8059d795d..e44ba17bc698 100644 --- a/python/plugins/processing/algs/gdal/extractprojection.py +++ b/python/plugins/processing/algs/gdal/extractprojection.py @@ -49,7 +49,7 @@ def getIcon(self): def defineCharacteristics(self): self.name, self.i18n_name = self.trAlgorithm('Extract projection') - self.group, self.i18n_group = self.trAlgorithm('[GDAL] Projections') + self.group, self.i18n_group = self.trAlgorithm('Raster projections') self.addParameter(ParameterRaster(self.INPUT, self.tr('Input file'))) self.addParameter(ParameterBoolean(self.PRJ_FILE, self.tr('Create also .prj file'), False)) diff --git a/python/plugins/processing/algs/gdal/fillnodata.py b/python/plugins/processing/algs/gdal/fillnodata.py index bf97a9f17796..caedc4ee79a4 100644 --- a/python/plugins/processing/algs/gdal/fillnodata.py +++ b/python/plugins/processing/algs/gdal/fillnodata.py @@ -54,7 +54,7 @@ class fillnodata(GdalAlgorithm): def defineCharacteristics(self): self.name, self.i18n_name = self.trAlgorithm('Fill nodata') - self.group, self.i18n_group = self.trAlgorithm('[GDAL] Analysis') + self.group, self.i18n_group = self.trAlgorithm('Raster analysis') self.addParameter(ParameterRaster( self.INPUT, self.tr('Input layer'), False)) self.addParameter(ParameterNumber(self.DISTANCE, diff --git a/python/plugins/processing/algs/gdal/gdal2tiles.py b/python/plugins/processing/algs/gdal/gdal2tiles.py index b997fd1bcc10..4875d44eea14 100644 --- a/python/plugins/processing/algs/gdal/gdal2tiles.py +++ b/python/plugins/processing/algs/gdal/gdal2tiles.py @@ -65,7 +65,7 @@ def commandLineName(self): def defineCharacteristics(self): self.name, self.i18n_name = self.trAlgorithm('gdal2tiles') - self.group, self.i18n_group = self.trAlgorithm('[GDAL] Miscellaneous') + self.group, self.i18n_group = self.trAlgorithm('Raster miscellaneous') # Required parameters self.addParameter(ParameterRaster(self.INPUT, self.tr('Input layer'))) diff --git a/python/plugins/processing/algs/gdal/gdal2xyz.py b/python/plugins/processing/algs/gdal/gdal2xyz.py index b93943c03a34..de411d5d3dd8 100644 --- a/python/plugins/processing/algs/gdal/gdal2xyz.py +++ b/python/plugins/processing/algs/gdal/gdal2xyz.py @@ -45,7 +45,7 @@ class gdal2xyz(GdalAlgorithm): def defineCharacteristics(self): self.name, self.i18n_name = self.trAlgorithm('gdal2xyz') - self.group, self.i18n_group = self.trAlgorithm('[GDAL] Conversion') + self.group, self.i18n_group = self.trAlgorithm('Raster conversion') self.addParameter(ParameterRaster( self.INPUT, self.tr('Input layer'), False)) self.addParameter(ParameterNumber(self.BAND, diff --git a/python/plugins/processing/algs/gdal/gdaladdo.py b/python/plugins/processing/algs/gdal/gdaladdo.py index 2e97a71e6d7d..a85b63221bdf 100644 --- a/python/plugins/processing/algs/gdal/gdaladdo.py +++ b/python/plugins/processing/algs/gdal/gdaladdo.py @@ -71,7 +71,7 @@ def commandLineName(self): def defineCharacteristics(self): self.name, self.i18n_name = self.trAlgorithm('Build overviews (pyramids)') - self.group, self.i18n_group = self.trAlgorithm('[GDAL] Miscellaneous') + self.group, self.i18n_group = self.trAlgorithm('Raster miscellaneous') self.addParameter(ParameterRaster( self.INPUT, self.tr('Input layer'), False)) self.addParameter(ParameterString(self.LEVELS, diff --git a/python/plugins/processing/algs/gdal/gdalcalc.py b/python/plugins/processing/algs/gdal/gdalcalc.py index 8941fc2b73aa..41569b0bb7a7 100644 --- a/python/plugins/processing/algs/gdal/gdalcalc.py +++ b/python/plugins/processing/algs/gdal/gdalcalc.py @@ -61,7 +61,7 @@ class gdalcalc(GdalAlgorithm): def defineCharacteristics(self): self.name, self.i18n_name = self.trAlgorithm('Raster calculator') - self.group, self.i18n_group = self.trAlgorithm('[GDAL] Miscellaneous') + self.group, self.i18n_group = self.trAlgorithm('Raster miscellaneous') self.addParameter(ParameterRaster( self.INPUT_A, self.tr('Input layer A'), False)) self.addParameter(ParameterString(self.BAND_A, diff --git a/python/plugins/processing/algs/gdal/gdaltindex.py b/python/plugins/processing/algs/gdal/gdaltindex.py index 15f992a4a33c..5691c2e956d5 100644 --- a/python/plugins/processing/algs/gdal/gdaltindex.py +++ b/python/plugins/processing/algs/gdal/gdaltindex.py @@ -53,7 +53,7 @@ def getIcon(self): def defineCharacteristics(self): self.name, self.i18n_name = self.trAlgorithm('Tile Index') - self.group, self.i18n_group = self.trAlgorithm('[GDAL] Miscellaneous') + self.group, self.i18n_group = self.trAlgorithm('Raster miscellaneous') self.addParameter(ParameterMultipleInput(self.INPUT, self.tr('Input layers'), dataobjects.TYPE_RASTER)) self.addParameter(ParameterString(self.FIELD_NAME, diff --git a/python/plugins/processing/algs/gdal/hillshade.py b/python/plugins/processing/algs/gdal/hillshade.py index 7ed5ddb087e4..15a6cfd8ed38 100644 --- a/python/plugins/processing/algs/gdal/hillshade.py +++ b/python/plugins/processing/algs/gdal/hillshade.py @@ -53,7 +53,7 @@ class hillshade(GdalAlgorithm): def defineCharacteristics(self): self.name, self.i18n_name = self.trAlgorithm('Hillshade') - self.group, self.i18n_group = self.trAlgorithm('[GDAL] Analysis') + self.group, self.i18n_group = self.trAlgorithm('Raster analysis') self.addParameter(ParameterRaster(self.INPUT, self.tr('Input layer'))) self.addParameter(ParameterNumber(self.BAND, self.tr('Band number'), 1, 99, 1)) diff --git a/python/plugins/processing/algs/gdal/information.py b/python/plugins/processing/algs/gdal/information.py index af8d9b7106e6..256a21b6924c 100644 --- a/python/plugins/processing/algs/gdal/information.py +++ b/python/plugins/processing/algs/gdal/information.py @@ -54,7 +54,7 @@ def commandLineName(self): def defineCharacteristics(self): self.name, self.i18n_name = self.trAlgorithm('Information') - self.group, self.i18n_group = self.trAlgorithm('[GDAL] Miscellaneous') + self.group, self.i18n_group = self.trAlgorithm('Raster miscellaneous') self.addParameter(ParameterRaster(information.INPUT, self.tr('Input layer'), False)) self.addParameter(ParameterBoolean(information.NOGCP, diff --git a/python/plugins/processing/algs/gdal/merge.py b/python/plugins/processing/algs/gdal/merge.py index ac8785608bd4..9620089fe197 100644 --- a/python/plugins/processing/algs/gdal/merge.py +++ b/python/plugins/processing/algs/gdal/merge.py @@ -59,7 +59,7 @@ def getIcon(self): def defineCharacteristics(self): self.name, self.i18n_name = self.trAlgorithm('Merge') - self.group, self.i18n_group = self.trAlgorithm('[GDAL] Miscellaneous') + self.group, self.i18n_group = self.trAlgorithm('Raster miscellaneous') self.addParameter(ParameterMultipleInput(self.INPUT, self.tr('Input layers'), dataobjects.TYPE_RASTER)) diff --git a/python/plugins/processing/algs/gdal/nearblack.py b/python/plugins/processing/algs/gdal/nearblack.py index 1cd171563d05..111ecef3c551 100644 --- a/python/plugins/processing/algs/gdal/nearblack.py +++ b/python/plugins/processing/algs/gdal/nearblack.py @@ -52,7 +52,7 @@ def getIcon(self): def defineCharacteristics(self): self.name, self.i18n_name = self.trAlgorithm('Near black') - self.group, self.i18n_group = self.trAlgorithm('[GDAL] Analysis') + self.group, self.i18n_group = self.trAlgorithm('Raster analysis') self.addParameter(ParameterRaster(self.INPUT, self.tr('Input layer'), False)) self.addParameter(ParameterNumber(self.NEAR, diff --git a/python/plugins/processing/algs/gdal/offsetcurve.py b/python/plugins/processing/algs/gdal/offsetcurve.py index 2474fe16a62e..02dd63ce00bc 100644 --- a/python/plugins/processing/algs/gdal/offsetcurve.py +++ b/python/plugins/processing/algs/gdal/offsetcurve.py @@ -51,7 +51,7 @@ class OffsetCurve(GdalAlgorithm): def defineCharacteristics(self): self.name, self.i18n_name = self.trAlgorithm('Offset lines for lines') - self.group, self.i18n_group = self.trAlgorithm('[OGR] Geoprocessing') + self.group, self.i18n_group = self.trAlgorithm('Vector geoprocessing') self.addParameter(ParameterVector(self.INPUT_LAYER, self.tr('Input layer'), [dataobjects.TYPE_VECTOR_LINE], False)) diff --git a/python/plugins/processing/algs/gdal/ogr2ogr.py b/python/plugins/processing/algs/gdal/ogr2ogr.py index 9d8b2e2acffb..167f13a1ed59 100644 --- a/python/plugins/processing/algs/gdal/ogr2ogr.py +++ b/python/plugins/processing/algs/gdal/ogr2ogr.py @@ -100,7 +100,7 @@ class Ogr2Ogr(GdalAlgorithm): def defineCharacteristics(self): self.name, self.i18n_name = self.trAlgorithm('Convert format') - self.group, self.i18n_group = self.trAlgorithm('[OGR] Conversion') + self.group, self.i18n_group = self.trAlgorithm('Vector conversion') self.addParameter(ParameterVector(self.INPUT_LAYER, self.tr('Input layer'))) diff --git a/python/plugins/processing/algs/gdal/ogr2ogrbuffer.py b/python/plugins/processing/algs/gdal/ogr2ogrbuffer.py index 9c45e91ac818..30178df90805 100644 --- a/python/plugins/processing/algs/gdal/ogr2ogrbuffer.py +++ b/python/plugins/processing/algs/gdal/ogr2ogrbuffer.py @@ -53,7 +53,7 @@ class Ogr2OgrBuffer(GdalAlgorithm): def defineCharacteristics(self): self.name, self.i18n_name = self.trAlgorithm('Buffer vectors') - self.group, self.i18n_group = self.trAlgorithm('[OGR] Geoprocessing') + self.group, self.i18n_group = self.trAlgorithm('Vector geoprocessing') self.addParameter(ParameterVector(self.INPUT_LAYER, self.tr('Input layer'))) diff --git a/python/plugins/processing/algs/gdal/ogr2ogrclip.py b/python/plugins/processing/algs/gdal/ogr2ogrclip.py index 444dab7e960c..4dd650fd541f 100644 --- a/python/plugins/processing/algs/gdal/ogr2ogrclip.py +++ b/python/plugins/processing/algs/gdal/ogr2ogrclip.py @@ -47,7 +47,7 @@ class Ogr2OgrClip(GdalAlgorithm): def defineCharacteristics(self): self.name, self.i18n_name = self.trAlgorithm('Clip vectors by polygon') - self.group, self.i18n_group = self.trAlgorithm('[OGR] Geoprocessing') + self.group, self.i18n_group = self.trAlgorithm('Vector geoprocessing') self.addParameter(ParameterVector(self.INPUT_LAYER, self.tr('Input layer'))) diff --git a/python/plugins/processing/algs/gdal/ogr2ogrclipextent.py b/python/plugins/processing/algs/gdal/ogr2ogrclipextent.py index 3d46b8105255..a4bc898686ec 100644 --- a/python/plugins/processing/algs/gdal/ogr2ogrclipextent.py +++ b/python/plugins/processing/algs/gdal/ogr2ogrclipextent.py @@ -47,7 +47,7 @@ class Ogr2OgrClipExtent(GdalAlgorithm): def defineCharacteristics(self): self.name, self.i18n_name = self.trAlgorithm('Clip vectors by extent') - self.group, self.i18n_group = self.trAlgorithm('[OGR] Geoprocessing') + self.group, self.i18n_group = self.trAlgorithm('Vector geoprocessing') self.addParameter(ParameterVector(self.INPUT_LAYER, self.tr('Input layer'))) diff --git a/python/plugins/processing/algs/gdal/ogr2ogrdissolve.py b/python/plugins/processing/algs/gdal/ogr2ogrdissolve.py index 0dc8b0268899..19c32187e062 100644 --- a/python/plugins/processing/algs/gdal/ogr2ogrdissolve.py +++ b/python/plugins/processing/algs/gdal/ogr2ogrdissolve.py @@ -56,7 +56,7 @@ class Ogr2OgrDissolve(GdalAlgorithm): def defineCharacteristics(self): self.name, self.i18n_name = self.trAlgorithm('Dissolve polygons') - self.group, self.i18n_group = self.trAlgorithm('[OGR] Geoprocessing') + self.group, self.i18n_group = self.trAlgorithm('Vector geoprocessing') self.addParameter(ParameterVector(self.INPUT_LAYER, self.tr('Input layer'), [dataobjects.TYPE_VECTOR_POLYGON])) diff --git a/python/plugins/processing/algs/gdal/ogr2ogrpointsonlines.py b/python/plugins/processing/algs/gdal/ogr2ogrpointsonlines.py index 517305a0acf0..460cc309ffee 100644 --- a/python/plugins/processing/algs/gdal/ogr2ogrpointsonlines.py +++ b/python/plugins/processing/algs/gdal/ogr2ogrpointsonlines.py @@ -49,7 +49,7 @@ class Ogr2OgrPointsOnLines(GdalAlgorithm): def defineCharacteristics(self): self.name, self.i18n_name = self.trAlgorithm('Create points along lines') - self.group, self.i18n_group = self.trAlgorithm('[OGR] Geoprocessing') + self.group, self.i18n_group = self.trAlgorithm('Vector geoprocessing') self.addParameter(ParameterVector(self.INPUT_LAYER, self.tr('Input layer'), [dataobjects.TYPE_VECTOR_LINE], False)) diff --git a/python/plugins/processing/algs/gdal/ogr2ogrtabletopostgislist.py b/python/plugins/processing/algs/gdal/ogr2ogrtabletopostgislist.py index 9ed9c65928b7..de6639a60abd 100644 --- a/python/plugins/processing/algs/gdal/ogr2ogrtabletopostgislist.py +++ b/python/plugins/processing/algs/gdal/ogr2ogrtabletopostgislist.py @@ -77,7 +77,7 @@ def dbConnectionNames(self): def defineCharacteristics(self): self.name, self.i18n_name = self.trAlgorithm('Import layer/table as geometryless table into PostgreSQL database') - self.group, self.i18n_group = self.trAlgorithm('[OGR] Miscellaneous') + self.group, self.i18n_group = self.trAlgorithm('Vector miscellaneous') self.DB_CONNECTIONS = self.dbConnectionNames() self.addParameter(ParameterSelection(self.DATABASE, self.tr('Database (connection name)'), self.DB_CONNECTIONS)) diff --git a/python/plugins/processing/algs/gdal/ogr2ogrtopostgis.py b/python/plugins/processing/algs/gdal/ogr2ogrtopostgis.py index f926526c718b..2a2ffb75367d 100644 --- a/python/plugins/processing/algs/gdal/ogr2ogrtopostgis.py +++ b/python/plugins/processing/algs/gdal/ogr2ogrtopostgis.py @@ -80,7 +80,7 @@ class Ogr2OgrToPostGis(GdalAlgorithm): def defineCharacteristics(self): self.name, self.i18n_name = self.trAlgorithm('Import Vector into PostGIS database (new connection)') - self.group, self.i18n_group = self.trAlgorithm('[OGR] Miscellaneous') + self.group, self.i18n_group = self.trAlgorithm('Vector miscellaneous') self.addParameter(ParameterVector(self.INPUT_LAYER, self.tr('Input layer'))) self.addParameter(ParameterString(self.SHAPE_ENCODING, diff --git a/python/plugins/processing/algs/gdal/ogr2ogrtopostgislist.py b/python/plugins/processing/algs/gdal/ogr2ogrtopostgislist.py index fe7f676e3ea5..4f91de30d760 100644 --- a/python/plugins/processing/algs/gdal/ogr2ogrtopostgislist.py +++ b/python/plugins/processing/algs/gdal/ogr2ogrtopostgislist.py @@ -87,7 +87,7 @@ def __init__(self): def defineCharacteristics(self): self.name, self.i18n_name = self.trAlgorithm('Import Vector into PostGIS database (available connections)') - self.group, self.i18n_group = self.trAlgorithm('[OGR] Miscellaneous') + self.group, self.i18n_group = self.trAlgorithm('Vector miscellaneous') self.addParameter(ParameterString( self.DATABASE, self.tr('Database (connection name)'), diff --git a/python/plugins/processing/algs/gdal/ogrinfo.py b/python/plugins/processing/algs/gdal/ogrinfo.py index 6fbf65b95edd..d47971ebf0e7 100644 --- a/python/plugins/processing/algs/gdal/ogrinfo.py +++ b/python/plugins/processing/algs/gdal/ogrinfo.py @@ -48,7 +48,7 @@ def commandLineName(self): def defineCharacteristics(self): self.name, self.i18n_name = self.trAlgorithm('Information') - self.group, self.i18n_group = self.trAlgorithm('[OGR] Miscellaneous') + self.group, self.i18n_group = self.trAlgorithm('Vector miscellaneous') self.addParameter(ParameterVector(self.INPUT, self.tr('Input layer'))) self.addParameter(ParameterBoolean(self.SUMMARY_ONLY, diff --git a/python/plugins/processing/algs/gdal/ogrsql.py b/python/plugins/processing/algs/gdal/ogrsql.py index 052d6ff35a7e..425c48deb650 100644 --- a/python/plugins/processing/algs/gdal/ogrsql.py +++ b/python/plugins/processing/algs/gdal/ogrsql.py @@ -49,7 +49,7 @@ class OgrSql(GdalAlgorithm): def defineCharacteristics(self): self.name, self.i18n_name = self.trAlgorithm('Execute SQL') - self.group, self.i18n_group = self.trAlgorithm('[OGR] Miscellaneous') + self.group, self.i18n_group = self.trAlgorithm('Vector miscellaneous') self.addParameter(ParameterTable(self.INPUT, self.tr('Input layer or table'))) self.addParameter(ParameterString(self.SQL, self.tr('SQL'), '')) diff --git a/python/plugins/processing/algs/gdal/onesidebuffer.py b/python/plugins/processing/algs/gdal/onesidebuffer.py index f9a9f4436262..db4720b52a94 100644 --- a/python/plugins/processing/algs/gdal/onesidebuffer.py +++ b/python/plugins/processing/algs/gdal/onesidebuffer.py @@ -56,7 +56,7 @@ class OneSideBuffer(GdalAlgorithm): def defineCharacteristics(self): self.name, self.i18n_name = self.trAlgorithm('Single sided buffer for lines') - self.group, self.i18n_group = self.trAlgorithm('[OGR] Geoprocessing') + self.group, self.i18n_group = self.trAlgorithm('Vector geoprocessing') self.addParameter(ParameterVector(self.INPUT_LAYER, self.tr('Input layer'), [dataobjects.TYPE_VECTOR_LINE], False)) diff --git a/python/plugins/processing/algs/gdal/pct2rgb.py b/python/plugins/processing/algs/gdal/pct2rgb.py index a0bee8f60380..28ab38361c2d 100644 --- a/python/plugins/processing/algs/gdal/pct2rgb.py +++ b/python/plugins/processing/algs/gdal/pct2rgb.py @@ -52,7 +52,7 @@ def getIcon(self): def defineCharacteristics(self): self.name, self.i18n_name = self.trAlgorithm('PCT to RGB') - self.group, self.i18n_group = self.trAlgorithm('[GDAL] Conversion') + self.group, self.i18n_group = self.trAlgorithm('Raster conversion') self.addParameter(ParameterRaster(pct2rgb.INPUT, self.tr('Input layer'), False)) options = [] diff --git a/python/plugins/processing/algs/gdal/polygonize.py b/python/plugins/processing/algs/gdal/polygonize.py index 624285c8dd5e..5ea655c768ae 100644 --- a/python/plugins/processing/algs/gdal/polygonize.py +++ b/python/plugins/processing/algs/gdal/polygonize.py @@ -54,7 +54,7 @@ def commandLineName(self): def defineCharacteristics(self): self.name, self.i18n_name = self.trAlgorithm('Polygonize (raster to vector)') - self.group, self.i18n_group = self.trAlgorithm('[GDAL] Conversion') + self.group, self.i18n_group = self.trAlgorithm('Raster conversion') self.addParameter(ParameterRaster(polygonize.INPUT, self.tr('Input layer'), False)) self.addParameter(ParameterString(polygonize.FIELD, diff --git a/python/plugins/processing/algs/gdal/proximity.py b/python/plugins/processing/algs/gdal/proximity.py index 5010f70dc4ff..78788d35712c 100644 --- a/python/plugins/processing/algs/gdal/proximity.py +++ b/python/plugins/processing/algs/gdal/proximity.py @@ -65,7 +65,7 @@ def commandLineName(self): def defineCharacteristics(self): self.name, self.i18n_name = self.trAlgorithm('Proximity (raster distance)') - self.group, self.i18n_group = self.trAlgorithm('[GDAL] Analysis') + self.group, self.i18n_group = self.trAlgorithm('Raster analysis') self.addParameter(ParameterRaster(self.INPUT, self.tr('Input layer'), False)) self.addParameter(ParameterString(self.VALUES, diff --git a/python/plugins/processing/algs/gdal/rasterize.py b/python/plugins/processing/algs/gdal/rasterize.py index 7779ad6e12db..0ef33f3167ee 100644 --- a/python/plugins/processing/algs/gdal/rasterize.py +++ b/python/plugins/processing/algs/gdal/rasterize.py @@ -70,7 +70,7 @@ def commandLineName(self): def defineCharacteristics(self): self.name, self.i18n_name = self.trAlgorithm('Rasterize (vector to raster)') - self.group, self.i18n_group = self.trAlgorithm('[GDAL] Conversion') + self.group, self.i18n_group = self.trAlgorithm('Vector conversion') self.addParameter(ParameterVector(self.INPUT, self.tr('Input layer'))) self.addParameter(ParameterTableField(self.FIELD, diff --git a/python/plugins/processing/algs/gdal/rasterize_over.py b/python/plugins/processing/algs/gdal/rasterize_over.py index 50ed8bc94285..f92a96328798 100644 --- a/python/plugins/processing/algs/gdal/rasterize_over.py +++ b/python/plugins/processing/algs/gdal/rasterize_over.py @@ -56,7 +56,7 @@ def commandLineName(self): def defineCharacteristics(self): self.name, self.i18n_name = self.trAlgorithm('Rasterize (write over existing raster)') - self.group, self.i18n_group = self.trAlgorithm('[GDAL] Conversion') + self.group, self.i18n_group = self.trAlgorithm('Vector conversion') self.addParameter(ParameterVector(self.INPUT, self.tr('Input layer'))) self.addParameter(ParameterTableField(self.FIELD, self.tr('Attribute field'), self.INPUT)) diff --git a/python/plugins/processing/algs/gdal/retile.py b/python/plugins/processing/algs/gdal/retile.py index b111af0a4c2e..8334d5d2c21f 100644 --- a/python/plugins/processing/algs/gdal/retile.py +++ b/python/plugins/processing/algs/gdal/retile.py @@ -68,7 +68,7 @@ def commandName(self): def defineCharacteristics(self): self.name, self.i18n_name = self.trAlgorithm('Retile') - self.group, self.i18n_group = self.trAlgorithm('[GDAL] Miscellaneous') + self.group, self.i18n_group = self.trAlgorithm('Raster miscellaneous') # Required parameters self.addParameter(ParameterMultipleInput(self.INPUT, diff --git a/python/plugins/processing/algs/gdal/rgb2pct.py b/python/plugins/processing/algs/gdal/rgb2pct.py index e8f7b012a318..0a4ed4bbfcd1 100644 --- a/python/plugins/processing/algs/gdal/rgb2pct.py +++ b/python/plugins/processing/algs/gdal/rgb2pct.py @@ -52,7 +52,7 @@ def getIcon(self): def defineCharacteristics(self): self.name, self.i18n_name = self.trAlgorithm('RGB to PCT') - self.group, self.i18n_group = self.trAlgorithm('[GDAL] Conversion') + self.group, self.i18n_group = self.trAlgorithm('Raster conversion') self.addParameter(ParameterRaster(rgb2pct.INPUT, self.tr('Input layer'), False)) self.addParameter(ParameterNumber(rgb2pct.NCOLORS, diff --git a/python/plugins/processing/algs/gdal/roughness.py b/python/plugins/processing/algs/gdal/roughness.py index 74fa20df3274..3bbbf5b4abe5 100644 --- a/python/plugins/processing/algs/gdal/roughness.py +++ b/python/plugins/processing/algs/gdal/roughness.py @@ -47,7 +47,7 @@ class roughness(GdalAlgorithm): def defineCharacteristics(self): self.name, self.i18n_name = self.trAlgorithm('Roughness') - self.group, self.i18n_group = self.trAlgorithm('[GDAL] Analysis') + self.group, self.i18n_group = self.trAlgorithm('Raster analysis') self.addParameter(ParameterRaster(self.INPUT, self.tr('Input layer'))) self.addParameter(ParameterNumber(self.BAND, self.tr('Band number'), 1, 99, 1)) diff --git a/python/plugins/processing/algs/gdal/sieve.py b/python/plugins/processing/algs/gdal/sieve.py index b6c49014d3e4..880da22cef3f 100644 --- a/python/plugins/processing/algs/gdal/sieve.py +++ b/python/plugins/processing/algs/gdal/sieve.py @@ -58,7 +58,7 @@ def getIcon(self): def defineCharacteristics(self): self.name, self.i18n_name = self.trAlgorithm('Sieve') - self.group, self.i18n_group = self.trAlgorithm('[GDAL] Analysis') + self.group, self.i18n_group = self.trAlgorithm('Raster analysis') self.addParameter(ParameterRaster(self.INPUT, self.tr('Input layer'), False)) self.addParameter(ParameterNumber(self.THRESHOLD, self.tr('Threshold'), 0, 9999, 2)) diff --git a/python/plugins/processing/algs/gdal/slope.py b/python/plugins/processing/algs/gdal/slope.py index 4f2a4c2cb7d1..ca201e964b50 100644 --- a/python/plugins/processing/algs/gdal/slope.py +++ b/python/plugins/processing/algs/gdal/slope.py @@ -51,7 +51,7 @@ class slope(GdalAlgorithm): def defineCharacteristics(self): self.name, self.i18n_name = self.trAlgorithm('Slope') - self.group, self.i18n_group = self.trAlgorithm('[GDAL] Analysis') + self.group, self.i18n_group = self.trAlgorithm('Raster analysis') self.addParameter(ParameterRaster(self.INPUT, self.tr('Input layer'))) self.addParameter(ParameterNumber(self.BAND, self.tr('Band number'), 1, 99, 1)) diff --git a/python/plugins/processing/algs/gdal/tpi.py b/python/plugins/processing/algs/gdal/tpi.py index 77711e479e15..ba903a6ff671 100644 --- a/python/plugins/processing/algs/gdal/tpi.py +++ b/python/plugins/processing/algs/gdal/tpi.py @@ -48,7 +48,7 @@ class tpi(GdalAlgorithm): def defineCharacteristics(self): self.name, self.i18n_name = self.trAlgorithm('TPI (Topographic Position Index)') - self.group, self.i18n_group = self.trAlgorithm('[GDAL] Analysis') + self.group, self.i18n_group = self.trAlgorithm('Raster analysis') self.addParameter(ParameterRaster(self.INPUT, self.tr('Input layer'))) self.addParameter(ParameterNumber(self.BAND, self.tr('Band number'), 1, 99, 1)) diff --git a/python/plugins/processing/algs/gdal/translate.py b/python/plugins/processing/algs/gdal/translate.py index ab6237ea53bf..b4eb1e53f65b 100644 --- a/python/plugins/processing/algs/gdal/translate.py +++ b/python/plugins/processing/algs/gdal/translate.py @@ -68,7 +68,7 @@ def commandLineName(self): def defineCharacteristics(self): self.name, self.i18n_name = self.trAlgorithm('Translate (convert format)') - self.group, self.i18n_group = self.trAlgorithm('[GDAL] Conversion') + self.group, self.i18n_group = self.trAlgorithm('Raster conversion') self.addParameter(ParameterRaster(self.INPUT, self.tr('Input layer'))) self.addParameter(ParameterNumber(self.OUTSIZE, diff --git a/python/plugins/processing/algs/gdal/tri.py b/python/plugins/processing/algs/gdal/tri.py index a37fe6420f6a..6e3820c6c9ed 100644 --- a/python/plugins/processing/algs/gdal/tri.py +++ b/python/plugins/processing/algs/gdal/tri.py @@ -48,7 +48,7 @@ class tri(GdalAlgorithm): def defineCharacteristics(self): self.name, self.i18n_name = self.trAlgorithm('TRI (Terrain Ruggedness Index)') - self.group, self.i18n_group = self.trAlgorithm('[GDAL] Analysis') + self.group, self.i18n_group = self.trAlgorithm('Raster analysis') self.addParameter(ParameterRaster(self.INPUT, self.tr('Input layer'))) self.addParameter(ParameterNumber(self.BAND, self.tr('Band number'), 1, 99, 1)) diff --git a/python/plugins/processing/algs/gdal/warp.py b/python/plugins/processing/algs/gdal/warp.py index 1263364068d2..e6d7a3df1321 100644 --- a/python/plugins/processing/algs/gdal/warp.py +++ b/python/plugins/processing/algs/gdal/warp.py @@ -66,7 +66,7 @@ def getIcon(self): def defineCharacteristics(self): self.name, self.i18n_name = self.trAlgorithm('Warp (reproject)') - self.group, self.i18n_group = self.trAlgorithm('[GDAL] Projections') + self.group, self.i18n_group = self.trAlgorithm('Raster projections') self.tags = self.tr('transform,reproject,crs,srs') self.addParameter(ParameterRaster(self.INPUT, self.tr('Input layer'), False))