Skip to content

Commit 568ddb3

Browse files
volayaalexbruy
authored andcommitted
[processing] fixed wrong indentation
1 parent d46f98d commit 568ddb3

29 files changed

+93
-93
lines changed

python/plugins/processing/algs/lidar/lastools/las2lasPro_filter.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def defineCharacteristics(self):
4141
self.addParametersPointOutputGUI()
4242

4343
def processAlgorithm(self, progress):
44-
if (LAStoolsUtils.hasWine()):
44+
if (LAStoolsUtils.hasWine()):
4545
commands = [os.path.join(LAStoolsUtils.LAStoolsPath(), "bin", "las2las.exe")]
4646
else:
4747
commands = [os.path.join(LAStoolsUtils.LAStoolsPath(), "bin", "las2las")]

python/plugins/processing/algs/lidar/lastools/las2lasPro_project.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ def defineCharacteristics(self):
7070
self.addParametersVerboseGUI()
7171

7272
def processAlgorithm(self, progress):
73-
if (LAStoolsUtils.hasWine()):
73+
if (LAStoolsUtils.hasWine()):
7474
commands = [os.path.join(LAStoolsUtils.LAStoolsPath(), "bin", "las2las.exe")]
7575
else:
7676
commands = [os.path.join(LAStoolsUtils.LAStoolsPath(), "bin", "las2las")]

python/plugins/processing/algs/lidar/lastools/las2lasPro_transform.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ def defineCharacteristics(self):
5858
self.addParametersVerboseGUI()
5959

6060
def processAlgorithm(self, progress):
61-
if (LAStoolsUtils.hasWine()):
61+
if (LAStoolsUtils.hasWine()):
6262
commands = [os.path.join(LAStoolsUtils.LAStoolsPath(), "bin", "las2las.exe")]
6363
else:
6464
commands = [os.path.join(LAStoolsUtils.LAStoolsPath(), "bin", "las2las")]

python/plugins/processing/algs/lidar/lastools/las2las_filter.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def defineCharacteristics(self):
4343
self.addParametersAdditionalGUI()
4444

4545
def processAlgorithm(self, progress):
46-
if (LAStoolsUtils.hasWine()):
46+
if (LAStoolsUtils.hasWine()):
4747
commands = [os.path.join(LAStoolsUtils.LAStoolsPath(), "bin", "las2las.exe")]
4848
else:
4949
commands = [os.path.join(LAStoolsUtils.LAStoolsPath(), "bin", "las2las")]

python/plugins/processing/algs/lidar/lastools/las2las_project.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ def defineCharacteristics(self):
6767
self.addParametersAdditionalGUI()
6868

6969
def processAlgorithm(self, progress):
70-
if (LAStoolsUtils.hasWine()):
70+
if (LAStoolsUtils.hasWine()):
7171
commands = [os.path.join(LAStoolsUtils.LAStoolsPath(), "bin", "las2las.exe")]
7272
else:
7373
commands = [os.path.join(LAStoolsUtils.LAStoolsPath(), "bin", "las2las")]

python/plugins/processing/algs/lidar/lastools/las2las_transform.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ def defineCharacteristics(self):
5454
self.addParametersAdditionalGUI()
5555

5656
def processAlgorithm(self, progress):
57-
if (LAStoolsUtils.hasWine()):
57+
if (LAStoolsUtils.hasWine()):
5858
commands = [os.path.join(LAStoolsUtils.LAStoolsPath(), "bin", "las2las.exe")]
5959
else:
6060
commands = [os.path.join(LAStoolsUtils.LAStoolsPath(), "bin", "las2las")]

python/plugins/processing/algs/lidar/lastools/las2txt.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ def defineCharacteristics(self):
4747
self.addParametersAdditionalGUI()
4848

4949
def processAlgorithm(self, progress):
50-
if (LAStoolsUtils.hasWine()):
50+
if (LAStoolsUtils.hasWine()):
5151
commands = [os.path.join(LAStoolsUtils.LAStoolsPath(), "bin", "las2txt.exe")]
5252
else:
5353
commands = [os.path.join(LAStoolsUtils.LAStoolsPath(), "bin", "las2txt")]

python/plugins/processing/algs/lidar/lastools/las2txtPro.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ def defineCharacteristics(self):
4747
self.addParametersVerboseGUI()
4848

4949
def processAlgorithm(self, progress):
50-
if (LAStoolsUtils.hasWine()):
50+
if (LAStoolsUtils.hasWine()):
5151
commands = [os.path.join(LAStoolsUtils.LAStoolsPath(), "bin", "las2txt.exe")]
5252
else:
5353
commands = [os.path.join(LAStoolsUtils.LAStoolsPath(), "bin", "las2txt")]

python/plugins/processing/algs/lidar/lastools/lasdiff.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ class lasdiff(LAStoolsAlgorithm):
3636
OTHER_POINT_FILE = "OTHER_POINT_FILE"
3737
CREATE_DIFFERENCE_FILE = "CREATE_DIFFERENCE_FILE"
3838
SHUTUP = "SHUTUP"
39-
SHUTUP_AFTER = ["5", "10", "50", "100", "1000", "10000", "50000"]
39+
SHUTUP_AFTER = ["5", "10", "50", "100", "1000", "10000", "50000"]
4040

4141
def defineCharacteristics(self):
4242
self.name, self.i18n_name = self.trAlgorithm('lasdiff')
@@ -53,7 +53,7 @@ def defineCharacteristics(self):
5353
self.addParametersAdditionalGUI()
5454

5555
def processAlgorithm(self, progress):
56-
if (LAStoolsUtils.hasWine()):
56+
if (LAStoolsUtils.hasWine()):
5757
commands = [os.path.join(LAStoolsUtils.LAStoolsPath(), "bin", "lasdiff.exe")]
5858
else:
5959
commands = [os.path.join(LAStoolsUtils.LAStoolsPath(), "bin", "lasdiff")]
@@ -65,7 +65,7 @@ def processAlgorithm(self, progress):
6565
commands.append('"' + file + '"')
6666
shutup = self.getParameterValue(lasdiff.SHUTUP)
6767
if (shutup != 0):
68-
commands.append("-shutup")
68+
commands.append("-shutup")
6969
commands.append(lasdiff.SHUTUP_AFTER[shutup])
7070
if self.getParameterValue(lasdiff.CREATE_DIFFERENCE_FILE):
7171
self.addParametersPointOutputCommands(commands)

python/plugins/processing/algs/lidar/lastools/lasgroundPro_new.py

+8-8
Original file line numberDiff line numberDiff line change
@@ -77,21 +77,21 @@ def processAlgorithm(self, progress):
7777
self.addParametersHorizontalAndVerticalFeetCommands(commands)
7878
method = self.getParameterValue(lasgroundPro_new.TERRAIN)
7979
if (method == 5):
80-
commands.append("-step")
80+
commands.append("-step")
8181
commands.append(unicode(self.getParameterValue(lasgroundPro_new.STEP)))
82-
commands.append("-bulge")
82+
commands.append("-bulge")
8383
commands.append(unicode(self.getParameterValue(lasgroundPro_new.BULGE)))
84-
commands.append("-spike")
84+
commands.append("-spike")
8585
commands.append(unicode(self.getParameterValue(lasgroundPro_new.SPIKE)))
86-
commands.append("-spike_down")
86+
commands.append("-spike_down")
8787
commands.append(unicode(self.getParameterValue(lasgroundPro_new.DOWN_SPIKE)))
88-
commands.append("-offset")
88+
commands.append("-offset")
8989
commands.append(unicode(self.getParameterValue(lasgroundPro_new.OFFSET)))
90-
else:
90+
else:
9191
commands.append("-" + lasgroundPro_new.TERRAINS[method])
9292
granularity = self.getParameterValue(lasgroundPro_new.GRANULARITY)
93-
if (granularity != 1):
94-
commands.append("-" + lasgroundPro_new.GRANULARITIES[granularity])
93+
if (granularity != 1):
94+
commands.append("-" + lasgroundPro_new.GRANULARITIES[granularity])
9595
self.addParametersOutputDirectoryCommands(commands)
9696
self.addParametersOutputAppendixCommands(commands)
9797
self.addParametersPointOutputFormatCommands(commands)

python/plugins/processing/algs/lidar/lastools/lasground_new.py

+8-8
Original file line numberDiff line numberDiff line change
@@ -74,21 +74,21 @@ def processAlgorithm(self, progress):
7474
self.addParametersHorizontalAndVerticalFeetCommands(commands)
7575
method = self.getParameterValue(lasground_new.TERRAIN)
7676
if (method == 5):
77-
commands.append("-step")
77+
commands.append("-step")
7878
commands.append(unicode(self.getParameterValue(lasground_new.STEP)))
79-
commands.append("-bulge")
79+
commands.append("-bulge")
8080
commands.append(unicode(self.getParameterValue(lasground_new.BULGE)))
81-
commands.append("-spike")
81+
commands.append("-spike")
8282
commands.append(unicode(self.getParameterValue(lasground_new.SPIKE)))
83-
commands.append("-spike_down")
83+
commands.append("-spike_down")
8484
commands.append(unicode(self.getParameterValue(lasground_new.DOWN_SPIKE)))
85-
commands.append("-offset")
85+
commands.append("-offset")
8686
commands.append(unicode(self.getParameterValue(lasground_new.OFFSET)))
87-
else:
87+
else:
8888
commands.append("-" + lasground_new.TERRAINS[method])
8989
granularity = self.getParameterValue(lasground_new.GRANULARITY)
90-
if (granularity != 1):
91-
commands.append("-" + lasground_new.GRANULARITIES[granularity])
90+
if (granularity != 1):
91+
commands.append("-" + lasground_new.GRANULARITIES[granularity])
9292
self.addParametersPointOutputCommands(commands)
9393
self.addParametersAdditionalCommands(commands)
9494

python/plugins/processing/algs/lidar/lastools/lasheight.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ def defineCharacteristics(self):
4444
self.group, self.i18n_group = self.trAlgorithm('LAStools')
4545
self.addParametersVerboseGUI()
4646
self.addParametersPointInputGUI()
47-
self.addParametersIgnoreClass1GUI()
48-
self.addParametersIgnoreClass2GUI()
47+
self.addParametersIgnoreClass1GUI()
48+
self.addParametersIgnoreClass2GUI()
4949
self.addParameter(ParameterBoolean(lasheight.REPLACE_Z,
5050
self.tr("replace z"), False))
5151
self.addParameter(ParameterBoolean(lasheight.DROP_ABOVE,
@@ -63,8 +63,8 @@ def processAlgorithm(self, progress):
6363
commands = [os.path.join(LAStoolsUtils.LAStoolsPath(), "bin", "lasheight")]
6464
self.addParametersVerboseCommands(commands)
6565
self.addParametersPointInputCommands(commands)
66-
self.addParametersIgnoreClass1Commands(commands)
67-
self.addParametersIgnoreClass2Commands(commands)
66+
self.addParametersIgnoreClass1Commands(commands)
67+
self.addParametersIgnoreClass2Commands(commands)
6868
if self.getParameterValue(lasheight.REPLACE_Z):
6969
commands.append("-replace_z")
7070
if self.getParameterValue(lasheight.DROP_ABOVE):

python/plugins/processing/algs/lidar/lastools/lasheightPro.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ def defineCharacteristics(self):
4444
self.name, self.i18n_name = self.trAlgorithm('lasheightPro')
4545
self.group, self.i18n_group = self.trAlgorithm('LAStools Production')
4646
self.addParametersPointInputFolderGUI()
47-
self.addParametersIgnoreClass1GUI()
48-
self.addParametersIgnoreClass2GUI()
47+
self.addParametersIgnoreClass1GUI()
48+
self.addParametersIgnoreClass2GUI()
4949
self.addParameter(ParameterBoolean(lasheightPro.REPLACE_Z,
5050
self.tr("replace z"), False))
5151
self.addParameter(ParameterBoolean(lasheightPro.DROP_ABOVE,
@@ -67,8 +67,8 @@ def processAlgorithm(self, progress):
6767
commands = [os.path.join(LAStoolsUtils.LAStoolsPath(), "bin", "lasheight")]
6868
self.addParametersVerboseCommands(commands)
6969
self.addParametersPointInputFolderCommands(commands)
70-
self.addParametersIgnoreClass1Commands(commands)
71-
self.addParametersIgnoreClass2Commands(commands)
70+
self.addParametersIgnoreClass1Commands(commands)
71+
self.addParametersIgnoreClass2Commands(commands)
7272
if self.getParameterValue(lasheightPro.REPLACE_Z):
7373
commands.append("-replace_z")
7474
if self.getParameterValue(lasheightPro.DROP_ABOVE):

python/plugins/processing/algs/lidar/lastools/lasheightPro_classify.py

+14-14
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,10 @@ class lasheightPro_classify(LAStoolsAlgorithm):
3838
CLASSIFY_BELOW_HEIGHT = "CLASSIFY_BELOW_HEIGHT"
3939
CLASSIFY_BETWEEN1 = "CLASSIFY_BETWEEN1"
4040
CLASSIFY_BETWEEN1_HEIGHT_FROM = "CLASSIFY_BETWEEN1_HEIGHT_FROM"
41-
CLASSIFY_BETWEEN1_HEIGHT_TO= "CLASSIFY_BETWEEN1_HEIGHT_TO"
41+
CLASSIFY_BETWEEN1_HEIGHT_TO = "CLASSIFY_BETWEEN1_HEIGHT_TO"
4242
CLASSIFY_BETWEEN2 = "CLASSIFY_BETWEEN2"
4343
CLASSIFY_BETWEEN2_HEIGHT_FROM = "CLASSIFY_BETWEEN2_HEIGHT_FROM"
44-
CLASSIFY_BETWEEN2_HEIGHT_TO= "CLASSIFY_BETWEEN2_HEIGHT_TO"
44+
CLASSIFY_BETWEEN2_HEIGHT_TO = "CLASSIFY_BETWEEN2_HEIGHT_TO"
4545
CLASSIFY_ABOVE = "CLASSIFY_ABOVE"
4646
CLASSIFY_ABOVE_HEIGHT = "CLASSIFY_ABOVE_HEIGHT"
4747

@@ -51,8 +51,8 @@ def defineCharacteristics(self):
5151
self.name, self.i18n_name = self.trAlgorithm('lasheightPro_classify')
5252
self.group, self.i18n_group = self.trAlgorithm('LAStools Production')
5353
self.addParametersPointInputFolderGUI()
54-
self.addParametersIgnoreClass1GUI()
55-
self.addParametersIgnoreClass2GUI()
54+
self.addParametersIgnoreClass1GUI()
55+
self.addParametersIgnoreClass2GUI()
5656
self.addParameter(ParameterBoolean(lasheightPro_classify.REPLACE_Z,
5757
self.tr("replace z"), False))
5858
self.addParameter(ParameterSelection(lasheightPro_classify.CLASSIFY_BELOW,
@@ -86,32 +86,32 @@ def processAlgorithm(self, progress):
8686
commands = [os.path.join(LAStoolsUtils.LAStoolsPath(), "bin", "lasheight")]
8787
self.addParametersVerboseCommands(commands)
8888
self.addParametersPointInputFolderCommands(commands)
89-
self.addParametersIgnoreClass1Commands(commands)
90-
self.addParametersIgnoreClass2Commands(commands)
89+
self.addParametersIgnoreClass1Commands(commands)
90+
self.addParametersIgnoreClass2Commands(commands)
9191
if self.getParameterValue(lasheightPro_classify.REPLACE_Z):
9292
commands.append("-replace_z")
9393
classify = self.getParameterValue(lasheightPro_classify.CLASSIFY_BELOW)
94-
if (classify != 0):
94+
if (classify != 0):
9595
commands.append("-classify_below")
9696
commands.append(unicode(self.getParameterValue(lasheightPro_classify.CLASSIFY_BELOW_HEIGHT)))
97-
commands.append(unicode(classify))
97+
commands.append(unicode(classify))
9898
classify = self.getParameterValue(lasheightPro_classify.CLASSIFY_BETWEEN1)
99-
if (classify != 0):
99+
if (classify != 0):
100100
commands.append("-classify_between")
101101
commands.append(unicode(self.getParameterValue(lasheightPro_classify.CLASSIFY_BETWEEN1_HEIGHT_FROM)))
102102
commands.append(unicode(self.getParameterValue(lasheightPro_classify.CLASSIFY_BETWEEN1_HEIGHT_TO)))
103-
commands.append(unicode(classify))
103+
commands.append(unicode(classify))
104104
classify = self.getParameterValue(lasheightPro_classify.CLASSIFY_BETWEEN2)
105-
if (classify != 0):
105+
if (classify != 0):
106106
commands.append("-classify_between")
107107
commands.append(unicode(self.getParameterValue(lasheightPro_classify.CLASSIFY_BETWEEN2_HEIGHT_FROM)))
108108
commands.append(unicode(self.getParameterValue(lasheightPro_classify.CLASSIFY_BETWEEN2_HEIGHT_TO)))
109-
commands.append(unicode(classify))
109+
commands.append(unicode(classify))
110110
classify = self.getParameterValue(lasheightPro_classify.CLASSIFY_ABOVE)
111-
if (classify != 0):
111+
if (classify != 0):
112112
commands.append("-classify_above")
113113
commands.append(unicode(self.getParameterValue(lasheightPro_classify.CLASSIFY_ABOVE_HEIGHT)))
114-
commands.append(unicode(classify))
114+
commands.append(unicode(classify))
115115
self.addParametersOutputDirectoryCommands(commands)
116116
self.addParametersOutputAppendixCommands(commands)
117117
self.addParametersPointOutputFormatCommands(commands)

python/plugins/processing/algs/lidar/lastools/lasheight_classify.py

+14-14
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,10 @@ class lasheight_classify(LAStoolsAlgorithm):
3838
CLASSIFY_BELOW_HEIGHT = "CLASSIFY_BELOW_HEIGHT"
3939
CLASSIFY_BETWEEN1 = "CLASSIFY_BETWEEN1"
4040
CLASSIFY_BETWEEN1_HEIGHT_FROM = "CLASSIFY_BETWEEN1_HEIGHT_FROM"
41-
CLASSIFY_BETWEEN1_HEIGHT_TO= "CLASSIFY_BETWEEN1_HEIGHT_TO"
41+
CLASSIFY_BETWEEN1_HEIGHT_TO = "CLASSIFY_BETWEEN1_HEIGHT_TO"
4242
CLASSIFY_BETWEEN2 = "CLASSIFY_BETWEEN2"
4343
CLASSIFY_BETWEEN2_HEIGHT_FROM = "CLASSIFY_BETWEEN2_HEIGHT_FROM"
44-
CLASSIFY_BETWEEN2_HEIGHT_TO= "CLASSIFY_BETWEEN2_HEIGHT_TO"
44+
CLASSIFY_BETWEEN2_HEIGHT_TO = "CLASSIFY_BETWEEN2_HEIGHT_TO"
4545
CLASSIFY_ABOVE = "CLASSIFY_ABOVE"
4646
CLASSIFY_ABOVE_HEIGHT = "CLASSIFY_ABOVE_HEIGHT"
4747

@@ -52,8 +52,8 @@ def defineCharacteristics(self):
5252
self.group, self.i18n_group = self.trAlgorithm('LAStools')
5353
self.addParametersVerboseGUI()
5454
self.addParametersPointInputGUI()
55-
self.addParametersIgnoreClass1GUI()
56-
self.addParametersIgnoreClass2GUI()
55+
self.addParametersIgnoreClass1GUI()
56+
self.addParametersIgnoreClass2GUI()
5757
self.addParameter(ParameterBoolean(lasheight_classify.REPLACE_Z,
5858
self.tr("replace z"), False))
5959
self.addParameter(ParameterSelection(lasheight_classify.CLASSIFY_BELOW,
@@ -83,32 +83,32 @@ def processAlgorithm(self, progress):
8383
commands = [os.path.join(LAStoolsUtils.LAStoolsPath(), "bin", "lasheight")]
8484
self.addParametersVerboseCommands(commands)
8585
self.addParametersPointInputCommands(commands)
86-
self.addParametersIgnoreClass1Commands(commands)
87-
self.addParametersIgnoreClass2Commands(commands)
86+
self.addParametersIgnoreClass1Commands(commands)
87+
self.addParametersIgnoreClass2Commands(commands)
8888
if self.getParameterValue(lasheight_classify.REPLACE_Z):
8989
commands.append("-replace_z")
9090
classify = self.getParameterValue(lasheight_classify.CLASSIFY_BELOW)
91-
if (classify != 0):
91+
if (classify != 0):
9292
commands.append("-classify_below")
9393
commands.append(unicode(self.getParameterValue(lasheight_classify.CLASSIFY_BELOW_HEIGHT)))
94-
commands.append(unicode(classify))
94+
commands.append(unicode(classify))
9595
classify = self.getParameterValue(lasheight_classify.CLASSIFY_BETWEEN1)
96-
if (classify != 0):
96+
if (classify != 0):
9797
commands.append("-classify_between")
9898
commands.append(unicode(self.getParameterValue(lasheight_classify.CLASSIFY_BETWEEN1_HEIGHT_FROM)))
9999
commands.append(unicode(self.getParameterValue(lasheight_classify.CLASSIFY_BETWEEN1_HEIGHT_TO)))
100-
commands.append(unicode(classify))
100+
commands.append(unicode(classify))
101101
classify = self.getParameterValue(lasheight_classify.CLASSIFY_BETWEEN2)
102-
if (classify != 0):
102+
if (classify != 0):
103103
commands.append("-classify_between")
104104
commands.append(unicode(self.getParameterValue(lasheight_classify.CLASSIFY_BETWEEN2_HEIGHT_FROM)))
105105
commands.append(unicode(self.getParameterValue(lasheight_classify.CLASSIFY_BETWEEN2_HEIGHT_TO)))
106-
commands.append(unicode(classify))
106+
commands.append(unicode(classify))
107107
classify = self.getParameterValue(lasheight_classify.CLASSIFY_ABOVE)
108-
if (classify != 0):
108+
if (classify != 0):
109109
commands.append("-classify_above")
110110
commands.append(unicode(self.getParameterValue(lasheight_classify.CLASSIFY_ABOVE_HEIGHT)))
111-
commands.append(unicode(classify))
111+
commands.append(unicode(classify))
112112
self.addParametersPointOutputCommands(commands)
113113
self.addParametersAdditionalCommands(commands)
114114

python/plugins/processing/algs/lidar/lastools/lasindex.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ def defineCharacteristics(self):
4747
self.addParametersAdditionalGUI()
4848

4949
def processAlgorithm(self, progress):
50-
if (LAStoolsUtils.hasWine()):
50+
if (LAStoolsUtils.hasWine()):
5151
commands = [os.path.join(LAStoolsUtils.LAStoolsPath(), "bin", "lasindex.exe")]
5252
else:
5353
commands = [os.path.join(LAStoolsUtils.LAStoolsPath(), "bin", "lasindex")]

python/plugins/processing/algs/lidar/lastools/lasindexPro.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ def defineCharacteristics(self):
4848
self.addParametersVerboseGUI()
4949

5050
def processAlgorithm(self, progress):
51-
if (LAStoolsUtils.hasWine()):
51+
if (LAStoolsUtils.hasWine()):
5252
commands = [os.path.join(LAStoolsUtils.LAStoolsPath(), "bin", "lasindex.exe")]
5353
else:
5454
commands = [os.path.join(LAStoolsUtils.LAStoolsPath(), "bin", "lasindex")]

python/plugins/processing/algs/lidar/lastools/lasinfo.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ def defineCharacteristics(self):
7979
self.addParametersAdditionalGUI()
8080

8181
def processAlgorithm(self, progress):
82-
if (LAStoolsUtils.hasWine()):
82+
if (LAStoolsUtils.hasWine()):
8383
commands = [os.path.join(LAStoolsUtils.LAStoolsPath(), "bin", "lasinfo.exe")]
8484
else:
8585
commands = [os.path.join(LAStoolsUtils.LAStoolsPath(), "bin", "lasinfo")]

python/plugins/processing/algs/lidar/lastools/lasinfoPro.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ def defineCharacteristics(self):
7474
self.addParametersVerboseGUI()
7575

7676
def processAlgorithm(self, progress):
77-
if (LAStoolsUtils.hasWine()):
77+
if (LAStoolsUtils.hasWine()):
7878
commands = [os.path.join(LAStoolsUtils.LAStoolsPath(), "bin", "lasinfo.exe")]
7979
else:
8080
commands = [os.path.join(LAStoolsUtils.LAStoolsPath(), "bin", "lasinfo")]

python/plugins/processing/algs/lidar/lastools/lasmerge.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def defineCharacteristics(self):
5656
self.addParametersAdditionalGUI()
5757

5858
def processAlgorithm(self, progress):
59-
if (LAStoolsUtils.hasWine()):
59+
if (LAStoolsUtils.hasWine()):
6060
commands = [os.path.join(LAStoolsUtils.LAStoolsPath(), "bin", "lasmerge.exe")]
6161
else:
6262
commands = [os.path.join(LAStoolsUtils.LAStoolsPath(), "bin", "lasmerge")]

python/plugins/processing/algs/lidar/lastools/lasmergePro.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def defineCharacteristics(self):
4141
self.addParametersVerboseGUI()
4242

4343
def processAlgorithm(self, progress):
44-
if (LAStoolsUtils.hasWine()):
44+
if (LAStoolsUtils.hasWine()):
4545
commands = [os.path.join(LAStoolsUtils.LAStoolsPath(), "bin", "lasmerge.exe")]
4646
else:
4747
commands = [os.path.join(LAStoolsUtils.LAStoolsPath(), "bin", "lasmerge")]

0 commit comments

Comments
 (0)