我正试图在Kibana的任何地图上查看我的geojson。 我的原始数据是带有坐标数组的地理多边形。 根据我的理解,ElasticSearch / Kibana无法可视化地理形状,因此我尝试将坐标设为地理点,以便我可以在tilemap上查看它。
这可能吗?我试图创建几个不同的映射。我最新的一个不会让我将数据索引到它。有更好的方法吗? (在一个理想的世界里,我可以绘制一个多边形......虽然我不认为Kibana支持这个)。我使用的是5.3版本
原始数据(用long和lat替换实际值):
{
"geometry": {
"type": "Polygon",
"coordinates": [
[
[long,lat],
[long,lat],
[long,lat],
[long,lat],
[long,lat]
]
]
},
当我索引我的json:
时,这是弹性搜索默认的映射{
"indexname" : {
"mappings" : {
"my_type" : {
"properties" : {
"geometry" : {
"properties" : {
"coordinates" : {
"type" : "float"
},
"type" : {
"type" : "text",
"fields" : {
"keyword" : {
"type" : "keyword",
"ignore_above" : 256
}
}
}
}
},
这是我尝试修复映射的尝试(但是,这种方法不会对任何索引数据采取:
curl -XPUT "http://localhost:9200/indexname" -d "{\"mappings\" : {\"my_type\" : {\"properties\" : {\"geometry\" : {\"type\":\"geo_point\"}}}}}"
如果我尝试这个命令它会显示在kibana中,但是当我尝试运行一个tilemap时,地图就会消失,所以我假设它没有得到正确的数据:
curl -XPUT "http://localhost:9200/indexname" -d "{\"mappings\" : {\"my_type\" : {\"properties\" : {\"coordinates\" : {\"type\":\"geo_point\"}}}}}"
修改
没有成功。我试过了:
kibana-plugin安装文件:///kibana-5.3.0-windows-x86/kibana-5.3.0-windows-x86/plugins/enhanced-tilemap-v2017-03-17-5.2.2/kibana/ enhanced_tilemap
Attempting to transfer from file:///kibana-5.3.0-windows-x86/kibana-5.3.0-windows-x86/plugins/enhanced-tilemap-v2017-03-17-5.2.2/kibana/enhanced_tilemap
Transferring unknown number of bytes
Error: EISDIR: illegal operation on a directory, read
Plugin installation was unsuccessful due to error "EISDIR: illegal operation on a directory, read"
kibana-plugin install http://artifacts.elastic.co/downloads/kibana-plugins/enhanced_tilemap/enhanced_tilemap-5.2.2.zip
Attempting to transfer from http://artifacts.elastic.co/downloads/kibana-plugins/enhanced_tilemap/enhanced_tilemap-5.2.2.zip
Attempting to transfer from https://artifacts.elastic.co/downloads/kibana-plugins/http://artifacts.elastic.co/downloads/kibana-plugins/enhanced_tilemap/enhanced_tilemap-5.2.2.zip/http://artifacts.elastic.co/downloads/kibana-plugins/enhanced_tilemap/enhanced_tilemap-5.2.2.zip-5.3.0.zip
Plugin installation was unsuccessful due to error "No valid url specified."
答案 0 :(得分:1)
下一个kibana plugin允许您可视化多边形。
如果使用kibana 5.3,插件安装不支持5.2以上的安装操作 您可以选择以下选项之一:
1)在插件github中打开问题
2)克隆插件,将zip文件解压缩到插件目录vin kibana home, cd到你下载的插件并输入bower install,重启kibana