319 | | == 16. Python GDAL bindings == |
320 | | In order to compile raster these days, you now need Python with numpy and gdal bindings. |
321 | | So install your flavor of python if you don't have one from -- http://www.python.org/download/ (2.7 will work fine) |
322 | | |
323 | | The most bullet proof and easiest install I have found for GDAL and numpy |
324 | | is the unofficial python libs from http://www.lfd.uci.edu/~gohlke/pythonlibs/ |
325 | | * run Numpy: numpy-1.5.1.win32-py2.6.exe, numpy-1.5.1.win32-py2.7.exe |
326 | | * run GDAL-1.8.0.win32-py2.7.exe or GDAL-1.8.0.win32-py2.7.exe (listed in GDAL section) |
| 319 | == 16. GDAL ldconfig == |
| 320 | In order for PostGIS to correctly use with GDALPolygonize |
| 321 | (Needed for floating point rasters) -- need something like |
| 322 | below set in your configure/compile script |
| 323 | |
| 324 | {{{ |
| 325 | export LDFLAGS="-L/c/projects/GDAL/rel-trunk/lib" |
| 326 | }}} |
| 327 | |
| 328 | |