2012-10-20 17:15:42 +03:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
"""
|
|
|
|
***************************************************************************
|
|
|
|
peukerdouglas.py
|
|
|
|
---------------------
|
|
|
|
Date : October 2012
|
|
|
|
Copyright : (C) 2012 by Alexander Bruy
|
|
|
|
Email : alexander dot bruy 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__ = 'Alexander Bruy'
|
|
|
|
__date__ = 'October 2012'
|
|
|
|
__copyright__ = '(C) 2012, Alexander Bruy'
|
2013-10-01 20:52:22 +03:00
|
|
|
|
2012-10-20 17:15:42 +03: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-20 17:15:42 +03:00
|
|
|
__revision__ = '$Format:%H$'
|
|
|
|
|
|
|
|
import os
|
|
|
|
from PyQt4.QtGui import *
|
2013-08-12 20:44:27 +02:00
|
|
|
from processing.core.GeoAlgorithm import GeoAlgorithm
|
|
|
|
from processing.core.ProcessingLog import ProcessingLog
|
|
|
|
from processing.core.ProcessingConfig import ProcessingConfig
|
2013-10-01 20:52:22 +03:00
|
|
|
from processing.core.GeoAlgorithmExecutionException import \
|
|
|
|
GeoAlgorithmExecutionException
|
2013-08-12 20:44:27 +02:00
|
|
|
from processing.parameters.ParameterRaster import ParameterRaster
|
|
|
|
from processing.parameters.ParameterNumber import ParameterNumber
|
|
|
|
from processing.outputs.OutputRaster import OutputRaster
|
2013-10-01 20:52:22 +03:00
|
|
|
from processing.tools.system import *
|
2014-04-17 01:41:25 +02:00
|
|
|
from TauDEMUtils import TauDEMUtils
|
2012-10-20 17:15:42 +03:00
|
|
|
|
2013-10-01 20:52:22 +03:00
|
|
|
|
2012-10-20 17:15:42 +03:00
|
|
|
class PeukerDouglas(GeoAlgorithm):
|
|
|
|
|
2013-10-01 20:52:22 +03:00
|
|
|
ELEVATION_GRID = 'ELEVATION_GRID'
|
|
|
|
CENTER_WEIGHT = 'CENTER_WEIGHT'
|
|
|
|
SIDE_WEIGHT = 'SIDE_WEIGHT'
|
|
|
|
DIAGONAL_WEIGHT = 'DIAGONAL_WEIGHT'
|
|
|
|
|
|
|
|
STREAM_SOURCE_GRID = 'STREAM_SOURCE_GRID'
|
2012-10-20 17:15:42 +03:00
|
|
|
|
|
|
|
def getIcon(self):
|
2013-10-01 20:52:22 +03:00
|
|
|
return QIcon(os.path.dirname(__file__) + '/../images/taudem.png')
|
2012-10-20 17:15:42 +03:00
|
|
|
|
|
|
|
def defineCharacteristics(self):
|
2013-10-01 20:52:22 +03:00
|
|
|
self.name = 'Peuker Douglas'
|
|
|
|
self.cmdName = 'peukerdouglas'
|
|
|
|
self.group = 'Stream Network Analysis tools'
|
|
|
|
|
|
|
|
self.addParameter(ParameterRaster(self.ELEVATION_GRID, 'Elevation Grid'
|
|
|
|
, False))
|
|
|
|
self.addParameter(ParameterNumber(self.CENTER_WEIGHT,
|
|
|
|
'Center Smoothing Weight', 0, None, 0.4))
|
|
|
|
self.addParameter(ParameterNumber(self.SIDE_WEIGHT,
|
|
|
|
'Side Smoothing Weight', 0, None, 0.1))
|
|
|
|
self.addParameter(ParameterNumber(self.DIAGONAL_WEIGHT,
|
|
|
|
'Diagonal Smoothing Weight', 0, None, 0.05))
|
|
|
|
|
|
|
|
self.addOutput(OutputRaster(self.STREAM_SOURCE_GRID,
|
|
|
|
'Stream Source Grid'))
|
2012-10-20 17:15:42 +03:00
|
|
|
|
|
|
|
def processAlgorithm(self, progress):
|
|
|
|
commands = []
|
2013-10-01 20:52:22 +03:00
|
|
|
commands.append(os.path.join(TauDEMUtils.mpiexecPath(), 'mpiexec'))
|
2012-10-20 17:15:42 +03:00
|
|
|
|
2013-08-12 20:44:27 +02:00
|
|
|
processNum = ProcessingConfig.getSetting(TauDEMUtils.MPI_PROCESSES)
|
2012-10-20 17:15:42 +03:00
|
|
|
if processNum <= 0:
|
2013-10-01 20:52:22 +03:00
|
|
|
raise GeoAlgorithmExecutionException('Wrong number of MPI \
|
|
|
|
processes used.\nPlease set correct number before running \
|
|
|
|
TauDEM algorithms.')
|
2012-10-20 17:15:42 +03:00
|
|
|
|
2013-10-01 20:52:22 +03:00
|
|
|
commands.append('-n')
|
2012-10-20 17:15:42 +03:00
|
|
|
commands.append(str(processNum))
|
|
|
|
commands.append(os.path.join(TauDEMUtils.taudemPath(), self.cmdName))
|
2013-10-01 20:52:22 +03:00
|
|
|
commands.append('-fel')
|
2012-10-20 17:15:42 +03:00
|
|
|
commands.append(self.getParameterValue(self.ELEVATION_GRID))
|
2013-10-01 20:52:22 +03:00
|
|
|
commands.append('-par')
|
2012-10-20 17:15:42 +03:00
|
|
|
commands.append(str(self.getParameterValue(self.CENTER_WEIGHT)))
|
|
|
|
commands.append(str(self.getParameterValue(self.SIDE_WEIGHT)))
|
|
|
|
commands.append(str(self.getParameterValue(self.DIAGONAL_WEIGHT)))
|
2013-10-01 20:52:22 +03:00
|
|
|
commands.append('-ss')
|
2012-10-20 17:15:42 +03:00
|
|
|
commands.append(self.getOutputValue(self.STREAM_SOURCE_GRID))
|
|
|
|
|
|
|
|
loglines = []
|
2013-10-01 20:52:22 +03:00
|
|
|
loglines.append('TauDEM execution command')
|
2012-10-20 17:15:42 +03:00
|
|
|
for line in commands:
|
|
|
|
loglines.append(line)
|
2013-08-12 20:44:27 +02:00
|
|
|
ProcessingLog.addToLog(ProcessingLog.LOG_INFO, loglines)
|
2012-10-20 17:15:42 +03:00
|
|
|
|
|
|
|
TauDEMUtils.executeTauDEM(commands, progress)
|