mirror of
https://github.com/qgis/QGIS.git
synced 2025-03-07 00:02:15 -05:00
initAlgorithm() method This allows 2 benefits: - algorithms can be subclassed and have subclasses add additional parameters/outputs to the algorithm. With the previous approach of declaring parameters/outputs in the constructor, it's not possible to call virtual methods to add additional parameters/ outputs (since you can't call virtual methods from a constructor). - initAlgorithm takes a variant map argument, allowing the algorithm to dynamically adjust its declared parameters and outputs according to this configuration map. This potentially allows model algorithms which can be configured to have variable numbers of parameters and outputs at run time. E.g. a "router" algorithm which directs features to one of any number of output sinks depending on some user configured criteria.
187 lines
7.5 KiB
Python
187 lines
7.5 KiB
Python
# -*- coding: utf-8 -*-
|
|
|
|
"""
|
|
***************************************************************************
|
|
Gridify.py
|
|
---------------------
|
|
Date : May 2010
|
|
Copyright : (C) 2010 by Michael Minn
|
|
Email : pyqgis at michaelminn dot 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__ = 'Michael Minn'
|
|
__date__ = 'May 2010'
|
|
__copyright__ = '(C) 2010, Michael Minn'
|
|
|
|
# This will get replaced with a git SHA1 when you do a git archive
|
|
|
|
__revision__ = '$Format:%H$'
|
|
|
|
from qgis.core import (QgsGeometry,
|
|
QgsFeature,
|
|
QgsFeatureSink,
|
|
QgsPointXY,
|
|
QgsWkbTypes,
|
|
QgsApplication,
|
|
QgsMessageLog,
|
|
QgsProcessingUtils)
|
|
from processing.algs.qgis.QgisAlgorithm import QgisAlgorithm
|
|
from processing.core.GeoAlgorithmExecutionException import GeoAlgorithmExecutionException
|
|
from processing.core.parameters import ParameterVector
|
|
from processing.core.parameters import ParameterNumber
|
|
from processing.core.outputs import OutputVector
|
|
|
|
|
|
class Gridify(QgisAlgorithm):
|
|
INPUT = 'INPUT'
|
|
HSPACING = 'HSPACING'
|
|
VSPACING = 'VSPACING'
|
|
OUTPUT = 'OUTPUT'
|
|
|
|
def group(self):
|
|
return self.tr('Vector general tools')
|
|
|
|
def __init__(self):
|
|
super().__init__()
|
|
|
|
def initAlgorithm(self, config=None):
|
|
self.addParameter(ParameterVector(self.INPUT,
|
|
self.tr('Input Layer')))
|
|
self.addParameter(ParameterNumber(self.HSPACING,
|
|
self.tr('Horizontal spacing'), default=0.1))
|
|
self.addParameter(ParameterNumber(self.VSPACING,
|
|
self.tr('Vertical spacing'), default=0.1))
|
|
|
|
self.addOutput(OutputVector(self.OUTPUT, self.tr('Snapped')))
|
|
|
|
def name(self):
|
|
return 'snappointstogrid'
|
|
|
|
def displayName(self):
|
|
return self.tr('Snap points to grid')
|
|
|
|
def processAlgorithm(self, parameters, context, feedback):
|
|
layer = QgsProcessingUtils.mapLayerFromString(self.getParameterValue(self.INPUT), context)
|
|
hSpacing = self.getParameterValue(self.HSPACING)
|
|
vSpacing = self.getParameterValue(self.VSPACING)
|
|
|
|
if hSpacing <= 0 or vSpacing <= 0:
|
|
raise GeoAlgorithmExecutionException(
|
|
self.tr('Invalid grid spacing: {0}/{1}').format(hSpacing, vSpacing))
|
|
|
|
writer = self.getOutputFromName(self.OUTPUT).getVectorWriter(layer.fields(), layer.wkbType(), layer.crs(),
|
|
context)
|
|
|
|
features = QgsProcessingUtils.getFeatures(layer, context)
|
|
total = 100.0 / layer.featureCount() if layer.featureCount() else 0
|
|
|
|
for current, f in enumerate(features):
|
|
geom = f.geometry()
|
|
geomType = geom.wkbType()
|
|
|
|
if geomType == QgsWkbTypes.Point:
|
|
points = self._gridify([geom.asPoint()], hSpacing, vSpacing)
|
|
newGeom = QgsGeometry.fromPoint(points[0])
|
|
elif geomType == QgsWkbTypes.MultiPoint:
|
|
points = self._gridify(geom.aMultiPoint(), hSpacing, vSpacing)
|
|
newGeom = QgsGeometry.fromMultiPoint(points)
|
|
elif geomType == QgsWkbTypes.LineString:
|
|
points = self._gridify(geom.asPolyline(), hSpacing, vSpacing)
|
|
if len(points) < 2:
|
|
QgsMessageLog.logMessage(self.tr('Failed to gridify feature with FID {0}').format(f.id()), self.tr('Processing'), QgsMessageLog.INFO)
|
|
newGeom = None
|
|
else:
|
|
newGeom = QgsGeometry.fromPolyline(points)
|
|
elif geomType == QgsWkbTypes.MultiLineString:
|
|
polyline = []
|
|
for line in geom.asMultiPolyline():
|
|
points = self._gridify(line, hSpacing, vSpacing)
|
|
if len(points) > 1:
|
|
polyline.append(points)
|
|
if len(polyline) <= 0:
|
|
QgsMessageLog.logMessage(self.tr('Failed to gridify feature with FID {0}').format(f.id()), self.tr('Processing'), QgsMessageLog.INFO)
|
|
newGeom = None
|
|
else:
|
|
newGeom = QgsGeometry.fromMultiPolyline(polyline)
|
|
|
|
elif geomType == QgsWkbTypes.Polygon:
|
|
polygon = []
|
|
for line in geom.asPolygon():
|
|
points = self._gridify(line, hSpacing, vSpacing)
|
|
if len(points) > 1:
|
|
polygon.append(points)
|
|
if len(polygon) <= 0:
|
|
QgsMessageLog.logMessage(self.tr('Failed to gridify feature with FID {0}').format(f.id()), self.tr('Processing'), QgsMessageLog.INFO)
|
|
newGeom = None
|
|
else:
|
|
newGeom = QgsGeometry.fromPolygon(polygon)
|
|
elif geomType == QgsWkbTypes.MultiPolygon:
|
|
multipolygon = []
|
|
for polygon in geom.asMultiPolygon():
|
|
newPolygon = []
|
|
for line in polygon:
|
|
points = self._gridify(line, hSpacing, vSpacing)
|
|
if len(points) > 2:
|
|
newPolygon.append(points)
|
|
|
|
if len(newPolygon) > 0:
|
|
multipolygon.append(newPolygon)
|
|
|
|
if len(multipolygon) <= 0:
|
|
QgsMessageLog.logMessage(self.tr('Failed to gridify feature with FID {0}').format(f.id()), self.tr('Processing'), QgsMessageLog.INFO)
|
|
newGeom = None
|
|
else:
|
|
newGeom = QgsGeometry.fromMultiPolygon(multipolygon)
|
|
|
|
if newGeom is not None:
|
|
feat = QgsFeature()
|
|
feat.setGeometry(newGeom)
|
|
feat.setAttributes(f.attributes())
|
|
writer.addFeature(feat, QgsFeatureSink.FastInsert)
|
|
|
|
feedback.setProgress(int(current * total))
|
|
|
|
del writer
|
|
|
|
def _gridify(self, points, hSpacing, vSpacing):
|
|
nPoints = []
|
|
for p in points:
|
|
nPoints.append(QgsPointXY(round(p.x() / hSpacing, 0) * hSpacing,
|
|
round(p.y() / vSpacing, 0) * vSpacing))
|
|
|
|
i = 0
|
|
# Delete overlapping points
|
|
while i < len(nPoints) - 2:
|
|
if nPoints[i] == nPoints[i + 1]:
|
|
nPoints.pop(i + 1)
|
|
else:
|
|
i += 1
|
|
|
|
i = 0
|
|
# Delete line points that go out and return to the same place
|
|
while i < len(nPoints) - 3:
|
|
if nPoints[i] == nPoints[i + 2]:
|
|
nPoints.pop(i + 1)
|
|
nPoints.pop(i + 1)
|
|
|
|
# Step back to catch arcs
|
|
if i > 0:
|
|
i -= 1
|
|
else:
|
|
i += 1
|
|
|
|
i = 0
|
|
# Delete overlapping start/end points
|
|
while len(nPoints) > 1 and nPoints[0] == nPoints[len(nPoints) - 1]:
|
|
nPoints.pop(len(nPoints) - 1)
|
|
|
|
return nPoints
|