class OpenSearch::DSL::Search::Aggregations::GeohashGrid

A multi-bucket aggregation which will return document counts for geohash grid cells

@example

search do
  aggregation :venue_distributions do
    geohash_grid do
      field     :location
      precision 5
    end
  end
end

See the integration test for a full example.

@see opensearch.org/guide/en/opensearch/guide/current/geohash-grid-agg.html