<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns:m="http://schemas.microsoft.com/office/2004/12/omml" xmlns="http://www.w3.org/TR/REC-html40">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta name="Generator" content="Microsoft Word 14 (filtered medium)">
<style><!--
/* Font Definitions */
@font-face
        {font-family:Calibri;
        panose-1:2 15 5 2 2 2 4 3 2 4;}
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
        {margin:0cm;
        margin-bottom:.0001pt;
        font-size:11.0pt;
        font-family:"Calibri","sans-serif";
        mso-fareast-language:EN-US;}
a:link, span.MsoHyperlink
        {mso-style-priority:99;
        color:blue;
        text-decoration:underline;}
a:visited, span.MsoHyperlinkFollowed
        {mso-style-priority:99;
        color:purple;
        text-decoration:underline;}
span.EmailStyle17
        {mso-style-type:personal-compose;
        font-family:"Calibri","sans-serif";
        color:windowtext;}
.MsoChpDefault
        {mso-style-type:export-only;
        font-family:"Calibri","sans-serif";
        mso-fareast-language:EN-US;}
@page WordSection1
        {size:612.0pt 792.0pt;
        margin:72.0pt 72.0pt 72.0pt 72.0pt;}
div.WordSection1
        {page:WordSection1;}
--></style><!--[if gte mso 9]><xml>
<o:shapedefaults v:ext="edit" spidmax="1026" />
</xml><![endif]--><!--[if gte mso 9]><xml>
<o:shapelayout v:ext="edit">
<o:idmap v:ext="edit" data="1" />
</o:shapelayout></xml><![endif]-->
</head>
<body lang="EN-CA" link="blue" vlink="purple">
<div class="WordSection1">
<p class="MsoNormal">Hello,<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">Using mingw64 5.2 and the OSGeo4W64 network installation, I can’t seem to compile code using OGRSpatialReference. I don’t know if there is something wrong with my compiler or with the OSGeo4W package and if anyone else is having/had the
 same problem.<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">It seems the rest of the GDAL API works, it is just OGRSpatialReference in the ogr_spatialref.h that is giving me problems. Interestingly,  code using OGRCoordinateTransformation in the same header file compiles properly.  <o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">Linker settings:<o:p></o:p></p>
<p class="MsoNormal">..\..\..\OSGeo4W64\lib\gdal_i.lib<o:p></o:p></p>
<p class="MsoNormal">..\..\..\OSGeo4W64\lib\proj.lib<o:p></o:p></p>
<p class="MsoNormal">..\..\..\OSGeo4W64\lib\proj_i.lib<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">Within main.cpp: <o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">OGRSpatialReference wgs;<o:p></o:p></p>
<p class="MsoNormal">wgs.SetWellKnownGeogCS("WGS84");<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">OGRSpatialReference sfms_epsg;<o:p></o:p></p>
<p class="MsoNormal">sfms_epsg.importFromEPSG(42304);<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">OGRCoordinateTransformation* coordTrans = OGRCreateCoordinateTransformation(&wgs, &sfms_epsg);
<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">Errors:<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">obj\Debug\main.o||In function `main':|<o:p></o:p></p>
<p class="MsoNormal">..\main.cpp|145|undefined reference to `OGRSpatialReference::OGRSpatialReference(char const*)'|<o:p></o:p></p>
<p class="MsoNormal">..\main.cpp|146|undefined reference to `OGRSpatialReference::SetWellKnownGeogCS(char const*)'|<o:p></o:p></p>
<p class="MsoNormal">..\main.cpp|148|undefined reference to `OGRSpatialReference::OGRSpatialReference(char const*)'|<o:p></o:p></p>
<p class="MsoNormal">..\SfmsGridQuery\main.cpp|149|undefined reference to `OGRSpatialReference::importFromEPSG(int)'|<o:p></o:p></p>
<p class="MsoNormal">..\SfmsGridQuery\main.cpp|151|undefined reference to `OGRCreateCoordinateTransformation(OGRSpatialReference*, OGRSpatialReference*)'|<o:p></o:p></p>
<p class="MsoNormal">..\main.cpp|148|undefined reference to `OGRSpatialReference::~OGRSpatialReference()'|<o:p></o:p></p>
<p class="MsoNormal">..\main.cpp|145|undefined reference to `OGRSpatialReference::~OGRSpatialReference()'|<o:p></o:p></p>
<p class="MsoNormal">..\main.cpp|148|undefined reference to `OGRSpatialReference::~OGRSpatialReference()'|<o:p></o:p></p>
<p class="MsoNormal">..\main.cpp|145|undefined reference to `OGRSpatialReference::~OGRSpatialReference()'|<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">FYI allocating to the heap crashes as well with the same error message i.e., OGRSpatialReference wgs = new OGRSpatialReference();<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal"><span style="font-size:10.0pt;mso-fareast-language:EN-CA">Physical Science, Geoinformatics, Canadian Forest Service
<o:p></o:p></span></p>
<p class="MsoNormal"><span style="font-size:10.0pt;mso-fareast-language:EN-CA">Natural Resources Canada / Government of Canada<o:p></o:p></span></p>
<p class="MsoNormal"><span style="font-size:10.0pt;mso-fareast-language:EN-CA"><a href="mailto:bo.lu@canada.ca"><span lang="FR-CA" style="color:blue">bo.lu@canada.ca</span></a></span><span lang="FR-CA" style="font-size:10.0pt;mso-fareast-language:EN-CA"> /
 Tel.: 780-435-7235 (NEW)<o:p></o:p></span></p>
<p class="MsoNormal"><span lang="FR-CA" style="font-size:10.0pt;mso-fareast-language:EN-CA"><o:p> </o:p></span></p>
<p class="MsoNormal"><span lang="FR-CA" style="font-size:10.0pt;mso-fareast-language:EN-CA">Science physique, géoinformatique<span style="color:black;background:white">, Service canadien des forêts<o:p></o:p></span></span></p>
<p class="MsoNormal"><span lang="FR-CA" style="font-size:10.0pt;mso-fareast-language:EN-CA">Ressources naturelles Canada / Gouvernement du Canada<o:p></o:p></span></p>
<p class="MsoNormal"><span style="font-size:10.0pt;mso-fareast-language:EN-CA"><a href="mailto:bo.lu@canada.ca"><span lang="FR-CA" style="color:blue">bo.lu@canada.ca</span></a></span><span lang="FR-CA" style="font-size:10.0pt;mso-fareast-language:EN-CA"> /
 Tél.: 780-435-7235  (NOUVEAU)<o:p></o:p></span></p>
<p class="MsoNormal"><span lang="FR-CA"><o:p> </o:p></span></p>
</div>
</body>
</html>