public class KdTree extends Object
This implementation supports detecting and snapping points which are closer than a given tolerance value. If the same point (up to tolerance) is inserted more than once a new node is not created but the count of the existing node is incremented.
| Constructor and Description |
|---|
KdTree()
Creates a new instance of a KdTree with a snapping tolerance of 0.0.
|
KdTree(double tolerance)
Creates a new instance of a KdTree, specifying a snapping distance tolerance.
|
| Modifier and Type | Method and Description |
|---|---|
KdNode |
insert(Coordinate
Inserts a new point in the kd-tree, with no data.
|
KdNode |
insert(Coordinate
Inserts a new point into the kd-tree.
|
boolean |
isEmpty()
Tests whether the index contains any items.
|
List |
query(Envelope
Performs a range search of the points in the index.
|
void |
query(Envelope
Performs a range search of the points in the index.
|
public KdTree()
public KdTree(double tolerance)
tolerance - the tolerance distance for considering two points equal
public boolean isEmpty()
public KdNodeinsert(Coordinate p)
p - the point to insert
public KdNodeinsert(Coordinate p, Object data)
p - the point to insert
data - a data item for the point
public Listquery(Envelope queryEnv)
queryEnv - the range rectangle to query