We have an application that has a database full of polygons (currently stored as points) that a .net app pulls out and checks if they overlap.

I occurred to me that it would be much nicer to convert these point arrays to polygon / polyline objects within the database and use sql to get a bool of weather they overlap or not.

I have seen different methods suggested to do this but non of the examples given were quite in-line with my needs.

I would be very happy to receive input from those kind enough to offer their experience.

Additional:

In response to questions: It is indeed 2D. and yes any crossover of the two is considered true. The polygons have n points and can be concave. The polygons will be saved as 1 per row (after data conversion task) as polygons (i.e. the polygon type .. it might be called something else spatial / geom my memory is not on my side right now)

link|improve this question

80% accept rate
1  
Could you be more specific about the data storage of the polygons? (3 points per polygon, or n points per polygon? One row per point, or one row per polygon?) A table definition with example data would be great. – Dems Jan 10 at 14:21
Oh, and if one polygon is fully inside another, I assume you consider that to be an overlap? – Dems Jan 10 at 14:24
question updated - thanks – Nick Jan 10 at 15:16
Do you want to know how to convert your existing data into geometry data types? Will this be a one-time conversion, or do you need a procedure that converts them on the fly each time you want to check overlaps? Or are you wanting to know how to check for the overlap after they are converted to native geometry data types? – Holistic Developer Feb 23 at 23:39
feedback

2 Answers

Calculate and store the bounding rectangle of each polygon in a set of new fields within the row which is associated with that polygon. (I assume you have one; if not, create one.) When your dotnet app has a polygon and is looking for overlapping polygons, it can fetch from the database only those polygons whose bounding rectangles overlap, using a relatively simple SQL SELECT statement. Those polygons should be relatively few, so this will be efficient. Then, your dotnet app can perform the finer polygon overlap calculations in order to determine which ones of those really overlap.

link|improve this answer
Description assumes two dimensions only, but can be extrapolated to three... – Dems Jan 10 at 14:31
The OP contains the word 'Polyline', which hints towards 2-D rather than 3-D. No? – Mike Nakis Jan 10 at 14:38
database full of polygons, convert these point arrays to polygon / polyline objects. And, even a Line can exist in three dimensional space. – Dems Jan 10 at 14:43
question updated - thanks – Nick Jan 10 at 15:18
Unfortunately Mike, The bounding box system does not really help in this case because the majority of the polygons are quite tight thus the bounding boxes intersect. If you have seen the program hole in the wall? if you Imagen the player is represented as a polygon and the wall is too... that's the kind of complexity and tightness of fit we are talking about. – Nick Jan 10 at 15:33
show 1 more comment
feedback

Okay, I got another idea, so I am posting it as a different answer. I think my previous answer with the bounding polygons probably has some merit on its own, even if it was to reduce the number of polygons fetched from the database by a small percentage, but this one is probably better.

MSSQL supports integration with the CLR since version 2005. This means that you can define your own data type in an assembly, register the assembly with MSSQL, and from that moment on MSSQL will be accepting your user-defined data type as a valid type for a column, and it will be invoking your assembly to perform operations with your user-defined data type.

An example article for this technique on the CodeProject: Creating User-Defined Data Types in SQL Server 2005

I have never used this mechanism, so I do not know details about it, but I presume that you should be able to either define a new operation on your data type, or perhaps overload some existing operation like "less-than", so that you can check if one polygon intersects another. This is likely to speed things up a lot.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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