Maybe you want to try it this way:<br><br>SELECT gid,geom FROM mytable <br>WHERE st_x(geom) >=45.19 AND st_x(geom) <=45.21<br>AND st_y(geom) >=23.29 AND st_y(geom) <=23.31 <br><br>It finds all points in the given bounding box. But you cannot specify exactly one point, because there could be more than one at this point.<br>
<br>Hope that helps although.<br><br>Cheers.<br><br><br>2011/12/27 Alessandro Candini <span dir="ltr"><<a href="mailto:candini@meeo.it">candini@meeo.it</a>></span><br><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Hi list.<br>
I'm new to Postgis world and I have a probable dumb question:<br>
I have a shape file inserted into a postgis database through shp2pgsql utility and I would like to retrieve a feature ID giving as input a pair of lat/lon coordinates.<br>
Something like "SELECT gid from mytable WHERE point_is_into(45.2, 23.3);"<br>
How can I achieve this?<br>
<br>
Thanks in advance.<br>
<br>
-- <br>
Alessandro Candini<br>
MEEO S.r.l.<br>
Via Saragat 9<br>
I-44122 Ferrara, Italy<br>
Tel: <a href="tel:%2B39%200532%201861501" value="+3905321861501" target="_blank">+39 0532 1861501</a><br>
Fax: <a href="tel:%2B39%200532%201861637" value="+3905321861637" target="_blank">+39 0532 1861637</a><br>
<a href="http://www.meeo.it" target="_blank">http://www.meeo.it</a><br>
<br>
==============================<u></u>==========<br>
"ATTENZIONE:le informazioni contenute in questo messaggio sono<br>
da considerarsi confidenziali ed il loro utilizzo è riservato unicamente<br>
al destinatario sopra indicato. Chi dovesse ricevere questo messaggio<br>
per errore è tenuto ad informare il mittente ed a rimuoverlo<br>
definitivamente da ogni supporto elettronico o cartaceo."<br>
<br>
"WARNING:This message contains confidential and/or proprietary<br>
information which may be subject to privilege or immunity and which<br>
is intended for use of its addressee only. Should you receive this<br>
message in error, you are kindly requested to inform the sender and<br>
to definitively remove it from any paper or electronic format."<br>
<br>
______________________________<u></u>_________________<br>
postgis-users mailing list<br>
<a href="mailto:postgis-users@postgis.refractions.net" target="_blank">postgis-users@postgis.<u></u>refractions.net</a><br>
<a href="http://postgis.refractions.net/mailman/listinfo/postgis-users" target="_blank">http://postgis.refractions.<u></u>net/mailman/listinfo/postgis-<u></u>users</a><br>
</blockquote></div><br>