Skip to content

Commit e27ce7c

Browse files
committedJun 25, 2012
fix #5861
1 parent 60516a8 commit e27ce7c

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed
 

‎python/plugins/fTools/tools/ftools_utils.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -351,6 +351,9 @@ def getGeomType(gT):
351351
elif gT == 2 or gT == 5:
352352
gTypeListLine = [ QGis.WKBLineString, QGis.WKBMultiLineString ]
353353
return gTypeListLine
354+
elif gT == 1 or gT == 4:
355+
gTypeListPoint = [ QGis.WKBPoint, QGis.WKBMultiPoint ]
356+
return gTypeListPoint
354357

355358
def getShapesByGeometryType( baseDir, inShapes, geomType ):
356359
outShapes = QStringList()

0 commit comments

Comments
 (0)
Please sign in to comment.