Changes between Version 23 and Version 24 of GeoDjangoUbuntuInstall


Ignore:
Timestamp:
Sep 24, 2008, 10:49:49 AM (16 years ago)
Author:
Tyler Erickson
Comment:

added proj to full instructions section; updated proj and proj-datumgrid to current versions

Legend:

Unmodified
Added
Removed
Modified
  • GeoDjangoUbuntuInstall

    v23 v24  
    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
    25 wget 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
     25wget http://download.osgeo.org/proj/proj-4.6.1.tar.gz # The version in the Repositories likely will not properly build the proj datum shifting files
    2626tar xjf geos-3.0.0.tar.bz2
    2727cd geos-3.0.0
     
    3030sudo make install
    3131cd ..
    32 tar xzf proj-4.6.0.tar.gz
    33 wget ftp://ftp.remotesensing.org/proj/proj-datumgrid-1.3.tar.gz
    34 cd proj-4.6.0/nad
    35 tar xzf ../../proj-datumgrid-1.3.tar.gz
     32tar xzf proj-4.6.1.tar.gz
     33wget ftp://ftp.remotesensing.org/proj/proj-datumgrid-1.4.tar.gz
     34cd proj-4.6.1/nad
     35tar xzf ../../proj-datumgrid-1.4.tar.gz
    3636cd ..
    3737./configure
     
    4949}}}
    5050
    51 Create your PostGIS enabled PostGreSQL db
     51Create your PostGIS enabled PostgreSQL db
    5252{{{
    5353sudo su postgres
     
    7777wget http://www.djangoproject.com/download/1.0/tarball/
    7878wget http://download.osgeo.org/gdal/gdal-1.5.2.tar.gz
    79 wget http://download.osgeo.org/geos/geos-3.0.0.tar.bz2 
     79wget http://download.osgeo.org/geos/geos-3.0.0.tar.bz2
     80wget http://download.osgeo.org/proj/proj-4.6.1.tar.gz
     81wget http://download.osgeo.org/proj/proj-datumgrid-1.4.tar.gz
     82 
    8083}}}
    8184
     
    8992{{{
    9093sudo pico /etc/postgresql/8.3/main/pg_hba.conf #Alternatively use gedit or a text editor of your choice 
     94
    9195# change ident sameuser to trust - WARNING SECURITY RISK
    9296# comment out this line to allow, for instance, to django/psycopg2 to connect without password
     
    110114    make
    111115    sudo make install   
     116
     117    #in the proj-4.6.1 directory
     118    cd proj-4.6.1/nad
     119    tar xzf ../../proj-datumgrid-1.4.tar.gz
     120    cd ..
     121    ./configure
     122    make
     123    sudo make install
    112124
    113125    #in the gdal-1.5.2 directory
Back to Top