Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Given two polygons:

POLYGON((1 0, 1 8, 6 4, 1 0))
POLYGON((4 1, 3 5, 4 9, 9 5, 4 1),(4 5, 5 7, 6 7, 4 4, 4 5))

How can I calculate the union (combined polygon)?

alt text

Dave's example uses SQL server to produce the union, but I need to accomplish the same in code. I'm looking for a mathematical formula or code example in any language that exposes the actual math. I am attempting to produce maps that combine countries dynamically into regions. I asked a related question here: http://stackoverflow.com/questions/2653812/grouping-geographical-shapes

share|improve this question

5 Answers

You need to determine which points lie inside. After removing these points, you can insert one set of "outside" points into the other. Your insertion points (e.g. where you have the arrow in the picture on the right) are where you had to remove points from the input sets.

share|improve this answer
1  
+1 for linking to Bourke. Thirty seconds slower and I'd've beaten you to it :) – David Seiler Apr 19 '10 at 13:37
Link is broken atm. – Sadly Not Mar 12 at 22:50
@SadlyNot: Thanks, I updated with a link to the web archive. – honk Mar 13 at 14:05

Try gpc.

share|improve this answer
That looks promising. I've emailed the authors as their download links are all returning 403's. – grenade Apr 20 '10 at 7:59
1  
The link to the source code works for me: ftp.cs.man.ac.uk/pub/toby/gpc/gpc232-release.zip – lhf Apr 20 '10 at 11:21

Good question! I've never attempted this before, but I'll take a crack at it now.

First: You need to know where these two shapes overlap. To do this, you could look at every edge in Polygon A and see where it intersects and edge in Polygon B. In this example, there should be two points of intersection.

Then: Make the union shape. You can take all of the vertices in A and B, and also the points of intersection, and then exclude the vertices that contained by the final shape. To find these points, it looks like you could just find any vertex of A that is inside B, and any vertext of B that is inside A.

share|improve this answer
Yes the real question is how do we calculate that two added points of intersection? – Pacerier Mar 30 at 18:22

A solution I've seen using BSP trees is described here.

Basically, it describes intersection in terms of a union of the edges of polygon A that are inside polygon B (including partial edges, and calculated using a BSP tree). Then, you can define A \/ B as ~(~A /\ ~B), where ~ denotes reversing the winding of the polygon, \/ denotes union and /\ denotes intersection.

share|improve this answer

When grouping countries, I'd hope there be no overlap -- you could take a fairly naive algorithm that looks for shared vertices - a simple view would be to iterate through the points on one polygon, see if it's on any of your other polygons, and shares the same next or previous point to see if there is a match. Then just remove the shared vertex to create your union

share|improve this answer
"When grouping countries, I'd hope there be no overlap"... not all countries agree on their own or their neighbours borders, though it would be nice if they did. – FrustratedWithFormsDesigner Apr 19 '10 at 13:40
1  
@FrustratedWithFormsDesigner indeed, but most cartographers will either assign the disputed region to their political ally or as a separate entity in its own right -- that's also why I describe my algorithm as naive... – Rowland Shaw Apr 19 '10 at 14:17

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.