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
|
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 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'
|
fix python pep8 warnings and fix some revealed errors
pep8 --ignore=E111,E128,E201,E202,E203,E211,E221,E222,E225,E226,E227,E231,E241,E261,E265,E272,E302,E303,E501,E701 \
--exclude="ui_*.py,debian/*,python/ext-libs/*" \
.
2015-02-01 14:15:42 +01:00
|
|
|
OUTPUT_DTM = 'OUTPUT_DTM'
|
2014-06-29 00:22:57 +02:00
|
|
|
CELLSIZE = 'CELLSIZE'
|
|
|
|
XYUNITS = 'XYUNITS'
|
|
|
|
ZUNITS = 'ZUNITS'
|
|
|
|
UNITS = ['Meter', 'Feet']
|
|
|
|
CLASS = 'CLASS'
|
|
|
|
|
|
|
|
def defineCharacteristics(self):
|
2015-07-26 03:48:27 +02:00
|
|
|
self.name, self.i18n_name = self.trAlgorithm('Tin Surface Create')
|
|
|
|
self.group, self.i18n_group = self.trAlgorithm('Surface')
|
2015-01-14 20:57:56 +02:00
|
|
|
self.addParameter(ParameterFile(
|
2015-07-13 16:07:20 +10:00
|
|
|
self.INPUT, self.tr('Input LAS layer')))
|
2015-01-14 20:57:56 +02:00
|
|
|
self.addParameter(ParameterNumber(self.CELLSIZE,
|
2015-08-22 14:29:41 +02:00
|
|
|
self.tr('Cellsize'), 0, None, 10.0))
|
2015-01-14 20:57:56 +02:00
|
|
|
self.addParameter(ParameterSelection(self.XYUNITS,
|
2015-08-22 14:29:41 +02:00
|
|
|
self.tr('XY Units'), self.UNITS))
|
2015-01-14 20:57:56 +02:00
|
|
|
self.addParameter(ParameterSelection(self.ZUNITS,
|
2015-08-22 14:29:41 +02:00
|
|
|
self.tr('Z Units'), self.UNITS))
|
2015-01-14 20:57:56 +02:00
|
|
|
self.addOutput(OutputFile(self.OUTPUT_DTM,
|
2015-08-22 14:29:41 +02:00
|
|
|
self.tr('DTM Output Surface'), 'dtm'))
|
2015-01-14 20:57:56 +02:00
|
|
|
class_var = ParameterString(self.CLASS,
|
2015-08-22 14:29:41 +02:00
|
|
|
self.tr('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)
|
2015-08-16 20:57:24 +02:00
|
|
|
if unicode(class_var).strip() != '':
|
|
|
|
commands.append('/class:' + unicode(class_var))
|
2014-06-29 00:22:57 +02:00
|
|
|
commands.append(self.getOutputValue(self.OUTPUT_DTM))
|
2015-08-16 20:57:24 +02:00
|
|
|
commands.append(unicode(self.getParameterValue(self.CELLSIZE)))
|
2014-06-29 00:22:57 +02:00
|
|
|
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)
|