-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathEarthworks_algorithm.py
341 lines (289 loc) · 13.4 KB
/
Earthworks_algorithm.py
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
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
# -*- coding: utf-8 -*-
"""
/***************************************************************************
Earthworks
A QGIS plugin
Generated by Plugin Builder: http://g-sherman.github.io/Qgis-Plugin-Builder/
-------------------
begin : 2022-06-17
copyright : (C) 2022 by Iñigo Marin
email : proy.mbr@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 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
"""
__author__ = 'Iñigo Marin'
__date__ = '2022-06-17'
__copyright__ = '(C) 2022 by Iñigo Marin'
# 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 QgsProcessing
from qgis.core import QgsProcessingAlgorithm
from qgis.core import QgsProcessingMultiStepFeedback
from qgis.core import QgsProcessingParameterNumber
from qgis.core import QgsProcessingParameterRasterLayer
from qgis.core import QgsProcessingParameterVectorLayer
from qgis.core import QgsProcessingParameterPoint
from qgis.core import QgsProcessingParameterRasterDestination
from qgis.core import QgsProcessingParameterVectorDestination
from qgis.core import QgsProcessingParameterFeatureSink
from qgis.core import QgsExpression
from os import path
from PyQt5.QtGui import QIcon
import processing
class EarthworksAlgorithm(QgsProcessingAlgorithm):
"""
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.
OUTPUT = 'OUTPUT'
INPUT = 'INPUT'
def initAlgorithm(self, config):
"""
Here we define the inputs and output of the algorithm, along
with some other properties.
"""
self.addParameter(QgsProcessingParameterRasterLayer('DEM', 'Existing DEM raster layer', defaultValue=None))
self.addParameter(QgsProcessingParameterVectorLayer('platform', 'Platform vector layer', types=[QgsProcessing.TypeVector], defaultValue=None))
self.addParameter(QgsProcessingParameterNumber('platform_level', 'Platform base level', type=QgsProcessingParameterNumber.Double, defaultValue=0))
self.addParameter(QgsProcessingParameterNumber('cut_slope', 'Cut Slope 1:H', type=QgsProcessingParameterNumber.Double, minValue=0, defaultValue=1))
self.addParameter(QgsProcessingParameterNumber('fill_slope', 'Fill Slope 1:H', type=QgsProcessingParameterNumber.Double, minValue=0, defaultValue=1))
self.addParameter(QgsProcessingParameterRasterDestination('new_DEM', 'Modified DEM raster layer', createByDefault=True, defaultValue=''))
def processAlgorithm(self, parameters, context, model_feedback):
"""
Here is where the processing itself takes place.
"""
# Use a multi-step feedback, so that individual child algorithm progress reports are adjusted for the
# overall progress through the model
feedback = QgsProcessingMultiStepFeedback(6, model_feedback)
results = {}
outputs = {}
# Búfer múlti-anillos (distancia constante)
alg_params = {
'DISTANCE': 1,
'INPUT': parameters['platform'],
'RINGS': 100,
'OUTPUT': QgsProcessing.TEMPORARY_OUTPUT
}
outputs['BferMltianillosDistanciaConstante'] = processing.run('native:multiringconstantbuffer', alg_params, context=context, feedback=feedback, is_child_algorithm=True)
feedback.setCurrentStep(1)
if feedback.isCanceled():
return {}
# Calculadora de campos
alg_params = {
'FIELD_LENGTH': 10,
'FIELD_NAME': 'platform_level',
'FIELD_PRECISION': 3,
'FIELD_TYPE': 0, # Float
'FORMULA': parameters['platform_level'],
'INPUT': outputs['BferMltianillosDistanciaConstante']['OUTPUT'],
'OUTPUT': QgsProcessing.TEMPORARY_OUTPUT
}
outputs['CalculadoraDeCampos1'] = processing.run('native:fieldcalculator', alg_params, context=context, feedback=feedback, is_child_algorithm=True)
# Calculadora de campos
alg_params = {
'FIELD_LENGTH': 10,
'FIELD_NAME': 'fill_slope',
'FIELD_PRECISION': 3,
'FIELD_TYPE': 0, # Float
'FORMULA': parameters['fill_slope'],
'INPUT': outputs['CalculadoraDeCampos1']['OUTPUT'],
'OUTPUT': QgsProcessing.TEMPORARY_OUTPUT
}
outputs['CalculadoraDeCampos2'] = processing.run('native:fieldcalculator', alg_params, context=context, feedback=feedback, is_child_algorithm=True)
# Calculadora de campos
alg_params = {
'FIELD_LENGTH': 10,
'FIELD_NAME': 'cut_slope',
'FIELD_PRECISION': 3,
'FIELD_TYPE': 0, # Float
'FORMULA': parameters['cut_slope'],
'INPUT': outputs['CalculadoraDeCampos2']['OUTPUT'],
'OUTPUT': QgsProcessing.TEMPORARY_OUTPUT
}
outputs['CalculadoraDeCampos3'] = processing.run('native:fieldcalculator', alg_params, context=context, feedback=feedback, is_child_algorithm=True)
# Advanced Python field calculator
alg_params = {
'FIELD_LENGTH': 10,
'FIELD_NAME': 'cut_level',
'FIELD_PRECISION': 3,
'FIELD_TYPE': 1, # Float
'FORMULA': 'value = <platform_level>+<distance>/<cut_slope>',
'GLOBAL': '',
'INPUT': outputs['CalculadoraDeCampos3']['OUTPUT'],
'OUTPUT': QgsProcessing.TEMPORARY_OUTPUT
}
outputs['AdvancedPythonFieldCalculator1'] = processing.run('qgis:advancedpythonfieldcalculator', alg_params, context=context, feedback=feedback, is_child_algorithm=True)
# Advanced Python field calculator
alg_params = {
'FIELD_LENGTH': 10,
'FIELD_NAME': 'fill_level',
'FIELD_PRECISION': 3,
'FIELD_TYPE': 1, # Float
'FORMULA': 'value = <platform_level>-<distance>/<fill_slope>',
'GLOBAL': '',
'INPUT': outputs['CalculadoraDeCampos2']['OUTPUT'],
'OUTPUT': QgsProcessing.TEMPORARY_OUTPUT
}
outputs['AdvancedPythonFieldCalculator2'] = processing.run('qgis:advancedpythonfieldcalculator', alg_params, context=context, feedback=feedback, is_child_algorithm=True)
feedback.setCurrentStep(2)
if feedback.isCanceled():
return {}
# Raster calculator
alg_params = {
'BAND_A': 1,
'BAND_B': 1,
'BAND_C': 1,
'BAND_D': None,
'BAND_E': None,
'BAND_F': None,
'EXTRA': '--hide',
'FORMULA': 'A',
'INPUT_A': parameters['DEM'],
'INPUT_B': None,
'INPUT_C': None,
'INPUT_D': None,
'INPUT_E': None,
'INPUT_F': None,
'NO_DATA': 0,
'OPTIONS': '',
'RTYPE': 5, # Float32
'OUTPUT': QgsProcessing.TEMPORARY_OUTPUT
}
outputs['DEMCopy1'] = processing.run('gdal:rastercalculator', alg_params, context=context, feedback=feedback, is_child_algorithm=True)
# Raster calculator
alg_params = {
'BAND_A': 1,
'BAND_B': 1,
'BAND_C': 1,
'BAND_D': None,
'BAND_E': None,
'BAND_F': None,
'EXTRA': '--hide',
'FORMULA': 'A',
'INPUT_A': parameters['DEM'],
'INPUT_B': None,
'INPUT_C': None,
'INPUT_D': None,
'INPUT_E': None,
'INPUT_F': None,
'NO_DATA': 0,
'OPTIONS': '',
'RTYPE': 5, # Float32
'OUTPUT': QgsProcessing.TEMPORARY_OUTPUT
}
outputs['DEMCopy2'] = processing.run('gdal:rastercalculator', alg_params, context=context, feedback=feedback, is_child_algorithm=True)
# Rasterize (overwrite with fixed value)
alg_params = {
'ADD': False,
'FIELD': 'cut_level',
'EXTRA': '',
'INPUT': outputs['AdvancedPythonFieldCalculator1']['OUTPUT'],
'INPUT_RASTER': outputs['DEMCopy1'] ['OUTPUT']
}
outputs['RasterizarVectorialARster1'] = processing.run('gdal:rasterize_over', alg_params, context=context, feedback=feedback, is_child_algorithm=True)
# Rasterize (overwrite with fixed value)
alg_params = {
'ADD': False,
'FIELD': 'fill_level',
'EXTRA': '',
'INPUT': outputs['AdvancedPythonFieldCalculator2']['OUTPUT'],
'INPUT_RASTER': outputs['DEMCopy2'] ['OUTPUT']
}
outputs['RasterizarVectorialARster2'] = processing.run('gdal:rasterize_over', alg_params, context=context, feedback=feedback, is_child_algorithm=True)
feedback.setCurrentStep(3)
if feedback.isCanceled():
return {}
# Raster calculator
alg_params = {
'BAND_A': 1,
'BAND_B': 1,
'BAND_C': 1,
'BAND_D': None,
'BAND_E': None,
'BAND_F': None,
'EXTRA': '--hide',
'FORMULA': '(((A<B)*B + (A>=B)*A)>C)*C + (((A<B)*B+(A>=B)*A)<=C)*((A<B)*B + (A>=B)*A)',
'INPUT_A': parameters['DEM'],
'INPUT_B': outputs['RasterizarVectorialARster2']['OUTPUT'],
'INPUT_C': outputs['RasterizarVectorialARster1']['OUTPUT'],
'INPUT_D': None,
'INPUT_E': None,
'INPUT_F': None,
'NO_DATA': 0,
'OPTIONS': '',
'RTYPE': 5, # Float32
'OUTPUT': parameters['new_DEM']
}
outputs['RasterCalculator'] = processing.run('gdal:rastercalculator', alg_params, context=context, feedback=feedback, is_child_algorithm=True)
results['new_DEM'] = outputs['RasterCalculator']['OUTPUT']
return results
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 'Earthworks'
def icon(self):
"""
Should return a QIcon which is used for your provider inside
the Processing toolbox.
"""
return QIcon(path.dirname(__file__) +'/Earthworks.png')
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 shortHelpString(self):
return """<html><body><p>Earthworks algorithm modifies a DEM carving or filing it from a vector layer representing the baseline of the eartwork</p>
<h2>Input parameters</h2>
<h3>Existing DEM raster layer</h3>
<p>Existing initial terrain DEM to be modified</p>
<h3>Platform vector layer</h3>
<p>Vector layer (line or polygon) representing the baseline or base platform from wich the earthwork or DEM modification is going to be performed</p>
<h3>Platform base level</h3>
<p>Absolute level of the baseline or base platform from wich the earthwork or DEM modification is going to be performed</p>
<h3>Cut slope</h3>
<p> Cut slope of the earthwork as rate of vertical to horizontal lenght (1:H)</p>
<h3>Fill slope</h3>
<p> Fill slope of the earthwork as rate of vertical to horizontal lenght (1:H)</p>
<h2>Outputs</h2>
<h3>Modified DEM raster layer</h3>
<p>Modified DEM raster layer as result of the earthwork</p>
<br><p align="right">Algorithm author: Iñigo Marin</p><p align="right">Algorithm version: v. 0.1</p></body></html>"""
def helpUrl(self):
return 'https://github.com/MBR111/CivilEng'
def createInstance(self):
return EarthworksAlgorithm()