-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmefa_algorithm.py
More file actions
236 lines (200 loc) · 8.33 KB
/
Copy pathmefa_algorithm.py
File metadata and controls
236 lines (200 loc) · 8.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
# -*- coding: utf-8 -*-
"""
/***************************************************************************
MIDAS
A QGIS plugin
Memory-Efficient I/O-Improved Drainage Analysis System
Generated by Plugin Builder: http://g-sherman.github.io/Qgis-Plugin-Builder/
-------------------
begin : 2025-07-26
copyright : (C) 2025-2026 by Huidae Cho
email : grass4u@gmail.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 3 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
"""
__author__ = 'Huidae Cho'
__date__ = '2025-07-26'
__copyright__ = '(C) 2025-2026 by Huidae Cho'
# This will get replaced with a git SHA1 when you do a git archive
__revision__ = '$Format:%H$'
from qgis.PyQt.QtCore import QCoreApplication
from qgis.core import (QgsMessageLog,
QgsProject,
QgsProcessing,
QgsProcessingAlgorithm,
QgsProcessingParameterRasterLayer,
QgsProcessingParameterString,
QgsProcessingParameterFeatureSource,
QgsProcessingParameterField,
QgsProcessingParameterBoolean,
QgsProcessingParameterFileDestination,
QgsProcessingParameterNumber,
QgsProcessingException,
QgsRasterFileWriter,
QgsVectorFileWriter,
QgsRasterLayer,
QgsRasterPipe,
QgsVectorLayer,
QgsCoordinateTransformContext,
QgsCoordinateReferenceSystem,
QgsWkbTypes,
QgsFields,
QgsField)
from PyQt5.QtCore import QMetaType
from .utils import run_command_stream_output
class MEFAAlgorithm(QgsProcessingAlgorithm):
"""
This is an example algorithm that takes a vector layer and
creates a new identical one.
It is meant to be used as an example of how to create your own
algorithms and explain methods and variables used to do it. An
algorithm like this will be available in all elements, and there
is not need for additional work.
All Processing algorithms should extend the QgsProcessingAlgorithm
class.
"""
# Constants used to refer to parameters and outputs. They will be
# used when calling the algorithm from another algorithm, or when
# calling from the QGIS console.
dir_ = "dir"
format_ = "format"
encoding = "encoding"
accum = "accum"
compress_output = "compress_output"
nprocs = "nprocs"
def initAlgorithm(self, config):
"""
Here we define the inputs and output of the algorithm, along
with some other properties.
"""
self.addParameter(
QgsProcessingParameterRasterLayer(
self.dir_,
self.tr("Input flow direction raster")
)
)
param = QgsProcessingParameterString(
self.format_,
self.tr("Input flow direction encoding"),
"power2"
)
param.setMetadata({
'widget_wrapper': {
'value_hints': [
"degree",
"45degree",
"power2",
"taudem"
]}
}
)
self.addParameter(param)
self.addParameter(
QgsProcessingParameterString(
self.encoding,
self.tr("Custom flow direction encoding (a comma-separated list of eight numbers for E,SE,S,SW,W,NW,N,NE)"),
optional=True
),
)
self.addParameter(
QgsProcessingParameterFileDestination(
self.accum,
self.tr("Flow accumulation GeoTIFF"),
"GeoTIFF files (*.tif)"
)
)
self.addParameter(
QgsProcessingParameterBoolean(
self.compress_output,
self.tr("Compress output GeoTIFF")
)
)
self.addParameter(
QgsProcessingParameterNumber(
self.nprocs,
self.tr("Number of threads for parallel computing (0: use OpenMP default; >0: use nprocs; <0: use MAX-nprocs)"),
QgsProcessingParameterNumber.Integer,
0,
minValue=0
)
)
def processAlgorithm(self, parameters, context, feedback):
"""
Here is where the processing itself takes place.
"""
dir_rast = self.parameterAsRasterLayer(parameters, self.dir_, context)
format_ = self.parameterAsString(parameters, self.format_, context)
encoding = self.parameterAsString(parameters, self.encoding, context)
accum_path = self.parameterAsFileOutput(parameters, self.accum, context)
compress_output = self.parameterAsBoolean(parameters, self.compress_output, context)
nprocs = self.parameterAsString(parameters, self.nprocs, context)
# XXX: not sure how QGIS passes a raster layer name in GeoPackage;
# GDALOpenEx() understands GPKG:file.gpkg:layer_name; for now, just
# pass it as is
#dir_path = dir_rast.dataProvider().dataSourceUri()
dir_path = dir_rast.source()
if format_ == "custom":
if not encoding:
raise QgsProcessingException(f"Encoding not specified for custom format")
else:
encoding = format_
cmd = ["mefa", dir_path, accum_path, "-e", encoding, "-t", nprocs]
if compress_output:
cmd.extend(["-z"])
QgsMessageLog.logMessage(str(cmd))
run_command_stream_output(cmd, feedback)
#result = subprocess.run(cmd, capture_output=True)
#if result.returncode != 0:
# raise QgsProcessingException(f"Executable failed: {result.stderr.decode()}")
ret = {}
project = context.project()
accum_rast = QgsRasterLayer(f"{accum_path}", "Flow Accumulation", "gdal")
if not accum_rast.isValid():
feedback.reportError("Failed to load accum layer!")
ret[self.accum] = None
else:
project.addMapLayer(accum_rast)
ret[self.accum] = accum_rast.source()
QgsMessageLog.logMessage(str(ret))
return ret
def name(self):
"""
Returns the algorithm name, used for identifying the algorithm. This
string should be fixed for the algorithm, and must not be localised.
The name should be unique within each provider. Names should contain
lowercase alphanumeric characters only and no spaces or other
formatting characters.
"""
return 'Calculate flow accumulation'
def displayName(self):
"""
Returns the translated algorithm name, which should be used for any
user-visible display of the algorithm name.
"""
return self.tr(self.name())
def group(self):
"""
Returns the name of the group this algorithm belongs to. This string
should be localised.
"""
return self.tr(self.groupId())
def groupId(self):
"""
Returns the unique ID of the group this algorithm belongs to. This
string should be fixed for the algorithm, and must not be localised.
The group id should be unique within each provider. Group id should
contain lowercase alphanumeric characters only and no spaces or other
formatting characters.
"""
return ''
def tr(self, string):
return QCoreApplication.translate('Processing', string)
def createInstance(self):
return MEFAAlgorithm()