Benefits of Multipart Features?

If your software doesn't support multi-part features you may have to go to extraordinary and complicated lengths to execute spatial operations. For example, the intersection of two polygons can, in general, have more than one connected component. It is convenient, both algorithmically and conceptually, to suppose that such an intersection returns a single object (a multipart polygon) rather than an arbitrary number of polygons. (For the same reasons it is helpful to support various forms of null and degenerate features--for example, polygons having an extent but zero area or even polygons with locations but neither extent nor area. These things can arise from geometric operations; supporting them eliminates a lot of fussy case-by-case post-processing and can prevent useful information from disappearing.)

From a relational database point of view, multipart features make normalization possible: when an attribute is inseparable from a collection of polygons, you want to represent that collection as a single object. A good example would be a feature representing almost any country in the world having a coastline, because the country probably includes some islands. Do you really want to force your RDBMS to make one copy of the country's attributes for every little island? Most likely not. You don't even want (or need) to maintain multiple copies of a pointer to the attributes, either.

How would you represent a network or a branching tree if not as a coordinated multi-polyline?

From the point of view of mathematics or algorithmic data structures, allowing a multipart feature is a simplification, not a complication. In order to support multiply connected polygons (rings and polygons with "holes") you already need the apparatus for representing multi-part polygons.

Finally, "vector" objects and their typical "spaghetti representation" have their origin in the theory of simplicial complexes. (It is only through this somewhat tenuous connection to the theory of topology that the term "topology" made it into GIS, which otherwise uses essentially nothing from that theory.) That theory requires, and benefits from, multi-part features. In fact, having just a single component is not part of the definition of a simplicial complex, but rather turns out to be a special property enjoyed by some of them (as detected by the rank of their zeroth homology group). As such, "single part" is not a defining property, but is just a topological quality in the same sense that having a ring or a "hole" in a polygon is a topological quality (related to the rank of the first homology group).


Imagine joining population data to a table of single-part polygons representing countries. Depending on how you do the join, either every island would get the full population of that country or only one polygon of the set would get the full population. Without representing the country as a multi-part polygon you have to either apportion the population (needlessly complex and inaccurate) or collect the polygons together before joining in which case you essentially end up with a multi-part polygon again.