diff options
| author | Tim Graham <timograham@gmail.com> | 2014-07-26 16:55:31 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2014-08-01 10:26:00 -0400 |
| commit | a9bdce7e5503a450c2c291fb2cb1e2097617ba75 (patch) | |
| tree | bd200ec7a07fde071cf8ff663ee71ce1f450a6ab /docs/ref/contrib/gis/tutorial.txt | |
| parent | 7ce4ef58c95fc17d4914e1962608aad79d7c46f1 (diff) | |
Fixed #23108 -- Dropped support for PostgreSQL 8.4 & PostGIS 1.3, 1.4.
Thanks Claude Paroz for the review.
Diffstat (limited to 'docs/ref/contrib/gis/tutorial.txt')
| -rw-r--r-- | docs/ref/contrib/gis/tutorial.txt | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/docs/ref/contrib/gis/tutorial.txt b/docs/ref/contrib/gis/tutorial.txt index 25f47af6af..a53cc100d9 100644 --- a/docs/ref/contrib/gis/tutorial.txt +++ b/docs/ref/contrib/gis/tutorial.txt @@ -784,13 +784,15 @@ available with the :class:`~django.contrib.gis.admin.GeoModelAdmin` First, there are some important requirements: -* :class:`~django.contrib.gis.admin.OSMGeoAdmin` requires that the - :ref:`spherical mercator projection be added <addgoogleprojection>` - to the ``spatial_ref_sys`` table (PostGIS 1.3 and below, only). +* :class:`~django.contrib.gis.admin.OSMGeoAdmin` requires that + :ref:`GDAL <ref-gdal>` is installed. If you are running GDAL 1.6 (uncommon) + you will also need to add the :ref:`spherical mercator projection + <addgoogleprojection>` to the ``spatial_ref_sys`` table. + * The PROJ.4 datum shifting files must be installed (see the :ref:`PROJ.4 installation instructions <proj4>` for more details). -If you meet these requirements, then just substitute the ``OSMGeoAdmin`` +If you meet this requirement, then just substitute the ``OSMGeoAdmin`` option class in your ``admin.py`` file:: admin.site.register(WorldBorder, admin.OSMGeoAdmin) |
