It may not be required, if ST_Intersects() does what you need, but you can also 
use ST_Relate() - whish will return polygons matching any spatial relationship 
except disjoint - functionally equivalaent to "not ST_Disjoint()"
Cheers,
  Brent Wood

      From: Hugues François <hugues.franc...@irstea.fr>
 To: Joseph Spenner <joseph85...@yahoo.com>; PostGIS Users Discussion 
<postgis-users@lists.osgeo.org> 
 Sent: Wednesday, November 19, 2014 4:52 AM
 Subject: Re: [postgis-users] Returning polygons if any of a polygon input 
points lie in the polygons
   
<!--#yiv5627516190 _filtered #yiv5627516190 {font-family:Helvetica;panose-1:2 
11 6 4 2 2 2 2 2 4;} _filtered #yiv5627516190 {font-family:Helvetica;panose-1:2 
11 6 4 2 2 2 2 2 4;} _filtered #yiv5627516190 {font-family:Calibri;panose-1:2 
15 5 2 2 2 4 3 2 4;} _filtered #yiv5627516190 {font-family:Tahoma;panose-1:2 11 
6 4 3 5 4 4 2 4;} _filtered #yiv5627516190 {font-family:Garamond;panose-1:2 2 4 
4 3 3 1 1 8 3;}#yiv5627516190 #yiv5627516190 p.yiv5627516190MsoNormal, 
#yiv5627516190 li.yiv5627516190MsoNormal, #yiv5627516190 
div.yiv5627516190MsoNormal 
{margin:0cm;margin-bottom:.0001pt;font-size:12.0pt;font-family:"Times New 
Roman", "serif";}#yiv5627516190 a:link, #yiv5627516190 
span.yiv5627516190MsoHyperlink 
{color:blue;text-decoration:underline;}#yiv5627516190 a:visited, #yiv5627516190 
span.yiv5627516190MsoHyperlinkFollowed 
{color:purple;text-decoration:underline;}#yiv5627516190 
p.yiv5627516190MsoAcetate, #yiv5627516190 li.yiv5627516190MsoAcetate, 
#yiv5627516190 div.yiv5627516190MsoAcetate 
{margin:0cm;margin-bottom:.0001pt;font-size:8.0pt;font-family:"Tahoma", 
"sans-serif";}#yiv5627516190 span.yiv5627516190EmailStyle17 
{font-family:"Calibri", "sans-serif";color:#1F497D;}#yiv5627516190 
span.yiv5627516190TextedebullesCar {font-family:"Tahoma", 
"sans-serif";}#yiv5627516190 .yiv5627516190MsoChpDefault {font-size:10.0pt;} 
_filtered #yiv5627516190 {margin:70.85pt 70.85pt 70.85pt 
70.85pt;}#yiv5627516190 div.yiv5627516190WordSection1 {}-->Hi,  I think 
ST_Intersects will meet your needs :  SELECT  zone,gid,state,name,ST_Asgeojson( 
geom ) FROM polys WHERE ST_Intersects(ST_GeomFromText('POLYGON((-109 42,-108 
42, -108 43; -109 43, -109 42))', 4269), geom)  Hugues.    Hugues 
FrançoisTourisme et systèmes d’informationIrstea – DTM  +33 (0)4.76.76.27.44+33 
(0)6.77.66.21.31  De : postgis-users-boun...@lists.osgeo.org 
[mailto:postgis-users-boun...@lists.osgeo.org] De la part de Joseph Spenner
Envoyé : mardi 18 novembre 2014 16:44
À : PostGIS Users Discussion
Objet : Re: [postgis-users] Returning polygons if any of a polygon input points 
lie in the polygons  Something I did notice though-- it seems that if the input 
polygon completely surrounds a polygon stored in my database, it is not 
included in the result.  I read something about this here: 
http://postgis.net/docs/ST_Overlaps.html    "Returns TRUE if the Geometries 
"spatially overlap". By that we mean they intersect, but one does not 
completely contain another."  I do need the polygons which are completely 
contained as well.  Can this be done?  Thanks again for the help.  I'm getting 
there!  Regards,Joseph Spenner          From: Joseph Spenner 
<joseph85...@yahoo.com>
To: Rémi Cura <remi.c...@gmail.com>; PostGIS Users Discussion 
<postgis-users@lists.osgeo.org> 
Sent: Tuesday, November 18, 2014 8:35 AM
Subject: Re: [postgis-users] Returning polygons if any of a polygon input 
points lie in the polygons  Rémi:  Yes, that worked perfectly.  Thanks!  My 
input poly will be stored in another database (maybe just another table).   It 
would be nice to perform the query all on 1 line (get the poly and use it for 
the query), but I can query the first table first to get the input poly, then 
use that for the 2nd query without too much difficulty.
Thanks again for the responses!  Regards,Joseph Spenner   If life gives you 
lemons, keep them-- because hey.. free lemons.   
"~heart~ Sticker"  fixer:  http://microflush.org/stuff/stickers/heartFix.html   
      From: Rémi Cura <remi.c...@gmail.com>
To: PostGIS Users Discussion <postgis-users@lists.osgeo.org> 
Cc: Joseph Spenner <joseph85...@yahoo.com> 
Sent: Tuesday, November 18, 2014 4:20 AM
Subject: Re: [postgis-users] Returning polygons if any of a polygon input 
points lie in the polygons  Something like this?

  SELECT  zone,gid,state,name,ST_Asgeojson( geom ) 

FROM polys WHERE ST_Overlaps(ST_GeomFromText('POLYGON((-109 42,-108 42, -108 
43; -109 43, -109 42))', 4269), geom)=TRUE;  Cheers,
Rémi-C  2014-11-18 9:00 GMT+01:00 Hugues François <hugues.franc...@irstea.fr>:

  Hello, Maybe I don’t understand your problem very well but I think your query 
for points should work with a polygon using ST_GeomFromText 
(http://www.postgis.org/docs/ST_GeomFromText.html) for your input polygon or a 
subquery if it stored into your DB. Hugues. De : 
postgis-users-boun...@lists.osgeo.org 
[mailto:postgis-users-boun...@lists.osgeo.org] De la part de Joseph Spenner
Envoyé : lundi 17 novembre 2014 22:35
À : PostGIS Users Discussion
Objet : [postgis-users] Returning polygons if any of a polygon input points lie 
in the polygons Hello, I'm trying to perform a query which will return any 
polygons which have any points in common with an input polygon. So, if I have 
Polygon A.In my database, I have several other polygons stored. I want to 
submit a query with Polygon A as the input, which will return all of the 
polygons in my database which have any points in common with Polygon A. Can 
this be done?
I found this:http://postgis.net/docs/ST_Overlaps.html But from what I can tell, 
it only returns a T or F.   I need to fetch the actual polygons if T. I'm 
currently able to query with points as input: select 
zone,gid,state,name,ST_Asgeojson( geom ) from polys where 
ST_Intersects(ST_PointFromText('POINT(-109 42)', 4269), geom);  But now I have 
a need to use polygons as input.  Any help would be great.  Thanks! 
Regards,Joseph Spenner  
_______________________________________________
postgis-users mailing list
postgis-users@lists.osgeo.org
http://lists.osgeo.org/cgi-bin/mailman/listinfo/postgis-users      
_______________________________________________
postgis-users mailing list
postgis-users@lists.osgeo.org
http://lists.osgeo.org/cgi-bin/mailman/listinfo/postgis-users

  
_______________________________________________
postgis-users mailing list
postgis-users@lists.osgeo.org
http://lists.osgeo.org/cgi-bin/mailman/listinfo/postgis-users

Reply via email to