Changes between Version 11 and Version 12 of GeoDjangoDatabaseAPI


Ignore:
Timestamp:
Dec 28, 2007, 11:44:43 PM (16 years ago)
Author:
jbronn
Comment:

typos

Legend:

Unmodified
Added
Removed
Modified
  • GeoDjangoDatabaseAPI

    v11 v12  
    202202 * `relate`
    203203   * Oracle equivalent `SDO_RELATE(geometry1, geometry2, <param>)`
    204    * Tuple parameter `(geom, mask)`, where the mask component is at least one of the nine-intersection patterns: `TOUCH`, `OVERLAPBDYDISJOINT`, `OVERLAPBDYINTERSECT`, `EQUAL`, `INSIDE`, `COVEREDBY`, `CONTAINS`, `COVERS`, `ANYINTERACT`, `ON`. Multiple masks may be combined with the logical Boolean operator OR, for example, '`inside+touch`'.  The mask relations strings are case-insensitive.
     204   * Tuple parameter `(geom, mask)`, where the mask component is at least one of the nine-intersection patterns: `TOUCH`, `OVERLAPBDYDISJOINT`, `OVERLAPBDYINTERSECT`, `EQUAL`, `INSIDE`, `COVEREDBY`, `CONTAINS`, `COVERS`, `ANYINTERACT`, `ON`. Multiple masks may be combined with the logical Boolean operator OR, for example, '`inside+touch`'.  The mask relation strings are case-insensitive.
    205205     * ''See'' [http://download.oracle.com/docs/cd/B19306_01/appdev.102/b14255/sdo_operat.htm#sthref845 Oracle Spatial User's Guide & Manual] at Ch. 11.
    206206 * `touches`
    207207   * Oracle equivalent `SDO_TOUCH(geometry1, geometry2)`
    208208 * `within`
    209    * Oracle equivalent `SDO_INSIDE(geometry1, geometry2)``
     209   * Oracle equivalent `SDO_INSIDE(geometry1, geometry2)`
    210210
    211211== MySQL ==
Back to Top