Domanda

What is an STR tree ? How is it different from an R-tree ? . Whenever I search for 'STR-trees' I'm getting the search result of an R-tree . Can someone help me with this ?

È stato utile?

Soluzione 2

Looks like there is a Java class for query-only R-trees called STRtree that uses the Sort-Tile-Recursive algorithm. Here is a link: http://www.vividsolutions.com/jts/javadoc/com/vividsolutions/jts/index/strtree/STRtree.html

Altri suggerimenti

Can you provide a reference for an STR-tree? I've never seen it mentioned.

I only know the Sort-Tile-Recursive bulk-loading strategy for the R-tree. So it is an R-tree then.

Actually, STR-tree is a spatio-temporal R-tree, which is mainly used for a moving object, see Novel Approaches to the Indexing of Moving Object Trajectories. STRtree is a packed R-tree by using Sort-Tile-Recursive, see STR: A Simple and Efficient Algorithm for R-Tree Packing. The abbreviation STRtree is not commonly used.

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top