GEOSGeometry.unary_union
New in Django 1.10.
Computes the union of all the elements of this geometry.
The result obeys the following contract:
- Unioning a set of
LineString
s has the effect of fully noding and dissolving the linework. - Unioning a set of
Polygon
s will always return aPolygon
orMultiPolygon
geometry (unlikeGEOSGeometry.union()
, which may return geometries of lower dimension if a topology collapse occurs).
Please login to continue.