[Gdal-dev] Building a customized raster format in ArcGIS 9.2 using GDAL

Frank Warmerdam warmerdam at pobox.com
Wed Jun 6 13:24:21 EDT 2007


Lucena, Ivan wrote:
> Hi all,
> 
> Does anybody have ever followed those steps to add a raster format 
> support in ArcGIS using GDAL?
> 
> http://webhelp.esri.com/arcgisdesktop/9.2/index.cfm?TopicName=Supported_raster_dataset_file_formats 
> 
> 
> If I understood it correctly, all you need to do is to build a GDAL 
> library and give it a name like (let’s use GRIB as an example) 
> gdal_grib.dll or gdal_grib.so, copy it to the ArcGIS's Bin folder and 

Ivan,

GDAL plugins are not complete gdal libraries.  They are just a single
driver linked against GDAL and containing a GDALRegister_GRIB() entry
point.  Note that the short name for the driver in the DLL name has to
match in case with the registry entry point, so you need to name the
DLL gdal_GRIB.DLL if the entry pointis GDALRegister_GRIB().

The gdal/frmts/mrsid/makefile.vc includes a plugin target as an example
of how to build the MrSID driver as a plugin.

Normally GDAL looks for plugins in the directory indicated in the
GDAL_DRIVER_PATH environment variable.  On windows it also tries to
look in a gdalplugins directory under the directory containing the
currently running .exe.

I don't know if ArcGIS is otherwise adjusting the driver load path.

Best regards,
-- 
---------------------------------------+--------------------------------------
I set the clouds in motion - turn up   | Frank Warmerdam, warmerdam at pobox.com
light and sound - activate the windows | http://pobox.com/~warmerdam
and watch the world go round - Rush    | President OSGeo, http://osgeo.org




More information about the Gdal-dev mailing list