Well, the mystery deepens, as the following script using osr for reprojection works:<br><br>#! /usr/bin/python<br><br>import ogr<br>import osr<br><br># CREATE WKT STRING OF POINT COORDS<br>sample = (&#39; 776041.000&#39;, &#39;
3386618.000&#39;)<br>x = sample[0]
<br>y = sample[1]<br>wkt = &#39;POINT(%s %s)&#39; % (x, y)<br><br># CREATE PROJECTION OBJECTS<br>utm16N = osr.SpatialReference ()<br>utm16N.ImportFromEPSG(26916)<br>wgs84 = osr.SpatialReference()<br>wgs84.ImportFromEPSG(4326)
<br><br># CREATE OGR POINT OBJECT, ASSIGN PROJECTION, REPROJECT<br>point = ogr.CreateGeometryFromWkt(wkt)<br>point.AssignSpatialReference(utm16N)<br>point.TransformTo(wgs84)<br><br>print wkt<br>print point<br><br>--&gt; output:
<br>POINT( 776041.000 3386618.000)<br>POINT (-84.121611219545088 30.5802861582041)<br><br>I wonder, maybe I&#39;m just being dumb and am using incorrect usgae syntax for ogrtoogr?&nbsp; Here&#39;s the command I gave:<br><br>ogr2ogr -t_srs &quot;EPSG:4326&quot; 4326_pot2kcl_combined.shp pot2kcl_combined.shp
<br><br>--&gt; output:<br>ERROR 6: Unable to load PROJ.4 library (libproj.dll), creation of<br>OGRCoordinateTransformation failed.<br>Failed to create coordinate transformation between the<br>following coordinate systems.&nbsp; This may be because they
<br>are not transformable, or because projection services<br>(PROJ.4 DLL/.so) could not be loaded.<br>Source:<br>PROJCS[&quot;NAD_1983_HARN_StatePlane_Washington_South_FIPS_4602&quot;,<br>&nbsp;&nbsp;&nbsp; GEOGCS[&quot;GCS_North_American_1983_HARN&quot;,
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; DATUM[&quot;NAD83_High_Accuracy_Regional_Network&quot;,<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; SPHEROID[&quot;GRS_1980&quot;,6378137.0,298.257222101]],<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; PRIMEM[&quot;Greenwich&quot;,0.0],<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; UNIT[&quot;Degree&quot;,
0.0174532925199433]],<br>&nbsp;&nbsp;&nbsp; PROJECTION[&quot;Lambert_Conformal_Conic_2SP&quot;],<br>&nbsp;&nbsp;&nbsp; PARAMETER[&quot;False_Easting&quot;,1640416.666666667],<br>&nbsp;&nbsp;&nbsp; PARAMETER[&quot;False_Northing&quot;,0.0],<br>&nbsp;&nbsp;&nbsp; PARAMETER[&quot;Central_Meridian&quot;,-
120.5],<br>&nbsp;&nbsp;&nbsp; PARAMETER[&quot;Standard_Parallel_1&quot;,45.83333333333334],<br>&nbsp;&nbsp;&nbsp; PARAMETER[&quot;Standard_Parallel_2&quot;,47.33333333333334],<br>&nbsp;&nbsp;&nbsp; PARAMETER[&quot;Latitude_Of_Origin&quot;,45.33333333333334],<br>&nbsp;&nbsp;&nbsp; UNIT[&quot;Foot_US&quot;,
0.3048006096012192]]<br>Target:<br>GEOGCS[&quot;WGS 84&quot;,<br>&nbsp;&nbsp;&nbsp; DATUM[&quot;WGS_1984&quot;,<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; SPHEROID[&quot;WGS 84&quot;,6378137,298.257223563,<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; AUTHORITY[&quot;EPSG&quot;,&quot;7030&quot;]],
<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; TOWGS84[0,0,0,0,0,0,0],<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; AUTHORITY[&quot;EPSG&quot;,&quot;6326&quot;]],<br>&nbsp;&nbsp;&nbsp; PRIMEM[&quot;Greenwich&quot;,0,<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; AUTHORITY[&quot;EPSG&quot;,&quot;8901&quot;]],<br>&nbsp;&nbsp;&nbsp; UNIT[&quot;degree&quot;,0.01745329251994328

,<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; AUTHORITY[&quot;EPSG&quot;,&quot;9122&quot;]],<br>&nbsp;&nbsp;&nbsp; AUTHORITY[&quot;EPSG&quot;,&quot;4326&quot;]]<br>---<br><br><br><br><div class="gmail_quote">On Dec 10, 2007 4:59 PM, Frank Warmerdam &lt;<a href="mailto:warmerdam@pobox.com" target="_blank">

warmerdam@pobox.com</a>&gt; wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">Roger André wrote:<br>&gt; I&#39;m having an interesting problem when trying to use ogr2ogr to
<br>&gt; reproject from one coordinate system to another. &nbsp;What makes it<br>&gt; interesting is that gdalwarp works properly on the same system. &nbsp;With<br>&gt; ogr2ogr I get an error that says,<br>&gt;<br>&gt; &quot;ERROR 6: Unable to load 
PROJ.4 library (libproj.dll), creation of<br>&gt; OGRCoordinateTransformation failed.<br>&gt; Failed to create coordinate transformation between the<br>&gt; following coordinate systems. &nbsp;This may be because they<br>&gt; are not transformable, or because projection services
<br>&gt; (PROJ.4 DLL/.so) could not be loaded.&quot;<br><br>Roger,<br><br>GDAL and OGR both use the OGRCoordinateTransformation class to load<br>and call PROJ.4. &nbsp;So I can&#39;t explain the behaviour you are seeing.<br><br>

Best regards,<br><font color="#888888">--<br>---------------------------------------+--------------------------------------<br>I set the clouds in motion - turn up &nbsp; | Frank Warmerdam, <a href="mailto:warmerdam@pobox.com" target="_blank">

warmerdam@pobox.com</a><br>light and sound - activate the windows | <a href="http://pobox.com/%7Ewarmerdam" target="_blank">http://pobox.com/~warmerdam</a><br>and watch the world go round - Rush &nbsp; &nbsp;| President OSGeo, <a href="http://osgeo.org" target="_blank">

http://osgeo.org</a><br><br></font></blockquote></div><br>