<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic GDAL drivers for 9.4 need to link with gdal1.6 library in Data Management Questions</title>
    <link>https://community.esri.com/t5/data-management-questions/custom-gdal-raster-filter-not-working-in-9-4/m-p/579676#M32793</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;As you note, ArcGIS 9.4 uses GDAL 1.6.&amp;nbsp; Consequently, to make your GDAL driver work in 9.4, you will have to recompile your source code with the GDAL 1.6 include files and stub library.&amp;nbsp; A new GDAL driver sample for 9.4 includes the files for GDAL 1.6, and will be posted to the code gallery soon.&amp;nbsp; It also discusses some new ways to support custom geotransforms in ArcGIS 9.4.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;We are in the process of posting these files, but I don't know exactly when they'll be available.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 18 Dec 2009 16:55:57 GMT</pubDate>
    <dc:creator>JoeRoubal</dc:creator>
    <dc:date>2009-12-18T16:55:57Z</dc:date>
    <item>
      <title>Custom GDAL raster-filter not working in 9.4</title>
      <link>https://community.esri.com/t5/data-management-questions/custom-gdal-raster-filter-not-working-in-9-4/m-p/579675#M32792</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;We have developed a custom raster data-filter using GDAL. We have used it successfully in ArcGIS Desktop and ArcGIS Server 9.3.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;With 9.4 beta1 it is no longer working as expected in ArcGIS Desktop. We did not test ArcGIS Server 9.4 so far.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;We are following the guide from the ESRI documentation:&lt;/SPAN&gt;&lt;BR /&gt;&lt;A href="http://help.esri.com/en/arcgisdesktop/9.4/help/index.htm#/Rasters-and-images/0091000006TQ000000/"&gt;http://help.esri.com/en/arcgisdesktop/9.4/help/index.htm#/Rasters-and-images/0091000006TQ000000/&lt;/A&gt;&lt;BR /&gt;&lt;SPAN&gt;The first thing to note is that this page links to documentation from ArcGIS 9.3.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;We perform the following steps to register our custom GDAL based DLL in ArcGIS Desktop:&lt;/SPAN&gt;&lt;BR /&gt;&lt;UL&gt;&lt;BR /&gt;&lt;LI&gt;Copy our DLL to ..\ArcGIS\Desktop9.4\bin\gdalplugins&lt;/LI&gt;&lt;BR /&gt;&lt;LI&gt;Add the required entries to the RasterFormats.dat file&lt;/LI&gt;&lt;BR /&gt;&lt;/UL&gt;&lt;SPAN&gt;If we do this we can see the raster files with our file extension in the ArcCatalog window. But if I try to add one of the raster files to ArcMap I get the following error messages:&lt;/SPAN&gt;&lt;BR /&gt;&lt;OL&gt;&lt;BR /&gt;&lt;LI&gt;"Raster data objects error": "Invalid raster dataset. Failed to create raster layer"&lt;/LI&gt;&lt;BR /&gt;&lt;LI&gt;"Warning": Could not add the specified data object to the map. Failed to open raster dataset.&lt;/LI&gt;&lt;BR /&gt;&lt;/OL&gt;&lt;SPAN&gt;Once the ArcGIS even crashed when I&amp;nbsp; tried to open the raster file.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I know that ESRI is not using the original GDAL library. We use the modified ESRI-GDAL library from &lt;/SPAN&gt;&lt;A href="http://edn.esri.com/index.cfm?fa=downloads.detail&amp;amp;downloadid=204"&gt;http://edn.esri.com/index.cfm?fa=downloads.detail&amp;amp;downloadid=204&lt;/A&gt;&lt;SPAN&gt; as specified in the ESRI documentation. Is it possible that a custom GDAL DLL needs to use a new Version of the ESRI-GDAL library for 9.4?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;ArcGIS 9.3 contains a gdal14.dll version 9.3.1.1850.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;ArcGIS 9.4 contains a gdal16.dll version 9.4.0.2198&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Dec 2009 09:55:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/custom-gdal-raster-filter-not-working-in-9-4/m-p/579675#M32792</guid>
      <dc:creator>MarcN</dc:creator>
      <dc:date>2009-12-18T09:55:15Z</dc:date>
    </item>
    <item>
      <title>GDAL drivers for 9.4 need to link with gdal1.6 library</title>
      <link>https://community.esri.com/t5/data-management-questions/custom-gdal-raster-filter-not-working-in-9-4/m-p/579676#M32793</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;As you note, ArcGIS 9.4 uses GDAL 1.6.&amp;nbsp; Consequently, to make your GDAL driver work in 9.4, you will have to recompile your source code with the GDAL 1.6 include files and stub library.&amp;nbsp; A new GDAL driver sample for 9.4 includes the files for GDAL 1.6, and will be posted to the code gallery soon.&amp;nbsp; It also discusses some new ways to support custom geotransforms in ArcGIS 9.4.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;We are in the process of posting these files, but I don't know exactly when they'll be available.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Dec 2009 16:55:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/custom-gdal-raster-filter-not-working-in-9-4/m-p/579676#M32793</guid>
      <dc:creator>JoeRoubal</dc:creator>
      <dc:date>2009-12-18T16:55:57Z</dc:date>
    </item>
    <item>
      <title>Custom GDAL raster-filter not working in 9.4</title>
      <link>https://community.esri.com/t5/data-management-questions/custom-gdal-raster-filter-not-working-in-9-4/m-p/579677#M32794</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks for your answer.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I hope there will be some more detailed documentation regarding the integration of custom GDAL DLLs into ArcGIS for 9.4.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The documentation in 9.3 is very flat and implementing a custom GDAL filter was sometimes cryptic and "try&amp;amp;error".&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;My successtions are to provide some documentation how ESRI uses the GDAL interface and which functions are used. E.g. which GDAL function has to be implemented so that the copy command in ArcCatalog works with my custom GDAL DLL etc.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Would be nice if you could post here if the new GDAL library is available.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 19 Dec 2009 14:09:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/custom-gdal-raster-filter-not-working-in-9-4/m-p/579677#M32794</guid>
      <dc:creator>MarcN</dc:creator>
      <dc:date>2009-12-19T14:09:26Z</dc:date>
    </item>
    <item>
      <title>Custom GDAL raster-filter not working in 9.4</title>
      <link>https://community.esri.com/t5/data-management-questions/custom-gdal-raster-filter-not-working-in-9-4/m-p/579678#M32795</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;We are in the process of posting these files, but I don't know exactly when they'll be available.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Any news when the modified GDAL libraries for ArcGIS 10 will be available? Is there a chance that they will be available with Beta 2?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 24 Jan 2010 09:54:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/custom-gdal-raster-filter-not-working-in-9-4/m-p/579678#M32795</guid>
      <dc:creator>MarcN</dc:creator>
      <dc:date>2010-01-24T09:54:40Z</dc:date>
    </item>
    <item>
      <title>Another requestor here in Germany</title>
      <link>https://community.esri.com/t5/data-management-questions/custom-gdal-raster-filter-not-working-in-9-4/m-p/579679#M32796</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;we have another business partner here who would like to develop against the ESRI branch of the gdal-libraries with beta2 now ... any chance the announced posting will be available soon?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for commenting&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Feb 2010 10:21:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/custom-gdal-raster-filter-not-working-in-9-4/m-p/579679#M32796</guid>
      <dc:creator>GünterDörffel</dc:creator>
      <dc:date>2010-02-25T10:21:59Z</dc:date>
    </item>
    <item>
      <title>Custom GDAL raster-filter not working in 9.4</title>
      <link>https://community.esri.com/t5/data-management-questions/custom-gdal-raster-filter-not-working-in-9-4/m-p/579680#M32797</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Tried to find the GDAL SDK in the new Resource Center. Is it part of the ArcGIS 10 SDK or is it available in the Resource Center?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 03 Apr 2010 15:17:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/custom-gdal-raster-filter-not-working-in-9-4/m-p/579680#M32797</guid>
      <dc:creator>MarcN</dc:creator>
      <dc:date>2010-04-03T15:17:26Z</dc:date>
    </item>
    <item>
      <title>Custom GDAL raster-filter not working in 9.4</title>
      <link>https://community.esri.com/t5/data-management-questions/custom-gdal-raster-filter-not-working-in-9-4/m-p/579681#M32798</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;After installing ArcGIS 10 Desktop and SDK I still can not find the GDAL SDK...&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;The link in the ArcGIS10 &lt;/SPAN&gt;&lt;A href="http://help.arcgis.com/en/arcgisdesktop/10.0/help/index.html#/Building_a_customized_raster_format/009t00000016000000/"&gt;http://help.arcgis.com/en/arcgisdesktop/10.0/help/index.html#/Building_a_customized_raster_format/009t00000016000000/&lt;/A&gt;&lt;SPAN&gt; docu still goes to the 9.3 GDAL files... :mad:&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Apr 2010 14:40:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/custom-gdal-raster-filter-not-working-in-9-4/m-p/579681#M32798</guid>
      <dc:creator>MarcN</dc:creator>
      <dc:date>2010-04-09T14:40:31Z</dc:date>
    </item>
    <item>
      <title>New thread regarding this issue.</title>
      <link>https://community.esri.com/t5/data-management-questions/custom-gdal-raster-filter-not-working-in-9-4/m-p/579682#M32799</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;New thread here: &lt;/SPAN&gt;&lt;A href="http://forums.arcgis.com/threads/3336-Custom-GDAL-Raster-support-not-working-(9.3.1-SP1-9.4-Beta-2-and-10-Prerelease"&gt;http://forums.arcgis.com/threads/3336-Custom-GDAL-Raster-support-not-working-(9.3.1-SP1-9.4-Beta-2-and-10-Prerelease&lt;/A&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Apr 2010 20:50:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/custom-gdal-raster-filter-not-working-in-9-4/m-p/579682#M32799</guid>
      <dc:creator>JacquesBeaurain</dc:creator>
      <dc:date>2010-04-26T20:50:02Z</dc:date>
    </item>
    <item>
      <title>Re: Beta 10: Custom GDAL raster-filter not working in 9.4</title>
      <link>https://community.esri.com/t5/data-management-questions/custom-gdal-raster-filter-not-working-in-9-4/m-p/579683#M32800</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Just to close this thread:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;The GDAL library 1.6 for ArcGIS 10 with some samples is now available in the Imagery code gallery:&lt;/SPAN&gt;&lt;BR /&gt;&lt;A href="http://resources.arcgis.com/gallery/file/image-management/details?entryID=457D0F2B-1422-2418-7F4B-518F9BAAD81D"&gt;http://resources.arcgis.com/gallery/file/image-management/details?entryID=457D0F2B-1422-2418-7F4B-518F9BAAD81D&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 May 2010 05:48:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/custom-gdal-raster-filter-not-working-in-9-4/m-p/579683#M32800</guid>
      <dc:creator>MarcN</dc:creator>
      <dc:date>2010-05-25T05:48:06Z</dc:date>
    </item>
  </channel>
</rss>

