123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148 |
- [[search-aggregations-metrics-cartesian-bounds-aggregation]]
- === Cartesian-bounds aggregation
- ++++
- <titleabbrev>Cartesian-bounds</titleabbrev>
- ++++
- A metric aggregation that computes the spatial bounding box containing all values for a <<point>> or <<shape>> field.
- Example:
- [source,console]
- --------------------------------------------------
- PUT /museums
- {
- "mappings": {
- "properties": {
- "location": {
- "type": "point"
- }
- }
- }
- }
- POST /museums/_bulk?refresh
- {"index":{"_id":1}}
- {"location": "POINT (491.2350 5237.4081)", "city": "Amsterdam", "name": "NEMO Science Museum"}
- {"index":{"_id":2}}
- {"location": "POINT (490.1618 5236.9219)", "city": "Amsterdam", "name": "Museum Het Rembrandthuis"}
- {"index":{"_id":3}}
- {"location": "POINT (491.4722 5237.1667)", "city": "Amsterdam", "name": "Nederlands Scheepvaartmuseum"}
- {"index":{"_id":4}}
- {"location": "POINT (440.5200 5122.2900)", "city": "Antwerp", "name": "Letterenhuis"}
- {"index":{"_id":5}}
- {"location": "POINT (233.6389 4886.1111)", "city": "Paris", "name": "Musée du Louvre"}
- {"index":{"_id":6}}
- {"location": "POINT (232.7000 4886.0000)", "city": "Paris", "name": "Musée d'Orsay"}
- POST /museums/_search?size=0
- {
- "query": {
- "match": { "name": "musée" }
- },
- "aggs": {
- "viewport": {
- "cartesian_bounds": {
- "field": "location" <1>
- }
- }
- }
- }
- --------------------------------------------------
- <1> The `cartesian_bounds` aggregation specifies the field to use to obtain the bounds, which must be a <<point>> or a <<shape>> type.
- [NOTE]
- Unlike the case with the <<geobounds-aggregation-geo-shape, `geo_bounds`>> aggregation,
- there is no option to set <<geo-bounds-wrap-longitude, `wrap_longitude`>>.
- This is because the cartesian space is euclidean and does not wrap back on itself.
- So the bounds will always have a minimum x value less than or equal to the maximum x value.
- The above aggregation demonstrates how one would compute the bounding box of the location field for all documents with a name matching "musée".
- The response for the above aggregation:
- [source,console-result]
- --------------------------------------------------
- {
- ...
- "aggregations": {
- "viewport": {
- "bounds": {
- "top_left": {
- "x": 232.6999969482422,
- "y": 4886.111328125
- },
- "bottom_right": {
- "x": 233.63890075683594,
- "y": 4886.0
- }
- }
- }
- }
- }
- --------------------------------------------------
- // TESTRESPONSE[s/\.\.\./"took": $body.took,"_shards": $body._shards,"hits":$body.hits,"timed_out":false,/]
- [discrete]
- [role="xpack"]
- [[cartesian-bounds-aggregation-shape]]
- ==== Cartesian Bounds Aggregation on `shape` fields
- The Cartesian Bounds Aggregation is also supported on `cartesian_shape` fields.
- Example:
- [source,console]
- --------------------------------------------------
- PUT /places
- {
- "mappings": {
- "properties": {
- "geometry": {
- "type": "shape"
- }
- }
- }
- }
- POST /places/_bulk?refresh
- {"index":{"_id":1}}
- {"name": "NEMO Science Museum", "geometry": "POINT(491.2350 5237.4081)" }
- {"index":{"_id":2}}
- {"name": "Sportpark De Weeren", "geometry": { "type": "Polygon", "coordinates": [ [ [ 496.5305328369141, 5239.347642069457 ], [ 496.6979026794433, 5239.1721758934835 ], [ 496.9425201416015, 5239.238958618537 ], [ 496.7944622039794, 5239.420969150824 ], [ 496.5305328369141, 5239.347642069457 ] ] ] } }
- POST /places/_search?size=0
- {
- "aggs": {
- "viewport": {
- "cartesian_bounds": {
- "field": "geometry"
- }
- }
- }
- }
- --------------------------------------------------
- // TEST
- [source,console-result]
- --------------------------------------------------
- {
- ...
- "aggregations": {
- "viewport": {
- "bounds": {
- "top_left": {
- "x": 491.2349853515625,
- "y": 5239.4208984375
- },
- "bottom_right": {
- "x": 496.9425048828125,
- "y": 5237.408203125
- }
- }
- }
- }
- }
- --------------------------------------------------
- // TESTRESPONSE[s/\.\.\./"took": $body.took,"_shards": $body._shards,"hits":$body.hits,"timed_out":false,/]
|