Bug report #3149
3D coordinates export fails with ftools
Status: | Closed | ||
---|---|---|---|
Priority: | Low | ||
Assignee: | cfarmer - | ||
Category: | Python plugins | ||
Affected QGIS version: | Regression?: | No | |
Operating System: | All | Easy fix?: | No |
Pull Request or Patch supplied: | Resolution: | fixed | |
Crashes QGIS or corrupts data: | Copied to github as #: | 13209 |
Description
I had some problems with a shapefile in qgis. This shape includes 3D GPS points. When using :
Vector/Geometry Tools/Export-Add geometry columns (in order to get the coordinates), the function simpleMeasure (in doGeometry.py) returns zero.
You can try to replace the old line:
if inGeom.wkbType() == QGis.WKBPoint:
by the proposed fixed line:
if inGeom.wkbType() in (QGis.WKBPoint,QGis.WKBPoint25D):
Associated revisions
quick fix for exporting the geometry of 2.5D features, fixes #3149
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@14536 c8812cc2-4d05-0410-92ff-de0c093fc19c
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
History
#1 Updated by cfarmer - almost 14 years ago
- Resolution set to fixed
- Status changed from Open to Closed
Fixed in fb942e6a (SVN r14537).
Carson