That&#39;s strange, the docs show ExportAsWkt as being a method of a Geometry, as does the source code for the Python wrapper. Well, you would know best...<br><br>If I do spatialref.ExportAsWkt() it gives the WKT of the SRS, right? What if I want a feature&#39;s geometry? Would I need to generate it myself from the geometry type and iterating over the vertices?<br><br>Sent from my Verizon Wireless Phone<br><br>----- Reply message -----<br>From: &quot;Frank Warmerdam&quot; &lt;warmerdam@pobox.com&gt;<br>Date: Tue, Nov 23, 2010 6:31 pm<br>Subject: [gdal-dev] Unable to use geom.ExportToWkt() in Python ?<br>To: &quot;Gregor at HostGIS&quot; &lt;gregor@hostgis.com&gt;<br>Cc: &lt;gdal-dev@lists.osgeo.org&gt;<br><br><br>Gregor at HostGIS wrote:<br>&gt; Hey all. I am using the OGR binding for python, to open a SHP and print <br>&gt; a geometry&#39;s WKT. This works until I try to call geom.ExportToWkt() At <br>&gt; that time I simply get &quot;Premature end of script headers&quot; Running it from <br>&gt; the command line I get a segmentation fault.<br>&gt; <br>&gt; The code snippet:<br>&gt; <br>&gt; &nbsp; &nbsp; driver &nbsp; &nbsp; = ogr.GetDriverByName(&#39;ESRI Shapefile&#39;)<br>&gt; &nbsp; &nbsp; datasource = driver.Open(shapefile,0)<br>&gt; &nbsp; &nbsp; layer &nbsp; &nbsp; &nbsp;= datasource.GetLayer()<br>&gt; &nbsp; &nbsp; spatialRef = layer.GetSpatialRef()<br>&gt; &nbsp; &nbsp; firstgeom &nbsp;= layer.GetFeature(0).GetGeometryRef()<br>&gt; &nbsp; &nbsp; wkt &nbsp; &nbsp; &nbsp; &nbsp;= firstgeom.ExportToWkt()<br><br>Gregor,<br><br>Geometries do not have the ExportToWkt() method. &nbsp;This is a method on<br>the ogr.SpatialReference class.<br><br>Perhaps try:<br> &nbsp; wkt = spatialRef.ExportToWkt()<br><br>Best regards,<br>-- <br>---------------------------------------+--------------------------------------<br>I set the clouds in motion - turn up &nbsp; | Frank Warmerdam, warmerdam@pobox.com<br>light and sound - activate the windows | <a href="http://pobox.com/~warmerdam">http://pobox.com/~warmerdam</a><br>and watch the world go round - Rush &nbsp; &nbsp;| Geospatial Programmer for Rent<br><br><br><br>