Package org.apache.sis.index.tree
Class PointTree<E>
java.lang.Object
java.util.AbstractCollection<E>
java.util.AbstractSet<E>
org.apache.sis.index.tree.PointTree<E>
- Type Parameters:
E- the type of elements stored in this tree.
- All Implemented Interfaces:
Serializable,Iterable<E>,Collection<E>,Set<E>,CheckedContainer<E>
A k-dimensional tree index for points.
For k=2, this is a point QuadTree.
For k=3, this is a point Octree.
Higher dimensions are also accepted up to 6 dimensions.
Elements are stored in this
PointTree as arbitrary non-null objects with their coordinates
computed by a user-specified locator function. That function expects an element E
in argument and returns its coordinates as a double[] array.
The coordinates of each elements must be stable, i.e. applying the locator function
twice on the same element must return the same coordinates.
Searches based on element coordinates can be done with the following methods:
The performances of this PointTree depends on two parameters: an estimated bounding box of the points
to be added in this tree and a maximal capacity of leaf nodes (not to be confused with a capacity of the tree).
More details are given in the constructor.
Thread-safety
This class is not thread-safe when the tree content is modified. But if the tree is kept unmodified after construction, then multiple read operations in concurrent threads are safe. Users can synchronize withReadWriteLock (the read lock must be held for complete duration
of iterations or stream consumptions).
Serialization
This tree is serializable if thelocator function and all elements in the tree are also serializable.
However, the serialization details is implementation specific and may change in any future Apache SIS version.
Limitations
Current implementation does not yet support removal of elements.References
Insertion algorithm is based on design of QuadTree index in H. Samet, The Design and Analysis of Spatial Data Structures. Massachusetts: Addison Wesley Publishing Company, 1989.- Since:
- 1.1
- Version:
- 1.1
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic interfaceProvides the coordinates of any element stored inPointTree. -
Field Summary
FieldsModifier and TypeFieldDescriptionprivate longNumber of elements in this k-dimensional tree.private final org.opengis.referencing.crs.CoordinateReferenceSystemThe coordinate reference system, ornullif none.The type of elements in this set.(package private) final PointTree.Locator<? super E>Function computing the position of any element in this tree.static final intThe maximum number of dimensions (inclusive) that this class currently supports.private final intThe maximal capacity of each node in this tree.private final booleanWhether the stream can be parallel by default.(package private) final PointTreeNodeThe root node of this k-dimensional tree.private static final longFor cross-version compatibility.(package private) final double[]The regions covered by this tree, encoded as a center and a size. -
Constructor Summary
ConstructorsConstructorDescriptionPointTree(Class<E> elementType, org.opengis.geometry.Envelope bounds, PointTree.Locator<? super E> locator, int nodeCapacity, boolean parallel) Creates an initially empty k-dimensional tree with the given capacity for each node.Creates a new tree initialized to a copy of the given tree. -
Method Summary
Modifier and TypeMethodDescriptionbooleanInserts the specified element into this tree if it is not already present.booleanaddAll(Collection<? extends E> elements) Inserts all elements from the specified collection into this tree if they are not already present.voidclear()Removes all elements from this tree.booleanReturnstrueif this set contains the specified element.final Optional<org.opengis.referencing.crs.CoordinateReferenceSystem>Returns the coordinate reference system (CRS) of all points in this tree.final intReturns the number of dimensions of points in this tree.Returns the base type of all elements in this tree.private booleaninsert(PointTreeNode parent, double[] region, E element, double[] point) Inserts the specified data into the given node.booleanisEmpty()Returns true if this set contains no elements.iterator()Creates an iterator over all elements in this set.Returns a possibly parallel stream with this tree as its source.queryByBoundingBox(org.opengis.geometry.Envelope searchRegion) Returns all elements in the given bounding box.intsize()Returns the number of elements in this tree.Creates an iterator over all elements in this set.Methods inherited from class java.util.AbstractSet
equals, hashCode, removeAllMethods inherited from class java.util.AbstractCollection
containsAll, remove, retainAll, toArray, toArray, toStringMethods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface java.util.Collection
removeIf, stream
-
Field Details
-
serialVersionUID
private static final long serialVersionUIDFor cross-version compatibility.- See Also:
-
MAXIMUM_DIMENSIONS
public static final int MAXIMUM_DIMENSIONSThe maximum number of dimensions (inclusive) that this class currently supports. Current maximum is 6. This restriction come from 2⁶ = 64.- See Also:
-
elementType
The type of elements in this set.- See Also:
-
crs
private final org.opengis.referencing.crs.CoordinateReferenceSystem crsThe coordinate reference system, ornullif none.- See Also:
-
root
The root node of this k-dimensional tree. -
nodeCapacity
private final int nodeCapacityThe maximal capacity of each node in this tree. It should be a relatively small number. If the number of elements in a leaf node exceeds this capacity, then the node will be transformed into a parent node with children nodes. -
count
private long countNumber of elements in this k-dimensional tree. This is used as an unsigned integer (we do not expect to have as many elements, but in this case it is easy to get the extra bit provided by unsigned integer).- See Also:
-
treeRegion
final double[] treeRegionThe regions covered by this tree, encoded as a center and a size. This array contains two parts:- The first half contains coordinates of the point in the center of the region covered by this tree.
- The second half contains the size of the region along each dimension.
PointTreecopies). -
locator
Function computing the position of any element in this tree. The length of arrays computed by this locator must be equal togetDimension(). -
parallel
private final boolean parallelWhether the stream can be parallel by default. Should befalseif thelocatoris not thread-safe.
-
-
Constructor Details
-
PointTree
Creates a new tree initialized to a copy of the given tree. This copy constructor shares some data structure from theothertree for reducing memory usage, but the two trees are nevertheless independent (changes in a tree does not affect the other tree).- Parameters:
other- the other tree to copy.
-
PointTree
public PointTree(Class<E> elementType, org.opengis.geometry.Envelope bounds, PointTree.Locator<? super E> locator, int nodeCapacity, boolean parallel) Creates an initially empty k-dimensional tree with the given capacity for each node. The number of dimensions of the given envelope determines the number of dimensions of points in this tree. The positions computed bylocatormust have the same number of dimensions than the given envelope.The
boundsargument specifies the expected region of points to be added in thisPointTree. Those bounds do not need to be exact;PointTreewill work even if some points are located outside those bounds. However, performances will be better if the envelope center is close to the median of the points to be inserted in thePointTree, and if the majority of points are inside those bounds.The given
nodeCapacityis a threshold value controlling when the content of a node should be splited into smaller children nodes. That capacity should be a relatively small number, for example 10. Determining the most efficient value may require benchmarking.- Parameters:
elementType- the base type of all elements in this tree.bounds- bounds of the region of data to be inserted in the k-dimensional tree.locator- function computing the position of any element in this tree.nodeCapacity- the capacity of each node (not to be confused with a capacity of the tree).parallel- whether the stream can be parallel by default. Should befalseif the givenlocatoris not thread-safe.
-
-
Method Details
-
getCoordinateReferenceSystem
public final Optional<org.opengis.referencing.crs.CoordinateReferenceSystem> getCoordinateReferenceSystem()Returns the coordinate reference system (CRS) of all points in this tree. The CRS is taken from the envelope given in argument to the constructor.- Returns:
- the CRS of all points in this tree, if presents.
- See Also:
-
getDimension
public final int getDimension()Returns the number of dimensions of points in this tree.- Returns:
- the number of dimensions of points in this tree.
- See Also:
-
getElementType
Returns the base type of all elements in this tree.- Specified by:
getElementTypein interfaceCheckedContainer<E>- Returns:
- the element type.
-
clear
public void clear()Removes all elements from this tree.- Specified by:
clearin interfaceCollection<E>- Specified by:
clearin interfaceSet<E>- Overrides:
clearin classAbstractCollection<E>
-
isEmpty
public boolean isEmpty()Returns true if this set contains no elements.- Specified by:
isEmptyin interfaceCollection<E>- Specified by:
isEmptyin interfaceSet<E>- Overrides:
isEmptyin classAbstractCollection<E>- Returns:
- whether this set is empty.
-
size
public int size()Returns the number of elements in this tree.- Specified by:
sizein interfaceCollection<E>- Specified by:
sizein interfaceSet<E>- Specified by:
sizein classAbstractCollection<E>- Returns:
- the number of elements in this tree, or
Integer.MAX_VALUEif there is more elements than what anintcan represent.
-
add
Inserts the specified element into this tree if it is not already present.- Specified by:
addin interfaceCollection<E>- Specified by:
addin interfaceSet<E>- Overrides:
addin classAbstractCollection<E>- Parameters:
element- the element to insert.- Returns:
trueif the element has been added, orfalseif it was already present.- Throws:
NullPointerException- if the given element is null.
-
addAll
Inserts all elements from the specified collection into this tree if they are not already present.- Specified by:
addAllin interfaceCollection<E>- Specified by:
addAllin interfaceSet<E>- Overrides:
addAllin classAbstractCollection<E>- Parameters:
elements- the elements to insert.- Returns:
trueif at least one element has been added.- Throws:
NullPointerException- if an element is null.
-
insert
Inserts the specified data into the given node. This method will iterate through node children until a suitable node is found. This method may invoke itself recursively.- Parameters:
parent- the parent where to add the given data.region- region of current node, as the center in first half and size in second half.element- the element to insert.point- a pre-allocated array where to store the coordinates. This method will write in this array.- Returns:
trueif the element has been added, orfalseif it was already present.
-
contains
Returnstrueif this set contains the specified element.- Specified by:
containsin interfaceCollection<E>- Specified by:
containsin interfaceSet<E>- Overrides:
containsin classAbstractCollection<E>- Parameters:
element- the object to search.- Returns:
- whether this set contains the specified element.
-
iterator
Creates an iterator over all elements in this set. In current implementation, the iterator does not support element removal. -
spliterator
Creates an iterator over all elements in this set. The iterator characteristics are sized, distinct andnon-null.- Specified by:
spliteratorin interfaceCollection<E>- Specified by:
spliteratorin interfaceIterable<E>- Specified by:
spliteratorin interfaceSet<E>
-
parallelStream
Returns a possibly parallel stream with this tree as its source. It is allowable for this method to return a sequential stream.- Specified by:
parallelStreamin interfaceCollection<E>- Returns:
- a possibly parallel stream over the elements in this tree.
-
queryByBoundingBox
Returns all elements in the given bounding box. The given envelope shall be in the same CRS than the points in this tree (this is currently not verified). The returned stream may be parallel by default, depending on the argument given to the constructor. If the action to be applied on the stream cannot be parallel, then user should invokeBaseStream.sequential()explicitly.- Parameters:
searchRegion- envelope representing the rectangular search region.- Returns:
- elements that are in the given search region (bounds inclusive).
-