We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
qgis
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
1 parent 023fc00 commit fc8d07eCopy full SHA for fc8d07e
python/plugins/fTools/tools/doGeoprocessing.py
@@ -1329,7 +1329,7 @@ def symetrical_difference( self ):
1329
geom = QgsGeometry( inFeatA.geometry() )
1330
diff_geom = QgsGeometry( geom )
1331
atMap = inFeatA.attributes()
1332
- atMap = dict( zip( range( length, length + len( atMap ) ), atMap ) )
+ atMap = [ NULL ] * length + atMap
1333
intersects = indexB.intersects( geom.boundingBox() )
1334
for id in intersects:
1335
vproviderA.getFeatures( QgsFeatureRequest().setFilterFid( int( id ) ) ).nextFeature( inFeatB )
0 commit comments