100 lines
3.4 KiB
Python
Raw Normal View History

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'
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 QgsFeature, QgsGeometry
from processing.core.ProcessingLog import ProcessingLog
2013-09-20 12:44:47 +02:00
from processing.tools import vector
2012-09-15 18:25:25 +03:00
def buffering(progress, writer, distance, field, useField, layer, dissolve,
segments):
2012-10-03 19:18:28 +03:00
2012-09-15 18:25:25 +03:00
if useField:
2012-10-03 19:18:28 +03:00
field = layer.fieldNameIndex(field)
2012-09-15 18:25:25 +03:00
outFeat = QgsFeature()
inFeat = QgsFeature()
inGeom = QgsGeometry()
outGeom = QgsGeometry()
2012-10-03 19:18:28 +03:00
current = 0
features = vector.features(layer)
2013-01-01 23:52:00 +01:00
total = 100.0 / float(len(features))
# With dissolve
2013-01-01 23:52:00 +01:00
if dissolve:
first = True
for inFeat in features:
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
inGeom = QgsGeometry(inFeat.geometry())
2016-07-22 15:36:41 +03:00
if inGeom.isGeosEmpty():
ProcessingLog.addToLog(ProcessingLog.LOG_WARNING, 'Feature {} has empty geometry. Skipping...'.format(inFeat.id()))
continue
if not inGeom.isGeosValid():
ProcessingLog.addToLog(ProcessingLog.LOG_WARNING, 'Feature {} has invalid geometry. Skipping...'.format(inFeat.id()))
continue
outGeom = inGeom.buffer(float(value), segments)
if first:
tempGeom = QgsGeometry(outGeom)
first = False
else:
tempGeom = tempGeom.combine(outGeom)
2013-01-01 23:52:00 +01:00
current += 1
progress.setPercentage(int(current * total))
outFeat.setGeometry(tempGeom)
outFeat.setAttributes(attrs)
writer.addFeature(outFeat)
2013-01-01 23:52:00 +01:00
else:
# Without dissolve
2013-01-01 23:52:00 +01:00
for inFeat in features:
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
inGeom = QgsGeometry(inFeat.geometry())
if inGeom.isGeosEmpty() or not inGeom.isGeosValid():
2016-04-26 15:22:52 +03:00
ProcessingLog.addToLog(ProcessingLog.LOG_WARNING, 'Feature {} has empty or invalid geometry. Skipping...'.format(inFeat.id()))
continue
outGeom = inGeom.buffer(float(value), segments)
outFeat.setGeometry(outGeom)
outFeat.setAttributes(attrs)
writer.addFeature(outFeat)
2013-01-01 23:52:00 +01:00
current += 1
progress.setPercentage(int(current * total))
2012-09-15 18:25:25 +03:00
del writer