Changes between Version 6 and Version 7 of GeoDjangoDatabaseAPI


Ignore:
Timestamp:
Oct 23, 2007, 9:04:50 AM (17 years ago)
Author:
jbronn
Comment:

clarified the examples

Legend:

Unmodified
Added
Removed
Modified
  • GeoDjangoDatabaseAPI

    v6 v7  
    4646}}}
    4747
    48 Thus, geometry parameters may be passed in using the `GEOSGeometry` object, WKT (Well Known Text) or HEXEWKB (PostGIS specific, essentially a WKB geometry in hexadecimal).  Essentially, if the input is not a `GEOSGeometry` object, it will try interpret it as WKT or HEXEWKB. For example:
     48Thus, geometry parameters may be passed in using the `GEOSGeometry` object, WKT (Well Known Text) or HEXEWKB (PostGIS specific, essentially a WKB geometry in hexadecimal).  Essentially, if the input is not a `GEOSGeometry` object, it will attempt to instantiate a `GEOSGeometry` object from the input.
     49
     50Below are some examples and references for GEOS Geometry objects, WKT, and HEXEWKB.
    4951 * GEOS Geometry:
    5052{{{
Back to Top