Skip to content

Commit

Permalink
[processing] fixed group names in lidar provider
Browse files Browse the repository at this point in the history
  • Loading branch information
volaya committed Jan 28, 2016
1 parent 8c9078d commit 7af5851
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -161,8 +161,6 @@ def _loadAlgorithms(self):
laszip(), lasindex(), lasmerge(), las2las_filter(), las2las_project(),
las2las_transform(), lasquery()
]
for alg in lastools:
alg.group = 'LAStools'
self.algs.extend(lastools)

# LAStools Production for processing folders of files
Expand All @@ -181,8 +179,6 @@ def _loadAlgorithms(self):
laszipPro(), lasindexPro(), lasinfoPro(), las2lasPro_filter(), las2lasPro_project(),
las2lasPro_transform(), txt2lasPro(), las2txtPro(), lasvalidatePro(), lasmergePro()
]
for alg in lastoolsPro:
alg.group = 'LAStools Production'
self.algs.extend(lastoolsPro)

# some examples for LAStools Pipelines
Expand All @@ -194,8 +190,6 @@ def _loadAlgorithms(self):
]
else:
lastoolsPipe = []
for alg in lastoolsPipe:
alg.group = 'LAStools Pipelines'
self.algs.extend(lastoolsPipe)

# FUSION
Expand All @@ -209,7 +203,7 @@ def _loadAlgorithms(self):
DTM2TIF(), FirstLastReturn(), ASCII2DTM()
]
for alg in fusiontools:
alg.group = 'Fusion'
alg.group, alg.i18n_group = alg.trAlgorithm('Fusion')
self.algs.extend(fusiontools)

def initializeSettings(self):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ class las2demPro(LAStoolsAlgorithm):

def defineCharacteristics(self):
self.name, self.i18n_name = self.trAlgorithm('las2demPro')
self.group, self.i18n_group = self.trAlgorithm('LAStools')
self.group, self.i18n_group = self.trAlgorithm('LAStools Production')
self.addParametersPointInputFolderGUI()
self.addParametersFilter1ReturnClassFlagsGUI()
self.addParametersStepGUI()
Expand Down

0 comments on commit 7af5851

Please sign in to comment.