如何在没有logstach的情况下将GeoJson文件插入弹性搜索云? http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/docs-bulk.html
答案 0 :(得分:0)
GeoJSON是一个简单的json文件,您可以使用CURL命令
在ES中编制索引curl -XPOST 'http://localhost:9200/test/test/1' -d @geo.json
示例geo.json
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [125.6, 10.1]
},
"properties": {
"name": "Dinagat Islands"
}
}