2013-09-24 22:06:50 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
"""
|
|
|
|
***************************************************************************
|
|
|
|
lasthin.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
|
|
|
|
from processing.parameters.ParameterNumber import ParameterNumber
|
|
|
|
from processing.parameters.ParameterSelection import ParameterSelection
|
|
|
|
|
2013-10-01 20:52:22 +03:00
|
|
|
|
2013-09-24 22:06:50 +02:00
|
|
|
class lasthin(LAStoolsAlgorithm):
|
|
|
|
|
2013-10-01 20:52:22 +03:00
|
|
|
THIN_STEP = 'THIN_STEP'
|
|
|
|
OPERATION = 'OPERATION'
|
|
|
|
OPERATIONS = ['lowest', 'random', 'highest']
|
|
|
|
WITHHELD = 'WITHHELD'
|
2013-09-24 22:06:50 +02:00
|
|
|
|
|
|
|
def defineCharacteristics(self):
|
2013-10-01 20:52:22 +03:00
|
|
|
self.name = 'lasthin'
|
|
|
|
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(ParameterNumber(lasthin.THIN_STEP,
|
|
|
|
'size of grid used for thinning', 0, None, 1.0))
|
|
|
|
self.addParameter(ParameterSelection(lasthin.OPERATION,
|
|
|
|
'keep particular point per cell',
|
|
|
|
lasthin.OPERATIONS, 0))
|
|
|
|
self.addParameter(ParameterBoolean(lasthin.WITHHELD,
|
|
|
|
'mark points as withheld', 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',
|
|
|
|
'lasthin.exe')]
|
2013-09-24 22:06:50 +02:00
|
|
|
self.addParametersVerboseCommands(commands)
|
|
|
|
self.addParametersPointInputCommands(commands)
|
|
|
|
step = self.getParameterValue(lasthin.THIN_STEP)
|
|
|
|
if step != 0.0:
|
2013-10-01 20:52:22 +03:00
|
|
|
commands.append('-step')
|
2013-09-24 22:06:50 +02:00
|
|
|
commands.append(str(step))
|
|
|
|
operation = self.getParameterValue(lasthin.OPERATION)
|
|
|
|
if operation != 0:
|
2013-10-01 20:52:22 +03:00
|
|
|
commands.append('-' + OPERATIONS[operation])
|
2013-09-24 22:06:50 +02:00
|
|
|
if self.getParameterValue(lasthin.WITHHELD):
|
2013-10-01 20:52:22 +03:00
|
|
|
commands.append('-withheld')
|
2013-09-24 22:06:50 +02:00
|
|
|
self.addParametersPointOutputCommands(commands)
|
|
|
|
|
|
|
|
LAStoolsUtils.runLAStools(commands, progress)
|