summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMoayad Mardini <moayad.m@gmail.com>2014-05-19 16:02:42 +0300
committerTim Graham <timograham@gmail.com>2014-05-19 09:50:23 -0400
commit2f43229c2f044207f193e753baf1bd3fb6164da4 (patch)
tree8a7dc2f6eb68b76952a6cf7c57c6566aaaf72da1
parent1a69d276bdc3009e42812071d06ba8c9dccc2104 (diff)
Fixed #22655 -- Fixed GeoQuerySet doc about strictly_below
The paragraph was a copy of strictly_above.
-rw-r--r--docs/ref/contrib/gis/geoquerysets.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/ref/contrib/gis/geoquerysets.txt b/docs/ref/contrib/gis/geoquerysets.txt
index 0b1fee3bfe..957a0497af 100644
--- a/docs/ref/contrib/gis/geoquerysets.txt
+++ b/docs/ref/contrib/gis/geoquerysets.txt
@@ -492,16 +492,16 @@ strictly_below
*Availability*: PostGIS
-Tests if the geometry field's bounding box is strictly above the lookup
+Tests if the geometry field's bounding box is strictly below the lookup
geometry's bounding box.
Example::
- Zipcode.objects.filter(poly__strictly_above=geom)
+ Zipcode.objects.filter(poly__strictly_below=geom)
PostGIS equivalent::
- SELECT ... WHERE poly |>> geom
+ SELECT ... WHERE poly <<| geom
.. _distance-lookups: