Changes between Version 184 and Version 185 of GIS/InstallationGuidelines/Linux
- Timestamp:
- 08/05/13 20:54:32 (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
GIS/InstallationGuidelines/Linux
v184 v185 14 14 {{{ 15 15 apt-get install g++ libproj-dev 16 cd /tmp 16 17 wget http://download.osgeo.org/gdal/1.10.0/gdal-1.10.0.tar.gz 17 18 tar zxvf gdal-1.10.0.tar.gz … … 24 25 }}} 25 26 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 }}} 27 Python bindings (e.g. needed for Shapefile Layers and [wiki:UserGuidelinesGISData#GADM GADM importer]) included in above version. 34 28 35 29 e.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]: 36 30 {{{ 37 31 mkdir 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.tif32 ~/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 39 33 }}} 40 34 == PostGIS == … … 304 298 CSS module: 305 299 {{{ 300 cd /tmp 306 301 wget http://kent.dl.sourceforge.net/project/geoserver/GeoServer%20Extensions/2.3.4/geoserver-2.3.4-css-plugin.zip 307 302 cd /var/lib/tomcat7/webapps/geoserver/WEB-INF/lib/ 308 unzip ~/geoserver-2.3.4-css-plugin.zip303 unzip /tmp/geoserver-2.3.4-css-plugin.zip 309 304 /etc/init.d/tomcat6 restart 310 305 }}} … … 319 314 * http://docs.geoserver.org/latest/en/user/services/wcs/basics.html 320 315 {{{ 316 cd /tmp 321 317 wget https://java.net/downloads/imageio-ext/Releases/1.0.5/native-libraries/linux64/imageio-ext-1.0.5-linux64-base-lib.tar.gz 322 318 mkdir -p /usr/local/lib/imageio-ext 323 319 cd /usr/local/lib/imageio-ext 324 tar zxvf ~/imageio-ext-1.0.5-linux64-base-lib.tar.gz320 tar zxvf /tmp/imageio-ext-1.0.5-linux64-base-lib.tar.gz 325 321 vim /etc/default/tomcat7 326 322 LD_LIBRARY_PATH=/usr/local/lib/imageio-ext 327 323 328 cd 324 cd /tmp 329 325 wget http://kent.dl.sourceforge.net/project/geoserver/GeoServer%20Extensions/2.3.4/geoserver-2.3.4-gdal-plugin.zip 330 326 cd /var/lib/tomcat7/webapps/geoserver/WEB-INF/lib/ 331 unzip ~/geoserver-2.3.4-gdal-plugin.zip327 unzip /tmp/geoserver-2.3.4-gdal-plugin.zip 332 328 /etc/init.d/tomcat6 restart 333 329 }}}