Hi Kevin,<br><br>Wow, some new concepts here. Now, I'm not in front of my computer, but I'll try these operations asap. I think that I've a couple of questions about them, but I'll wait.<br><br>Many thanks!<br>

<br>Jorge<br><br>
<br><br><div class="gmail_quote">On Fri, May 8, 2009 at 12:16 AM, Kevin Neufeld <span dir="ltr"><<a href="mailto:kneufeld@refractions.net">kneufeld@refractions.net</a>></span> wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">

Yeah, that's a good question.  You could try to break-down your ocean geometry into the raw linework, properly node the linework, and then rebuild your polygons.<br>
<br>
ie.<br>
-- Extract the linework<br>
CREATE TABLE water_poly_boundaries AS<br>
SELECT st_collect(st_boundary(the_geom)) AS the_geom<br>
FROM water_polys ;<br>
<br>
-- Node the linework<br>
CREATE TABLE water_boundaries_noded AS<br>
SELECT st_union(the_geom, st_startpoint(the_geom)) AS the_geom<br>
FROM water_poly_boundaries ;<br>
<br>
Then use buildarea or polygonize to rebuild the polygons.<br>
<br>
-- Kevin<br>
<br>
Jorge Arévalo wrote:<br>
...<div class="im"><br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Oh, and thanks again for your response to my original question. It helped me a lot... Maybe is it time to ask for new data, without errors? If not, how should I "clean" my data? I tried with ST_Buffer(geom, 0.0) (I read in this link <a href="http://www.bostongis.com/postgis_extent_expand_buffer_distance.snippet" target="_blank">http://www.bostongis.com/postgis_extent_expand_buffer_distance.snippet</a> that is useful to repair data with self-interesections), but doesn't seem to work for me...<br>


<br>
Regards<br>
Jorge<br>
<br>
</blockquote></div><div><div></div><div class="h5">
_______________________________________________<br>
postgis-users mailing list<br>
<a href="mailto:postgis-users@postgis.refractions.net" target="_blank">postgis-users@postgis.refractions.net</a><br>
<a href="http://postgis.refractions.net/mailman/listinfo/postgis-users" target="_blank">http://postgis.refractions.net/mailman/listinfo/postgis-users</a><br>
</div></div></blockquote></div><br>