Skip to content
Permalink
Browse files
remove some debug output from fTools
  • Loading branch information
alexbruy committed Dec 9, 2011
1 parent 1197959 commit 81346a4
Showing 1 changed file with 0 additions and 4 deletions.
@@ -1045,9 +1045,7 @@ def intersect( self ):
int_geom = QgsGeometry( int_com.difference( int_sym ) )
try:
outFeat.setGeometry( int_geom )
print outFeat.isValid()
outFeat.setAttributeMap( ftools_utils.combineVectorAttributes( atMapA, atMapB ) )
print outFeat.isValid()
writer.addFeature( outFeat )
except:
FEATURE_EXCEPT = False
@@ -1056,7 +1054,6 @@ def intersect( self ):
GEOS_EXCEPT = False
break
del writer
print crs_match
return GEOS_EXCEPT, FEATURE_EXCEPT, crs_match, None

def union( self ):
@@ -1217,7 +1214,6 @@ def union( self ):
# intersects, but the geometry doesn't
outFeat.setGeometry( diff_geom )
outFeat.setAttributeMap( atMap )
print geom.wkbType()
writer.addFeature( outFeat )
except Exception, err:
add = False

0 comments on commit 81346a4

Please sign in to comment.