shahrs87 commented on code in PR #897: URL: https://github.com/apache/lucene/pull/897#discussion_r879640507
########## lucene/core/src/java/org/apache/lucene/document/LatLonPoint.java: ########## @@ -362,4 +377,72 @@ public static Query newDistanceFeatureQuery( } return query; } + + /** + * Finds the {@code n} nearest indexed points to the provided point, according to Haversine + * distance. + * + * <p>This is functionally equivalent to running {@link MatchAllDocsQuery} with a {@link + * LatLonDocValuesField#newDistanceSort}, but is far more efficient since it takes advantage of + * properties the indexed BKD tree. Currently this only works with {@link Lucene90PointsFormat} Review Comment: Removed in the latest revision. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@lucene.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@lucene.apache.org For additional commands, e-mail: issues-h...@lucene.apache.org