Changes between Version 45 and Version 46 of GeoDjango
- Timestamp:
- Mar 25, 2007, 3:32:19 PM (18 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
GeoDjango
v45 v46 2 2 The [http://code.djangoproject.com/browser/django/branches/gis gis] branch intends to add a contrib app allowing for Geographic-enabled fields and queries. 3 3 * [GeoDjango#Background Background] 4 * [GeoDjango#WhatsGIS What's GIS?] 5 * [GeoDjango#UsefulCode Useful Code] 6 * [GeoDjango#UsefulData Useful Data] 4 7 * [GeoDjango#FAQ FAQ] 5 8 * [GeoDjango#Implementation Implementation] 6 9 * [GeoDjango#Example Example] 7 10 * [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] 8 16 * [GeoDjango#ModelAPI Model API] 17 * [GeoDjango#Fields Fields] 18 * [GeoDjango#FieldKeywords Field Keywords] 19 * [GeoDjango#CreatingandSavingModelswithGeometryFields Creating and Saving Models with Geometry Fields] 9 20 * [GeoDjango#DatabaseAPI Database API] 21 * [GeoDjango#PostGISOperatorFieldLookupTypes PostGIS Operator Field Lookup Types] 22 * [GeoDjango#PostGISGEOSFunctionFieldLookupTypes PostGIS GEOS Function Field Lookup Types] 10 23 11 24 = Background = … … 17 30 * [http://en.wikipedia.org/wiki/Geodesy geodesy] the field of science for this stuff. 18 31 19 == Useful code ==32 == Useful Code == 20 33 * [http://postgis.refractions.net/ PostGIS], the [http://www.opengis.org/docs/99-049.pdf OpenGIS SQL Types (pdf)] implementation for Postgresql 21 34 * [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 … … 142 155 # make install 143 156 }}} 144 == PROJ ==145 * Latest PROJ version is 4.5.0157 == PROJ.4 == 158 * Latest PROJ.4 version is 4.5.0 146 159 {{{ 147 160 $ ./configure … … 149 162 # make install 150 163 }}} 164 * Should install datum shift files (for funky local coordinate systems) -- but I need to personally figure out how to do that first. 151 165 == PostGIS == 152 166 * Latest PostGIS version is 1.2.1