Uses of Interface
org.tinspin.index.BoxMap
-
Packages that use BoxMap Package Description org.tinspin.index org.tinspin.index.array org.tinspin.index.phtree org.tinspin.index.qthypercube org.tinspin.index.qtplain org.tinspin.index.rtree org.tinspin.index.util -
-
Uses of BoxMap in org.tinspin.index
Methods in org.tinspin.index that return BoxMap Modifier and Type Method Description static <T> BoxMap<T>BoxMap.Factory. createAndLoadStrRTree(int dims, RTreeEntry<T>[] entries)Create an STR-loaded R*Tree.static <T> BoxMap<T>BoxMap.Factory. createArray(int dims, int size)Create an array backed BoxMap.static <T> BoxMap<T>BoxMap.Factory. createPhTree(int dims)Create a PH-Tree.static <T> BoxMap<T>BoxMap.Factory. createQuadtree(int dims)Create a plain Quadtree.static <T> BoxMap<T>BoxMap.Factory. createQuadtree(int dims, int maxNodeCapacity, double[] min, double[] max)Create a plain Quadtree.static <T> BoxMap<T>BoxMap.Factory. createQuadtreeHC(int dims)Create a Quadtree with hypercube navigation.static <T> BoxMap<T>BoxMap.Factory. createQuadtreeHC(int dims, int maxNodeCapacity, double[] min, double[] max)Create a plain Quadtree.static <T> BoxMap<T>BoxMap.Factory. createRStarTree(int dims)Create an R*Tree. -
Uses of BoxMap in org.tinspin.index.array
Classes in org.tinspin.index.array that implement BoxMap Modifier and Type Class Description classRectArray<T> -
Uses of BoxMap in org.tinspin.index.phtree
Classes in org.tinspin.index.phtree that implement BoxMap Modifier and Type Class Description classPHTreeR<T> -
Uses of BoxMap in org.tinspin.index.qthypercube
Classes in org.tinspin.index.qthypercube that implement BoxMap Modifier and Type Class Description classQuadTreeRKD<T>A simple MX-quadtree implementation with configurable maximum depth, maximum nodes size, and (if desired) automatic guessing of root rectangle. -
Uses of BoxMap in org.tinspin.index.qtplain
Classes in org.tinspin.index.qtplain that implement BoxMap Modifier and Type Class Description classQuadTreeRKD0<T>A simple MX-quadtree implementation with configurable maximum depth, maximum nodes size, and (if desired) automatic guessing of root rectangle. -
Uses of BoxMap in org.tinspin.index.rtree
Classes in org.tinspin.index.rtree that implement BoxMap Modifier and Type Class Description classRTree<T>R*Tree implementation based on the paper from Beckmann, N.; Kriegel, H. -
Uses of BoxMap in org.tinspin.index.util
Methods in org.tinspin.index.util with parameters of type BoxMap Modifier and Type Method Description static <T> PointMap<T>PointMapWrapper. create(BoxMap<T> ind)
-