Geohex グリッド集約

複数のバケット集約で、geo_pointgeo_shape の値をグリッドを表すバケットにグループ化します。結果として得られるグリッドはスパースであり、一致するデータを持つセルのみを含みます。各セルは H3 セルインデックス に対応し、H3Index 表現 を使用してラベル付けされます。

精度(ズーム)が地上のサイズにどのように相関するかについては、H3 解像度のセル面積の表 を参照してください。この集約の精度は 0 から 15 の間で、両端を含みます。

高精度のリクエストは、RAM と結果サイズの観点から非常に高価になる可能性があります。たとえば、精度 15 の最高精度の geohex は、1 平方メートル未満をカバーするセルを生成します。高精度のリクエストを小さな地理的領域に制限するためにフィルターを使用することをお勧めします。例については、高精度リクエスト を参照してください。

シンプルな低精度リクエスト

Python

  1. resp = client.indices.create(
  2. index="museums",
  3. mappings={
  4. "properties": {
  5. "location": {
  6. "type": "geo_point"
  7. }
  8. }
  9. },
  10. )
  11. print(resp)
  12. resp1 = client.bulk(
  13. index="museums",
  14. refresh=True,
  15. operations=[
  16. {
  17. "index": {
  18. "_id": 1
  19. }
  20. },
  21. {
  22. "location": "POINT (4.912350 52.374081)",
  23. "name": "NEMO Science Museum"
  24. },
  25. {
  26. "index": {
  27. "_id": 2
  28. }
  29. },
  30. {
  31. "location": "POINT (4.901618 52.369219)",
  32. "name": "Museum Het Rembrandthuis"
  33. },
  34. {
  35. "index": {
  36. "_id": 3
  37. }
  38. },
  39. {
  40. "location": "POINT (4.914722 52.371667)",
  41. "name": "Nederlands Scheepvaartmuseum"
  42. },
  43. {
  44. "index": {
  45. "_id": 4
  46. }
  47. },
  48. {
  49. "location": "POINT (4.405200 51.222900)",
  50. "name": "Letterenhuis"
  51. },
  52. {
  53. "index": {
  54. "_id": 5
  55. }
  56. },
  57. {
  58. "location": "POINT (2.336389 48.861111)",
  59. "name": "Musée du Louvre"
  60. },
  61. {
  62. "index": {
  63. "_id": 6
  64. }
  65. },
  66. {
  67. "location": "POINT (2.327000 48.860000)",
  68. "name": "Musée d'Orsay"
  69. }
  70. ],
  71. )
  72. print(resp1)
  73. resp2 = client.search(
  74. index="museums",
  75. size="0",
  76. aggregations={
  77. "large-grid": {
  78. "geohex_grid": {
  79. "field": "location",
  80. "precision": 4
  81. }
  82. }
  83. },
  84. )
  85. print(resp2)

Ruby

  1. response = client.indices.create(
  2. index: 'museums',
  3. body: {
  4. mappings: {
  5. properties: {
  6. location: {
  7. type: 'geo_point'
  8. }
  9. }
  10. }
  11. }
  12. )
  13. puts response
  14. response = client.bulk(
  15. index: 'museums',
  16. refresh: true,
  17. body: [
  18. {
  19. index: {
  20. _id: 1
  21. }
  22. },
  23. {
  24. location: 'POINT (4.912350 52.374081)',
  25. name: 'NEMO Science Museum'
  26. },
  27. {
  28. index: {
  29. _id: 2
  30. }
  31. },
  32. {
  33. location: 'POINT (4.901618 52.369219)',
  34. name: 'Museum Het Rembrandthuis'
  35. },
  36. {
  37. index: {
  38. _id: 3
  39. }
  40. },
  41. {
  42. location: 'POINT (4.914722 52.371667)',
  43. name: 'Nederlands Scheepvaartmuseum'
  44. },
  45. {
  46. index: {
  47. _id: 4
  48. }
  49. },
  50. {
  51. location: 'POINT (4.405200 51.222900)',
  52. name: 'Letterenhuis'
  53. },
  54. {
  55. index: {
  56. _id: 5
  57. }
  58. },
  59. {
  60. location: 'POINT (2.336389 48.861111)',
  61. name: 'Musée du Louvre'
  62. },
  63. {
  64. index: {
  65. _id: 6
  66. }
  67. },
  68. {
  69. location: 'POINT (2.327000 48.860000)',
  70. name: "Musée d'Orsay"
  71. }
  72. ]
  73. )
  74. puts response
  75. response = client.search(
  76. index: 'museums',
  77. size: 0,
  78. body: {
  79. aggregations: {
  80. "large-grid": {
  81. geohex_grid: {
  82. field: 'location',
  83. precision: 4
  84. }
  85. }
  86. }
  87. }
  88. )
  89. puts response

Js

  1. const response = await client.indices.create({
  2. index: "museums",
  3. mappings: {
  4. properties: {
  5. location: {
  6. type: "geo_point",
  7. },
  8. },
  9. },
  10. });
  11. console.log(response);
  12. const response1 = await client.bulk({
  13. index: "museums",
  14. refresh: "true",
  15. operations: [
  16. {
  17. index: {
  18. _id: 1,
  19. },
  20. },
  21. {
  22. location: "POINT (4.912350 52.374081)",
  23. name: "NEMO Science Museum",
  24. },
  25. {
  26. index: {
  27. _id: 2,
  28. },
  29. },
  30. {
  31. location: "POINT (4.901618 52.369219)",
  32. name: "Museum Het Rembrandthuis",
  33. },
  34. {
  35. index: {
  36. _id: 3,
  37. },
  38. },
  39. {
  40. location: "POINT (4.914722 52.371667)",
  41. name: "Nederlands Scheepvaartmuseum",
  42. },
  43. {
  44. index: {
  45. _id: 4,
  46. },
  47. },
  48. {
  49. location: "POINT (4.405200 51.222900)",
  50. name: "Letterenhuis",
  51. },
  52. {
  53. index: {
  54. _id: 5,
  55. },
  56. },
  57. {
  58. location: "POINT (2.336389 48.861111)",
  59. name: "Musée du Louvre",
  60. },
  61. {
  62. index: {
  63. _id: 6,
  64. },
  65. },
  66. {
  67. location: "POINT (2.327000 48.860000)",
  68. name: "Musée d'Orsay",
  69. },
  70. ],
  71. });
  72. console.log(response1);
  73. const response2 = await client.search({
  74. index: "museums",
  75. size: 0,
  76. aggregations: {
  77. "large-grid": {
  78. geohex_grid: {
  79. field: "location",
  80. precision: 4,
  81. },
  82. },
  83. },
  84. });
  85. console.log(response2);

コンソール

  1. PUT /museums
  2. {
  3. "mappings": {
  4. "properties": {
  5. "location": {
  6. "type": "geo_point"
  7. }
  8. }
  9. }
  10. }
  11. POST /museums/_bulk?refresh
  12. {"index":{"_id":1}}
  13. {"location": "POINT (4.912350 52.374081)", "name": "NEMO Science Museum"}
  14. {"index":{"_id":2}}
  15. {"location": "POINT (4.901618 52.369219)", "name": "Museum Het Rembrandthuis"}
  16. {"index":{"_id":3}}
  17. {"location": "POINT (4.914722 52.371667)", "name": "Nederlands Scheepvaartmuseum"}
  18. {"index":{"_id":4}}
  19. {"location": "POINT (4.405200 51.222900)", "name": "Letterenhuis"}
  20. {"index":{"_id":5}}
  21. {"location": "POINT (2.336389 48.861111)", "name": "Musée du Louvre"}
  22. {"index":{"_id":6}}
  23. {"location": "POINT (2.327000 48.860000)", "name": "Musée d'Orsay"}
  24. POST /museums/_search?size=0
  25. {
  26. "aggregations": {
  27. "large-grid": {
  28. "geohex_grid": {
  29. "field": "location",
  30. "precision": 4
  31. }
  32. }
  33. }
  34. }

レスポンス:

コンソール-結果

  1. {
  2. ...
  3. "aggregations": {
  4. "large-grid": {
  5. "buckets": [
  6. {
  7. "key": "841969dffffffff",
  8. "doc_count": 3
  9. },
  10. {
  11. "key": "841fb47ffffffff",
  12. "doc_count": 2
  13. },
  14. {
  15. "key": "841fa4dffffffff",
  16. "doc_count": 1
  17. }
  18. ]
  19. }
  20. }
  21. }

高精度リクエスト

詳細なバケットをリクエストする際(通常は「ズームイン」マップを表示するため)、geo_bounding_box のようなフィルターを適用して対象エリアを狭める必要があります。そうしないと、数百万のバケットが作成され、返される可能性があります。

Python

  1. resp = client.search(
  2. index="museums",
  3. size="0",
  4. aggregations={
  5. "zoomed-in": {
  6. "filter": {
  7. "geo_bounding_box": {
  8. "location": {
  9. "top_left": "POINT (4.9 52.4)",
  10. "bottom_right": "POINT (5.0 52.3)"
  11. }
  12. }
  13. },
  14. "aggregations": {
  15. "zoom1": {
  16. "geohex_grid": {
  17. "field": "location",
  18. "precision": 12
  19. }
  20. }
  21. }
  22. }
  23. },
  24. )
  25. print(resp)

Js

  1. const response = await client.search({
  2. index: "museums",
  3. size: 0,
  4. aggregations: {
  5. "zoomed-in": {
  6. filter: {
  7. geo_bounding_box: {
  8. location: {
  9. top_left: "POINT (4.9 52.4)",
  10. bottom_right: "POINT (5.0 52.3)",
  11. },
  12. },
  13. },
  14. aggregations: {
  15. zoom1: {
  16. geohex_grid: {
  17. field: "location",
  18. precision: 12,
  19. },
  20. },
  21. },
  22. },
  23. },
  24. });
  25. console.log(response);

コンソール

  1. POST /museums/_search?size=0
  2. {
  3. "aggregations": {
  4. "zoomed-in": {
  5. "filter": {
  6. "geo_bounding_box": {
  7. "location": {
  8. "top_left": "POINT (4.9 52.4)",
  9. "bottom_right": "POINT (5.0 52.3)"
  10. }
  11. }
  12. },
  13. "aggregations": {
  14. "zoom1": {
  15. "geohex_grid": {
  16. "field": "location",
  17. "precision": 12
  18. }
  19. }
  20. }
  21. }
  22. }
  23. }

レスポンス:

コンソール-結果

  1. {
  2. ...
  3. "aggregations": {
  4. "zoomed-in": {
  5. "doc_count": 3,
  6. "zoom1": {
  7. "buckets": [
  8. {
  9. "key": "8c1969c9b2617ff",
  10. "doc_count": 1
  11. },
  12. {
  13. "key": "8c1969526d753ff",
  14. "doc_count": 1
  15. },
  16. {
  17. "key": "8c1969526d26dff",
  18. "doc_count": 1
  19. }
  20. ]
  21. }
  22. }
  23. }
  24. }

追加のバウンディングボックスフィルタリングを伴うリクエスト

geohex_grid 集約は、提供された境界と交差するセルを考慮する bounds パラメータをサポートしています。bounds パラメータは、geo-bounding box クエリと同じ バウンディングボックス形式 を受け入れます。このバウンディングボックスは、集約前にポイントをフィルタリングするための追加の geo_bounding_box クエリとともに、またはそれなしで使用できます。これは独立したバウンディングボックスであり、集約の文脈で定義された追加の geo_bounding_box クエリと交差したり、等しい場合や、離れている場合があります。

Python

  1. resp = client.search(
  2. index="museums",
  3. size="0",
  4. aggregations={
  5. "tiles-in-bounds": {
  6. "geohex_grid": {
  7. "field": "location",
  8. "precision": 12,
  9. "bounds": {
  10. "top_left": "POINT (4.9 52.4)",
  11. "bottom_right": "POINT (5.0 52.3)"
  12. }
  13. }
  14. }
  15. },
  16. )
  17. print(resp)

Js

  1. const response = await client.search({
  2. index: "museums",
  3. size: 0,
  4. aggregations: {
  5. "tiles-in-bounds": {
  6. geohex_grid: {
  7. field: "location",
  8. precision: 12,
  9. bounds: {
  10. top_left: "POINT (4.9 52.4)",
  11. bottom_right: "POINT (5.0 52.3)",
  12. },
  13. },
  14. },
  15. },
  16. });
  17. console.log(response);

コンソール

  1. POST /museums/_search?size=0
  2. {
  3. "aggregations": {
  4. "tiles-in-bounds": {
  5. "geohex_grid": {
  6. "field": "location",
  7. "precision": 12,
  8. "bounds": {
  9. "top_left": "POINT (4.9 52.4)",
  10. "bottom_right": "POINT (5.0 52.3)"
  11. }
  12. }
  13. }
  14. }
  15. }

レスポンス:

コンソール-結果

  1. {
  2. ...
  3. "aggregations": {
  4. "tiles-in-bounds": {
  5. "buckets": [
  6. {
  7. "key": "8c1969c9b2617ff",
  8. "doc_count": 1
  9. },
  10. {
  11. "key": "8c1969526d753ff",
  12. "doc_count": 1
  13. },
  14. {
  15. "key": "8c1969526d26dff",
  16. "doc_count": 1
  17. }
  18. ]
  19. }
  20. }
  21. }

geo_shape フィールドの集約

Geoshape フィールドの集約は、ポイントの集約とほぼ同様に機能します。2つの重要な違いがあります:

  • geo_point データを集約する際、ポイントは大円によって定義されたエッジ内にある場合、六角形タイル内にあると見なされます。言い換えれば、計算は球面座標を使用して行われます。しかし、geo_shape データを集約する際、形状は等角投影で直線として定義されたエッジ内にある場合、六角形内にあると見なされます。理由は、Elasticsearch と Lucene がインデックス作成および検索時に等角投影を使用してエッジを処理するためです。検索結果と集約結果が整合することを保証するために、集約でも等角投影を使用します。ほとんどのデータにとって、この違いは微妙であったり、気づかれないことがあります。しかし、低ズームレベル(低精度)では、特に赤道から遠く離れている場合、これは顕著になる可能性があります。たとえば、同じポイントデータが geo_pointgeo_shape としてインデックスされている場合、低解像度で集約すると異なる結果が得られる可能性があります。
  • geotile_grid の場合と同様に、単一の形状が複数のタイルでカウントされることがあります。形状の任意の部分がそのタイルと交差する場合、その形状は一致する値のカウントに寄与します。以下はこれを示す画像です:

geoshape hexgrid

オプション

field (必須、文字列) インデックスされた geo-point または geo-shape 値を含むフィールド。
マッピングは明示的に geo_point または geo_shape フィールドとして行う必要があります。
フィールドが配列を含む場合、geohex_grid はすべての配列値を集約します。
precision (オプション、整数) 結果内のセル/バケットを定義するために使用されるキーの整数ズーム。デフォルトは 6 です。[0,15] の外の値は拒否されます。
bounds (オプション、オブジェクト) 各バケット内の geo-points または geo-shapes をフィルタリングするために使用されるバウンディングボックス。
geo-bounding box query と同じバウンディングボックス形式を受け入れます。
size (オプション、整数) 返されるバケットの最大数。デフォルトは 10,000 です。
結果がトリミングされる場合、バケットは含まれるドキュメントの量に基づいて優先されます。
shard_size (オプション、整数) 各シャードから返されるバケットの数。デフォルトは max(10,(size x number-of-shards)) で、最終結果のトップセルのより正確なカウントを可能にします。各シャードは異なるトップ結果の順序を持つ可能性があるため、ここで大きな数を使用すると不正確なカウントのリスクが減りますが、パフォーマンスコストが発生します。