elasticsearch - How to insert GeoJson file into elastic Search cloud without logstach and CURL command? -
how insert geojson file elastic search cloud without logstach? http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/docs-bulk.html
geojson simple json file can index in es using curl command
curl -xpost 'http://localhost:9200/test/test/1' -d @geo.json
sample geo.json
{ "type": "feature", "geometry": { "type": "point", "coordinates": [125.6, 10.1] }, "properties": { "name": "dinagat islands" } }
Comments
Post a Comment