Ticket #17423: gis_docs_typos.diff

File gis_docs_typos.diff, 1.8 KB (added by David Eklund, 12 years ago)

Corrects 3 typos in GeoDjango documentation.

  • docs/ref/contrib/gis/tutorial.txt

     
    650650    >>> from django.contrib.gis.geos import *
    651651    >>> pnt = Point(954158.1, 4215137.1, srid=32140)
    652652
    653 Note that ``pnt`` may also constructed with EWKT, an "extended" form of
     653Note that ``pnt`` may also be constructed with EWKT, an "extended" form of
    654654WKT that includes the SRID::
    655655
    656656    >>> pnt = GEOSGeometry('SRID=32140;POINT(954158.1 4215137.1)')
     
    771771
    772772* :class:`~django.contrib.gis.admin.OSMGeoAdmin` requires that the
    773773  :ref:`spherical mercator projection be added <addgoogleprojection>`
    774   to the to be added to the ``spatial_ref_sys`` table (PostGIS 1.3 and
    775   below, only).
     774  to the ``spatial_ref_sys`` table (PostGIS 1.3 and below, only).
    776775* The PROJ.4 datum shifting files must be installed (see the
    777776  :ref:`PROJ.4 installation instructions <proj4>` for more details).
    778777
  • docs/ref/contrib/gis/model-api.txt

     
    199199Geography Type
    200200^^^^^^^^^^^^^^
    201201
    202 In PostGIS 1.5, the geography type was introduced -- it provides
    203 provides native support for spatial features represented with geographic
     202In PostGIS 1.5, the geography type was introduced -- it provides 
     203native support for spatial features represented with geographic
    204204coordinates (e.g., WGS84 longitude/latitude). [#fngeography]_
    205205Unlike the plane used by a geometry type, the geography type uses a spherical
    206206representation of its data.  Distance and measurement operations
Back to Top