<div dir="ltr">Hello all,<div><br></div><div>I have to tables in postgis. table one has a set of adjacent polygons that covers all my area o interest, while table to have a few polygons across the same area.</div><div><br></div><div>Some boundaries of table 2 should snap to the table 1 polygons, but they don't.</div><div><br></div><div>I'm trying to use st_snap to correct this, but I'm not being able to do it. There are vertices that "refuse" to change while other (just a few do). I'm already using a very big tolerance.</div><div><br></div><div> Therefore I need your help to see if my query looks correct or not.</div><div><br></div><div><br></div><div><div>WITH snap_grid as</div><div>(</div><div>SELECT</div><div>    St_Collect(f.geom) as geom</div><div>FROM</div><div>    table_1 as f</div><div>)</div><div>SELECT </div><div>    r.gid, st_snap(r.geom,q.geom,10) as geom</div><div>FROM </div><div>    table2 as r,</div><div>    snap_grid as q</div><div>WHERE r.gid = 53</div></div><div><br></div><div>I already tried dumping all point form the table 1 polygons, but the result is "similar".</div><div><br></div><div>Thanks in advance,</div><div><br></div><div>Alexandre Neto</div></div>