Skip to content

Commit

Permalink
quick fix for exporting the geometry of 2.5D features, fixes #3149
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@14536 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
cfarmer committed Nov 8, 2010
1 parent 29e28ef commit 85df54e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/plugins/fTools/tools/doGeometry.py
Expand Up @@ -558,14 +558,14 @@ def layer_extent( self ):
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()
attr2 = pt.y()
else:
measure = QgsDistanceArea()
attr1 = measure.measure(inGeom)
attr1 = measure.measure(inGeom)
if inGeom.type() == QGis.Polygon:
attr2 = self.perimMeasure( inGeom, measure )
else:
Expand Down

0 comments on commit 85df54e

Please sign in to comment.