Package org.meteoinfo.jts.index.strtree
Interface ItemDistance
-
- All Known Implementing Classes:
GeometryItemDistance
public interface ItemDistanceA function method which computes the distance between twoItemBoundables in anSTRtree. Used for Nearest Neighbour searches.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description doubledistance(ItemBoundable item1, ItemBoundable item2)Computes the distance between two items.
-
-
-
Method Detail
-
distance
double distance(ItemBoundable item1, ItemBoundable item2)
Computes the distance between two items.- Parameters:
item1-item2-- Returns:
- the distance between the items
- Throws:
java.lang.IllegalArgumentException- if the metric is not applicable to the arguments
-
-