-
Notifications
You must be signed in to change notification settings - Fork 0
/
algorithm_TransformToProfil_LineIntersectionForAllLines.py
332 lines (283 loc) · 14.9 KB
/
algorithm_TransformToProfil_LineIntersectionForAllLines.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
#from ggis.processing import alg
#@alg(name= profileEachLine, label="Baselinefor all Lines of Layer",groop="To Profile Coordinates"
# -*- coding: utf-8 -*-
"""
***************************************************************************
* *
* 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. *
* *
***************************************************************************
"""
from PyQt5.QtCore import QCoreApplication, QVariant
from PyQt5.QtGui import QIcon
from qgis.core import (QgsProcessing,
QgsFeatureSink,
QgsProcessingException,
QgsProcessingAlgorithm,
QgsProcessingParameterFeatureSource,
QgsProcessingParameterVectorLayer,
QgsProcessingParameterRasterLayer,
QgsProcessingParameterNumber,
QgsProcessingParameterEnum,
QgsProcessingParameterExpression,
QgsProcessingParameterFeatureSink,
QgsFeatureRequest,
QgsField,
QgsFeature,
QgsExpression,
QgsExpressionContext)
import processing
import os
class TransformToProfil_LineIntersectionForAllLines(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.
OUTPUT = 'OUTPUT'
INPUTBASELINE = 'INPUTVECTOR'
INPUTRASTER = 'INPUTRASTER'
INPUTZFACTOR='INPUTZFACTOR'
INPUTINTERSECTIONLAYER='INPUTINTERSECTIONLAYER'
SOURCE_BASLINE_ID = 'SOURCE_BASLINE_ID'
def initAlgorithm(self, config=None):
"""
Here we define the inputs and output of the algorithm, along
with some other properties.
"""
# We add the input vector features source. It can have any kind of
# geometry.
self.addParameter(
QgsProcessingParameterVectorLayer(
self.INPUTINTERSECTIONLAYER,
self.tr('Intersection Line Layer'),
[QgsProcessing.TypeVectorLine]
)
)
self.addParameter(
QgsProcessingParameterVectorLayer(
self.INPUTBASELINE,
self.tr('Profil Baseline'),
[QgsProcessing.TypeVectorLine]
)
)
self.addParameter(
QgsProcessingParameterRasterLayer(
self.INPUTRASTER,
self.tr('Elevation Raster'),
None,
False
)
)
self.addParameter(
QgsProcessingParameterNumber(
self.INPUTZFACTOR,
self.tr('Z-Factor / Ueberhoehung'),
type=QgsProcessingParameterNumber.Integer,
defaultValue=10,
optional=False,
minValue=0,
maxValue=100
)
)
self.addParameter(
QgsProcessingParameterExpression(
self.SOURCE_BASLINE_ID,
self.tr('Field with baseline primary key (must be unique!)'),
parentLayerParameterName=self.INPUTBASELINE
)
)
# We add a feature sink in which to store our processed features (this
# usually takes the form of a newly created vector layer when the
# algorithm is run in QGIS).
self.addParameter(
QgsProcessingParameterFeatureSink(
self.OUTPUT,
self.tr('Profil_Line_Intersections')
)
)
def processAlgorithm(self, parameters, context, feedback):
"""
Here is where the processing itself takes place.
"""
ueberhoehung = self.parameterAsInt(parameters, self.INPUTZFACTOR, context)
rasterLayer = self.parameterAsRasterLayer(parameters, self.INPUTRASTER, context)
baseLineLayer = self.parameterAsVectorLayer(parameters, self.INPUTBASELINE, context)
lineLayer = self.parameterAsVectorLayer(parameters, self.INPUTINTERSECTIONLAYER, context)
exprBaselineID = self.parameterAsExpression(parameters, self.SOURCE_BASLINE_ID, context)
outputGeomType = 1 #Output Geometry Type Point
# Retrieve the feature source and sink. The 'dest_id' variable is used
# to uniquely identify the feature sink, and must be included in the
# dictionary returned by the processAlgorithm function.
fields=lineLayer.fields()
fields.append( QgsField( "station" , QVariant.Double) ) # will be added and filled by Subprocess (algorithm_TransformToProfil_LineIntersection.py)
fields.append( QgsField( "z_factor" , QVariant.Int) )
fields.append( QgsField( "profil_id" , QVariant.Int) )
# If source was not found, throw an exception to indicate that the algorithm
# encountered a fatal error. The exception text can be any string, but in this
# case we use the pre-built invalidSourceError method to return a standard
# helper text for when a source cannot be evaluated
if lineLayer is None:
raise QgsProcessingException(self.invalidSourceError(parameters, self.INPUTINTERSECTIONLAYER))
(sink, dest_id) = self.parameterAsSink(
parameters,
self.OUTPUT,
context,
fields,
outputGeomType,
lineLayer.sourceCrs()
)
try:
# Send some information to the user
#feedback.pushInfo('CRS is {}'.format(lineLayer.sourceCrs().authid()))
# If sink was not created, throw an exception to indicate that the algorithm
# encountered a fatal error. The exception text can be any string, but in this
# case we use the pre-built invalidSinkError method to return a standard
# helper text for when a sink cannot be evaluated
if sink is None:
raise QgsProcessingException(self.invalidSinkError(parameters, self.OUTPUT))
features=[] #QgsFeatureIterator
if len( baseLineLayer.selectedFeatures() ) > 0:
features = baseLineLayer.selectedFeatures()
else:
features = [feat for feat in baseLineLayer.getFeatures()]
feedback.pushInfo( 'Features {} used'.format( len( features ) ) )
# Compute the number of steps to display within the progress bar and
# get features from source
total = 100.0 / len( features ) if len( features ) else 0
#names = [field.name()+"; " for field in fields]
#feedback.pushInfo(''.join( names ) )
#Clear Selection
baseLineLayer.removeSelection()
counter=0
for current, feature in enumerate(features):
# Stop the algorithm if cancel button has been clicked
if feedback.isCanceled():
break
expr = QgsExpression( exprBaselineID )
exprContext = QgsExpressionContext()
exprContext.setFeature(feature)
profilID = expr.evaluate ( exprContext ) #, baseLineLayer.fields() )
feedback.pushInfo(str(exprBaselineID) + ": Profil-ID: " + str(profilID) )
#select to current feature
baseLineLayer.select( feature.id() )
#create profile feature for selected line
#if False:
#feedback.pushInfo( "Selection " + str( lineLayer.selectedFeatureCount() ) + " Objects" )
feedback.pushInfo("Counter: " + str(counter) )
profil_features = None
try:
profil_features = self.runLineIntersection( lineLayer, baseLineLayer, rasterLayer, ueberhoehung, context, feedback)
count=0
for grFeature in profil_features:
#feedback.pushInfo("Type: " + str(type(grFeature)) )
if not str(type(grFeature)) == "<class 'qgis._core.QgsFeature'>":
feedback.pushInfo("Feature is valid?:" + str( grFeature.isValid() ) +"; Type: " + str(type(grFeature)) + "; has Geometry ?: "+ str( grFeature.hasGeometry() ) )
break
feedback.pushInfo("attributes: " + str( grFeature.attributes() ) )
newFeature = QgsFeature( fields )
attrs = grFeature.attributes()
attrs.append( ueberhoehung )
attrs.append( profilID )
newFeature.setAttributes( attrs )
newFeature.setGeometry( grFeature.geometry() )
# Add a feature in the sink
sink.addFeature( newFeature, QgsFeatureSink.FastInsert)
count=count+1
print( "Count: " + str(count) + ' at profile ' + str( profilID ) )
feedback.pushInfo("Count: " + str(count) + ' at profile ' + str( profilID ) )
except Exception as err:
print("ERROR at profile " + str( profilID ) + ': '+ str(err.args) + " " + str(repr( err )) + " Fehler: " )
feedback.pushInfo("ERROR at profile " + str( profilID ) + ': '+ str(err.args) + " " + str(repr( err )) + " Fehler: " )
#Clear Selection
baseLineLayer.removeSelection()
# Update the progress bar
feedback.setProgress(int(current * total))
counter=counter+1
except Exception as err:
feedback.pushInfo("ERROR: "+ str(err.args) + " " + str(repr( err )) + " Fehler: " )
#
# print("ERROR:", err.args, repr( err ), "Fehler: " )
# To run another Processing algorithm as part of this algorithm, you can use
# processing.run(...). Make sure you pass the current context and feedback
# to processing.run to ensure that all temporary layer outputs are available
# to the executed algorithm, and that the executed algorithm can send feedback
# reports to the user (and correctly handle cancelation and progress reports!)
# Return the results of the algorithm. In this case our only result is
# the feature sink which contains the processed features, but some
# algorithms may return multiple feature sinks, calculated numeric
# statistics, etc. These should all be included in the returned
# dictionary, with keys matching the feature corresponding parameter
# or output names.
return {self.OUTPUT: dest_id}
def runLineIntersection(self, lineLayer, baseLineLayer, rasterLayer, ueberhoehung, context, feedback):
profil_lineIntersection_layer = processing.run("thtoolbox:Line_Baseline_Intersections", {
'INPUTINTERSECTIONLAYER' : lineLayer.source(),
'INPUTRASTER' : rasterLayer.source(), #'//tlugjfs2/laserscandaten/dgm1_grid/dgm1'
'INPUTVECTOR' : baseLineLayer.source(), #'M:/transfer/Kürbs/TH-Profile/th_profile.shp|layername=th_profile'
'INPUTZFACTOR' : ueberhoehung,
'OUTPUT' : 'memory:'
}, context=context, feedback = feedback)['OUTPUT']
return profil_lineIntersection_layer.getFeatures()
def tr(self, string):
"""
Returns a translatable string with the self.tr() function.
"""
return QCoreApplication.translate('Processing', string)
def createInstance(self):
return ExampleProcessingAlgorithm()
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 'line_baseline_intersection_all_lines'
def displayName(self):
"""
Returns the translated algorithm name, which should be used for any
user-visible display of the algorithm name.
"""
return self.tr( 'Line - Baseline Intersections (Multi Baseline)' )
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 'To Profile Coordinates'
def shortHelpString(self):
"""
Returns a localised short helper string for the algorithm. This string
should provide a basic description about what the algorithm does and the
parameters and outputs associated with it..
"""
return self.tr("This algorithm performs the function 'Line - Basline Intersections' for all lines of a line layer.")
#return self.tr("Dieser Algorithmus wendet die Funtion Baseline Intersection für alle Linien des Basislinienlayers an.")
def icon(self):
return QIcon(os.path.join(os.path.dirname(__file__),'icons/TransformToProfil_LineIntersection_Logo.png'))
def tr(self, string):
return QCoreApplication.translate('Processing', string)
def createInstance(self):
return TransformToProfil_LineIntersectionForAllLines()