Changes between Version 184 and Version 185 of GIS/InstallationGuidelines/Linux


Ignore:
Timestamp:
08/05/13 20:54:32 (12 years ago)
Author:
Fran Boon
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • GIS/InstallationGuidelines/Linux

    v184 v185  
    1414{{{
    1515apt-get install g++ libproj-dev
     16cd /tmp
    1617wget http://download.osgeo.org/gdal/1.10.0/gdal-1.10.0.tar.gz
    1718tar zxvf gdal-1.10.0.tar.gz
     
    2425}}}
    2526
    26 Python bindings (e.g. needed for Shapefile Layers and [wiki:UserGuidelinesGISData#GADM GADM importer]):
    27 {{{
    28 wget http://pypi.python.org/packages/source/G/GDAL/GDAL-1.9.1.tar.gz
    29 tar zxvf GDAL-1.9.1.tar.gz
    30 cd GDAL-1.9.1
    31 python setup.py install
    32 cd ..
    33 }}}
     27Python bindings (e.g. needed for Shapefile Layers and [wiki:UserGuidelinesGISData#GADM GADM importer]) included in above version.
    3428
    3529e.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]:
    3630{{{
    3731mkdir pyramid
    38 ~/gdal-1.9.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
     32~/gdal-1.10.0/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
    3933}}}
    4034== PostGIS ==
     
    304298CSS module:
    305299{{{
     300cd /tmp
    306301wget http://kent.dl.sourceforge.net/project/geoserver/GeoServer%20Extensions/2.3.4/geoserver-2.3.4-css-plugin.zip
    307302cd /var/lib/tomcat7/webapps/geoserver/WEB-INF/lib/
    308 unzip ~/geoserver-2.3.4-css-plugin.zip
     303unzip /tmp/geoserver-2.3.4-css-plugin.zip
    309304/etc/init.d/tomcat6 restart
    310305}}}
     
    319314 * http://docs.geoserver.org/latest/en/user/services/wcs/basics.html
    320315{{{
     316cd /tmp
    321317wget https://java.net/downloads/imageio-ext/Releases/1.0.5/native-libraries/linux64/imageio-ext-1.0.5-linux64-base-lib.tar.gz
    322318mkdir -p /usr/local/lib/imageio-ext
    323319cd /usr/local/lib/imageio-ext
    324 tar zxvf ~/imageio-ext-1.0.5-linux64-base-lib.tar.gz
     320tar zxvf /tmp/imageio-ext-1.0.5-linux64-base-lib.tar.gz
    325321vim /etc/default/tomcat7
    326322LD_LIBRARY_PATH=/usr/local/lib/imageio-ext
    327323
    328 cd
     324cd /tmp
    329325wget http://kent.dl.sourceforge.net/project/geoserver/GeoServer%20Extensions/2.3.4/geoserver-2.3.4-gdal-plugin.zip
    330326cd /var/lib/tomcat7/webapps/geoserver/WEB-INF/lib/
    331 unzip ~/geoserver-2.3.4-gdal-plugin.zip
     327unzip /tmp/geoserver-2.3.4-gdal-plugin.zip
    332328/etc/init.d/tomcat6 restart
    333329}}}