2012-10-04 19:33:47 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
"""
|
|
|
|
***************************************************************************
|
|
|
|
Clip.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 13:27:09 +04:00
|
|
|
|
2012-09-15 18:25:25 +03:00
|
|
|
from qgis.core import *
|
2013-02-28 13:27:09 +04:00
|
|
|
|
|
|
|
from sextante.core.GeoAlgorithm import GeoAlgorithm
|
2012-09-15 18:25:25 +03:00
|
|
|
from sextante.core.QGisLayers import QGisLayers
|
2013-02-28 13:27:09 +04:00
|
|
|
from sextante.core.SextanteLog import SextanteLog
|
|
|
|
|
|
|
|
from sextante.parameters.ParameterVector import ParameterVector
|
|
|
|
|
2012-09-15 18:25:25 +03:00
|
|
|
from sextante.outputs.OutputVector import OutputVector
|
2013-02-28 13:27:09 +04:00
|
|
|
|
2013-02-04 00:14:39 +01:00
|
|
|
from sextante.algs.ftools import FToolsUtils as utils
|
2012-09-15 18:25:25 +03:00
|
|
|
|
|
|
|
class Clip(GeoAlgorithm):
|
|
|
|
|
|
|
|
INPUT = "INPUT"
|
2013-02-28 13:27:09 +04:00
|
|
|
OVERLAY = "OVERLAY"
|
2012-09-15 18:25:25 +03:00
|
|
|
OUTPUT = "OUTPUT"
|
|
|
|
|
2012-12-20 00:16:05 +01:00
|
|
|
#===========================================================================
|
|
|
|
# def getIcon(self):
|
|
|
|
# return QtGui.QIcon(os.path.dirname(__file__) + "/icons/clip.png")
|
|
|
|
#===========================================================================
|
2012-09-15 18:25:25 +03:00
|
|
|
|
2013-02-28 13:27:09 +04:00
|
|
|
def defineCharacteristics(self):
|
|
|
|
self.name = "Clip"
|
|
|
|
self.group = "Vector overlay tools"
|
|
|
|
self.addParameter(ParameterVector(Clip.INPUT, "Input layer", ParameterVector.VECTOR_TYPE_ANY))
|
|
|
|
self.addParameter(ParameterVector(Clip.OVERLAY, "Clip layer", ParameterVector.VECTOR_TYPE_ANY))
|
|
|
|
self.addOutput(OutputVector(Clip.OUTPUT, "Clipped"))
|
|
|
|
|
2012-09-15 18:25:25 +03:00
|
|
|
def processAlgorithm(self, progress):
|
2013-02-28 13:27:09 +04:00
|
|
|
layerA = QGisLayers.getObjectFromUri(self.getParameterValue(Clip.INPUT))
|
|
|
|
layerB = QGisLayers.getObjectFromUri(self.getParameterValue(Clip.OVERLAY))
|
|
|
|
|
2012-09-15 18:25:25 +03:00
|
|
|
GEOS_EXCEPT = True
|
|
|
|
FEATURE_EXCEPT = True
|
2013-02-28 13:27:09 +04:00
|
|
|
|
|
|
|
writer = self.getOutputFromName(self.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 13:27:09 +04:00
|
|
|
|
|
|
|
index = utils.createSpatialIndex(layerB)
|
|
|
|
|
|
|
|
selectionA = QGisLayers.features(layerA)
|
|
|
|
|
|
|
|
current = 0
|
|
|
|
total = 100.0 / float(len(selectionA))
|
|
|
|
|
2013-01-21 23:04:34 +01:00
|
|
|
for inFeatA in selectionA:
|
2013-02-28 13:27:09 +04:00
|
|
|
geom = QgsGeometry(inFeatA.geometry())
|
|
|
|
attrs = inFeatA.attributes()
|
|
|
|
intersections = index.intersects(geom.boundingBox())
|
2013-02-04 00:14:39 +01:00
|
|
|
first = True
|
2013-02-28 13:27:09 +04:00
|
|
|
found = False
|
|
|
|
if len(intersections) > 0:
|
|
|
|
for i in intersections:
|
|
|
|
request = QgsFeatureRequest().setFilterFid(i)
|
|
|
|
inFeatB = layerB.getFeatures(request).next()
|
|
|
|
tmpGeom = QgsGeometry(inFeatB.geometry())
|
|
|
|
if tmpGeom.intersects(geom):
|
|
|
|
found = True
|
|
|
|
if first:
|
|
|
|
outFeat.setGeometry(QgsGeometry(tmpGeom))
|
|
|
|
first = False
|
|
|
|
else:
|
|
|
|
try:
|
|
|
|
cur_geom = QgsGeometry(outFeat.geometry())
|
|
|
|
new_geom = QgsGeometry(cur_geom.combine(tmpGeom))
|
|
|
|
outFeat.setGeometry(QgsGeometry(new_geom))
|
|
|
|
except:
|
|
|
|
GEOS_EXCEPT = False
|
|
|
|
break
|
|
|
|
if found:
|
|
|
|
try:
|
|
|
|
cur_geom = QgsGeometry(outFeat.geometry())
|
|
|
|
new_geom = QgsGeometry(geom.intersection(cur_geom))
|
|
|
|
if new_geom.wkbType() == QGis.WKBNoGeometry :
|
|
|
|
int_com = QgsGeometry(geom.combine(cur_geom))
|
|
|
|
int_sym = QgsGeometry(geom.symDifference(cur_geom))
|
|
|
|
new_geom = QgsGeometry(int_com.difference(int_sym))
|
2013-02-04 00:14:39 +01:00
|
|
|
try:
|
2013-02-28 13:27:09 +04:00
|
|
|
outFeat.setGeometry(new_geom)
|
|
|
|
outFeat.setAttributes(attrs)
|
|
|
|
writer.addFeature(outFeat)
|
2013-02-04 00:14:39 +01:00
|
|
|
except:
|
2013-02-28 13:27:09 +04:00
|
|
|
FEAT_EXCEPT = False
|
|
|
|
continue
|
2013-02-04 00:14:39 +01:00
|
|
|
except:
|
2013-02-28 13:27:09 +04:00
|
|
|
GEOS_EXCEPT = False
|
2013-02-04 00:14:39 +01:00
|
|
|
continue
|
2013-02-28 13:27:09 +04:00
|
|
|
|
|
|
|
current += 1
|
|
|
|
progress.setPercentage(int(current * total))
|
|
|
|
|
|
|
|
del writer
|
2013-01-21 23:04:34 +01:00
|
|
|
|
2012-09-15 18:25:25 +03:00
|
|
|
if not GEOS_EXCEPT:
|
|
|
|
SextanteLog.addToLog(SextanteLog.LOG_WARNING, "Geometry exception while computing clip")
|
|
|
|
if not FEATURE_EXCEPT:
|
|
|
|
SextanteLog.addToLog(SextanteLog.LOG_WARNING, "Feature exception while computing clip")
|