Uses of Interface
com.github.micycle1.geoblitz.HPRtreeX.DistanceToItem
-
Uses of HPRtreeX.DistanceToItem in com.github.micycle1.geoblitz
Methods in com.github.micycle1.geoblitz with parameters of type HPRtreeX.DistanceToItemModifier and TypeMethodDescriptionHPRtreeX.nearestNeighbor(org.locationtech.jts.geom.Coordinate q, HPRtreeX.DistanceToItem<T> distFn) Finds and returns the item nearest to the query pointq, according to the user-supplied linear distance functiondistFn.HPRtreeX.nearestNeighborSq(org.locationtech.jts.geom.Coordinate q, HPRtreeX.DistanceToItem<T> distSqFn) Finds and returns the item nearest to the query pointq, according to the user-supplied squared distance functiondistSqFn.HPRtreeX.rangeQuery(org.locationtech.jts.geom.Coordinate q, double maxDistance, HPRtreeX.DistanceToItem<T> distFn) Finds and returns all items whose linear distance to the query pointqis less than or equal tomaxDistance, according to the user-supplied distance functiondistFn.HPRtreeX.rangeQuerySq(org.locationtech.jts.geom.Coordinate q, double maxDistanceSq, HPRtreeX.DistanceToItem<T> distSqFn) Finds and returns all items whose squared distance to the query pointqis less than or equal tomaxDistanceSq, according to the user-supplied squared-distance functiondistSqFn.