2013-09-24 22:06:50 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
"""
|
|
|
|
***************************************************************************
|
|
|
|
laszip.py
|
|
|
|
---------------------
|
|
|
|
Date : September 2013
|
|
|
|
Copyright : (C) 2013 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__ = 'September 2013'
|
|
|
|
__copyright__ = '(C) 2013, Martin Isenburg'
|
2013-10-01 20:52:22 +03:00
|
|
|
|
2013-09-24 22:06:50 +02:00
|
|
|
# This will get replaced with a git SHA1 when you do a git archive
|
2013-10-01 20:52:22 +03:00
|
|
|
|
2013-09-24 22:06:50 +02:00
|
|
|
__revision__ = '$Format:%H$'
|
|
|
|
|
|
|
|
import os
|
2014-04-17 01:41:25 +02:00
|
|
|
from LAStoolsUtils import LAStoolsUtils
|
|
|
|
from LAStoolsAlgorithm import LAStoolsAlgorithm
|
2013-09-24 22:06:50 +02:00
|
|
|
|
|
|
|
from processing.parameters.ParameterBoolean import ParameterBoolean
|
|
|
|
|
2013-10-01 20:52:22 +03:00
|
|
|
|
2013-09-24 22:06:50 +02:00
|
|
|
class laszip(LAStoolsAlgorithm):
|
|
|
|
|
2013-10-01 20:52:22 +03:00
|
|
|
REPORT_SIZE = 'REPORT_SIZE'
|
2013-09-24 22:06:50 +02:00
|
|
|
|
|
|
|
def defineCharacteristics(self):
|
2013-10-01 20:52:22 +03:00
|
|
|
self.name = 'laszip'
|
|
|
|
self.group = 'LAStools'
|
2013-09-24 22:06:50 +02:00
|
|
|
self.addParametersVerboseGUI()
|
|
|
|
self.addParametersPointInputGUI()
|
2013-10-01 20:52:22 +03:00
|
|
|
self.addParameter(ParameterBoolean(laszip.REPORT_SIZE,
|
|
|
|
'only report size', False))
|
2013-09-24 22:06:50 +02:00
|
|
|
self.addParametersPointOutputGUI()
|
|
|
|
|
|
|
|
def processAlgorithm(self, progress):
|
2013-10-01 20:52:22 +03:00
|
|
|
commands = [os.path.join(LAStoolsUtils.LAStoolsPath(), 'bin',
|
|
|
|
'laszip.exe')]
|
2013-09-24 22:06:50 +02:00
|
|
|
self.addParametersVerboseCommands(commands)
|
|
|
|
self.addParametersPointInputCommands(commands)
|
|
|
|
if self.getParameterValue(laszip.REPORT_SIZE):
|
2013-10-01 20:52:22 +03:00
|
|
|
commands.append('-size')
|
2013-09-24 22:06:50 +02:00
|
|
|
self.addParametersPointOutputCommands(commands)
|
|
|
|
|
|
|
|
LAStoolsUtils.runLAStools(commands, progress)
|