<html>
<body>
<font size=3>Folks,<br><br>
When I use the following piece of code in a program I can get the Shape
files with the correct projection parameters in a .prj ESRI style
file.<br><br>
const char *pszDriverName = &quot;ESRI Shapefile&quot;;<br>
OGRSFDriver *poDriver;<br>
OGRRegisterAll();<br>
.<br>
.<br>
.<br>
OGRSpatialReference oSRS;<br>
oSRS.SetWellKnownGeogCS( &quot;EPSG:4326&quot; );<br><br>
oSRS.morphToESRI();<br>
oSRS.exportToWkt( &amp;pszWKT );<br><br>
FILE *prj1;<br>
prj1 = fopen(&quot;..\point_out.prj&quot;,&quot;w&quot;);<br>
fprintf(prj1, &quot;%s\n&quot;, pszWKT );<br><br>
However, if I specify <br><br>
const char *pszDriverName = &quot;MapInfo File&quot;;<br>
.<br>
.<br>
.<br>
OGRSpatialReference oSRS;<br>
oSRS.SetWellKnownGeogCS( &quot;EPSG:4326&quot; );<br><br>
I don't get the MapInfo files with the projection parameters.&nbsp; I get
the MapInfo files as a non-earth.<br><br>
Any suggestions are welcomed to help in getting the MapInfo files with
the correct projection information.<br><br>
Thanks in advance.<br><br>
Reinaldo<br><br>
</font></body>
</html>