Kaydet (Commit) 2f43229c authored tarafından Moayad Mardini's avatar Moayad Mardini Kaydeden (comit) Tim Graham

Fixed #22655 -- Fixed GeoQuerySet doc about strictly_below

The paragraph was a copy of strictly_above.
üst 1a69d276
...@@ -492,16 +492,16 @@ strictly_below ...@@ -492,16 +492,16 @@ strictly_below
*Availability*: PostGIS *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. geometry's bounding box.
Example:: Example::
Zipcode.objects.filter(poly__strictly_above=geom) Zipcode.objects.filter(poly__strictly_below=geom)
PostGIS equivalent:: PostGIS equivalent::
SELECT ... WHERE poly |>> geom SELECT ... WHERE poly <<| geom
.. _distance-lookups: .. _distance-lookups:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment