thanks <span class="gmail_quote"><span class="gmail_sendername">Aleš,<br>tried but got the following  ERROR:  Operation on two geometries with different SRIDs<br>I hadn't set an SRID, so I changed 4326 to -1 and I didn't get a syntax error anymore but the query also didn't return any results. 
<br><br>Then this evening during a long drive back from the airport I had an idea and I was right for once. I'd made a stupid mistake in the records I had inserted into my table, I had got the lat and lng coordinated around the wrong way for my POINT. I corrected that and your modified query worked. My stupidity cost me over 4 hours, oh well, I'll put it down to experience.
<br><br>thanks again<br>dio<br></span><b class="gmail_sendername"><br><br></b></span><br><div><span class="gmail_quote">On 10/8/06, <b class="gmail_sendername">"Ing. Aleš Daněk"</b> <<a href="mailto:ales.danek@cad-programs.com">
ales.danek@cad-programs.com</a>> wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">Hello kulbinder dio<br><br>I think that problem in your SQL is missing SRID definition. Try this
<br>SQL which do you want:<br><br>select * from admin_obce where the_geom &&<br>geomfromewkt('SRID=4326;POLYGON((14.3175807572347<br>50.1188657131289,14.3177258253264 50.1188803817051,14.3178371331499<br>50.118892032579
,14.3179856640012 50.118907010321,14.3175807572347<br>50.1188657131289))');<br><br>Function GeomFromEWKT create geometry (in this case type polygon) with<br>4326 srid (WGS84). Than you can match extents of your geomatry and this
<br>one using && function.<br><br>aldama<br>_______________________________________________<br>postgis-users mailing list<br><a href="mailto:postgis-users@postgis.refractions.net">postgis-users@postgis.refractions.net
</a><br><a href="http://postgis.refractions.net/mailman/listinfo/postgis-users">http://postgis.refractions.net/mailman/listinfo/postgis-users</a><br></blockquote></div><br>