mirror of
https://github.com/django/django.git
synced 2025-04-25 09:44:36 +00:00
Fixed typos in docs/ref/contrib/gis/geoquerysets.txt
This commit is contained in:
parent
d084176cc1
commit
64ed8cdc9f
@ -279,7 +279,7 @@ Example::
|
|||||||
|
|
||||||
# A tuple lookup parameter is used to specify the geometry and
|
# A tuple lookup parameter is used to specify the geometry and
|
||||||
# the intersection pattern (the pattern here is for 'contains').
|
# the intersection pattern (the pattern here is for 'contains').
|
||||||
Zipcode.objects.filter(poly__relate(geom, 'T*T***FF*'))
|
Zipcode.objects.filter(poly__relate=(geom, 'T*T***FF*'))
|
||||||
|
|
||||||
PostGIS SQL equivalent::
|
PostGIS SQL equivalent::
|
||||||
|
|
||||||
@ -301,7 +301,7 @@ strings are case-insensitive.
|
|||||||
|
|
||||||
Example::
|
Example::
|
||||||
|
|
||||||
Zipcode.objects.filter(poly__relate(geom, 'anyinteract'))
|
Zipcode.objects.filter(poly__relate=(geom, 'anyinteract'))
|
||||||
|
|
||||||
Oracle SQL equivalent::
|
Oracle SQL equivalent::
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user