-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDiscontinuitiesMapAlgorithms.py
470 lines (380 loc) · 17.1 KB
/
DiscontinuitiesMapAlgorithms.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
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
# -*- coding: utf-8 -*-
"""
/***************************************************************************
Thematic
A QGIS plugin
Thematic cartography tools for processing
Generated by Plugin Builder: http://g-sherman.github.io/Qgis-Plugin-Builder/
-------------------
begin : 2018-07-19
copyright : (C) 2018 by Lionel Cacheux
email : [email protected]
***************************************************************************/
/***************************************************************************
* *
* 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__ = 'Lionel Cacheux'
__date__ = '2018-07-19'
__copyright__ = '(C) 2018 by Lionel Cacheux'
# This will get replaced with a git SHA1 when you do a git archive
__revision__ = '$Format:%H$'
from PyQt5.QtCore import QCoreApplication
from PyQt5.QtGui import QIcon
from qgis.core import (QgsProcessing,
QgsProcessingParameterBoolean,
QgsProject,
QgsMessageLog,
QgsFeatureSink,
QgsProcessingAlgorithm,
QgsProcessingParameterFeatureSource,
QgsProcessingParameterVectorLayer,
QgsCoordinateReferenceSystem,
QgsProcessingParameterNumber,
QgsProcessingParameterFeatureSink,
QgsFeatureRequest,
QgsField,
QgsVectorLayer,
QgsProcessingParameterVectorDestination,
QgsProcessingParameterEnum,
QgsProcessingParameterField,
QgsProcessingParameterString,
QgsVectorFileWriter,
QgsProcessingParameterFile,
QgsWkbTypes,
QgsProcessingParameterDefinition,
QgsFeature,
QgsProcessingUtils,
QgsSymbol,
QgsCategorizedSymbolRenderer,
QgsSimpleFillSymbolLayer,
QgsRendererCategory)
import processing
import tempfile
import shutil
import re
import os.path
import os
from sys import platform
import subprocess
import locale
from qgis.utils import iface
import configparser
# ---------------------------------- #
# Initialisation de la palette Insee #
# ---------------------------------- #
class GetInnerBordersAlgorithm(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.
INPUT = 'INPUT'
CODGEO = 'CODGEO'
DEL_HOLES = 'DEL_HOLES'
OUTPUT = 'OUTPUT'
def initAlgorithm(self, config):
"""
Here we define the inputs and output of the algorithm, along
with some other properties.
"""
# Input vector
self.addParameter(
QgsProcessingParameterFeatureSource(
self.INPUT,
self.tr('Input layer'),
[QgsProcessing.TypeVectorPolygon],
optional=False
)
)
self.addParameter(QgsProcessingParameterField(
self.CODGEO,
self.tr('Geographical ID'),
None,
self.INPUT,
QgsProcessingParameterField.String,
False
)
)
self.addParameter(
QgsProcessingParameterBoolean(self.DEL_HOLES,
self.tr('Delete holes'),
defaultValue=False))
# Output vector
self.addParameter(
QgsProcessingParameterFeatureSink(
self.OUTPUT,
self.tr('Internal boundaries'),
type=QgsProcessing.TypeVectorPolygon
)
)
def processAlgorithm(self, parameters, context, feedback):
"""
Here is where the processing itself takes place.
"""
# codecNomsFichiers = locale.getpreferredencoding()
feedback.pushInfo(" ")
feedback.pushInfo("Extract borders between polygons")
source = self.parameterAsSource(parameters, self.INPUT, context).materialize(QgsFeatureRequest())
codgeo1 = self.parameterAsString(parameters, self.CODGEO, context)
codgeo2 = codgeo1 +'_2'
deleteHoles = self.parameterAsBool(parameters,self.DEL_HOLES,context)
rigthHandPolygon = processing.run("native:forcerhr", {
'INPUT': source,
'OUTPUT': 'memory:'})
if deleteHoles:
rigthHandPolygon = processing.run("native:deleteholes", {
'INPUT': rigthHandPolygon['OUTPUT'],
'MIN_AREA':0,
'OUTPUT': 'memory:'})
lineLayer = processing.run("native:polygonstolines", {
'INPUT': rigthHandPolygon['OUTPUT'],
'OUTPUT': 'memory:'})
intersectionLayer = processing.run("native:intersection", {
'INPUT': lineLayer['OUTPUT'],
'OVERLAY': lineLayer['OUTPUT'],
'INPUT_FIELDS': [], 'OVERLAY_FIELDS': [], 'OVERLAY_FIELDS_PREFIX': '', 'OUTPUT': 'memory:'})
merdgedLayer = processing.run("native:mergelines", {
'INPUT': intersectionLayer['OUTPUT'],
'OUTPUT': 'memory:'})
filterExpression = ' \"{0}\" > \"{1}\" '.format(codgeo1,codgeo2)
# feedback.pushInfo(self.tr("filterExpression : ") + filterExpression)
result = processing.run("native:extractbyexpression", {
'INPUT': merdgedLayer['OUTPUT'],
'EXPRESSION': filterExpression, 'OUTPUT': 'memory:'})
# Add features to the sink
(sink, dest_id) = self.parameterAsSink(parameters, self.OUTPUT, context,
result['OUTPUT'].fields(), QgsWkbTypes.LineString, result['OUTPUT'].crs())
features = result['OUTPUT'].getFeatures()
for feature in features:
sink.addFeature(feature, QgsFeatureSink.FastInsert)
return {self.OUTPUT: 'dest_id'}
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 'getinnerborders'
def displayName(self):
"""
Returns the translated algorithm name, which should be used for any
user-visible display of the algorithm name.
"""
return self.tr('Extract borders between polygons')
def group(self):
"""
Returns the name of the group this algorithm belongs to. This string
should be localised.
"""
return self.tr('Borders and discontinuities')
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 'discontinuities'
def tr(self, string):
return QCoreApplication.translate('GetInnerBordersAlgorithm', string)
def createInstance(self):
return GetInnerBordersAlgorithm()
def icon(self):
return QIcon(os.path.dirname(__file__) + '/images/innerBorders.png')
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("<center><img src='{0}/images/helper/frontieresInterieures_h.png' ></center> \
<p> Génère un fond de lignes de contigüités entre les zones composant le <b>fond en entrée</b><p>\
<p>L’<b>identifiant géographique</b> permettra d’indiquer à quelles zones chaque segment est commun. </p>\
<p>Pour ne pas tenir compte des enclaves il est possible de <b>supprimer les trous</b> </p>".format(os.path.dirname(__file__)))
class RelativeDiscontinuitiesAlgorithm(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.
INPUT = 'INPUT'
CODGEO = 'CODGEO'
VARIABLE = 'VARIABLE'
OUTPUT = 'OUTPUT'
def initAlgorithm(self, config):
"""
Here we define the inputs and output of the algorithm, along
with some other properties.
"""
# Input vector
self.addParameter(
QgsProcessingParameterFeatureSource(
self.INPUT,
self.tr('Input layer'),
[QgsProcessing.TypeVectorPolygon],
optional=False
)
)
self.addParameter(QgsProcessingParameterField(
self.CODGEO,
self.tr('Geographical ID'),
None,
self.INPUT,
QgsProcessingParameterField.String,
False
)
)
self.addParameter(QgsProcessingParameterField(
self.VARIABLE,
self.tr('Value to represent'),
None,
self.INPUT,
QgsProcessingParameterField.Numeric,
False
)
)
# Output vector
self.addParameter(
QgsProcessingParameterFeatureSink(
self.OUTPUT,
self.tr('Internal boundaries'),
type=QgsProcessing.TypeVectorPolygon
)
)
def processAlgorithm(self, parameters, context, feedback):
"""
Here is where the processing itself takes place.
"""
# codecNomsFichiers = locale.getpreferredencoding()
feedback.pushInfo(" ")
feedback.pushInfo(self.tr("Extract borders between polygons"))
source = self.parameterAsSource(parameters, self.INPUT, context).materialize(QgsFeatureRequest())
codgeo1 = self.parameterAsString(parameters, self.CODGEO, context)
codgeo2 = codgeo1 + '_2'
value1 = self.parameterAsString(parameters, self.VARIABLE , context)
value2 = value1 + '_2'
feedback.pushInfo(" ")
# feedback.pushInfo(self.tr("Layer : ")+ source)
feedback.pushInfo(self.tr("Geographical ID : ") + codgeo1)
feedback.pushInfo(self.tr("Variable : ") + value1)
feedback.pushInfo(self.tr("Var2 : ") + value2)
rigthHandPolygon = processing.run("native:forcerhr", {
'INPUT': source,
'OUTPUT': 'memory:'})
rigthHandPolygon = processing.run("native:deleteholes", {
'INPUT': rigthHandPolygon['OUTPUT'],
'MIN_AREA':0,
'OUTPUT': 'memory:'})
lineLayer = processing.run("native:polygonstolines", {
'INPUT': rigthHandPolygon['OUTPUT'],
'OUTPUT': 'memory:'})
intersectionLayer = processing.run("native:intersection", {
'INPUT': lineLayer['OUTPUT'],
'OVERLAY': lineLayer['OUTPUT'],
'INPUT_FIELDS': [], 'OVERLAY_FIELDS': [], 'OVERLAY_FIELDS_PREFIX': '', 'OUTPUT': 'memory:'})
merdgedLayer = processing.run("native:mergelines", {
'INPUT': intersectionLayer['OUTPUT'],
'OUTPUT': 'memory:'})
# 'max( \"taux\" , \"taux_2\" )/min( \"taux\" , \"taux_2\" )
filterExpression = ' \"{0}\" != \"{1}\" and \"{2}\" > \"{3}\" '.format(codgeo1,codgeo2, value1, value2)
# feedback.pushInfo(self.tr("filterExpression : ") + filterExpression)
filteredLayer = processing.run("native:extractbyexpression", {
'INPUT': merdgedLayer['OUTPUT'],
'EXPRESSION': filterExpression, 'OUTPUT': 'memory:'})
formula = 'max( \"{0}\" , \"{1}\" )/min( \"{0}\" , \"{1}\" )'.format(value1,value2)
result = processing.run("qgis:fieldcalculator", {
'INPUT': filteredLayer['OUTPUT'],
'FIELD_NAME': 'discont',
'FIELD_TYPE': 0,
'FIELD_LENGTH': 10,
'FIELD_PRECISION': 2,
'NEW_FIELD': True,
'FORMULA': formula, 'OUTPUT': 'memory:'})
# Add features to the sink
(sink, dest_id) = self.parameterAsSink(parameters, self.OUTPUT, context,
result['OUTPUT'].fields(), QgsWkbTypes.LineString,
result['OUTPUT'].crs())
features = result['OUTPUT'].getFeatures()
for feature in features:
sink.addFeature(feature, QgsFeatureSink.FastInsert)
self.dest_id = dest_id
return {self.OUTPUT: 'dest_id'}
def postProcessAlgorithm(self, context, feedback):
# Styling dicontinuities
output = QgsProcessingUtils.mapLayerFromString(self.dest_id, context)
path = os.path.dirname(__file__) + '/styles/discontinuite.qml'
output.loadNamedStyle(path)
output.triggerRepaint()
return {self.OUTPUT: self.dest_id}
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 'relativediscontinuities'
def displayName(self):
"""
Returns the translated algorithm name, which should be used for any
user-visible display of the algorithm name.
"""
return self.tr('relative discontinuities')
def group(self):
"""
Returns the name of the group this algorithm belongs to. This string
should be localised.
"""
return self.tr('Borders and discontinuities')
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 'discontinuities'
def tr(self, string):
return QCoreApplication.translate('RelativeDiscontinuitiesAlgorithm', string)
def createInstance(self):
return RelativeDiscontinuitiesAlgorithm()
def icon(self):
return QIcon(os.path.dirname(__file__) + '/images/discontinuities.png')
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("<center><img src='{0}/images/helper/discont_h.png' ></center> \
<p> Génère une carte de discontinuité relative à partir d’un <b>fond en entrée</b><p>\
<p>L’<b>identifiant géographique</b> permettra d’indiquer à quelles zones chaque segment est commun. </p>\
<p>La <b>variable à représenter</b> sera utilisée pour le calcul de la discontinuite relative (rapport max(A,B) / min(A,B)). <p>\
<p>Cette représentation permet de compléter une carte de ratio en mettant en évidence les ruptures spatiales</p>".format(os.path.dirname(__file__)))