mirror of
https://github.com/qgis/QGIS.git
synced 2025-03-09 00:35:20 -05:00
82 lines
3.7 KiB
Python
82 lines
3.7 KiB
Python
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
"""
|
||
|
***************************************************************************
|
||
|
lasgroundPro.py
|
||
|
---------------------
|
||
|
Date : August 2012
|
||
|
Copyright : (C) 2012 by Victor Olaya
|
||
|
Email : volayaf at gmail dot com
|
||
|
---------------------
|
||
|
Date : April 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__ = 'Victor Olaya'
|
||
|
__date__ = 'August 2012'
|
||
|
__copyright__ = '(C) 2012, Victor Olaya'
|
||
|
# 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.parameters.ParameterBoolean import ParameterBoolean
|
||
|
from processing.parameters.ParameterSelection import ParameterSelection
|
||
|
|
||
|
class lasgroundPro(LAStoolsAlgorithm):
|
||
|
|
||
|
AIRBORNE = "AIRBORNE"
|
||
|
TERRAIN = "TERRAIN"
|
||
|
TERRAINS = ["wilderness", "nature", "town", "city", "metro"]
|
||
|
GRANULARITY = "GRANULARITY"
|
||
|
GRANULARITIES = ["coarse", "default", "fine", "extra_fine", "ultra_fine"]
|
||
|
|
||
|
def defineCharacteristics(self):
|
||
|
self.name = "lasgroundPro"
|
||
|
self.group = "LAStools Production"
|
||
|
self.addParametersPointInputFolderGUI()
|
||
|
self.addParametersHorizontalAndVerticalFeetGUI()
|
||
|
self.addParameter(ParameterBoolean(lasgroundPro.AIRBORNE, "airborne LiDAR", True))
|
||
|
self.addParameter(ParameterSelection(lasgroundPro.TERRAIN, "terrain type", lasgroundPro.TERRAINS, 1))
|
||
|
self.addParameter(ParameterSelection(lasgroundPro.GRANULARITY, "preprocessing", lasgroundPro.GRANULARITIES, 1))
|
||
|
self.addParametersOutputDirectoryGUI()
|
||
|
self.addParametersOutputAppendixGUI()
|
||
|
self.addParametersPointOutputFormatGUI()
|
||
|
self.addParametersAdditionalGUI()
|
||
|
self.addParametersCoresGUI()
|
||
|
self.addParametersVerboseGUI()
|
||
|
|
||
|
def processAlgorithm(self, progress):
|
||
|
commands = [os.path.join(LAStoolsUtils.LAStoolsPath(), "bin", "lasground.exe")]
|
||
|
self.addParametersVerboseCommands(commands)
|
||
|
self.addParametersPointInputFolderCommands(commands)
|
||
|
self.addParametersHorizontalAndVerticalFeetCommands(commands)
|
||
|
airborne = self.getParameterValue(lasgroundPro.AIRBORNE)
|
||
|
if airborne != True:
|
||
|
commands.append("-not_airborne")
|
||
|
method = self.getParameterValue(lasgroundPro.TERRAIN)
|
||
|
if method != 1:
|
||
|
commands.append("-" + lasgroundPro.TERRAINS[method])
|
||
|
granularity = self.getParameterValue(lasgroundPro.GRANULARITY)
|
||
|
if granularity != 1:
|
||
|
commands.append("-" + lasgroundPro.GRANULARITIES[granularity])
|
||
|
self.addParametersCoresCommands(commands)
|
||
|
self.addParametersOutputDirectoryCommands(commands)
|
||
|
self.addParametersOutputAppendixCommands(commands)
|
||
|
self.addParametersPointOutputFormatCommands(commands)
|
||
|
self.addParametersAdditionalCommands(commands)
|
||
|
self.addParametersCoresCommands(commands)
|
||
|
|
||
|
LAStoolsUtils.runLAStools(commands, progress)
|