-
Notifications
You must be signed in to change notification settings - Fork 25.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add GeoJSON Point format support for geo_point field value formats #47815
Comments
Pinging @elastic/es-analytics-geo (:Analytics/Geo) |
yeah... it took me a second to realize these are slightly different issues, where the other issue would supersede this one if done |
@talevy do we still want to do that? |
I, personally, do not see why this should not be supported. That being said, the silence on this issue reflects a lack of demand for this feature... |
I think it should help consistency. I will keep it open for now, but we can discuss it in a team meeting if needed. |
For consistency it would be great to add support for GeoJSON when indexing |
Proposal
Support GeoJSON's
Point
type.Existing Support
geo_point
currently supports the following formats"POINT(0 0)"
, WKT{ "lat": 0, "lon": 0}
, lat/lon object[0, 0]
, [lon, lat] array"0, 0"
, (lat, lon) string"gbsuv"
, geohashReason
Adding support for GeoJSON would make it easier to index the same field value as both geo_point and geo_shape when GeoJSON is preferred over WKT.
The text was updated successfully, but these errors were encountered: