【问题标题】:Lucene Spatial: Sorting by DistanceLucene Spatial:按距离排序
【发布时间】:2015-04-27 08:36:41
【问题描述】:

也许我在这里遗漏了一些东西,但我无法在 Lucene Spatial (10.3) 中进行空间排序,如 SpatialExample.java 中所述。这是我的代码(Scala - 但将 1:1 转换为 Java):

val searcher = placeSearcherManager.acquire()

val point = spatialCtx.makePoint(lat, lon)

val args =
  new SpatialArgs(SpatialOperation.Intersects,
    spatialCtx.makeCircle(lon, lat, 
    DistanceUtils.dist2Degrees(100, DistanceUtils.EARTH_MEAN_RADIUS_KM)))

val filter = spatialStrategy.makeFilter(args)

val valueSource = spatialStrategy.makeDistanceValueSource(point)

// Here's what's supposed to set up distance sorting
val distanceSort = new Sort(valueSource.getSortField(false)).rewrite(searcher)

try {  
  val topDocs = searcher.search(new MatchAllDocsQuery(), filter, limit, distanceSort) 
  val scoreDocs = topDocs.scoreDocs

  // Print the results
  scoreDocs.foreach(scoreDoc => {
    val doc = searcher.doc(scoreDoc.doc)
    val docPoint = spatialCtx.readShape(doc.get(spatialStrategy.getFieldName())).asInstanceOf[Point]
    val distance = spatialCtx.getDistCalc().distance(args.getShape.getCenter, docPoint)
    val distanceKM = DistanceUtils.degrees2Dist(distance, DistanceUtils.EARTH_EQUATORIAL_RADIUS_KM)
    Logger.info("distance: " + distanceKM)
  })
} finally {
  placeSearcherManager.release(searcher)
}

当我运行查询时,结果似乎完全不受排序的影响:

[info] application - distance: 406.01578203364323
[info] application - distance: 327.67269076509876
[info] application - distance: 218.94951150657565
[info] application - distance: 251.37927074183852
[info] application - distance: 140.6570939383426
[info] application - distance: 460.47502999630586
[info] application - distance: 462.37676932762116
[info] application - distance: 489.49001138999256
[info] application - distance: 392.0773262500455
[info] application - distance: 227.8864179949065

将排序顺序从升序更改为降序也无效。我看不出我正在做的事情和官方示例之间有什么区别(除了使用SearcherManager,但我已经检查过了,这并没有什么区别)。任何提示表示赞赏!

【问题讨论】:

  • 不是 val point = spatialCtx.makePoint(lat, lon) 向后调用吗,应该是 lon, lat 因为它期待 x/y ?

标签: java scala sorting lucene


【解决方案1】:

啊。回到回答我自己的问题。万一有人再次偶然发现:在我的情况下,原因是我的代码使用了两个不同的策略对象进行读取和写入 - 并且那些对 GeoHashPrefixTree 的 maxLevel 参数使用不同的设置。永远不要那样做! ;-)

【讨论】: