How to put geometry data in elastic search using java api?

i have geo shpae data and i want to add geo shape data into elastic search .

Hello,
it would be best to post what you tried and what is going wrong or where you are struggling doing what you need to do. Otherwise it is hard for us to help you.

Thanks

1 Like

I have this type of Data:-

{
"type": "Feature",
"properties": {
"Id": "c3ffe7f3-ae6f-4ded-886f-33b1632c6f48",
"Description": "Atbara",
"BufferValue": 0.000943974475809739,
"PlaceType": 1,
"Speed": 70,
"Color": -3381556
},
"geometry": {
"type": "Point",
"coordinates": [
33.9804,
17.69335
]
}
}

How to put this data with geo_shape using elastic search java API?