quick fix for exporting the geometry of 2.5D features, fixes #3149

git-svn-id: http://svn.osgeo.org/qgis/trunk@14536 c8812cc2-4d05-0410-92ff-de0c093fc19c
This commit is contained in:
cfarmer 2010-11-08 23:06:50 +00:00
parent 1c7e6d6317
commit fb942e6a53

View File

@ -558,7 +558,7 @@ class geometryThread( QThread ):
return True
def simpleMeasure( self, inGeom ):
if inGeom.wkbType() == QGis.WKBPoint:
if inGeom.wkbType() in (QGis.WKBPoint, QGis.WKBPoint25D):
pt = QgsPoint()
pt = inGeom.asPoint()
attr1 = pt.x()