-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathalgorithms.py
656 lines (568 loc) · 23.2 KB
/
algorithms.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
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
import json
import h3
from qgis.PyQt.QtCore import QCoreApplication, QVariant
from qgis.core import (
QgsFeatureSink,
QgsProcessing,
QgsProcessingException,
QgsProcessingAlgorithm,
QgsProcessingParameterFeatureSource,
QgsProcessingParameterFeatureSink,
QgsProcessingParameterNumber,
QgsProcessingParameterExtent,
QgsPointXY,
QgsGeometry,
QgsFeature,
QgsField,
QgsFields,
QgsCoordinateReferenceSystem,
QgsCoordinateTransform,
QgsWkbTypes,
QgsFeatureRequest,
QgsCoordinateTransformContext,
QgsVectorLayer,
QgsProject,
)
from qgis import processing
from .singlepartGeo import singlepartGeometries
class CreateH3GridInsidePolygonsProcessingAlgorithm(QgsProcessingAlgorithm):
"""
Processing algorithm to create an H3 grid inside polygons.
Takes vector layer and resolution as inputs.
Evaluates H3 grid cells at given resolutions inside polygons of input layer.
Cells are considered to be 'inside' if their centroid is contained by a polygon.
Generates the grid cells as polygons with their H3 index in the attribute table.
Outputs result as a polygon vector layer.
"""
# INPUT = 'all_clusters_kamloops'
# RESOLUTION = 6 #'RESOLUTION'
# OUTPUT = 'all_clusters_kamloops_bin'
INPUT = 'INPUT'
RESOLUTION = 'RESOLUTION'
OUTPUT = 'OUTPUT'
def tr(self, string):
"""
Returns a translatable string with the self.tr() function.
"""
return QCoreApplication.translate('Processing', string)
def createInstance(self):
return CreateH3GridInsidePolygonsProcessingAlgorithm()
def name(self):
return 'createh3gridinsidepolygons'
def displayName(self):
return self.tr('Create H3 grid inside polygons')
#def group(self):
# return self.tr('Grid Creation')
#def groupId(self):
# return 'gridcreation'
def shortHelpString(self):
helpString = ( # odd multiline string definition to prevent unintentional newline chars
'Creates a vector layer with an H3 grid at given resolution. '
'The grid cells are generated as polygons, with their H3 index stored in the attribute table.\n'
'This algorithm only generates grid cells that are inside the polygons of input layer. '
'A grid cells is considered to be <i>inside</i> if its centroid is contained by a polygon.\n'
'<i>Note: Input polygons are evaluated in WGS84 (EPSG:4326) by the algorithm, '
'reprojecting them if necessary. '
'It may produce erratic results for polygons that cross the WGS84 CRS boundary. '
'(e.g. in polar regions or around the 180th meridian)</i>'
)
return self.tr(helpString)
# TODO set up help button url
# def helpUrl(self):
# return
def initAlgorithm(self, config=None):
inputParam = QgsProcessingParameterFeatureSource(
self.INPUT,
self.tr('Input layer'),
[QgsProcessing.TypeVectorPolygon]
)
resolutionParam = QgsProcessingParameterNumber(
self.RESOLUTION,
self.tr('Resolution'),
type=QgsProcessingParameterNumber.Integer,
minValue=0,
maxValue=15
)
outputParam = QgsProcessingParameterFeatureSink(self.OUTPUT, self.tr('Output layer'))
self.addParameter(inputParam) #'all_clusters_kamloops') #(inputParam)
self.addParameter(resolutionParam) #'6') #resolutionParam
self.addParameter(outputParam) #'all_clusters_kamloops_bin') #outputParam
def processAlgorithm(self, parameters = {}, context = {}, feedback = None):
####################
# Input Parameters #
####################
# source = self.parameterAsSource(parameters, self.INPUT, context)
# resolution = self.parameterAsInt( parameters, self.RESOLUTION, context)
source = self.INPUT
resolution = 6 #self.RESOLUTION
# validate source parameter
if source is None:
print('error 1')
#raise QgsProcessingException(self.invalidSourceError(parameters, self.INPUT))
# validate resolution parameter
if resolution < 0 or resolution > 15:
print('error 2')
#raise QgsProcessingException('Invalid input resolution')
#############################
# Output parameters (sinks) #
#############################
# Set up output layer fields
indexField = QgsField(
name='index',
type=QVariant.String,
len=30,
comment='H3 index')
fields = QgsFields()
fields.append(indexField)
# create sink
(sink, dest_id) = self.parameterAsSink(
parameters,
self.OUTPUT,
context,
fields,
QgsWkbTypes.Polygon,
QgsCoordinateReferenceSystem('EPSG:4326')
)
# Raise error if sink not created
if sink is None:
raise QgsProcessingException(self.invalidSinkError(parameters, self.OUTPUT))
##############
# Processing #
##############
# If source is not in WGS84, set up the feature request filter to reproject source features on the fly
featureRequestFilter = QgsFeatureRequest().setDestinationCrs(
QgsCoordinateReferenceSystem('EPSG:4326'),
QgsCoordinateTransformContext()
)
# warn user if reprojection is necessary
if source.sourceCrs() != featureRequestFilter.destinationCrs():
print('Input source is not in WGS84 projection. On the fly reprojection will be used.')
#feedback.pushWarning('Input source is not in WGS84 projection. On the fly reprojection will be used.')
# -------------------------------------------------------------
# STEP 1: Find indexes of hexagons cells within source features
# -------------------------------------------------------------
#feedback.pushInfo('Looking up grid cell indexes...')
print('Looking up grid cell indexes...')
hexIndexSet = set()
for geom in singlepartGeometries(source.getFeatures(request=featureRequestFilter)):
geoJsonDict = json.loads(geom.asJson())
newSet = h3.polyfill(geoJsonDict, resolution, geo_json_conformant=True)
hexIndexSet.update(newSet)
# Stop if cancel button has been clicked
# if feedback.isCanceled():
# feedback.pushInfo('Processing canceled.')
# break
# else:
# feedback.pushInfo(f'{len(hexIndexSet)} grid cells to create.')
# -----------------------------------------
# STEP 2. Generate the grid cell geometries
# -----------------------------------------
#feedback.pushInfo('Generating grid cells...')
print('Generating grid cells...')
# For the progress bar
progressPerHex = 100.0 / len(hexIndexSet) if len(hexIndexSet) > 0 else 0
currentProgress = 0
lastProgress = 0
# Set up template feature
feature = QgsFeature(fields)
for i, index in enumerate(hexIndexSet):
# create hex geometry
hexVertexCoords = h3.h3_to_geo_boundary(index)
hexGeometry = QgsGeometry.fromPolygonXY([[QgsPointXY(lon, lat) for lat, lon in hexVertexCoords], ])
# create hex feature, add to sink
feature.setGeometry(hexGeometry)
feature.setAttribute('index', index)
sink.addFeature(feature, QgsFeatureSink.FastInsert)
# check and report progress
currentProgress = int(i * progressPerHex)
if currentProgress != lastProgress:
lastProgress = currentProgress
#feedback.setProgress(lastProgress)
# Stop if cancel button has been clicked
# if feedback.isCanceled():
# feedback.pushInfo('Processing canceled.')
# break
# else:
# feedback.pushInfo('Done.')
return {self.OUTPUT: dest_id}
class CreateH3GridProcessingAlgorithm(QgsProcessingAlgorithm):
"""
Processing algorithm to create an H3 grid inside an extent.
Takes extent and resolution as inputs. Creates an in-memory polygon vector layer from the extent, then
calls `CreateH3GridInsidePolygonsProcessingAlgorithm` as child algorithm with the in-memory layer
and the resolution as inputs.
Outputs the child algorithm's output.
Note:
Child algorithm carries out the actual processing;
see `CreateH3GridInsidePolygonsProcessingAlgorithm` for details
"""
EXTENT = 'EXTENT'
RESOLUTION = 'RESOLUTION'
OUTPUT = 'OUTPUT'
def tr(self, string):
"""
Returns a translatable string with the self.tr() function.
"""
return QCoreApplication.translate('Processing', string)
def createInstance(self):
return CreateH3GridProcessingAlgorithm()
def name(self):
return 'createh3grid'
def displayName(self):
return self.tr('Create H3 grid')
#def group(self):
# return self.tr('Grid Creation')
#def groupId(self):
# return 'gridcreation'
def shortHelpString(self):
helpString = ( # odd multiline string definition to prevent unintentional newline chars
'Creates a vector layer with an H3 grid at given resolution. '
'The grid cells are generated as polygons, with their H3 index stored in the attribute table.\n'
'This algorithm only generates grid cells inside given extent. '
'A grid cells is considered to be <i>inside</i> if its centroid is within the extent.\n'
'<i>Note: The extent is evaluated in WGS84 (EPSG:4326) by the algorithm, reprojecting it if necessary. '
'It may produce erratic results for extents that cross the WGS84 CRS boundary. '
'(e.g. in polar regions or around the 180th meridian)</i>'
)
return self.tr(helpString)
# TODO set up help button url
# def helpUrl(self):
# return
def initAlgorithm(self, config=None):
# extentParam = QgsProcessingParameterExtent(self.EXTENT, self.tr('Extent'))
# resolutionParam = QgsProcessingParameterNumber(
# self.RESOLUTION,
# self.tr('Resolution'),
# type=QgsProcessingParameterNumber.Integer,
# minValue=0,
# maxValue=15
# )
# resolutionParam.setHelp(
# '''
# The resolution level of the grid, as defined in the H3 standard.
# <br>
# <table>
# <tr>
# <th>Resolution<br>Level</th>
# <th>Avg. Hexagon<br>Edge Length</th>
# </tr>
# <tr>
# <td style="text-align: center">0</td>
# <td style="text-align: center">1107.71 km</td>
# </tr>
# <tr>
# <td style="text-align: center">1</td>
# <td style="text-align: center">418.68 km</td>
# </tr>
# <tr>
# <td style="text-align: center">2</td>
# <td style="text-align: center">158.24 km</td>
# </tr>
# <tr>
# <td style="text-align: center">3</td>
# <td style="text-align: center">59.81 km</td>
# </tr>
# <tr>
# <td style="text-align: center">4</td>
# <td style="text-align: center">22.61 km</td>
# </tr>
# <tr>
# <td style="text-align: center">5</td>
# <td style="text-align: center">8.54 km</td>
# </tr>
# <tr>
# <td style="text-align: center">6</td>
# <td style="text-align: center">3.23 km</td>
# </tr>
# <tr>
# <td style="text-align: center">7</td>
# <td style="text-align: center">1.22 km</td>
# </tr>
# <tr>
# <td style="text-align: center">8</td>
# <td style="text-align: center">461.35 m</td>
# </tr>
# <tr>
# <td style="text-align: center">9</td>
# <td style="text-align: center">174.38 m</td>
# </tr>
# <tr>
# <td style="text-align: center">10</td>
# <td style="text-align: center">65.91 m</td>
# </tr>
# <tr>
# <td style="text-align: center">11</td>
# <td style="text-align: center">24.91 m</td>
# </tr>
# <tr>
# <td style="text-align: center">12</td>
# <td style="text-align: center">9.42 m</td>
# </tr>
# <tr>
# <td style="text-align: center">13</td>
# <td style="text-align: center">3.56 m</td>
# </tr>
# <tr>
# <td style="text-align: center">14</td>
# <td style="text-align: center">1.35 m</td>
# </tr>
# <tr>
# <td style="text-align: center">15</td>
# <td style="text-align: center">0.51 m</td>
# </tr>
# </table>
# '''
# )
# outputParam = QgsProcessingParameterFeatureSink(self.OUTPUT, self.tr('Output layer'))
self.addParameter('565107.9638,842789.4965,5603024.5705,5645938.9892 [EPSG:26910]') #extentParam)
self.addParameter(6) #resolutionParam)
self.addParameter('test_output.shp') #outputParam)
def processAlgorithm(self, parameters, context, feedback):
####################
# Input Parameters #
####################
extent = self.parameterAsExtentGeometry(
parameters,
self.EXTENT,
context,
QgsCoordinateReferenceSystem('EPSG:4326')
)
# validate extent parameter
if extent is None:
raise QgsProcessingException(self.invalidSourceError(parameters, self.EXTENT)) #TODO: is this the correct error?
elif extent.isGeosValid() is False:
raise QgsProcessingException('Invalid input extent')
bbox = extent.boundingBox()
if bbox.xMinimum() < -180 or bbox.xMaximum() > 180 or bbox.yMinimum() < -90 or bbox.yMaximum() > 90:
raise QgsProcessingException('Invalid input extent: Larger than WGS84 projection bounds')
##############
# Processing #
##############
# Construct temporary vector layer from the input extent
inputLayer = QgsVectorLayer('polygon?crs=epsg:4326', 'h3plugin_temp', 'memory')
feature = QgsFeature()
feature.setGeometry(extent)
inputLayer.dataProvider().addFeature(feature)
# Run "Create H3 grid within polygons" with the temp layer as input
grid = processing.run(
'h3:createh3gridinsidepolygons',
{
'INPUT': inputLayer,
'RESOLUTION': parameters['RESOLUTION'],
'OUTPUT': parameters['OUTPUT'],
},
is_child_algorithm=True,
context=context,
feedback=feedback,
)
return {self.OUTPUT: grid['OUTPUT']}
class CountPointsOnH3GridProcessingAlgorithm(QgsProcessingAlgorithm):
#TODO:
# - status bar
# - more feedback info to user
"""
Count points to H3 grid processing algorithm.
Takes point vector layer as input.
Counts points falling within H3 grid cells at given resolution
Generates the grid cells as polygons with their H3 index and point counts in the attribute table.
Outputs result as a polygon vector layer.
"""
INPUT = 'INPUT'
RESOLUTION = 'RESOLUTION'
OUTPUT = 'OUTPUT'
def tr(self, string):
"""
Returns a translatable string with the self.tr() function.
"""
return QCoreApplication.translate('Processing', string)
def createInstance(self):
return CountPointsOnH3GridProcessingAlgorithm()
def name(self):
return 'countpointson3Grid'
def displayName(self):
return self.tr('Count points on H3 Grid')
# def group(self):
# return self.tr('Grid Creation')
# def groupId(self):
# return 'gridcreation'
def shortHelpString(self):
helpString = ( # odd multiline string definition to prevent unintentional newline chars
'Counts point features within H3 grid cells at given resolution. '
'The cells are generated as polygons, with their H3 index and point counts stored in the attribute table.\n'
'<i>Note: CRS of input is assumed to be in (or be tranformable to) WGS84 (EPSG:4326). '
)
return self.tr(helpString)
# TODO set up help button url
# def helpUrl(self):
# return
def initAlgorithm(self, config=None):
#extentParam = QgsProcessingParameterExtent(self.EXTENT, self.tr('Extent'))
pointlayerParam = QgsProcessingParameterFeatureSource(
self.INPUT,
self.tr('Input point layer'),
[QgsProcessing.TypeVectorPoint]
)
resolutionParam = QgsProcessingParameterNumber(
self.RESOLUTION,
self.tr('Resolution'),
type=QgsProcessingParameterNumber.Integer,
minValue=0,
maxValue=15
)
resolutionParam.setHelp(
'''
The resolution level of the grid, as defined in the H3 standard.
<br>
<table>
<tr>
<th>Resolution<br>Level</th>
<th>Avg. Hexagon<br>Edge Length</th>
</tr>
<tr>
<td style="text-align: center">0</td>
<td style="text-align: center">1107.71 km</td>
</tr>
<tr>
<td style="text-align: center">1</td>
<td style="text-align: center">418.68 km</td>
</tr>
<tr>
<td style="text-align: center">2</td>
<td style="text-align: center">158.24 km</td>
</tr>
<tr>
<td style="text-align: center">3</td>
<td style="text-align: center">59.81 km</td>
</tr>
<tr>
<td style="text-align: center">4</td>
<td style="text-align: center">22.61 km</td>
</tr>
<tr>
<td style="text-align: center">5</td>
<td style="text-align: center">8.54 km</td>
</tr>
<tr>
<td style="text-align: center">6</td>
<td style="text-align: center">3.23 km</td>
</tr>
<tr>
<td style="text-align: center">7</td>
<td style="text-align: center">1.22 km</td>
</tr>
<tr>
<td style="text-align: center">8</td>
<td style="text-align: center">461.35 m</td>
</tr>
<tr>
<td style="text-align: center">9</td>
<td style="text-align: center">174.38 m</td>
</tr>
<tr>
<td style="text-align: center">10</td>
<td style="text-align: center">65.91 m</td>
</tr>
<tr>
<td style="text-align: center">11</td>
<td style="text-align: center">24.91 m</td>
</tr>
<tr>
<td style="text-align: center">12</td>
<td style="text-align: center">9.42 m</td>
</tr>
<tr>
<td style="text-align: center">13</td>
<td style="text-align: center">3.56 m</td>
</tr>
<tr>
<td style="text-align: center">14</td>
<td style="text-align: center">1.35 m</td>
</tr>
<tr>
<td style="text-align: center">15</td>
<td style="text-align: center">0.51 m</td>
</tr>
</table>
'''
)
outputParam = QgsProcessingParameterFeatureSink(self.OUTPUT, self.tr('Output layer'))
self.addParameter(pointlayerParam)
self.addParameter(resolutionParam)
self.addParameter(outputParam)
def processAlgorithm(self, parameters, context, feedback):
####################
# Input Parameters #
####################
pointSource = self.parameterAsSource(
parameters,
self.INPUT,
context
)
resolution = self.parameterAsInt(
parameters,
self.RESOLUTION,
context
)
# Set up output layer fields
indexField = QgsField(
name='index',
type=QVariant.String,
len=30,
comment='H3 index')
countField = QgsField(
name='count',
type=QVariant.Int,
comment='Point count'
)
fields = QgsFields()
fields.append(indexField)
fields.append(countField)
# create sink
(sink, dest_id) = self.parameterAsSink(
parameters,
self.OUTPUT,
context,
fields,
QgsWkbTypes.Polygon,
QgsCoordinateReferenceSystem('EPSG:4326')
)
# Raise error if sink not created
if sink is None:
raise QgsProcessingException(self.invalidSinkError(parameters, self.OUTPUT))
##############
# Processing #
##############
sourceCrs = pointSource.sourceCrs()
transformer = QgsCoordinateTransform(
sourceCrs,
QgsCoordinateReferenceSystem('EPSG:4326'),
QgsProject.instance()
)
# -------------------------------
# STEP 1. Index points on H3 grid
# -------------------------------
h3Indexed = []
for f in pointSource.getFeatures():
point = f.geometry().asPoint()
point_wgs84 = transformer.transform(point)
idx = h3.geo_to_h3(point_wgs84.y(), point_wgs84.x(), resolution)
h3Indexed.append(idx)
# ----------------------------------
# Step 2. Count records per H3 index
# ----------------------------------
counts = dict()
for i in h3Indexed:
counts[i] = counts.get(i, 0) + 1
# ----------------------------------------------
# Step 3. Generate h3 cell geometries and output
# ----------------------------------------------
# Set up template feature
feature = QgsFeature(fields)
for k, v in counts.items():
hexVertexCoords = h3.h3_to_geo_boundary(k)
hexGeometry = QgsGeometry.fromPolygonXY([[QgsPointXY(lon, lat) for lat, lon in hexVertexCoords], ])
# create hex feature, add to sink
feature.setGeometry(hexGeometry)
feature.setAttributes([k, v])
sink.addFeature(feature, QgsFeatureSink.FastInsert)
return {self.OUTPUT: dest_id}