-
Notifications
You must be signed in to change notification settings - Fork 8.5k
[Maps] use geo-tile aggregation instead of geohash precision #29776
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
Merged
Merged
Changes from all commits
Commits
Show all changes
26 commits
Select commit
Hold shift + click to select a range
53e19e3
rename geohashgrid to geo_grid
nreese 226e4f5
more stuff
nreese 89d310b
simplify getSearchFitlers
nreese 48b351a
rename precision to geogridPrecision
nreese cd1d7a2
missed one rename precision to geogridPrecision
nreese 4bf3e77
rename funtional test
nreese 96aec31
convert geotile results
nreese 663617d
round zoom when creating precision
nreese d9d2bf6
merge with master
nreese 8554809
Merge branch 'master' of github.com:elastic/kibana into geotile_grid2
nreese 1e74830
Merge branch 'master' into feature/geotile_grid
thomasneirynck 66b899d
Merge branch 'master' into feature/geotile_grid
thomasneirynck ac200a0
make tweaks
thomasneirynck bd67b91
update test case
thomasneirynck 22ce1a7
remove cruft
thomasneirynck fefd6a1
various changes
thomasneirynck abef026
fix expectation
thomasneirynck 996be9a
improve language
thomasneirynck 451b48a
Merge branch 'master' into feature/geotile_grid
thomasneirynck 8969b2b
update screenshots
thomasneirynck 88f2948
Merge branch 'master' into feature/geotile_grid
thomasneirynck 3a2af43
fix faulty rename
thomasneirynck b5edad7
fix function argument
thomasneirynck 9cffe7c
Merge branch 'master' into feature/geotile_grid
thomasneirynck 6417126
review feedback
thomasneirynck b7eb911
improve language
thomasneirynck File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,63 @@ | ||
| /* | ||
| * Licensed to Elasticsearch B.V. under one or more contributor | ||
| * license agreements. See the NOTICE file distributed with | ||
| * this work for additional information regarding copyright | ||
| * ownership. Elasticsearch B.V. licenses this file to you under | ||
| * the Apache License, Version 2.0 (the "License"); you may | ||
| * not use this file except in compliance with the License. | ||
| * You may obtain a copy of the License at | ||
| * | ||
| * http://www.apache.org/licenses/LICENSE-2.0 | ||
| * | ||
| * Unless required by applicable law or agreed to in writing, | ||
| * software distributed under the License is distributed on an | ||
| * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
| * KIND, either express or implied. See the License for the | ||
| * specific language governing permissions and limitations | ||
| * under the License. | ||
| */ | ||
|
|
||
| import _ from 'lodash'; | ||
| import { BucketAggType } from './_bucket_agg_type'; | ||
| import { i18n } from '@kbn/i18n'; | ||
|
|
||
| export const geoTileBucketAgg = new BucketAggType({ | ||
| name: 'geotile_grid', | ||
| title: i18n.translate('common.ui.aggTypes.buckets.geotileGridTitle', { | ||
| defaultMessage: 'Geotile', | ||
| }), | ||
| params: [ | ||
| { | ||
| name: 'field', | ||
| type: 'field', | ||
| filterFieldTypes: 'geo_point' | ||
| }, | ||
| { | ||
| name: 'useGeocentroid', | ||
| default: true, | ||
| write: _.noop | ||
| }, | ||
| { | ||
| name: 'precision', | ||
| default: 0, | ||
| } | ||
| ], | ||
| getRequestAggs: function (agg) { | ||
| const aggs = []; | ||
| const params = agg.params; | ||
|
|
||
| aggs.push(agg); | ||
|
|
||
| if (params.useGeocentroid) { | ||
| aggs.push(agg.aggConfigs.createAggConfig({ | ||
| type: 'geo_centroid', | ||
| enabled: true, | ||
| params: { | ||
| field: agg.getField() | ||
| } | ||
| }, { addToAggConfigs: false })); | ||
| } | ||
|
|
||
| return aggs; | ||
| } | ||
| }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Check that
geocentroidColumnand throw an error if does not exist since there is not longer a check beforegeocentroidColumn.id