BUG #5889: "Intersects" for polygons broken

Lists: pgsql-bugs
From: "Konrad Garus" <konrad(dot)garus(at)gmail(dot)com>
To: pgsql-bugs(at)postgresql(dot)org
Subject: BUG #5889: "Intersects" for polygons broken
Date: 2011-02-16 10:58:28
Message-ID: 201102161058.p1GAwS5V009535@wwwmaster.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-bugs


The following bug has been logged online:

Bug reference: 5889
Logged by: Konrad Garus
Email address: konrad(dot)garus(at)gmail(dot)com
PostgreSQL version: 8.4
Operating system: Linux
Description: "Intersects" for polygons broken
Details:

&& operator seems to be broken for polygons whose bounding boxes intersect:

select polygon'((0,0), (1,2), (0,2))' && polygon'((0.5, 0), (1,0), (1,1))';
?column?
----------
t
(1 row)

It reportedly is different in 9.0
(http://stackoverflow.com/q/5015233/277683)

Docs could do better job explaining what types each of the geometry operator
supports, and whether intersecting polygons support nonconvex polygons as
well, or only uses bounding box as criteria.


From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: "Konrad Garus" <konrad(dot)garus(at)gmail(dot)com>
Cc: pgsql-bugs(at)postgresql(dot)org
Subject: Re: BUG #5889: "Intersects" for polygons broken
Date: 2011-02-16 15:31:58
Message-ID: 25122.1297870318@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-bugs

"Konrad Garus" <konrad(dot)garus(at)gmail(dot)com> writes:
> && operator seems to be broken for polygons whose bounding boxes intersect:

> select polygon'((0,0), (1,2), (0,2))' && polygon'((0.5, 0), (1,0), (1,1))';
> ?column?
> ----------
> t
> (1 row)

This is fixed as of 9.0; see the release notes at
http://www.postgresql.org/docs/9.0/static/release-9-0.html
which say

Correct calculations of "overlaps" and "contains" operations for polygons (Teodor Sigaev)

The polygon && (overlaps) operator formerly just checked to see
if the two polygons' bounding boxes overlapped. It now does a
more correct check. The polygon @> and <@ (contains/contained
by) operators formerly checked to see if one polygon's vertexes
were all contained in the other; this can wrongly report "true"
for some non-convex polygons. Now they check that all line
segments of one polygon are contained in the other.

regards, tom lane


From: Konrad Garus <konrad(dot)garus(at)gmail(dot)com>
To: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
Cc: pgsql-bugs(at)postgresql(dot)org
Subject: Re: BUG #5889: "Intersects" for polygons broken
Date: 2011-02-16 15:33:54
Message-ID: AANLkTinUcLmpNGM4gBdyX=1BrQDRLEghh09OEUwa0h0+@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-bugs

2011/2/16 Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>:
> "Konrad Garus" <konrad(dot)garus(at)gmail(dot)com> writes:
>> && operator seems to be broken for polygons whose bounding boxes intersect:
>
>> select polygon'((0,0), (1,2), (0,2))' && polygon'((0.5, 0), (1,0), (1,1))';
>>  ?column?
>> ----------
>>  t
>> (1 row)
>
> This is fixed as of 9.0; see the release notes at
> http://www.postgresql.org/docs/9.0/static/release-9-0.html
> which say
>
>        Correct calculations of "overlaps" and "contains" operations for polygons (Teodor Sigaev)
>
>        The polygon && (overlaps) operator formerly just checked to see
>        if the two polygons' bounding boxes overlapped. It now does a
>        more correct check. The polygon @> and <@ (contains/contained
>        by) operators formerly checked to see if one polygon's vertexes
>        were all contained in the other; this can wrongly report "true"
>        for some non-convex polygons. Now they check that all line
>        segments of one polygon are contained in the other.

Thank you. How about the point of more informative docs that would
explain supported types, automatic conversions and all such caveats
(also for 8.3 and 8.4)?

--
Konrad Garus


From: Robert Haas <robertmhaas(at)gmail(dot)com>
To: Konrad Garus <konrad(dot)garus(at)gmail(dot)com>
Cc: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>, pgsql-bugs(at)postgresql(dot)org
Subject: Re: BUG #5889: "Intersects" for polygons broken
Date: 2011-03-08 19:41:03
Message-ID: AANLkTiky2PnaR7pkP0mAoO=sAaGmu59LcORur6D6x5mq@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-bugs

On Wed, Feb 16, 2011 at 10:33 AM, Konrad Garus <konrad(dot)garus(at)gmail(dot)com> wrote:
> 2011/2/16 Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>:
>> "Konrad Garus" <konrad(dot)garus(at)gmail(dot)com> writes:
>>> && operator seems to be broken for polygons whose bounding boxes intersect:
>>
>>> select polygon'((0,0), (1,2), (0,2))' && polygon'((0.5, 0), (1,0), (1,1))';
>>>  ?column?
>>> ----------
>>>  t
>>> (1 row)
>>
>> This is fixed as of 9.0; see the release notes at
>> http://www.postgresql.org/docs/9.0/static/release-9-0.html
>> which say
>>
>>        Correct calculations of "overlaps" and "contains" operations for polygons (Teodor Sigaev)
>>
>>        The polygon && (overlaps) operator formerly just checked to see
>>        if the two polygons' bounding boxes overlapped. It now does a
>>        more correct check. The polygon @> and <@ (contains/contained
>>        by) operators formerly checked to see if one polygon's vertexes
>>        were all contained in the other; this can wrongly report "true"
>>        for some non-convex polygons. Now they check that all line
>>        segments of one polygon are contained in the other.
>
> Thank you. How about the point of more informative docs that would
> explain supported types, automatic conversions and all such caveats
> (also for 8.3 and 8.4)?

I think a lot of these things are already documented. Aren't they?

--
Robert Haas
EnterpriseDB: http://www.enterprisedb.com
The Enterprise PostgreSQL Company


From: Konrad Garus <konrad(dot)garus(at)gmail(dot)com>
To: Robert Haas <robertmhaas(at)gmail(dot)com>
Cc: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>, pgsql-bugs(at)postgresql(dot)org
Subject: Re: BUG #5889: "Intersects" for polygons broken
Date: 2011-03-08 20:20:31
Message-ID: AANLkTikGcCwHmM7RQZQ-gcKEOro=auABhfQXA5QAgah+@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-bugs

http://www.postgresql.org/docs/current/static/functions-geometry.html

I wish it explained what arguments each of the operators accepts, and
whether any automatic conversions take place (like polygon to box in
that 8.3 issue).

What happens when I call ?# or ?- on a polygon and point? Two points? Open path?

Some of these are obvious, but others not so much.

2011/3/8 Robert Haas <robertmhaas(at)gmail(dot)com>:
> On Wed, Feb 16, 2011 at 10:33 AM, Konrad Garus <konrad(dot)garus(at)gmail(dot)com> wrote:
>> 2011/2/16 Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>:
>>> "Konrad Garus" <konrad(dot)garus(at)gmail(dot)com> writes:
>>>> && operator seems to be broken for polygons whose bounding boxes intersect:
>>>
>>>> select polygon'((0,0), (1,2), (0,2))' && polygon'((0.5, 0), (1,0), (1,1))';
>>>>  ?column?
>>>> ----------
>>>>  t
>>>> (1 row)
>>>
>>> This is fixed as of 9.0; see the release notes at
>>> http://www.postgresql.org/docs/9.0/static/release-9-0.html
>>> which say
>>>
>>>        Correct calculations of "overlaps" and "contains" operations for polygons (Teodor Sigaev)
>>>
>>>        The polygon && (overlaps) operator formerly just checked to see
>>>        if the two polygons' bounding boxes overlapped. It now does a
>>>        more correct check. The polygon @> and <@ (contains/contained
>>>        by) operators formerly checked to see if one polygon's vertexes
>>>        were all contained in the other; this can wrongly report "true"
>>>        for some non-convex polygons. Now they check that all line
>>>        segments of one polygon are contained in the other.
>>
>> Thank you. How about the point of more informative docs that would
>> explain supported types, automatic conversions and all such caveats
>> (also for 8.3 and 8.4)?
>
> I think a lot of these things are already documented.  Aren't they?
>
> --
> Robert Haas
> EnterpriseDB: http://www.enterprisedb.com
> The Enterprise PostgreSQL Company
>

--
Konrad Garus


From: Robert Haas <robertmhaas(at)gmail(dot)com>
To: Konrad Garus <konrad(dot)garus(at)gmail(dot)com>
Cc: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>, pgsql-bugs(at)postgresql(dot)org
Subject: Re: BUG #5889: "Intersects" for polygons broken
Date: 2011-03-09 20:55:43
Message-ID: AANLkTinwz9v6diR2NaHSqNA8tJSS94NrNyYTP-Rp4soZ@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-bugs

On Tue, Mar 8, 2011 at 3:20 PM, Konrad Garus <konrad(dot)garus(at)gmail(dot)com> wrote:
> http://www.postgresql.org/docs/current/static/functions-geometry.html
>
> I wish it explained what arguments each of the operators accepts, and
> whether any automatic conversions take place (like polygon to box in
> that 8.3 issue).
>
> What happens when I call ?# or ?- on a polygon and point? Two points? Open path?
>
> Some of these are obvious, but others not so much.

Hmm, yeah. That looks like it could be improved. It's certainly not
obvious to me what box * point means, for example, even though the
description says scaling/rotation.

--
Robert Haas
EnterpriseDB: http://www.enterprisedb.com
The Enterprise PostgreSQL Company


From: Bruce Momjian <bruce(at)momjian(dot)us>
To: Robert Haas <robertmhaas(at)gmail(dot)com>
Cc: Konrad Garus <konrad(dot)garus(at)gmail(dot)com>, Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>, pgsql-bugs(at)postgresql(dot)org
Subject: Re: BUG #5889: "Intersects" for polygons broken
Date: 2011-03-11 15:20:37
Message-ID: 201103111520.p2BFKbO21332@momjian.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-bugs

Robert Haas wrote:
> On Tue, Mar 8, 2011 at 3:20 PM, Konrad Garus <konrad(dot)garus(at)gmail(dot)com> wrote:
> > http://www.postgresql.org/docs/current/static/functions-geometry.html
> >
> > I wish it explained what arguments each of the operators accepts, and
> > whether any automatic conversions take place (like polygon to box in
> > that 8.3 issue).
> >
> > What happens when I call ?# or ?- on a polygon and point? Two points? Open path?
> >
> > Some of these are obvious, but others not so much.
>
> Hmm, yeah. That looks like it could be improved. It's certainly not
> obvious to me what box * point means, for example, even though the
> description says scaling/rotation.

Would someone who uses these features please post changes and I will see
that get into the docs? Thanks.

--
Bruce Momjian <bruce(at)momjian(dot)us> http://momjian.us
EnterpriseDB http://enterprisedb.com

+ It's impossible for everything to be true. +