mirror of
https://github.com/qgis/QGIS.git
synced 2025-03-06 00:05:02 -05:00
106 lines
5.2 KiB
Python
106 lines
5.2 KiB
Python
# -*- coding: utf-8 -*-
|
|
|
|
"""
|
|
***************************************************************************
|
|
lasgroundPro_new.py
|
|
Date : May 2016
|
|
Copyright : (C) 2016 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. *
|
|
* *
|
|
***************************************************************************
|
|
"""
|
|
from __future__ import absolute_import
|
|
from future import standard_library
|
|
standard_library.install_aliases()
|
|
from builtins import str
|
|
|
|
__author__ = 'Martin Isenburg'
|
|
__date__ = 'May 2016'
|
|
__copyright__ = '(C) 2016 by 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
|
|
from processing.core.parameters import ParameterNumber
|
|
from processing.core.parameters import ParameterSelection
|
|
|
|
|
|
class lasgroundPro_new(LAStoolsAlgorithm):
|
|
TERRAIN = "TERRAIN"
|
|
TERRAINS = ["wilderness", "nature", "town", "city", "metro", "custom"]
|
|
GRANULARITY = "GRANULARITY"
|
|
GRANULARITIES = ["coarse", "default", "fine", "extra_fine", "ultra_fine", "hyper_fine"]
|
|
STEP = "STEP"
|
|
BULGE = "BULGE"
|
|
SPIKE = "SPIKE"
|
|
DOWN_SPIKE = "DOWN_SPIKE"
|
|
OFFSET = "OFFSET"
|
|
|
|
def defineCharacteristics(self):
|
|
self.name, self.i18n_name = self.trAlgorithm('lasgroundPro_new')
|
|
self.group, self.i18n_group = self.trAlgorithm('LAStools Production')
|
|
self.addParametersVerboseGUI()
|
|
self.addParametersPointInputFolderGUI()
|
|
self.addParametersIgnoreClass1GUI()
|
|
self.addParametersHorizontalAndVerticalFeetGUI()
|
|
self.addParameter(ParameterSelection(lasgroundPro_new.TERRAIN,
|
|
self.tr("terrain type"), lasgroundPro_new.TERRAINS, 1))
|
|
self.addParameter(ParameterSelection(lasgroundPro_new.GRANULARITY,
|
|
self.tr("preprocessing"), lasgroundPro_new.GRANULARITIES, 1))
|
|
self.addParameter(ParameterNumber(lasgroundPro_new.STEP,
|
|
self.tr("step (for 'custom' terrain only)"), 25.0))
|
|
self.addParameter(ParameterNumber(lasgroundPro_new.BULGE,
|
|
self.tr("bulge (for 'custom' terrain only)"), 2.0))
|
|
self.addParameter(ParameterNumber(lasgroundPro_new.SPIKE,
|
|
self.tr("spike (for 'custom' terrain only)"), 1.0))
|
|
self.addParameter(ParameterNumber(lasgroundPro_new.DOWN_SPIKE,
|
|
self.tr("down spike (for 'custom' terrain only)"), 1.0))
|
|
self.addParameter(ParameterNumber(lasgroundPro_new.OFFSET,
|
|
self.tr("offset (for 'custom' terrain only)"), 0.05))
|
|
self.addParametersOutputDirectoryGUI()
|
|
self.addParametersOutputAppendixGUI()
|
|
self.addParametersPointOutputFormatGUI()
|
|
self.addParametersAdditionalGUI()
|
|
self.addParametersCoresGUI()
|
|
|
|
def processAlgorithm(self, progress):
|
|
commands = [os.path.join(LAStoolsUtils.LAStoolsPath(), "bin", "lasground_new")]
|
|
self.addParametersVerboseCommands(commands)
|
|
self.addParametersPointInputFolderCommands(commands)
|
|
self.addParametersIgnoreClass1Commands(commands)
|
|
self.addParametersHorizontalAndVerticalFeetCommands(commands)
|
|
method = self.getParameterValue(lasgroundPro_new.TERRAIN)
|
|
if (method == 5):
|
|
commands.append("-step")
|
|
commands.append(str(self.getParameterValue(lasgroundPro_new.STEP)))
|
|
commands.append("-bulge")
|
|
commands.append(str(self.getParameterValue(lasgroundPro_new.BULGE)))
|
|
commands.append("-spike")
|
|
commands.append(str(self.getParameterValue(lasgroundPro_new.SPIKE)))
|
|
commands.append("-spike_down")
|
|
commands.append(str(self.getParameterValue(lasgroundPro_new.DOWN_SPIKE)))
|
|
commands.append("-offset")
|
|
commands.append(str(self.getParameterValue(lasgroundPro_new.OFFSET)))
|
|
else:
|
|
commands.append("-" + lasgroundPro_new.TERRAINS[method])
|
|
granularity = self.getParameterValue(lasgroundPro_new.GRANULARITY)
|
|
if (granularity != 1):
|
|
commands.append("-" + lasgroundPro_new.GRANULARITIES[granularity])
|
|
self.addParametersOutputDirectoryCommands(commands)
|
|
self.addParametersOutputAppendixCommands(commands)
|
|
self.addParametersPointOutputFormatCommands(commands)
|
|
self.addParametersAdditionalCommands(commands)
|
|
self.addParametersCoresCommands(commands)
|
|
|
|
LAStoolsUtils.runLAStools(commands, progress)
|