mirror of
https://github.com/qgis/QGIS.git
synced 2025-03-06 00:05:02 -05:00
53 lines
2.1 KiB
Python
53 lines
2.1 KiB
Python
# -*- coding: utf-8 -*-
|
|
|
|
"""
|
|
***************************************************************************
|
|
lasheight.py
|
|
---------------------
|
|
Date : August 2012
|
|
Copyright : (C) 2012 by Victor Olaya
|
|
Email : volayaf at gmail dot 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 sextante.lidar.lastools.LasToolsUtils import LasToolsUtils
|
|
from sextante.lidar.lastools.LasToolsAlgorithm import LasToolsAlgorithm
|
|
from sextante.parameters.ParameterFile import ParameterFile
|
|
from sextante.outputs.OutputFile import OutputFile
|
|
|
|
class lasheight(LasToolsAlgorithm):
|
|
|
|
INPUT = "INPUT"
|
|
OUTPUT = "OUTPUT"
|
|
|
|
def defineCharacteristics(self):
|
|
self.name = "lasheight"
|
|
self.group = "Tools"
|
|
self.addParameter(ParameterFile(lasheight.INPUT, "Input las layer"))
|
|
self.addOutput(OutputFile(lasheight.OUTPUT, "Output height las file"))
|
|
self.addCommonParameters()
|
|
|
|
def processAlgorithm(self, progress):
|
|
commands = [os.path.join(LasToolsUtils.LasToolsPath(), "bin", "lasheight.exe")]
|
|
commands.append("-i")
|
|
commands.append(self.getParameterValue(lasheight.INPUT))
|
|
commands.append("-o")
|
|
commands.append(self.getOutputValue(lasheight.OUTPUT))
|
|
self.addCommonParameterValuesToCommand(commands)
|
|
|
|
LasToolsUtils.runLasTools(commands, progress)
|