Kibana 3 GeoJSON vs Kibana4 Geohash

时间:2014-11-26 21:01:35

标签: elasticsearch geojson kibana geohashing

当我意识到无法使用带有kibana3索引的tilemap时,我正在测试Kibana 4 beta2。

使用Kibana3,可以使用包含Long,Lat(GeoJson)的数组在“Bettermap”上添加点。

  "coordinates": [
    -50.6667,
    -32.99
  ]

现在Kibana4使用elasticsearch的geohash。

有人知道如何在kibana4上使用geojson吗? 是否可以从geojson获得geohash?

1 个答案:

答案 0 :(得分:0)

您只需要为坐标字段使用以下映射:

"coordinates" : {
    "type" : "geo_point",
    "lat_lon" : true,
    "geohash" : true
 }

现在它将显示在新的瓷砖地图中。我必须增加精确滑块以使位置更“精确”。

您可能想要使用doc_values,我不确定其重要性:

"coordinates" : {
    "type" : "geo_point",
    "lat_lon" : true,
    "geohash" : true,
    "index": "not_analyzed",
    "doc_values": true
 }