I recently (with my install of 1.1.5) have run into something that is <br>puzzling me about the overlaps operator. I have two tables that I am <br>comparing the geometry objects using the following SQL:<br><br>select overlaps(
a.wkb_geometry,b.wkb_geometry),a.primaryKey,b.primaryKey <br>from az_cr9 a,az_kz b where a.primaryKey=2203 and b.primaryKey=293546 and <br>a.wkb_geometry&&b.wkb_geometry<br><br>This returns one row:<br><br>f;2203;293546
<br><br>My question is how does the overlaps operator return TRUE and the overlaps <br>function return FALSE. In fact the two geometries in question do not close <br>to each other. Is this operator broken?<br><br>This query returns no rows as expected:
<br><br>select <br>overlaps(a.wkb_geometry,b.wkb_geometry),a.cr_id,b.ogc_fid,b.blockgroupid,b.blockid <br>from az_carrierroute9 a,az_kz_calculated_test b where a.ogc_fid=2203 and <br>b.ogc_fid=293546 and overlaps(a.wkb_geometry
,b.wkb_geometry)<br><br><br>Any help on this?<br><br>Rob<br>