Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fixed #17423 -- Fixed three typos in GeoDjango docs. Thanks, DavidEklund
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17213 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
adrianholovaty committed Dec 17, 2011
1 parent 6cca104 commit a848ef4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
4 changes: 2 additions & 2 deletions docs/ref/contrib/gis/model-api.txt
Expand Up @@ -199,8 +199,8 @@ details.
Geography Type
^^^^^^^^^^^^^^

In PostGIS 1.5, the geography type was introduced -- it provides
provides native support for spatial features represented with geographic
In PostGIS 1.5, the geography type was introduced -- it provides
native support for spatial features represented with geographic
coordinates (e.g., WGS84 longitude/latitude). [#fngeography]_
Unlike the plane used by a geometry type, the geography type uses a spherical
representation of its data. Distance and measurement operations
Expand Down
5 changes: 2 additions & 3 deletions docs/ref/contrib/gis/tutorial.txt
Expand Up @@ -650,7 +650,7 @@ a coordinate system specific to south Texas **only** and in units of
>>> from django.contrib.gis.geos import *
>>> pnt = Point(954158.1, 4215137.1, srid=32140)

Note that ``pnt`` may also constructed with EWKT, an "extended" form of
Note that ``pnt`` may also be constructed with EWKT, an "extended" form of
WKT that includes the SRID::

>>> pnt = GEOSGeometry('SRID=32140;POINT(954158.1 4215137.1)')
Expand Down Expand Up @@ -771,8 +771,7 @@ First, there are some important requirements and limitations:

* :class:`~django.contrib.gis.admin.OSMGeoAdmin` requires that the
:ref:`spherical mercator projection be added <addgoogleprojection>`
to the to be added to the ``spatial_ref_sys`` table (PostGIS 1.3 and
below, only).
to the ``spatial_ref_sys`` table (PostGIS 1.3 and below, only).
* The PROJ.4 datum shifting files must be installed (see the
:ref:`PROJ.4 installation instructions <proj4>` for more details).

Expand Down

0 comments on commit a848ef4

Please sign in to comment.