Skip to content

Commit

Permalink
[processing] JoinAttributes improvement
Browse files Browse the repository at this point in the history
- allow join not only with vector attribute table but also with geometryless table
- performance and key comparison improvement
- str to unicode fix
  • Loading branch information
minorua committed Jul 5, 2014
1 parent 51408e1 commit 361202e
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 16 deletions.
32 changes: 18 additions & 14 deletions python/plugins/processing/algs/qgis/JoinAttributes.py
Expand Up @@ -30,6 +30,7 @@
from qgis.core import *
from processing.core.GeoAlgorithm import GeoAlgorithm
from processing.parameters.ParameterVector import ParameterVector
from processing.parameters.ParameterTable import ParameterTable
from processing.parameters.ParameterTableField import ParameterTableField
from processing.outputs.OutputVector import OutputVector
from processing.tools import dataobjects, vector
Expand All @@ -48,8 +49,8 @@ def defineCharacteristics(self):
self.group = 'Vector general tools'
self.addParameter(ParameterVector(self.INPUT_LAYER, 'Input layer',
[ParameterVector.VECTOR_TYPE_ANY], False))
self.addParameter(ParameterVector(self.INPUT_LAYER_2, 'Input layer 2',
[ParameterVector.VECTOR_TYPE_ANY], False))
self.addParameter(ParameterTable(self.INPUT_LAYER_2, 'Input layer 2',
False))
self.addParameter(ParameterTableField(self.TABLE_FIELD, 'Table field',
self.INPUT_LAYER))
self.addParameter(ParameterTableField(self.TABLE_FIELD_2,
Expand Down Expand Up @@ -84,22 +85,25 @@ def processAlgorithm(self, progress):
inFeat2 = QgsFeature()
outFeat = QgsFeature()

# Cache attributes of Layer 2
cache = {}
features2 = vector.features(layer2)
for inFeat2 in features2:
attrs2 = inFeat2.attributes()
joinValue2 = unicode(attrs2[joinField2Index])
# Put the attributes into the dict if the join key is not contained in the keys of the dict.
# Note: This behavior is same as previous behavior of this function,
# but different from the attribute cache function of QGIS core.
if not joinValue2 in cache:
cache[joinValue2] = attrs2

# Create output vector layer with additional attribute
features = vector.features(layer)
for inFeat in features:
inGeom = inFeat.geometry()
outFeat.setGeometry(inFeat.geometry())
attrs = inFeat.attributes()
joinValue1 = attrs[joinField1Index]
features2 = vector.features(layer2)
for inFeat2 in features2:
# Maybe it should cache this entries...
attrs2 = inFeat2.attributes()
joinValue2 = attrs2[joinField2Index]
if joinValue1 == joinValue2:
# Create the new feature
outFeat.setGeometry(inGeom)
attrs.extend(attrs2)
break
joinValue1 = unicode(attrs[joinField1Index])
attrs.extend(cache.get(joinValue1, []))
outFeat.setAttributes(attrs)
writer.addFeature(outFeat)
del writer
4 changes: 2 additions & 2 deletions python/plugins/processing/parameters/ParameterTableField.py
Expand Up @@ -43,7 +43,7 @@ def __init__(self, name='', description='', parent=None, datatype=-1,
self.optional = optional

def getValueAsCommandLineParameter(self):
return '"' + str(self.value) + '"'
return '"' + unicode(self.value) + '"'

def getAsScriptCode(self):
return '##' + self.name + '=field ' + str(self.parent)
Expand All @@ -52,7 +52,7 @@ def setValue(self, value):
if value is None:
return self.optional
elif len(value) > 0:
self.value = str(value)
self.value = unicode(value)
else:
return self.optional
return True
Expand Down

0 comments on commit 361202e

Please sign in to comment.