2013-09-24 22:06:50 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
"""
|
|
|
|
***************************************************************************
|
|
|
|
blast2dem.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'
|
|
|
|
# This will get replaced with a git SHA1 when you do a git archive
|
|
|
|
__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
|
|
|
|
2014-07-14 14:19:09 +02:00
|
|
|
from processing.core.parameters import ParameterSelection
|
2013-09-24 22:06:50 +02:00
|
|
|
|
2013-10-01 20:52:22 +03:00
|
|
|
class blast2dem(LAStoolsAlgorithm):
|
2013-09-24 22:06:50 +02:00
|
|
|
|
2014-05-19 19:58:33 +02:00
|
|
|
ATTRIBUTE = "ATTRIBUTE"
|
|
|
|
PRODUCT = "PRODUCT"
|
|
|
|
ATTRIBUTES = ["elevation", "slope", "intensity", "rgb"]
|
|
|
|
PRODUCTS = ["actual values", "hillshade", "gray", "false"]
|
|
|
|
|
2013-09-24 22:06:50 +02:00
|
|
|
|
|
|
|
def defineCharacteristics(self):
|
2014-05-19 19:58:33 +02:00
|
|
|
self.name = "blast2dem"
|
|
|
|
self.group = "LAStools"
|
2013-09-24 22:06:50 +02:00
|
|
|
self.addParametersVerboseGUI()
|
|
|
|
self.addParametersPointInputGUI()
|
|
|
|
self.addParametersFilter1ReturnClassFlagsGUI()
|
|
|
|
self.addParametersStepGUI()
|
2014-05-19 19:58:33 +02:00
|
|
|
self.addParameter(ParameterSelection(blast2dem.ATTRIBUTE, "Attribute", blast2dem.ATTRIBUTES, 0))
|
|
|
|
self.addParameter(ParameterSelection(blast2dem.PRODUCT, "Product", blast2dem.PRODUCTS, 0))
|
2013-09-24 22:06:50 +02:00
|
|
|
self.addParametersRasterOutputGUI()
|
|
|
|
|
|
|
|
def processAlgorithm(self, progress):
|
2014-05-19 19:58:33 +02:00
|
|
|
commands = [os.path.join(LAStoolsUtils.LAStoolsPath(), "bin", "blast2dem.exe")]
|
2013-09-24 22:06:50 +02:00
|
|
|
self.addParametersVerboseCommands(commands)
|
|
|
|
self.addParametersPointInputCommands(commands)
|
|
|
|
self.addParametersFilter1ReturnClassFlagsCommands(commands)
|
|
|
|
self.addParametersStepCommands(commands)
|
|
|
|
attribute = self.getParameterValue(blast2dem.ATTRIBUTE)
|
|
|
|
if attribute != 0:
|
2014-05-19 19:58:33 +02:00
|
|
|
commands.append("-" + blast2dem.ATTRIBUTES[attribute])
|
2013-09-24 22:06:50 +02:00
|
|
|
product = self.getParameterValue(blast2dem.PRODUCT)
|
|
|
|
if product != 0:
|
2014-05-19 19:58:33 +02:00
|
|
|
commands.append("-" + blast2dem.PRODUCTS[product])
|
2013-09-24 22:06:50 +02:00
|
|
|
self.addParametersRasterOutputCommands(commands)
|
|
|
|
|
|
|
|
LAStoolsUtils.runLAStools(commands, progress)
|