Uses of Class
org.locationtech.jts.index.kdtree.KdNode
-
Packages that use KdNode Package Description org.locationtech.jts.index.kdtree Contains classes which implement a k-D tree index over 2-D point data. -
-
Uses of KdNode in org.locationtech.jts.index.kdtree
Fields in org.locationtech.jts.index.kdtree declared as KdNode Modifier and Type Field Description private KdNodeKdNode. leftprivate KdNodeKdTree.BestMatchVisitor. matchNodeprivate KdNodeKdNode. rightprivate KdNodeKdTree. rootMethods in org.locationtech.jts.index.kdtree that return KdNode Modifier and Type Method Description private KdNodeKdTree. findBestMatchNode(Coordinate p)Finds the node in the tree which is the best match for a point being inserted.KdNodeKdNode. getLeft()Returns the left node of the treeKdNodeKdTree.BestMatchVisitor. getNode()KdNodeKdNode. getRight()Returns the right node of the treeKdNodeKdTree. insert(Coordinate p)Inserts a new point in the kd-tree, with no data.KdNodeKdTree. insert(Coordinate p, java.lang.Object data)Inserts a new point into the kd-tree.private KdNodeKdTree. insertExact(Coordinate p, java.lang.Object data)Inserts a point known to be beyond the distance tolerance of any existing node.Methods in org.locationtech.jts.index.kdtree with parameters of type KdNode Modifier and Type Method Description private voidKdTree. queryNode(KdNode currentNode, Envelope queryEnv, boolean odd, KdNodeVisitor visitor)(package private) voidKdNode. setLeft(KdNode _left)(package private) voidKdNode. setRight(KdNode _right)voidKdNodeVisitor. visit(KdNode node)Visits a node.voidKdTree.BestMatchVisitor. visit(KdNode node)
-