4***************************************************************************
8 Copyright : (C) 2015 by Pieter Kempeneers
9 Email : kempenep at gmail dot com
10***************************************************************************
12* This program is free software; you can redistribute it
and/
or modify *
13* it under the terms of the GNU General Public License
as published by *
14* the Free Software Foundation; either version 2 of the License,
or *
15* (at your option) any later version. *
17***************************************************************************
20__author__ = 'Pieter Kempeneers'
21__date__ = 'April 2015'
22__copyright__ = '(C) 2015, Pieter Kempeneers'
23# This will get replaced with a git SHA1 when you do a git archive
24__revision__ = '$Format:%H$'
27from pktoolsUtils import pktoolsUtils
28from pktoolsAlgorithm import pktoolsAlgorithm
29from processing.core.parameters import ParameterMultipleInput
30from processing.core.parameters import ParameterRaster
31from processing.core.outputs import OutputRaster
32from processing.core.parameters import ParameterSelection
33from processing.core.parameters import ParameterNumber
34from processing.core.parameters import ParameterString
35from processing.core.parameters import ParameterBoolean
36from processing.core.parameters import ParameterExtent
38class pkreclass(pktoolsAlgorithm):
46 MSKNODATA =
"MSKNODATA"
49 TYPE = [
'none',
'Byte',
'Int16',
'UInt16',
'UInt32',
'Int32',
'Float32',
'Float64',
'CInt16',
'CInt32',
'CFloat32',
'CFloat64']
55 def defineCharacteristics(self):
56 self.
name =
"reclass raster datasets"
57 self.
group =
"[pktools] raster"
58 self.addParameter(ParameterMultipleInput(self.
INPUT,
'Input layer raster data set',ParameterMultipleInput.TYPE_RASTER))
59 self.addOutput(OutputRaster(self.
OUTPUT,
"Output raster data set"))
60 self.addParameter(ParameterString(self.
BAND,
"Band index(es) to replace, e.g., 0;1;2 (other bands are copied to output)",
'0'))
61 self.addParameter(ParameterRaster(self.
MASK,
"Mask raster dataset",optional=
True))
62 self.addParameter(ParameterString(self.
MSKNODATA,
"Mask value(s) not to consider for classification (e.g., 0;255)",
"0"))
63 self.addParameter(ParameterString(self.
CLASS,
"list of classes to reclass, in combination with reclass option, e.g., 0;1;2;3",
""))
64 self.addParameter(ParameterString(self.
RECLASS,
"list of recoded classes, in combination with class option e.g., 10;11;12;13",
""))
65 self.addParameter(ParameterNumber(self.
NODATA,
"nodata value to put in image if not valid",0,
None,0))
67 self.addParameter(ParameterSelection(self.
RTYPE,
'Output raster type (leave as none to keep original type)', self.
TYPE, 0))
68 self.addParameter(ParameterString(self.
EXTRA,
69 'Additional parameters',
'-of GTiff', optional=
True))
71 def processAlgorithm(self, progress):
72 cliPath =
'"' + os.path.join(pktoolsUtils.pktoolsPath(), self.
cliName()) +
'"'
75 input=self.getParameterValue(self.
INPUT)
77 commands.append(
'"' + input +
'"')
79 if self.
TYPE[self.getParameterValue(self.
RTYPE)] !=
"none":
80 commands.append(
'-ot')
81 commands.append(self.
TYPE[self.getParameterValue(self.
RTYPE)])
83 output=self.getOutputValue(self.
OUTPUT)
85 commands.append(
'"' + output +
'"')
87 commands.append(
'-nodata')
88 commands.append(str(self.getParameterValue(self.
NODATA)))
90 band=str(self.getParameterValue(self.
BAND))
92 bandValues = band.split(
';')
93 for bandValue
in bandValues:
95 commands.append(bandValue)
97 theclass=str(self.getParameterValue(self.
CLASS))
99 classValues = theclass.split(
';')
100 for classValue
in classValues:
101 commands.append(
'-c')
102 commands.append(classValue)
103 reclass=str(self.getParameterValue(self.
RECLASS))
105 reclassValues = reclass.split(
';')
106 for reclassValue
in reclassValues:
107 commands.append(
'-r')
108 commands.append(reclassValue)
110 mask = str(self.getParameterValue(self.
MASK))
112 commands.append(
'-m')
113 commands.append(mask)
114 msknodata=str(self.getParameterValue(self.
MSKNODATA))
115 msknodataValues = msknodata.split(
';')
116 for msknodataValue
in msknodataValues:
117 commands.append(
'-msknodata')
118 commands.append(msknodataValue)
120 extra = str(self.getParameterValue(self.
EXTRA))
122 commands.append(extra)
124 pktoolsUtils.runpktools(commands, progress)