Does anyone know good and simple to use in production code R-tree (actually, any implementations - R*, R+ or PR-tree would be great)?

It doesn't matter if it is a template or library implementation, but some implementations that google found look very disappointing...

Thanks in advance.

link|improve this question

feedback

2 Answers

up vote 5 down vote accepted

Check R-Trees code on http://www.superliminal.com/sources/sources.htm

also check

http://www.virtualroadside.com/blog/index.php/2008/10/04/r-tree-implementation-for-cpp/

link|improve this answer
I still think these versions lack in versatibility, but, well, looks like ok to use – Kotti Apr 25 '10 at 18:47
feedback

I updated the implementation found in http://www.superliminal.com/sources/sources.htm to support a broader range of data types.

You can find my version on github: https://github.com/nushoin/RTree

The original version is public domain, as is mine.

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.