Changes between Version 45 and Version 46 of GeoDjango


Ignore:
Timestamp:
Mar 25, 2007, 3:32:19 PM (17 years ago)
Author:
jbronn
Comment:

improved contents section, improved names, added more info about PROJ.4

Legend:

Unmodified
Added
Removed
Modified
  • GeoDjango

    v45 v46  
    22The [http://code.djangoproject.com/browser/django/branches/gis gis] branch intends to add a contrib app allowing for Geographic-enabled fields and queries.
    33 * [GeoDjango#Background Background]
     4   * [GeoDjango#WhatsGIS What's GIS?]
     5   * [GeoDjango#UsefulCode Useful Code]
     6   * [GeoDjango#UsefulData Useful Data]
    47 * [GeoDjango#FAQ FAQ]
    58 * [GeoDjango#Implementation Implementation]
    69 * [GeoDjango#Example Example]
    710 * [GeoDjango#Installation Installation]
     11   * [GeoDjango#Django GeoDjango Branch from SVN] ('''required''')
     12   * [GeoDjango#GEOS GEOS] ('''required''')
     13   * [GeoDjango#PROJ.4 PROJ.4] ('''required''')
     14   * [GeoDjango#PostGIS PostGIS] ('''required''')
     15   * [GeoDjango#GDAL GDAL]
    816 * [GeoDjango#ModelAPI Model API]
     17   * [GeoDjango#Fields Fields]
     18   * [GeoDjango#FieldKeywords Field Keywords]
     19   * [GeoDjango#CreatingandSavingModelswithGeometryFields Creating and Saving Models with Geometry Fields]
    920 * [GeoDjango#DatabaseAPI Database API]
     21   * [GeoDjango#PostGISOperatorFieldLookupTypes PostGIS Operator Field Lookup Types]
     22   * [GeoDjango#PostGISGEOSFunctionFieldLookupTypes PostGIS GEOS Function Field Lookup Types]
    1023
    1124= Background =
     
    1730 * [http://en.wikipedia.org/wiki/Geodesy geodesy] the field of science for this stuff.
    1831
    19 == Useful code ==
     32== Useful Code ==
    2033 * [http://postgis.refractions.net/ PostGIS], the [http://www.opengis.org/docs/99-049.pdf OpenGIS SQL Types (pdf)] implementation for Postgresql
    2134 * [http://geos.refractions.net/ GEOS], low-level C++ port of [http://www.jump-project.org/project.php?PID=JTS Jave Topology Suite], used by PostGIS
     
    142155# make install
    143156}}}
    144 == PROJ ==
    145  * Latest PROJ version is 4.5.0
     157== PROJ.4 ==
     158 * Latest PROJ.4 version is 4.5.0
    146159{{{
    147160$ ./configure
     
    149162# make install
    150163}}}
     164 * Should install datum shift files (for funky local coordinate systems) -- but I need to personally figure out how to do that first.
    151165== PostGIS ==
    152166 * Latest PostGIS version is 1.2.1
Back to Top