不同格式的geo_point类型?

时间:2012-05-14 03:35:54

标签: java lucene geolocation elasticsearch

从此处的文档:http://www.elasticsearch.org/guide/reference/mapping/geo-point-type.html

它说geo_point接受不同的格式。例如:支持这两个

  
      
  1. “location”:“ - 71.34,41.12”

  2.   
  3. “location”:{           “lat”:41.12,           “lon”: - 71.34   }

  4.   

我想问这两个是否相同? 我正在使用ES 0.17.6并遇到此问题:

当我使用(1)格式进行索引时,我无法使用(2)格式进行搜索。如果 我使用(1)格式再次搜索,它是成功的。

例如: 如果我用(2)格式索引:

curl -XPUT 'http://localhost:9200/twitter/pin/1' -d '
{
    "pin" : {
        "location" : {
                        lat: 41.12,
                        lon: -71.34
                },
        "tag" : ["food", "family"],
        "text" : "my favorite family restaurant"
    }
}' 

我无法使用此(1)格式进行搜索

curl -XGET 'http://localhost:9200/twitter/pin/_search' -d '
{
        "query": {
                "filtered" : {
                        "query" : {
                                "field" : { "text" : "restaurant" }
                        },
                        "filter" : {
                                "geo_distance" : {
                                        "distance" : "12km",
                                        "pin.location" : "-71.34, 41.12"
                                }
                        }
                }
        }
}
' 

如果我使用(2)格式搜索它将会成功:

2. "pin.location" : {
            "lat" : 41.12,
            "lon" : -71.34
    }

1 个答案:

答案 0 :(得分:2)

当geo_point表示为字符串时,它应遵循lat lon格式:"pin.location" : "41.12, -71.34"