<div dir="ltr">Hi,<div><br></div><div style>You also have to perform the actual intersection if you want to clip your data, not only the intersect test:</div><div style><br></div><div style><span style="font-family:arial,sans-serif;font-size:13px">SELECT area, st_intersection(a.the_geom, b.geom) as geom</span><br style="font-family:arial,sans-serif;font-size:13px">
<span style="font-family:arial,sans-serif;font-size:13px">    FROM oc a, co b</span><br style="font-family:arial,sans-serif;font-size:13px"><span style="font-family:arial,sans-serif;font-size:13px">    WHERE st_intersects(a.the_geom, b.the_geom)</span><br>
</div><div style><span style="font-family:arial,sans-serif;font-size:13px"><br></span></div><div style><span style="font-family:arial,sans-serif;font-size:13px">Nicolas</span></div></div><div class="gmail_extra"><br><br><div class="gmail_quote">
On 14 January 2013 18:01, Marta Debolini <span dir="ltr"><<a href="mailto:martadebolini@gmail.com" target="_blank">martadebolini@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Hi, <br>I am a new postgis user, so sorry if my request seems trivial for someone.<br><br>I have to clip a polygon with another polygon file. I was used to do this operation with the simple comand "clip" in GRASS or QGIS. <br>


How can I do the same operation in postgis? I tried with sy_intersect, but it takes also the polygons outside my area, which simply intersect the border.<br>The request I wrote is:<br><br><br>CREATE TABLE w_md.x<br>AS (SELECT area, a.the_geom<br>


    FROM oc a, co b<br>    WHERE st_intersects(a.the_geom, b.the_geom));<br>    <br>    ALTER TABLE w_md.x_1999 ADD column ggid1 serial;<br>     ALTER TABLE w_mdi.x_1999 ADD PRIMARY KEY (ggID1);<br><br>Thank you for your help,<br>


<br>Marta<br>
<br>_______________________________________________<br>
postgis-users mailing list<br>
<a href="mailto:postgis-users@lists.osgeo.org">postgis-users@lists.osgeo.org</a><br>
<a href="http://lists.osgeo.org/cgi-bin/mailman/listinfo/postgis-users" target="_blank">http://lists.osgeo.org/cgi-bin/mailman/listinfo/postgis-users</a><br>
<br></blockquote></div><br></div>