1

我在网上按照 ElasticSearch 指南将坐标表示为“lat,lng”,但它似乎不起作用,直到我将所有内容都翻转为“lng,lat”。我什至必须翻转 top_left 和 bottom_right 才能使查询正常工作。

有没有人遇到同样的问题?显然这不是文档所说的使用它的方式,但只有当我以这种方式格式化时它才有效。

导轨格式

def self.search(params)
      tire.search( page: params[:page], per_page: 2 ) do
           query { all }
           filter :geo_bounding_box, location: { top_left: " -121.88596979687497, 37.33588487375733", bottom_right: " -122.43528620312497, 37.553946238118264" }
      end
end

卷曲格式

curl -X GET "http://localhost:9200/articles/article/_search?page=&per_page=2&size=2&pretty=true" -d '{"query":{"match_all":{}},"facets":{"condition":{"terms":{"field":"condition","size":10,"all_terms":false}}},"filter":{"geo_bounding_box":{"location":{"top_left":" -121.88596979687497, 37.33588487375733","bottom_right":" -122.43528620312497, 37.553946238118264"}}},"size":2}'

控制台响应

{
  "took" : 1,
  "timed_out" : false,
  "_shards" : {
    "total" : 5,
    "successful" : 5,
    "failed" : 0
  },
  "hits" : {
    "total" : 169,
    "max_score" : 1.0,
    "hits" : [ {
      "_index" : "articles",
      "_type" : "article",
      "_id" : "4f72bc7d0bdb820f02000002",
      "_score" : 1.0, "_source" : {"content":"words here!","location":[37.444995,-122.160628],"name":"harro"}
    }, {
      "_index" : "articles",
      "_type" : "article",
      "_id" : "4fdf0cf20bdb82336c000002",
      "_score" : 1.0, "_source" : {"content":"Run of the mill","location":[37.33588487375733,-121.88596979687497],"name":"Billy Bob"}
    } ]
  },
  "facets" : {
    "condition" : {
      "_type" : "terms",
      "missing" : 5597,
      "total" : 0,
      "other" : 0,
      "terms" : [ ]
    }
  }
4

1 回答 1

4

当地理点指定为字符串时,它应该是"lat,lon"格式。当它被指定为一个数组时,它应该是[lon, lat]格式的。

于 2012-06-21T01:46:35.083 回答