-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrunCom6Scarp_algorithm.py
More file actions
208 lines (160 loc) · 7.06 KB
/
runCom6Scarp_algorithm.py
File metadata and controls
208 lines (160 loc) · 7.06 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
# -*- coding: utf-8 -*-
"""
/***************************************************************************
AvaFrameRunCom1DFA
A QGIS plugin
Connects to AvaFrame
Generated by Plugin Builder: http://g-sherman.github.io/Qgis-Plugin-Builder/
-------------------
begin : 2021-08-26
copyright : (C) 2021 by AvaFrame Team
email : felix@avaframe.org
***************************************************************************/
/***************************************************************************
* *
* 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__ = "AvaFrame Team"
__date__ = "2025"
__copyright__ = "(C) 2025 by AvaFrame Team"
# 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,
QgsProcessingException,
QgsProcessingAlgorithm,
QgsProcessingParameterFeatureSource,
QgsProcessingParameterRasterLayer,
QgsProcessingParameterEnum,
QgsProcessingParameterFolderDestination,
QgsProcessingOutputVectorLayer,
)
class runCom6ScarpAlgorithm(QgsProcessingAlgorithm):
"""
This is the AvaFrame Connection, i.e. the part running with QGis. For this
connector to work, more installation is needed. See instructions at docs.avaframe.org
"""
DEM = "DEM"
COORDINATES = "COORDINATES"
PERIMETER = "PERIMETER"
SCARPMETHOD = "SCARPMETHOD"
OUTPUT = "OUTPUT"
FOLDEST = "FOLDEST"
def initAlgorithm(self, config):
"""
Here we define the inputs and output of the algorithm, along
with some other properties.
"""
self.addParameter(QgsProcessingParameterRasterLayer(self.DEM, self.tr("DEM layer")))
self.addParameter(
QgsProcessingParameterEnum(
self.SCARPMETHOD,
self.tr("Scarp method"),
options=[
self.tr("Plane (requires zseed, dip(dir), slopeangle)"),
self.tr(
"Ellipsoid (requires zseed, maxdepth, semimajor, semiminor, tilt, direc, dip(dir), offset"
),
],
defaultValue=0,
allowMultiple=False,
)
)
self.addParameter(
QgsProcessingParameterFeatureSource(
self.COORDINATES,
self.tr("Coordinate layer (Point shapefile with attributes)"),
defaultValue="",
types=[QgsProcessing.TypeVectorPoint],
)
)
self.addParameter(
QgsProcessingParameterFeatureSource(
self.PERIMETER,
self.tr("Perimeter Layer (Polygon shapefile defining boundary area"),
defaultValue="",
types=[QgsProcessing.TypeVectorAnyGeometry],
)
)
self.addParameter(
QgsProcessingParameterFolderDestination(self.FOLDEST, self.tr("Destination folder"))
)
self.addOutput(
QgsProcessingOutputVectorLayer(
self.OUTPUT,
self.tr("Output layer"),
QgsProcessing.TypeVectorAnyGeometry,
)
)
def flags(self):
return super().flags()
def processAlgorithm(self, parameters, context, feedback):
"""
Here is where the processing itself takes place.
"""
import avaframe.version as gv
from . import avaframeConnector_commonFunc as cF
feedback.pushInfo("AvaFrame Version: " + gv.getVersion())
sourceDEM = self.parameterAsRasterLayer(parameters, self.DEM, context)
if sourceDEM is None:
raise QgsProcessingException(self.invalidSourceError(parameters, self.DEM))
sourcePerimeter = self.parameterAsVectorLayer(parameters, self.PERIMETER, context)
sourceCoordinates = self.parameterAsVectorLayer(parameters, self.COORDINATES, context)
sourceFOLDEST = self.parameterAsFile(parameters, self.FOLDEST, context)
# Get the scarp method
scarpMethod = self.parameterAsInt(parameters, self.SCARPMETHOD, context)
scarpOptions = ["plane", "ellipsoid"]
scarpString = scarpOptions[scarpMethod]
finalTargetDir, targetDir = cF.createFolderStructure(sourceFOLDEST)
feedback.pushInfo(sourceDEM.source())
cF.copyDEM(sourceDEM, targetDir)
cF.copyShp(sourcePerimeter.source(), targetDir / "Inputs" / "POLYGONS", addToName="_perimeter")
cF.copyShp(sourceCoordinates.source(), targetDir / "Inputs" / "POINTS", addToName="_coordinates")
feedback.pushInfo("Starting the tool")
feedback.pushInfo("This might take a while")
feedback.pushInfo("See console for progress")
#
command = ["python", "-m", "avaframe.runCom6Scarp", str(targetDir), "-m", scarpString]
cF.runAndCheck(command, self, feedback)
feedback.pushInfo("Done, start loading the results")
cF.moveInputAndOutputFoldersToFinal(targetDir, finalTargetDir)
try:
allRasterResults = cF.getCom6ScarpResults(finalTargetDir)
except:
raise QgsProcessingException(
self.tr("Something went wrong with com6Scarp, please check log files")
)
context = cF.addLayersToContext(context, allRasterResults, self.OUTPUT)
feedback.pushInfo("\n---------------------------------")
feedback.pushInfo("Done, find results and logs here:")
feedback.pushInfo(str(finalTargetDir.resolve()))
feedback.pushInfo("---------------------------------\n")
return {self.OUTPUT: allRasterResults}
# return
def name(self):
return "com6scarp"
def displayName(self):
return self.tr("Scarp (com6)")
def group(self):
return self.tr(self.groupId())
def groupId(self):
return "Experimental"
def tr(self, string):
return QCoreApplication.translate("Processing", string)
def shortHelpString(self) -> str:
hstring = "Runs scarp via module com6RockAvalanche. \n\
For more information go to (or use the help button below): \n\
AvaFrame Documentation: https://docs.avaframe.org\n\
Homepage: https://avaframe.org\n\
Praxisleitfaden: https://avaframe.org/reports\n"
return self.tr(hstring)
def helpUrl(self):
return "https://docs.avaframe.org/en/latest/connector.html"
def createInstance(self):
return runCom6ScarpAlgorithm()