Pre RTree step: Divide a set of points into rectangular regions each containing one point... - Stack Overflow most recent 30 from stackoverflow.com2009-12-20T04:09:17Zhttp://stackoverflow.com/feeds/question/551632http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/551632/pre-rtree-step-divide-a-set-of-points-into-rectangular-regions-each-containing-o6Pre RTree step: Divide a set of points into rectangular regions each containing one point...John Lane2009-02-15T21:31:16Z2009-02-16T13:59:31Z
<p>Hi,
given my current position (lat,long) I want to quickly find the nearest neighbor in a points of interest problem. Thus I intend to use an R-Tree database, which allows for quick lookup. However, first the database must be populated - of course. Therefore, I need to determine the rectangular regions that covers the area, where each region contains one point of interest.</p>
<p>My question is how do I preprocess the data, i.e. how do I subdivide the area into these rectangular sub-regions? (I want rectangular regions because they are easily added to the RTree - in contrast to more general Voronoi regions).</p>
<p>/John</p>
http://stackoverflow.com/questions/551632/pre-rtree-step-divide-a-set-of-points-into-rectangular-regions-each-containing-o/551689#5516892Answer by zendar for Pre RTree step: Divide a set of points into rectangular regions each containing one point...zendar2009-02-15T22:01:58Z2009-02-15T22:01:58Z<p><a href="http://download-uk.oracle.com/docs/cd/A64702_01/doc/cartridg.805/a53264/sdo_intr.htm" rel="nofollow">Oracle Spatial Cartridge</a> documentation describes tessellation algorithm that can do what you want. In short:</p>
<ul>
<li>enclose all your points in square</li>
<li>if square contains 1 point - index square</li>
<li>if square does not contain points - ignore it</li>
<li>if square contains more then 1 point
<ul>
<li>split square into 4 equal squares and repeat analysis for each new square</li>
</ul></li>
</ul>
<p>Result should be something like this:<br>
<img src="http://download-uk.oracle.com/docs/cd/A64702_01/doc/cartridg.805/a53264/sdo_ina5.gif" alt="alt text" /></p>
http://stackoverflow.com/questions/551632/pre-rtree-step-divide-a-set-of-points-into-rectangular-regions-each-containing-o/551706#5517062Answer by SquareCog for Pre RTree step: Divide a set of points into rectangular regions each containing one point...SquareCog2009-02-15T22:10:13Z2009-02-16T13:59:31Z<p><strong>Edit:</strong> The below approach works, but ignores the critical feature of R-trees -- that The splitting behavior of R-tree nodes is well defined, and maintains a balanced tree (through B-tree-like properties). So in fact, all you have to do is:</p>
<ol>
<li>Pick the maximum number of rectangles per page</li>
<li>Create seed rectangles (use points furthest away from each other, centroids, whatever).</li>
<li>For each point, choose a rectangle to put it into
<ol>
<li>If it already falls into a single rectangle, put it in there</li>
<li>If it does not, extend the rectangle that needs to be extended least (different ways to measure "least" exits -- area works)</li>
<li>If multiple rectangles apply -- choose one based on how full it is, or some other heuristic</li>
</ol></li>
<li>If overflow occurs -- use the quadratic split to move things around...</li>
<li>And so on, using R-tree algorithms straight out of a text book.</li>
</ol>
<p>I think the method below is ok for finding your initial seed rectangles; but you don't want to populate your whole R-tree that way. Doing the splits and rebalancing all the time can be a bit expensive, so you will probably want to do a decent chunk of the work with the KD approach below; just not all of the work.</p>
<p><hr /></p>
<p>The KD approach: enclose everything in a rectangle.</p>
<p>If the number of points in the rectangle is > threshold, sweep in direction D until you cover half the points. </p>
<p>Divide into rectangles left and right (or above and below) the splitting point). </p>
<p>Call the same procedure recursively on the new rectangles, with the next direction (if you were going left to right, you will now go top to bottom, and vice versa).</p>
<p>The advantage this has over the divide-into-squares approach offered by another poster is that it accommodates skewed point distributions better.</p>
http://stackoverflow.com/questions/551632/pre-rtree-step-divide-a-set-of-points-into-rectangular-regions-each-containing-o/552591#5525910Answer by antti.huima for Pre RTree step: Divide a set of points into rectangular regions each containing one point...antti.huima2009-02-16T08:21:32Z2009-02-16T08:21:32Z<p>Hi,</p>
<p>I think you a missing something in the problem statement. Assume you have N points (x, y) such that every point has a unique x- and y-coordinate. You can divide your area into N rectangles then by just dividing it into N vertical columns. But that does not help you to solve the nearest POI problem easily, does it? So I think you are thinking about something about the rectangle structure which you haven't articulated yet.</p>
<p>Illustration:</p>
<pre><code>| | | | |5| | |
|1| | | | |6| |
| | |3| | | | |
| | | | | | | |
| |2| | | | | |
| | | | | | |7|
| | | |4| | | |
</code></pre>
<p>The numbers are POIs and the vertical lines show a subdivision into 7 rectangular areas. But clearly there isn't much "interesting" information in the subdivision. Is there some additional criterion on the subdivision which you haven't mentioned?</p>