QGIS/python/plugins/processing/algs/qgis/SimplifyGeometries.py

111 lines
4.1 KiB
Python
Raw Normal View History

2012-10-04 19:33:47 +02:00
# -*- coding: utf-8 -*-
"""
***************************************************************************
SimplifyGeometries.py
---------------------
Date : August 2012
Copyright : (C) 2012 by Victor Olaya
Email : volayaf at gmail 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__ = 'Victor Olaya'
__date__ = 'August 2012'
__copyright__ = '(C) 2012, Victor Olaya'
2012-10-04 19:33:47 +02:00
# This will get replaced with a git SHA1 when you do a git archive
2012-10-04 19:33:47 +02:00
__revision__ = '$Format:%H$'
from qgis.core import QGis, QgsFeature, QgsGeometry
2012-10-01 21:11:42 +03:00
2013-08-12 20:44:27 +02:00
from processing.core.GeoAlgorithm import GeoAlgorithm
from processing.core.ProcessingLog import ProcessingLog
from processing.core.parameters import ParameterVector
from processing.core.parameters import ParameterNumber
from processing.core.outputs import OutputVector
from processing.tools import dataobjects, vector
2012-09-15 18:25:25 +03:00
class SimplifyGeometries(GeoAlgorithm):
INPUT = 'INPUT'
TOLERANCE = 'TOLERANCE'
OUTPUT = 'OUTPUT'
2012-09-15 18:25:25 +03:00
def defineCharacteristics(self):
self.name, self.i18n_name = self.trAlgorithm('Simplify geometries')
self.group, self.i18n_group = self.trAlgorithm('Vector geometry tools')
2012-09-15 18:25:25 +03:00
2015-01-15 20:41:15 +02:00
self.addParameter(ParameterVector(self.INPUT,
self.tr('Input layer'),
[ParameterVector.VECTOR_TYPE_POLYGON, ParameterVector.VECTOR_TYPE_LINE]))
2015-01-15 20:41:15 +02:00
self.addParameter(ParameterNumber(self.TOLERANCE,
self.tr('Tolerance'), 0.0, 10000000.0, 1.0))
2012-09-15 18:25:25 +03:00
self.addOutput(OutputVector(self.OUTPUT, self.tr('Simplified')))
2012-10-01 21:11:42 +03:00
def processAlgorithm(self, progress):
layer = dataobjects.getObjectFromUri(self.getParameterValue(self.INPUT))
tolerance = self.getParameterValue(self.TOLERANCE)
2012-10-01 21:11:42 +03:00
pointsBefore = 0
pointsAfter = 0
writer = self.getOutputFromName(self.OUTPUT).getVectorWriter(
layer.pendingFields().toList(), layer.wkbType(), layer.crs())
2012-09-15 18:25:25 +03:00
current = 0
selection = vector.features(layer)
total = 100.0 / float(len(selection))
for f in selection:
featGeometry = QgsGeometry(f.geometry())
attrs = f.attributes()
pointsBefore += self.geomVertexCount(featGeometry)
newGeometry = featGeometry.simplify(tolerance)
pointsAfter += self.geomVertexCount(newGeometry)
feature = QgsFeature()
feature.setGeometry(newGeometry)
feature.setAttributes(attrs)
writer.addFeature(feature)
current += 1
progress.setPercentage(int(current * total))
2012-10-01 21:11:42 +03:00
del writer
2012-09-15 18:25:25 +03:00
ProcessingLog.addToLog(ProcessingLog.LOG_INFO,
self.tr('Simplify: Input geometries have been simplified from %s to %s points' % (pointsBefore, pointsAfter)))
2012-10-01 21:11:42 +03:00
def geomVertexCount(self, geometry):
geomType = geometry.type()
2012-09-15 18:25:25 +03:00
2012-10-01 21:11:42 +03:00
if geomType == QGis.Line:
if geometry.isMultipart():
pointsList = geometry.asMultiPolyline()
points = sum(pointsList, [])
2012-10-01 21:11:42 +03:00
else:
points = geometry.asPolyline()
return len(points)
2012-10-01 21:11:42 +03:00
elif geomType == QGis.Polygon:
if geometry.isMultipart():
polylinesList = geometry.asMultiPolygon()
polylines = sum(polylinesList, [])
2012-10-01 21:11:42 +03:00
else:
polylines = geometry.asPolygon()
points = []
for l in polylines:
points.extend(l)
2012-10-01 21:11:42 +03:00
return len(points)
2012-10-01 21:11:42 +03:00
else:
return None