class KDB extends PartitioningUtils with Serializable

see <a href="https://en.wikipedia.org/wiki/K-D-B-tree">https://en.wikipedia.org/wiki/K-D-B-tree

Linear Supertypes
Serializable, PartitioningUtils, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. KDB
  2. Serializable
  3. PartitioningUtils
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new KDB(maxItemsPerNode: Int, maxLevels: Int, extent: Envelope)

Value Members

  1. def assignLeafIds(): Unit
  2. def dropElements(): Unit
  3. def fetchLeafZones(): List[Envelope]
    Definition Classes
    KDBPartitioningUtils
    Annotations
    @Override()
  4. def findLeafNodes(envelope: Envelope): List[KDB]
  5. def getExtent(): Envelope
  6. def getItemCount(): Int
  7. def getKeys(geometry: Geometry): Set[Integer]
    Definition Classes
    KDBPartitioningUtils
    Annotations
    @Override()
  8. def getLeafId(): Int
  9. def insert(envelope: Envelope): Unit
  10. def isLeaf(): Boolean
  11. def placeObject(geometry: Geometry): Iterator[(Integer, Geometry)]
    Definition Classes
    KDBPartitioningUtils
    Annotations
    @Override()
  12. def traverse(visitor: Visitor): Unit

    Traverses the tree top-down breadth-first and calls the visitor for each node.

    Traverses the tree top-down breadth-first and calls the visitor for each node. Stops traversing if a call to Visitor.visit returns false.