115 lines
4.3 KiB
Python
Raw Normal View History

2012-10-04 19:33:47 +02:00
# -*- coding: utf-8 -*-
"""
***************************************************************************
Difference.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'
# This will get replaced with a git SHA1 when you do a git archive
__revision__ = '$Format:%H$'
2012-09-15 18:25:25 +03:00
from PyQt4.QtCore import *
2013-02-28 14:03:01 +04:00
2012-09-15 18:25:25 +03:00
from qgis.core import *
2013-02-28 14:03:01 +04:00
2013-08-12 20:44:27 +02:00
from processing.core.QGisLayers import QGisLayers
from processing.core.ProcessingLog import ProcessingLog
from processing.core.GeoAlgorithm import GeoAlgorithm
2013-01-01 23:52:00 +01:00
2013-08-12 20:44:27 +02:00
from processing.parameters.ParameterVector import ParameterVector
2013-02-28 14:03:01 +04:00
2013-08-12 20:44:27 +02:00
from processing.outputs.OutputVector import OutputVector
2013-02-28 14:03:01 +04:00
2013-08-12 20:44:27 +02:00
from processing.algs.ftools import FToolsUtils as utils
2012-09-15 18:25:25 +03:00
class Difference(GeoAlgorithm):
INPUT = "INPUT"
2013-02-28 14:03:01 +04:00
OVERLAY = "OVERLAY"
2012-09-15 18:25:25 +03:00
OUTPUT = "OUTPUT"
#===========================================================================
# def getIcon(self):
# return QtGui.QIcon(os.path.dirname(__file__) + "/icons/difference.png")
#===========================================================================
2012-09-15 18:25:25 +03:00
2013-02-28 14:03:01 +04:00
def defineCharacteristics(self):
self.name = "Difference"
self.group = "Vector overlay tools"
self.addParameter(ParameterVector(Difference.INPUT, "Input layer", [ParameterVector.VECTOR_TYPE_ANY]))
self.addParameter(ParameterVector(Difference.OVERLAY, "Difference layer", [ParameterVector.VECTOR_TYPE_ANY]))
2013-02-28 14:03:01 +04:00
self.addOutput(OutputVector(Difference.OUTPUT, "Difference"))
2012-09-15 18:25:25 +03:00
def processAlgorithm(self, progress):
2013-02-28 14:03:01 +04:00
layerA = QGisLayers.getObjectFromUri(self.getParameterValue(Difference.INPUT))
layerB = QGisLayers.getObjectFromUri(self.getParameterValue(Difference.OVERLAY))
2012-09-15 18:25:25 +03:00
GEOS_EXCEPT = True
2013-02-28 14:03:01 +04:00
2012-09-15 18:25:25 +03:00
FEATURE_EXCEPT = True
2013-02-28 14:03:01 +04:00
writer = self.getOutputFromName(Difference.OUTPUT).getVectorWriter(layerA.pendingFields(),
layerA.dataProvider().geometryType(), layerA.dataProvider().crs())
2012-09-15 18:25:25 +03:00
inFeatA = QgsFeature()
inFeatB = QgsFeature()
outFeat = QgsFeature()
2013-02-28 14:03:01 +04:00
index = utils.createSpatialIndex(layerB)
selectionA = QGisLayers.features(layerA)
current = 0
total = 100.0 / float(len(selectionA))
for inFeatA in selectionA:
add = True
2013-02-28 14:03:01 +04:00
geom = QgsGeometry(inFeatA.geometry())
diff_geom = QgsGeometry(geom)
attrs = inFeatA.attributes()
intersections = index.intersects(geom.boundingBox())
for i in intersections:
request = QgsFeatureRequest().setFilterFid(i)
inFeatB = layerB.getFeatures(request).next()
tmpGeom = QgsGeometry(inFeatB.geometry())
2012-09-15 18:25:25 +03:00
try:
2013-02-28 14:03:01 +04:00
if diff_geom.intersects(tmpGeom):
diff_geom = QgsGeometry(diff_geom.difference(tmpGeom))
2012-09-15 18:25:25 +03:00
except:
GEOS_EXCEPT = False
add = False
break
2013-02-28 14:03:01 +04:00
if add:
2012-09-15 18:25:25 +03:00
try:
2013-02-28 14:03:01 +04:00
outFeat.setGeometry(diff_geom)
outFeat.setAttributes(attrs)
writer.addFeature(outFeat)
2012-09-15 18:25:25 +03:00
except:
FEATURE_EXCEPT = False
continue
2013-02-28 14:03:01 +04:00
current += 1
progress.setPercentage(int(current * total))
2013-02-07 01:09:39 +01:00
2012-09-15 18:25:25 +03:00
del writer
2013-02-28 14:03:01 +04:00
2012-09-15 18:25:25 +03:00
if not GEOS_EXCEPT:
2013-08-12 20:44:27 +02:00
ProcessingLog.addToLog(ProcessingLog.LOG_WARNING, "Geometry exception while computing difference")
2012-09-15 18:25:25 +03:00
if not FEATURE_EXCEPT:
2013-08-12 20:44:27 +02:00
ProcessingLog.addToLog(ProcessingLog.LOG_WARNING, "Feature exception while computing difference")