Besides GIS applications, which other applications or libraries use R-trees and its variants?

link|improve this question

67% accept rate
We used them to speed up the analysis of LIDAR scans: graphics.cs.msu.ru/en/science/research/3dpoint/classification – overrider Oct 28 '10 at 12:40
feedback

4 Answers

up vote 5 down vote accepted

Computer games often do. Here's a link to something cool.

Computer graphics - both software and hardware - often use spatial partitioning e.g. BSP; there's neat logic in Imagination and Intel chips termed tile or zone rendering, for example.

Code I've seen tends to lean towards fixed resolution dividing - octtrees, typically - rather than variable size buckets, but I'd still consider them 'variants' of R-trees.

link|improve this answer
Exactly; check out BSP trees – Pierreten May 10 '10 at 7:23
feedback

Some relational databases use R-trees for indexing.

PostgreSQL is one example. http://www.postgresql.org/docs/8.1/static/indexes-types.html

link|improve this answer
Most RDBMS support spatial extensions to support GIS applications. Its not exactly that spatial indexes in databases are an end in themselves. – Will May 10 '10 at 7:52
feedback

Here's an application -- a personal carbon calculator that resides within your smartphone -- using R-trees that are part of the Perst Lite open source embedded database.

link|improve this answer
feedback

"R-trees have grown everywhere; from CAD and geographical databases to multimedia and time series management systems." http://www.rtreeportal.org/

about 2,620,00 results, 10.9 seconds to Google and post on SO

link|improve this answer
-1 Not very informative. About as helpful as a google search. – Tomas Aug 18 '10 at 8:42
feedback

Your Answer

 
or
required, but never shown

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