2012-10-04 19:33:47 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
"""
|
|
|
|
***************************************************************************
|
|
|
|
Buffer.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'
|
2013-10-01 20:52:22 +03:00
|
|
|
|
2012-10-04 19:33:47 +02:00
|
|
|
# This will get replaced with a git SHA1 when you do a git archive
|
2013-10-01 20:52:22 +03:00
|
|
|
|
2012-10-04 19:33:47 +02:00
|
|
|
__revision__ = '$Format:%H$'
|
|
|
|
|
fix python pep8 warnings and fix some revealed errors
pep8 --ignore=E111,E128,E201,E202,E203,E211,E221,E222,E225,E226,E227,E231,E241,E261,E265,E272,E302,E303,E501,E701 \
--exclude="ui_*.py,debian/*,python/ext-libs/*" \
.
2015-02-01 14:15:42 +01:00
|
|
|
from qgis.core import QgsFeature, QgsGeometry
|
2016-01-15 14:33:17 +02:00
|
|
|
|
2013-09-20 12:44:47 +02:00
|
|
|
from processing.tools import vector
|
2012-09-15 18:25:25 +03:00
|
|
|
|
2013-10-01 20:52:22 +03:00
|
|
|
|
2017-04-25 15:57:24 +10:00
|
|
|
def buffering(feedback, context, writer, distance, field, useField, layer, dissolve, segments, endCapStyle=1,
|
|
|
|
joinStyle=1, mitreLimit=2):
|
2012-10-03 19:18:28 +03:00
|
|
|
|
2012-09-15 18:25:25 +03:00
|
|
|
if useField:
|
2016-09-22 12:09:13 +02:00
|
|
|
field = layer.fields().lookupField(field)
|
2012-10-03 19:18:28 +03:00
|
|
|
|
2012-09-15 18:25:25 +03:00
|
|
|
outFeat = QgsFeature()
|
2012-10-03 19:18:28 +03:00
|
|
|
|
|
|
|
current = 0
|
2017-04-25 15:57:24 +10:00
|
|
|
features = vector.features(layer, context)
|
2017-04-25 17:53:32 +10:00
|
|
|
total = 100.0 / QgsProcessingUtils.featureCount(layer, context)
|
2013-01-12 23:36:00 +01:00
|
|
|
|
2013-10-01 20:52:22 +03:00
|
|
|
# With dissolve
|
2013-01-01 23:52:00 +01:00
|
|
|
if dissolve:
|
2016-08-11 18:35:19 +10:00
|
|
|
buffered_geometries = []
|
2013-01-01 23:52:00 +01:00
|
|
|
for inFeat in features:
|
2013-02-28 21:43:59 +04:00
|
|
|
attrs = inFeat.attributes()
|
2013-01-01 23:52:00 +01:00
|
|
|
if useField:
|
2013-06-03 21:25:22 +02:00
|
|
|
value = attrs[field]
|
2013-01-01 23:52:00 +01:00
|
|
|
else:
|
|
|
|
value = distance
|
2013-01-12 23:36:00 +01:00
|
|
|
|
2016-08-01 16:25:46 +10:00
|
|
|
inGeom = inFeat.geometry()
|
2016-12-15 12:25:20 +01:00
|
|
|
|
2016-08-11 18:35:19 +10:00
|
|
|
buffered_geometries.append(inGeom.buffer(float(value), segments, endCapStyle, joinStyle, mitreLimit))
|
2013-01-12 23:36:00 +01:00
|
|
|
|
2013-01-01 23:52:00 +01:00
|
|
|
current += 1
|
2017-01-06 20:04:00 +10:00
|
|
|
feedback.setProgress(int(current * total))
|
2013-09-17 12:33:57 +02:00
|
|
|
|
2016-08-11 18:35:19 +10:00
|
|
|
final_geometry = QgsGeometry.unaryUnion(buffered_geometries)
|
|
|
|
outFeat.setGeometry(final_geometry)
|
2013-09-12 13:19:00 +02:00
|
|
|
outFeat.setAttributes(attrs)
|
|
|
|
writer.addFeature(outFeat)
|
2013-01-01 23:52:00 +01:00
|
|
|
else:
|
2013-10-01 20:52:22 +03:00
|
|
|
# Without dissolve
|
2013-01-01 23:52:00 +01:00
|
|
|
for inFeat in features:
|
2013-02-28 21:43:59 +04:00
|
|
|
attrs = inFeat.attributes()
|
2013-01-01 23:52:00 +01:00
|
|
|
if useField:
|
2013-06-03 21:25:22 +02:00
|
|
|
value = attrs[field]
|
2013-01-01 23:52:00 +01:00
|
|
|
else:
|
|
|
|
value = distance
|
2016-08-01 16:25:46 +10:00
|
|
|
inGeom = inFeat.geometry()
|
2016-08-11 18:35:19 +10:00
|
|
|
outFeat = QgsFeature()
|
2016-12-15 12:25:20 +01:00
|
|
|
outGeom = inGeom.buffer(float(value), segments, endCapStyle, joinStyle, mitreLimit)
|
|
|
|
outFeat.setGeometry(outGeom)
|
2013-09-12 13:19:00 +02:00
|
|
|
outFeat.setAttributes(attrs)
|
2013-09-17 12:33:57 +02:00
|
|
|
writer.addFeature(outFeat)
|
2013-01-01 23:52:00 +01:00
|
|
|
current += 1
|
2017-01-06 20:04:00 +10:00
|
|
|
feedback.setProgress(int(current * total))
|
2013-01-12 23:36:00 +01:00
|
|
|
|
2012-09-15 18:25:25 +03:00
|
|
|
del writer
|