<div dir="ltr">Thank you, I was following the tutorial for the newest version while I was on a 1.1x version.  The links you supplied helped!<br><br></div><div class="gmail_extra"><br><br><div class="gmail_quote">On Tue, Jul 29, 2014 at 2:21 PM, Kyle Shannon <span dir="ltr"><<a href="mailto:kyle@pobox.com" target="_blank">kyle@pobox.com</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div class="HOEnZb"><div class="h5">On Tue, Jul 29, 2014 at 1:46 PM, Michael Aschenbeck<br>
<<a href="mailto:m.g.aschenbeck@gmail.com">m.g.aschenbeck@gmail.com</a>> wrote:<br>
> Hello,<br>
><br>
> I'm having trouble creating a shapefile.  My problems are isolated to the<br>
> following c++ block:<br>
><br>
>     const char *pszDriverName = "ESRI Shapefile";<br>
>     GDALDriver *poDriver;<br>
>     GDALAllRegister();<br>
>     poDriver = GetGDALDriverManager()->GetDriverByName(pszDriverName );<br>
>     if( poDriver == NULL )<br>
>     {<br>
>         printf( "%s driver not available.\n", pszDriverName );<br>
>         exit( 1 );<br>
>     }<br>
><br>
> which enters the conditional since it cannot find the "ESRI Shapefile"<br>
> driver.<br>
><br>
> The funny thing is that this driver loads no problem with my Python<br>
> bindings.  Does anyone have any advice to help me out?<br>
><br>
> Thanks,<br>
> Mike<br>
><br>
</div></div>> _______________________________________________<br>
> gdal-dev mailing list<br>
> <a href="mailto:gdal-dev@lists.osgeo.org">gdal-dev@lists.osgeo.org</a><br>
> <a href="http://lists.osgeo.org/mailman/listinfo/gdal-dev" target="_blank">http://lists.osgeo.org/mailman/listinfo/gdal-dev</a><br>
<br>
Michael,<br>
<br>
What version of GDAL are you using?  2.0+ has a unified driver<br>
manager, but in previous versions the vector drivers (such as ESRI<br>
Shapefile) were OGR drivers.  The older documentation can be found<br>
here:<br>
<br>
<a href="http://gdal.org/1.11/index.html" target="_blank">http://gdal.org/1.11/index.html</a><br>
<br>
OGR docs:<br>
<br>
<a href="http://gdal.org/1.11/ogr/index.html" target="_blank">http://gdal.org/1.11/ogr/index.html</a><br>
<br>
OGR tutorial:<br>
<br>
<a href="http://gdal.org/1.11/ogr/ogr_apitut.html" target="_blank">http://gdal.org/1.11/ogr/ogr_apitut.html</a><br>
<br>
The documentation at <a href="http://gdal.org" target="_blank">gdal.org</a> represents the development version and<br>
if you are using the that version(2.0), AFAIK your code would work<br>
fine.<br>
<span class="HOEnZb"><font color="#888888"><br>
--<br>
Kyle<br>
</font></span></blockquote></div><br></div>