Changes between Version 38 and Version 39 of GeoDjangoInstall


Ignore:
Timestamp:
Apr 15, 2008, 1:04:33 PM (17 years ago)
Author:
Gregory Roby <groby@…>
Comment:

Added reference to Apache configuration file for SetEnv GDAL_DATA

Legend:

Unmodified
Added
Removed
Modified
  • GeoDjangoInstall

    v38 v39  
    169169}}}
    170170
    171 '''Note:''' The path to the GDAL library may be manually specified by setting `GDAL_LIBRARY_PATH` in your settings with the full path to the GDAL library (e.g., the `.so` or `.dylib` file).
     171You may need to add this environment variable to your Apache configuration file (sites-available/default for example):
     172{{{
     173SetEnv GDAL_DATA /usr/local/share
     174}}}
     175
     176'''Note:''' The path to the GDAL library may be manually specified by setting `GDAL_LIBRARY_PATH` in your settings with the full path to the GDAL library (e.g., the `.so` or `.dylib` file). 
    172177
    173178Because !GeoDjango uses a native `ctypes` API to access OGR and OSR capabilities, there is no need configure the GDAL Python bindings.  If you still want to use the GDAL Python API for your own applications, then use the following configuration flags:
Back to Top