Skip to content

Commit f718a02

Browse files
author
Phil Varner
committed
remove restriction of 2000 on grid_code_frequency and grid_code_landsat_frequency buckets
1 parent 98e20b8 commit f718a02

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
1818

1919
- Remove node streams-based ingest code to prepare for post-ingest notifications
2020
- Use the `type` field to determine if ingest is a Collection or Item
21+
- Aggregations `grid_code_frequency` and `grid_code_landsat_frequency` are no longer
22+
restricted to 2000 buckets
2123

2224
## [1.1.0] - 2023-05-02
2325

src/lib/database.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -553,14 +553,12 @@ const ALL_AGGREGATIONS = {
553553
grid_code_frequency: {
554554
terms: {
555555
field: 'properties.grid:code',
556-
size: 2000,
557556
missing: 'none',
558557
}
559558
},
560559
grid_code_landsat_frequency: {
561560
terms: {
562561
field: 'properties.landsat:wrs_type',
563-
size: 2000,
564562
missing: 'none',
565563
script: {
566564
lang: 'painless',

0 commit comments

Comments
 (0)