Dissolve polygons

From GRASS-Wiki
Revision as of 21:57, 10 April 2013 by ⚠️Landa (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Q: How to dissolve vector polygons (or remove tile boundaries of adjacent maps)

A: Dissolving of areas is done with v.dissolve (v.extract -d). If tile boundaries of adjacent maps (e.g. CORINE Landcover SHAPE files) have to be removed, an extra step is required to first remove duplicated boundaries:

Remove duplicated tile boundaries:

    v.clean clc2000_patched out=clc2000_clean tool=snap,break,rmdupl thresh=.01

Dissolve:

    v.dissolve input=clc2000_clean output=clc2000_final