Changes between Version 156 and Version 157 of GIS/InstallationGuidelines/Linux


Ignore:
Timestamp:
11/01/11 10:51:00 (13 years ago)
Author:
Fran Boon
Comment:

Image Pyramid

Legend:

Unmodified
Added
Removed
Modified
  • GIS/InstallationGuidelines/Linux

    v156 v157  
    77
    88== GDAL ==
    9 Simple functionality can be got from the Debain package:
     9Simple functionality can be got from the Debian package:
    1010{{{
    1111apt-get install gdal-bin
     
    2121make install
    2222ldconfig
     23}}}
     24
     25e.g. If you are serving GeoTIFFs larger than 2Gb, you should create an [http://docs.geoserver.org/latest/en/user/tutorials/imagepyramid/imagepyramid.html Image Pyramid]:
     26{{{
     27mkdir pyramid
     28~/gdal-1.8.1/swig/python/scripts/gdal_retile.py -v -s_srs EPSG:4326 -r bilinear -levels 4 -ps 2048 2048 -co "TILED=YES" -co "COMPRESS=JPEG" -targetDir pyramid mygeotiff.tif
    2329}}}
    2430== PostGIS ==