Changes between Version 12 and Version 13 of GeoDjangoDatabaseAPI


Ignore:
Timestamp:
Jan 18, 2008, 11:45:12 AM (17 years ago)
Author:
jbronn
Comment:

Added note about lack of support for geodetic distances.

Legend:

Unmodified
Added
Removed
Modified
  • GeoDjangoDatabaseAPI

    v12 v13  
    6666== Distance Lookups ==
    6767Distance lookups are supported on both PostGIS and Oracle.  Each distance lookup type takes a tuple parameter comprising (1) a geometry to base calculations from and (2) a number or `Distance` object containing the distance.  If a `Distance` object is used, it may be expressed in any units (the SQL generated will use units converted to those of the field); otherwise, numeric parameters will be assumed to be in the units of the field. 
     68
     69'''Note:''' The API currently only supports projected coordinate systems -- support for geodetic systems, such as WGS84 (the default projection for `GeometryField`), is in the works. ''See'' ticket #6414.
    6870
    6971The following distance lookups are available:
Back to Top