volaya 6c7d61f3be [processing] update of lidar algorithms
Provided by Martin Isenburg
2014-12-22 12:53:29 +01:00

70 lines
3.0 KiB
Python

# -*- coding: utf-8 -*-
"""
***************************************************************************
laszipPro.py
---------------------
Date : October 2014
Copyright : (C) 2014 by Martin Isenburg
Email : martin near rapidlasso point com
***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************
"""
__author__ = 'Martin Isenburg'
__date__ = 'October 2014'
__copyright__ = '(C) 2014, Martin Isenburg'
# This will get replaced with a git SHA1 when you do a git archive
__revision__ = '$Format:%H$'
import os
from LAStoolsUtils import LAStoolsUtils
from LAStoolsAlgorithm import LAStoolsAlgorithm
from processing.core.parameters import ParameterBoolean
class laszipPro(LAStoolsAlgorithm):
REPORT_SIZE = "REPORT_SIZE"
CREATE_LAX = "CREATE_LAX"
APPEND_LAX = "APPEND_LAX"
def defineCharacteristics(self):
self.name = "laszipPro"
self.group = "LAStools Production"
self.addParametersPointInputFolderGUI()
self.addParameter(ParameterBoolean(laszipPro.REPORT_SIZE, "only report size", False))
self.addParameter(ParameterBoolean(laszipPro.CREATE_LAX, "create spatial indexing file (*.lax)", False))
self.addParameter(ParameterBoolean(laszipPro.APPEND_LAX, "append *.lax into *.laz file", False))
self.addParametersOutputDirectoryGUI()
self.addParametersOutputAppendixGUI()
self.addParametersPointOutputFormatGUI()
self.addParametersAdditionalGUI()
self.addParametersCoresGUI()
self.addParametersVerboseGUI()
def processAlgorithm(self, progress):
commands = [os.path.join(LAStoolsUtils.LAStoolsPath(), "bin", "laszip")]
self.addParametersVerboseCommands(commands)
self.addParametersPointInputFolderCommands(commands)
if self.getParameterValue(laszipPro.REPORT_SIZE):
commands.append("-size")
if self.getParameterValue(laszipPro.CREATE_LAX):
commands.append("-lax")
if self.getParameterValue(laszipPro.APPEND_LAX):
commands.append("-append")
self.addParametersCoresCommands(commands)
self.addParametersOutputDirectoryCommands(commands)
self.addParametersOutputAppendixCommands(commands)
self.addParametersPointOutputFormatCommands(commands)
self.addParametersAdditionalCommands(commands)
self.addParametersCoresCommands(commands)
LAStoolsUtils.runLAStools(commands, progress)