Hi,
We have already indexed data with location geo_shape.
mapping
"location": {
"type": "geo_shape",
"points_only" : true
}
indexed as
"location": {
"coordinates": [
"72.82568500000001",
"19.208425"
],
"type": "point"
}
- Will we be able to _reindex geo_shape to new mapping as geo_point ?
My requirement is to save only a point(lat, lng) and want to check whether this point fall inside a polygon.
- For this which datatype is the best way of implementation in terms of speed and reliability. ?