I have a lot of points (hundreds of thousands) and I want to check which ones are inside a polygon. For a relatively small polygon (i.e., likely to contain only tens or hundreds of points) I can just use the bounding box of the polygon as an initial check, and then do a regular point-in-poly check for those points inside the box. But imagine a large (i.e., likely to contain thousands of my points), irregularly shaped polygon. Many points will pass the bounding box check, and furthermore the point-in-poly check will be more expensive because the larger polygon is made up of many more points. So I'd like to be able to filter most points in or out without having to do the full point-in-poly check.

So, I have a plan, and mainly I want to know if what I'm describing is a well-known algorithm, and if so what it's called and where I might find existing code for it. I don't believe what I'm describing is either a quad-tree or an r-tree, and I don't know how to search for it. I'm calling it a "rect tree" below.

The idea is, to handle these larger polygons:

Do a "rect tree" pre-process, where the depth of the rect tree varies by the size of the polygon (i.e., allow more depth for a larger polygon). The rect tree would divide the bounding box of the polygon into four quarters. It would check if each quarter-rect is fully inside the polygon, fully outside the polygon, or neither. In the case of neither it would recursively divide the subrects, continuing in this way until all rects were either fully inside or outside, or the max depth had been reached. So the idea is that (a) the pre-processing time to make this tree, even though it itself will do several point-in-polygon checks, is well worth it because that time is dwarfed by the number of points to be checked, and (b) the vast majority of points can be dealt with using simple bounding box checks (generally a few such checks as you descend the tree), and then a relatively small number would have to do the full point-in-polygon check (for when you reach a leaf node that is still "neither").

What's that algorithm called? And where is the code? It doesn't in fact seem so hard to write, but I figured I'd ask before jumping into coding.

link|improve this question

57% accept rate
feedback

2 Answers

You can look for a spatial index or a monster curve. I've wrote a php class at phpclasses.org (hilbert curve). You are welcome to download and rate it. I would be happy if you can write a comment.

link|improve this answer
Space filling curves (Hilbert etc.) are in my opinion not that useful here. Computing the intersection points of the polygon with the curve can be just as messy. Hilbert curves are nice as long as you draw them visually, they become a computational pain for complex situations. – Anony-Mousse Jan 13 at 7:42
feedback

As long as you have only points to test against the polygon it's fairly easy. Intersecting polygons is when it gets messy.

As long as you have points, you can break the polygon apart into pieces of your liking. For rectangular trees, axis-aligned slices should be best. Then build a regular 2D index for the points and use the polygon pieces as query regions to do a join type of query (i.e. query with all polygon pieces at once, instead of repeatedly restarting the query for each fragment).

There are plenty of variations of this, that usually don't have a particular catchy or sticky name. They are just "spatial queries".

link|improve this answer
With a monster curve it would be just a 1d query. – Chibox Jan 13 at 1:18
No, actually a just as large set of 1d queries. From one intersection point to the next. Maybe even without a single point inbetween. But I did not rule them out. Hilbert R-Trees are a good example for an index using both rectangles and Hilbert curves. They are just really ugly to implement. – Anony-Mousse Jan 13 at 7:43
feedback

Your Answer

 
or
required, but never shown

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