Changes between Version 10 and Version 11 of GeoDjangoDatabaseAPI
- Timestamp:
- Dec 28, 2007, 11:25:40 PM (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
GeoDjangoDatabaseAPI
v10 v11 7 7 {{{ 8 8 #!python 9 >>> qs = Zip.objects.filter(<field>__<lookup 9 >>> qs = Zip.objects.filter(<field>__<lookup_type>=<parameter>) 10 10 >>> qs = Zip.objects.exclude(...) 11 11 }}} … … 200 200 * `overlaps` 201 201 * Oracle equivalent `SDO_OVERLAPS(geometry1, geometry2)` 202 * `relate` 203 * 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. 205 * ''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. 202 206 * `touches` 203 207 * Oracle equivalent `SDO_TOUCH(geometry1, geometry2)` 204 208 * `within` 205 * Oracle equivalent `SDO_INSIDE(geometry1, geometry2)` 209 * Oracle equivalent `SDO_INSIDE(geometry1, geometry2)`` 206 210 207 211 == MySQL ==