You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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):
The text was updated successfully, but these errors were encountered:
Author Name: estelle - (estelle -)
Original Redmine Issue: 3149
Redmine category:python_plugins
Assignee: cfarmer -
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):
The text was updated successfully, but these errors were encountered: