2014-07-02 07:46:03 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
2014-06-29 00:22:57 +02:00
|
|
|
|
|
|
|
"""
|
|
|
|
***************************************************************************
|
|
|
|
Catalog.py
|
|
|
|
---------------------
|
|
|
|
Date : June 2014
|
|
|
|
Copyright : (C) 2014 by Agresta S. Coop
|
|
|
|
Email : iescamochero at agresta dot org
|
|
|
|
***************************************************************************
|
|
|
|
* *
|
|
|
|
* 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__ = 'Agresta S. Coop - www.agresta.org'
|
|
|
|
__date__ = 'June 2014'
|
|
|
|
__copyright__ = '(C) 2014, Agresta S. Coop'
|
|
|
|
# This will get replaced with a git SHA1 when you do a git archive
|
|
|
|
__revision__ = '$Format:%H$'
|
|
|
|
|
|
|
|
import os
|
|
|
|
import subprocess
|
2014-07-14 14:19:09 +02:00
|
|
|
from processing.core.parameters import ParameterFile
|
|
|
|
from processing.core.parameters import ParameterNumber
|
|
|
|
from processing.core.parameters import ParameterBoolean
|
|
|
|
from processing.core.parameters import ParameterSelection
|
|
|
|
from processing.core.outputs import OutputFile
|
2014-06-29 00:22:57 +02:00
|
|
|
from FusionAlgorithm import FusionAlgorithm
|
|
|
|
from FusionUtils import FusionUtils
|
2014-07-14 14:19:09 +02:00
|
|
|
from processing.core.parameters import ParameterString
|
2014-06-29 00:22:57 +02:00
|
|
|
|
|
|
|
|
|
|
|
class TinSurfaceCreate(FusionAlgorithm):
|
|
|
|
|
|
|
|
INPUT = 'INPUT'
|
|
|
|
OUTPUT_DTM = 'OUTPUT_DTM';
|
|
|
|
CELLSIZE = 'CELLSIZE'
|
|
|
|
XYUNITS = 'XYUNITS'
|
|
|
|
ZUNITS = 'ZUNITS'
|
|
|
|
UNITS = ['Meter', 'Feet']
|
|
|
|
CLASS = 'CLASS'
|
|
|
|
|
|
|
|
def defineCharacteristics(self):
|
|
|
|
self.name = 'Tin Surface Create'
|
|
|
|
self.group = 'Surface'
|
|
|
|
self.addParameter(ParameterFile(self.INPUT, 'Input las layer'))
|
|
|
|
self.addParameter(ParameterNumber(self.CELLSIZE, 'Cellsize', 0, None, 10.0))
|
|
|
|
self.addParameter(ParameterSelection(self.XYUNITS, 'XY Units', self.UNITS))
|
|
|
|
self.addParameter(ParameterSelection(self.ZUNITS, 'Z Units', self.UNITS))
|
|
|
|
self.addOutput(OutputFile(self.OUTPUT_DTM, 'DTM Output Surface', 'dtm'))
|
2014-07-01 10:26:54 +02:00
|
|
|
class_var = ParameterString(self.CLASS, 'Class', 2, False, True)
|
2014-06-29 00:22:57 +02:00
|
|
|
class_var.isAdvanced = True
|
|
|
|
self.addParameter(class_var)
|
|
|
|
|
|
|
|
|
|
|
|
def processAlgorithm(self, progress):
|
|
|
|
commands = [os.path.join(FusionUtils.FusionPath(), 'TINSurfaceCreate.exe')]
|
|
|
|
commands.append('/verbose')
|
|
|
|
class_var = self.getParameterValue(self.CLASS)
|
|
|
|
if str(class_var).strip() != '':
|
|
|
|
commands.append('/class:' + str(class_var))
|
|
|
|
commands.append(self.getOutputValue(self.OUTPUT_DTM))
|
|
|
|
commands.append(str(self.getParameterValue(self.CELLSIZE)))
|
|
|
|
commands.append(self.UNITS[self.getParameterValue(self.XYUNITS)][0])
|
|
|
|
commands.append(self.UNITS[self.getParameterValue(self.ZUNITS)][0])
|
|
|
|
commands.append('0')
|
|
|
|
commands.append('0')
|
|
|
|
commands.append('0')
|
|
|
|
commands.append('0')
|
|
|
|
files = self.getParameterValue(self.INPUT).split(';')
|
|
|
|
if len(files) == 1:
|
|
|
|
commands.append(self.getParameterValue(self.INPUT))
|
|
|
|
else:
|
2014-07-02 07:46:03 +02:00
|
|
|
commands.extend(files)
|
2014-06-29 00:22:57 +02:00
|
|
|
FusionUtils.runFusion(commands, progress)
|