views:

204

answers:

1

I'm looking for the code or even a visual demo on how this tree works. I have read this paper on Hilbert R-Trees and tried to implement the algorithms stated

I get lost when I have to adjust the tree with the sets, as well as not sure on most other things.

It doesn't matter what language if there is an implementation as it will be used to build a C# implementation and I will be using it for reference.

Its for moving points with boundaries, that needs to have very fast insert and update calls.

A: 

Hi

Try these links for a R-Tree demo

http://mfarrelly.rarelyfar.com/rtreedemo/

http://gis.umb.no/gis/applets/rtree2/jdk1.1/

http://gist.cs.berkeley.edu/libgist-2.0/amdb_demo.html

http://donar.umiacs.umd.edu/quadtree/points/rtrees.html

cheers

Andriyev
Thanks for the links, the first one was really good, once I got used to the interface. Showed me that I didn't want what I thought I wanted at all.I'm off to investigate the various types of quadtree variants.
burnt_hand
oops, I meant the last one: http://donar.umiacs.umd.edu/quadtree/points/pointquad.html
burnt_hand