Open Source GIS – Aggregating Detached Polygons using Open Source Software

aggregationgeneralizationopen-source-gissoftware-recommendations

Is there any open-source library to aggregate detached polygons?

I know that there is a tool in ArcInfo, but it is commercial.

Best Answer

if you have PostgreSQL, there is a sql function which have been writed from Dr. Horst Duester. he has two sql code, one is for Orthogonal Aggregation of Buildings and another is for non Orthogonal Aggregation... you can find sql codes here.

it determines edge of objects very good way with defination of threshold..and its query is so easy to use:

Query:

select aggregatepolygons(wkb_geometry, 50, true) from buildings group by art;

Examples:

Orthogonal Aggregation of Buildings

figure 1

Non Orthogonal Aggregation of Natural Objects

enter image description here

i hope it helps you...