Changes between Version 22 and Version 23 of GeoDjangoUbuntuInstall


Ignore:
Timestamp:
Sep 24, 2008, 9:52:36 AM (16 years ago)
Author:
springmeyer
Comment:

Adding missing proj4 notes

Legend:

Unmodified
Added
Removed
Modified
  • GeoDjangoUbuntuInstall

    v22 v23  
    2323wget http://download.osgeo.org/geos/geos-3.0.0.tar.bz2  # The version in the Repositories is currently not new enough for GeoDjango
    2424wget http://download.osgeo.org/gdal/gdal-1.5.2.tar.gz # The version in the Repositories is currently not new enough for GeoDjango
     25wget http://download.osgeo.org/proj/proj-4.6.0.tar.gz # The version in the Repositories likely will not properly build the proj datum shifting files
    2526tar xjf geos-3.0.0.tar.bz2
    2627cd geos-3.0.0
     
    2829make
    2930sudo make install
     31cd ..
     32tar xzf proj-4.6.0.tar.gz
     33wget ftp://ftp.remotesensing.org/proj/proj-datumgrid-1.3.tar.gz
     34cd proj-4.6.0/nad
     35tar xzf ../../proj-datumgrid-1.3.tar.gz
     36cd ..
     37./configure
     38make
     39make install
    3040cd ..
    3141tar xzf gdal-1.5.2.tar.gz
     
    92102
    93103=== Step 3 ===
    94 Compile and install these libraries so GeoDjango can find them
    95 Extract gdal-1.5.2.tar.gz and geos-3.0.0 to folders on your Desktop and install::
     104Compile and install these libraries so GeoDjango can find them.
     105Install Proj4 exactly like the full instructions here: http://code.djangoproject.com/wiki/GeoDjangoInstall#PROJ.4
     106Extract gdal-1.5.2.tar.gz and geos-3.0.0 to folders on your Desktop and install:
    96107{{{
    97108    #in the geos-3.0.0 directory
Back to Top