-
Notifications
You must be signed in to change notification settings - Fork 25k
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
geo bounds aggregation: Add support for geo_shape. #7574
Comments
@colings86 what do you think? |
I would find this feature very useful as well. We would generate density maps from those aggregation! |
Any update on this? Does this require some additional features in Lucene or does this require changes to ElasticSearch only? |
No additional Lucene features required to support this feature. I'm currently refactoring some legacy |
@nknize Thanks a lot for the update. |
Great |
Any planned date for release? |
@nknize just assigned this to you so you don't miss it |
@nknize just pinging for an update on this. |
+1 |
2.2 for sure and can be back ported to 2.0+ (@clintongormley thoughts on back porting?). |
@nknize new features/enhancements go into the current stable branch and above only (ie 2.2+ at the moment) |
What is the latest on this? |
This was put on hold to prioritize spatial indexing performance issues in lucene 6.0. Once we get that stable this will move back up in the list. |
Ok cool thanks for letting me know. Do you know if this will add support to allow aggregation of geoshape polygons or is this just for aggregation of points by polygons? |
@clintongormley when is the "BKD-backed geoshapes" planned to be merged? |
@hanoch when it is ready. I can't be any more specific than that |
Hi, this feature has complate? @clintongormley |
+1 |
1 similar comment
+1 |
any progress on that? |
Have any updates on that ? |
We also won't be able to add It is possible that we will need to limit the number of shape vertices to comply w/ Lucene docValue size limits for |
Depends on #37206 |
Apparently Kibana believes this has been fixed already. See this bug report |
This is a requirement to be able to do layer-fitting on layers backed by |
When indexing features, add 4 fields to store the coordinate of the bounding box of each features. On client side use min/max aggregations to retrieve the bounding box of all features matching filter. When ES support for geo_bounds aggregation will be implemented for geo_shape type See elastic/elasticsearch#7574 The following would be better probably: ``` "viewport" : { "geo_bounds" : { "field" : "location", "wrap_longitude" : true } } ```
* WFS Feature / Zoom to filtered results. When indexing features, add 4 fields to store the coordinate of the bounding box of each features. On client side use min/max aggregations to retrieve the bounding box of all features matching filter. When ES support for geo_bounds aggregation will be implemented for geo_shape type See elastic/elasticsearch#7574 The following would be better probably: ``` "viewport" : { "geo_bounds" : { "field" : "location", "wrap_longitude" : true } } ``` * WFS Feature / Zoom to filtered results / Zoom when applying filters too. * WFS Feature / Clean up sort issue. Do not zoom to on empty aggs. * WFS / Only use regex filter on string type. * WFS / Only use regex filter on string type. * WFS / Zoom to point with a buffer. * WFS / Fix heatmap index requests
Any progress on this issue? any ETA? |
this was implemented in #55328! |
Some time ago I created an enhancement request to support a bounding box aggregation (#5634) as this is very useful for mapping applications to allow a map to zoom to the extent (bounding box) of all matches. This was implemented in v1.3.0 but unfortunately only for the geo_point type.
The text was updated successfully, but these errors were encountered: