Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix #5861
  • Loading branch information
slarosa committed Jun 25, 2012
1 parent 60516a8 commit e27ce7c
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions python/plugins/fTools/tools/ftools_utils.py
Expand Up @@ -351,6 +351,9 @@ def getGeomType(gT):
elif gT == 2 or gT == 5:
gTypeListLine = [ QGis.WKBLineString, QGis.WKBMultiLineString ]
return gTypeListLine
elif gT == 1 or gT == 4:
gTypeListPoint = [ QGis.WKBPoint, QGis.WKBMultiPoint ]
return gTypeListPoint

def getShapesByGeometryType( baseDir, inShapes, geomType ):
outShapes = QStringList()
Expand Down

0 comments on commit e27ce7c

Please sign in to comment.