2012-10-04 19:33:47 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
"""
|
|
|
|
***************************************************************************
|
|
|
|
ClipData.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'
|
2013-10-01 20:52:22 +03:00
|
|
|
|
2012-10-04 19:33:47 +02:00
|
|
|
# This will get replaced with a git SHA1 when you do a git archive
|
2013-10-01 20:52:22 +03:00
|
|
|
|
2012-10-04 19:33:47 +02:00
|
|
|
__revision__ = '$Format:%H$'
|
|
|
|
|
2012-09-15 18:25:25 +03:00
|
|
|
import os
|
|
|
|
import subprocess
|
2015-11-20 17:03:26 +01:00
|
|
|
from processing.core.parameters import ParameterBoolean
|
2014-07-14 14:19:09 +02:00
|
|
|
from processing.core.parameters import ParameterFile
|
|
|
|
from processing.core.parameters import ParameterExtent
|
|
|
|
from processing.core.parameters import ParameterSelection
|
|
|
|
from processing.core.outputs import OutputFile
|
2014-04-17 01:41:25 +02:00
|
|
|
from FusionAlgorithm import FusionAlgorithm
|
|
|
|
from FusionUtils import FusionUtils
|
2012-09-15 18:25:25 +03:00
|
|
|
|
|
|
|
|
2013-10-01 20:52:22 +03:00
|
|
|
class ClipData(FusionAlgorithm):
|
2012-09-15 18:25:25 +03:00
|
|
|
|
2013-10-01 20:52:22 +03:00
|
|
|
INPUT = 'INPUT'
|
|
|
|
OUTPUT = 'OUTPUT'
|
|
|
|
EXTENT = 'EXTENT'
|
|
|
|
SHAPE = 'SHAPE'
|
2015-11-20 17:03:26 +01:00
|
|
|
DTM = 'DTM'
|
|
|
|
HEIGHT = 'HEIGHT'
|
2012-09-15 18:25:25 +03:00
|
|
|
|
|
|
|
def defineCharacteristics(self):
|
2015-07-26 03:48:27 +02:00
|
|
|
self.name, self.i18n_name = self.trAlgorithm('Clip Data')
|
|
|
|
self.group, self.i18n_group = self.trAlgorithm('Points')
|
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(ParameterExtent(self.EXTENT, self.tr('Extent')))
|
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
|
|
|
self.addParameter(ParameterSelection(
|
|
|
|
self.SHAPE, self.tr('Shape'), ['Rectangle', 'Circle']))
|
|
|
|
self.addOutput(OutputFile(
|
2015-07-13 16:07:20 +10:00
|
|
|
self.OUTPUT, self.tr('Output clipped LAS file')))
|
2015-11-20 17:03:26 +01:00
|
|
|
dtm = ParameterFile(
|
|
|
|
self.DTM, self.tr('Ground file for height normalization'))
|
|
|
|
dtm.isAdvanced = True
|
|
|
|
self.addParameter(dtm)
|
|
|
|
height = ParameterBoolean(
|
2015-11-20 17:04:37 +01:00
|
|
|
self.HEIGHT, self.tr("Convert point elevations into heights above ground (used with the above command)"), False)
|
2015-11-20 17:03:26 +01:00
|
|
|
height.isAdvanced = True
|
|
|
|
self.addParameter(height)
|
2012-09-15 18:25:25 +03:00
|
|
|
self.addAdvancedModifiers()
|
|
|
|
|
|
|
|
def processAlgorithm(self, progress):
|
2015-11-15 19:32:19 +01:00
|
|
|
commands = [os.path.join(FusionUtils.FusionPath(), 'ClipData.exe')]
|
2013-10-01 20:52:22 +03:00
|
|
|
commands.append('/verbose')
|
2012-09-15 18:25:25 +03:00
|
|
|
self.addAdvancedModifiersToCommand(commands)
|
2015-08-16 20:57:24 +02:00
|
|
|
commands.append('/shape:' + unicode(self.getParameterValue(self.SHAPE)))
|
2015-11-20 17:03:26 +01:00
|
|
|
dtm = self.getParameterValue(self.DTM)
|
|
|
|
if dtm:
|
|
|
|
commands.append('/dtm:'+unicode(dtm))
|
|
|
|
height = self.getParameterValue(self.HEIGHT)
|
|
|
|
if height:
|
|
|
|
commands.append('/height')
|
2013-10-01 20:52:22 +03:00
|
|
|
files = self.getParameterValue(self.INPUT).split(';')
|
2012-09-15 18:25:25 +03:00
|
|
|
if len(files) == 1:
|
|
|
|
commands.append(self.getParameterValue(self.INPUT))
|
|
|
|
else:
|
|
|
|
FusionUtils.createFileList(files)
|
|
|
|
commands.append(FusionUtils.tempFileListFilepath())
|
2015-11-15 19:32:19 +01:00
|
|
|
outFile = self.getOutputValue(self.OUTPUT)
|
2012-09-15 18:25:25 +03:00
|
|
|
commands.append(outFile)
|
2015-08-16 20:57:24 +02:00
|
|
|
extent = unicode(self.getParameterValue(self.EXTENT)).split(',')
|
2012-09-15 18:25:25 +03:00
|
|
|
commands.append(extent[0])
|
|
|
|
commands.append(extent[2])
|
|
|
|
commands.append(extent[1])
|
|
|
|
commands.append(extent[3])
|
|
|
|
FusionUtils.runFusion(commands, progress)
|
|
|
|
p = subprocess.Popen(commands, shell=True)
|
|
|
|
p.wait()
|