Uses of Interface
elki.index.tree.spatial.SpatialEntry
-
Packages that use SpatialEntry Package Description elki.index.preprocessed.knn Indexes providing KNN and rKNN data.elki.index.tree.spatial Tree-based index structures for spatial indexing.elki.index.tree.spatial.rstarvariants R*-tree and variants.elki.index.tree.spatial.rstarvariants.deliclu elki.index.tree.spatial.rstarvariants.flat elki.index.tree.spatial.rstarvariants.rdknn elki.index.tree.spatial.rstarvariants.rstar elki.index.tree.spatial.rstarvariants.strategies.overflow Overflow treatment strategies for R-trees.elki.index.tree.spatial.rstarvariants.util Utilities for R*-tree and variants.elki.visualization.visualizers.parallel.index Visualizers for index structure based on parallel coordinates.elki.visualization.visualizers.scatterplot.index Visualizers for index structures based on 2D projections. -
-
Uses of SpatialEntry in elki.index.preprocessed.knn
Methods in elki.index.preprocessed.knn that return types with arguments of type SpatialEntry Modifier and Type Method Description protected AbstractRStarTree<?,SpatialEntry,?>
SpatialApproximationMaterializeKNNPreprocessor. getSpatialIndex(Relation<O> relation)
-
Uses of SpatialEntry in elki.index.tree.spatial
Classes in elki.index.tree.spatial that implement SpatialEntry Modifier and Type Class Description class
SpatialDirectoryEntry
Represents an entry in a directory node of a spatial index.class
SpatialPointLeafEntry
Represents an entry in a leaf node of a spatial index. -
Uses of SpatialEntry in elki.index.tree.spatial.rstarvariants
Classes in elki.index.tree.spatial.rstarvariants with type parameters of type SpatialEntry Modifier and Type Class Description class
AbstractRStarTree<N extends AbstractRStarTreeNode<N,E>,E extends SpatialEntry,S extends RTreeSettings>
Abstract superclass for index structures based on a R*-Tree.class
AbstractRStarTreeFactory<O extends NumberVector,N extends AbstractRStarTreeNode<N,E>,E extends SpatialEntry,S extends RTreeSettings>
Abstract factory for R*-Tree based trees.class
AbstractRStarTreeNode<N extends AbstractRStarTreeNode<N,E>,E extends SpatialEntry>
Abstract superclass for nodes in a R*-Tree.class
NonFlatRStarTree<N extends AbstractRStarTreeNode<N,E>,E extends SpatialEntry,S extends RTreeSettings>
Abstract superclass for all non-flat R*-Tree variants.Fields in elki.index.tree.spatial.rstarvariants declared as SpatialEntry Modifier and Type Field Description (package private) E
AbstractRStarTree. lastInsertedEntry
The last inserted entry. -
Uses of SpatialEntry in elki.index.tree.spatial.rstarvariants.deliclu
Subinterfaces of SpatialEntry in elki.index.tree.spatial.rstarvariants.deliclu Modifier and Type Interface Description interface
DeLiCluEntry
Defines the requirements for an entry in an DeLiClu-Tree node.Classes in elki.index.tree.spatial.rstarvariants.deliclu that implement SpatialEntry Modifier and Type Class Description class
DeLiCluDirectoryEntry
Defines the requirements for a directory entry in an DeLiClu-Tree node.class
DeLiCluLeafEntry
Defines the requirements for a leaf entry in an DeLiClu-Tree node. -
Uses of SpatialEntry in elki.index.tree.spatial.rstarvariants.flat
Methods in elki.index.tree.spatial.rstarvariants.flat that return SpatialEntry Modifier and Type Method Description protected SpatialEntry
FlatRStarTree. createNewDirectoryEntry(FlatRStarTreeNode node)
protected SpatialEntry
FlatRStarTreeIndex. createNewLeafEntry(DBID id)
Wrap a vector as spatial point leaf entry.protected SpatialEntry
FlatRStarTree. createRootEntry()
Methods in elki.index.tree.spatial.rstarvariants.flat with parameters of type SpatialEntry Modifier and Type Method Description protected void
FlatRStarTree. createEmptyRoot(SpatialEntry exampleLeaf)
Method parameters in elki.index.tree.spatial.rstarvariants.flat with type arguments of type SpatialEntry Modifier and Type Method Description protected void
FlatRStarTree. bulkLoad(java.util.List<SpatialEntry> spatialObjects)
Performs a bulk load on this RTree with the specified data. -
Uses of SpatialEntry in elki.index.tree.spatial.rstarvariants.rdknn
Subinterfaces of SpatialEntry in elki.index.tree.spatial.rstarvariants.rdknn Modifier and Type Interface Description interface
RdKNNEntry
Defines the requirements for an entry in an RdKNN-Tree node.Classes in elki.index.tree.spatial.rstarvariants.rdknn that implement SpatialEntry Modifier and Type Class Description class
RdKNNDirectoryEntry
Represents an entry in a directory node of an RdKNN-Tree.class
RdKNNLeafEntry
Represents an entry in a leaf node of an RdKNN-Tree. -
Uses of SpatialEntry in elki.index.tree.spatial.rstarvariants.rstar
Methods in elki.index.tree.spatial.rstarvariants.rstar that return SpatialEntry Modifier and Type Method Description protected SpatialEntry
RStarTree. createNewDirectoryEntry(RStarTreeNode node)
protected SpatialEntry
RStarTree. createRootEntry()
-
Uses of SpatialEntry in elki.index.tree.spatial.rstarvariants.strategies.overflow
Methods in elki.index.tree.spatial.rstarvariants.strategies.overflow with type parameters of type SpatialEntry Modifier and Type Method Description <N extends AbstractRStarTreeNode<N,E>,E extends SpatialEntry>
booleanLimitedReinsertOverflowTreatment. handleOverflow(AbstractRStarTree<N,E,?> tree, N node, IndexTreePath<E> path)
<N extends AbstractRStarTreeNode<N,E>,E extends SpatialEntry>
booleanOverflowTreatment. handleOverflow(AbstractRStarTree<N,E,?> tree, N node, IndexTreePath<E> path)
Handle overflow in the given node.<N extends AbstractRStarTreeNode<N,E>,E extends SpatialEntry>
booleanSplitOnlyOverflowTreatment. handleOverflow(AbstractRStarTree<N,E,?> tree, N node, IndexTreePath<E> path)
-
Uses of SpatialEntry in elki.index.tree.spatial.rstarvariants.util
Methods in elki.index.tree.spatial.rstarvariants.util that return SpatialEntry Modifier and Type Method Description SpatialEntry
NodeArrayAdapter. get(AbstractNode<? extends SpatialEntry> array, int off)
Method parameters in elki.index.tree.spatial.rstarvariants.util with type arguments of type SpatialEntry Modifier and Type Method Description SpatialEntry
NodeArrayAdapter. get(AbstractNode<? extends SpatialEntry> array, int off)
int
NodeArrayAdapter. size(AbstractNode<? extends SpatialEntry> array)
-
Uses of SpatialEntry in elki.visualization.visualizers.parallel.index
Classes in elki.visualization.visualizers.parallel.index with type parameters of type SpatialEntry Modifier and Type Class Description class
RTreeParallelVisualization.Instance<N extends AbstractRStarTreeNode<N,E>,E extends SpatialEntry>
Instance for a particular data set and tree -
Uses of SpatialEntry in elki.visualization.visualizers.scatterplot.index
Classes in elki.visualization.visualizers.scatterplot.index with type parameters of type SpatialEntry Modifier and Type Class Description class
TreeMBRVisualization.Instance<N extends AbstractRStarTreeNode<N,E>,E extends SpatialEntry>
Instance for a particular tree
-