Where can I find enough documentation to implement an R*-Tree? Specifically, I need to be able to:
- Insert nodes
- Remove nodes
- Search for K nearest neighbours
- Find all nearest neighbours within distance x.
Is there a single place where this algorithm is clearly documented? Or is there a clean, open source implementation I can study? Even better, if you can point me to a javascript implementation then my work is already done.