mirror of
https://github.com/qgis/QGIS.git
synced 2025-10-18 00:06:00 -04:00
[processing] fixes for lastools algorithms
by Martin Isenburg
This commit is contained in:
parent
e3b2a2daf2
commit
2b5ea3669e
@ -83,7 +83,7 @@ class lasmerge(LAStoolsAlgorithm):
|
||||
commands.append("-i")
|
||||
commands.append(file7)
|
||||
self.addParametersFilesAreFlightlinesCommands(commands)
|
||||
self.addParametersApplyFileSourceIdsCommands(commands)
|
||||
self.addParametersApplyFileSourceIdCommands(commands)
|
||||
self.addParametersPointOutputCommands(commands)
|
||||
self.addParametersAdditionalCommands(commands)
|
||||
|
||||
|
@ -44,7 +44,7 @@ class lasmergePro(LAStoolsAlgorithm):
|
||||
self.addParametersVerboseCommands(commands)
|
||||
self.addParametersPointInputFolderCommands(commands)
|
||||
self.addParametersFilesAreFlightlinesCommands(commands)
|
||||
self.addParametersApplyFileSourceIdsCommands(commands)
|
||||
self.addParametersApplyFileSourceIdCommands(commands)
|
||||
self.addParametersPointOutputCommands(commands)
|
||||
self.addParametersAdditionalCommands(commands)
|
||||
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
"""
|
||||
***************************************************************************
|
||||
las2txt.py
|
||||
shp2las.py
|
||||
---------------------
|
||||
Date : September 2013
|
||||
Copyright : (C) 2013 by Martin Isenburg
|
||||
@ -43,9 +43,9 @@ class shp2las(LAStoolsAlgorithm):
|
||||
self.addParameter(ParameterFile(shp2las.INPUT,
|
||||
self.tr("Input SHP file")))
|
||||
self.addParameter(ParameterNumber(shp2las.SCALE_FACTOR_XY,
|
||||
self.tr("resolution of x and y coordinate"), False, False, 0.01))
|
||||
self.tr("resolution of x and y coordinate"), 0, None, 0.01))
|
||||
self.addParameter(ParameterNumber(shp2las.SCALE_FACTOR_Z,
|
||||
self.tr("resolution of z coordinate"), False, False, 0.01))
|
||||
self.tr("resolution of z coordinate"), 0, None, 0.01))
|
||||
self.addParametersPointOutputGUI()
|
||||
self.addParametersAdditionalGUI()
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user