<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
<meta content="MSHTML 6.00.6000.17092" name="GENERATOR">
</head>
<body>
<div><font face="Arial" size="2"><span class="097451014-09122010">Hi all,</span></font></div>
<div><font face="Arial" size="2"><span class="097451014-09122010"></span></font>&nbsp;</div>
<div><font face="Arial" size="2"><span class="097451014-09122010">I have downloaded gdal-1.7.3 and build this via VS2008 succesfully. Furthermore I created an evironment variable GDAL_DATA that points to my location of the folder &quot;gdal-1.7.3\data&quot;.
</span></font></div>
<div><font face="Arial" size="2"><span class="097451014-09122010"></span></font>&nbsp;</div>
<div><font face="Arial" size="2"><span class="097451014-09122010">I copied the gdal17.dll towards my release location of my VS2008&nbsp;application that will use this dll and added the gdal_i.lib and include files to my application aswell. The needed #includes are
 also in my project and know when the following code is called:</span></font></div>
<div><font face="Arial" size="2"><span class="097451014-09122010"></span></font><font face="Arial" size="2"><font color="#a31515" size="2"><font color="#a31515" size="2"></font></font><font color="#a31515" size="2"><font color="#a31515" size="2"><font color="#000000"></font>&nbsp;</div>
</font></font></font>
<div><font face="Courier" size="2">void CGeoLoc::ConvertDeltaToLatLon(int nr, double *x, double *y)<br>
{<br>
&nbsp;&nbsp; double tx = m_geoX,&nbsp; <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ty = m_geoY;</font></div>
<div><font face="Courier"></font>&nbsp;</div>
<div><font face="Courier" size="2">&nbsp;&nbsp; OGRSpatialReference out, in;<br>
&nbsp;&nbsp; OGRCoordinateTransformation *trans;<br>
&nbsp;&nbsp; OGRErr ogrErr;<br>
&nbsp;<br>
&nbsp;&nbsp; ogrErr = out.importFromEPSG(4326);</font></div>
<div><font face="Courier"></font>&nbsp;</div>
<div><font face="Courier" size="2">&nbsp;&nbsp; double xref = m_geoX, yref = m_geoY;<br>
&nbsp;&nbsp; if (m_geoSystem != GS_MERCATOR)<br>
&nbsp;&nbsp; {<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ogrErr = in.importFromEPSG(3857);<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; trans = OGRCreateCoordinateTransformation(&amp;m_spatialRef, &amp;in);</font></div>
<div><font face="Courier"></font>&nbsp;</div>
<div><font face="Courier" size="2">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if( trans == NULL || !trans-&gt;Transform(1, &amp;xref, &amp;yref))<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; AfxMessageBox(&quot;Transform of point failed.&quot; );<br>
&nbsp;&nbsp; }</font></div>
<div><font face="Courier"></font>&nbsp;</div>
<div><font face="Courier" size="2">&nbsp;&nbsp; for (int i=0; i &lt; nr; i&#43;&#43;)<br>
&nbsp;&nbsp; {<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; x[i] &#43;= xref;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; y[i] &#43;= yref;<br>
&nbsp;&nbsp; }<br>
&nbsp;&nbsp; <br>
&nbsp;&nbsp; trans = OGRCreateCoordinateTransformation(&amp;in, &amp;out);<br>
&nbsp;&nbsp; if( trans == NULL || !trans-&gt;Transform(nr, x, y))<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; AfxMessageBox(&quot;Transform of point failed.&quot; );<br>
}</font></div>
<div><font face="Arial" size="2"></font>&nbsp;</div>
<div><span style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"><span class="097451014-09122010">My code builds perfectly and also runs, so no issues there, but unfortunately the importFromEPSG fails&nbsp;in finding my geocoordinate systems&nbsp;and returns ogrErr = 6. What am
 I doing wrong? Or what do I need to add to get my application to work with gdal?</span></span></div>
<div><span style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"><span class="097451014-09122010"></span></span>&nbsp;</div>
<div><span style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"><span class="097451014-09122010">The code did work with the FWtools version (which I didn't like due to the large amount of used DLL's for functions I don't need. So I would really like to use the gdal
 build only. </span></span></div>
<div><span style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"><span class="097451014-09122010"></span></span>&nbsp;</div>
<div><span style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"><span class="097451014-09122010">Kind regards,</span></span></div>
<div><span style="FONT-SIZE: 10pt; FONT-FAMILY: Arial"><span class="097451014-09122010">Pim</span></span></div>
<font face="monospace">This e-mail and its contents are subject to the DISCLAIMER at http://www.tno.nl/disclaimer/email.html</font></body>
</html>