File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
7
7
8
8
## [ Unreleased] - TBD
9
9
10
+ ### Fixed
11
+
12
+ - Aggregations 'grid_code_frequency' and 'grid_code_landsat_frequency' were inadvertently
13
+ configured to only return 10 results, now they return all results.
14
+
10
15
### Added
11
16
12
17
- Added API Gateway logging config to example serverless.yml config.
Original file line number Diff line number Diff line change @@ -554,6 +554,7 @@ const ALL_AGGREGATIONS = {
554
554
terms : {
555
555
field : 'properties.grid:code' ,
556
556
missing : 'none' ,
557
+ size : 10000 ,
557
558
}
558
559
} ,
559
560
grid_code_landsat_frequency : {
@@ -565,7 +566,8 @@ const ALL_AGGREGATIONS = {
565
566
source : "return 'WRS' + _value + '-' + "
566
567
+ "doc['properties.landsat:wrs_path'].value + "
567
568
+ "doc['properties.landsat:wrs_row'].value"
568
- }
569
+ } ,
570
+ size : 10000 ,
569
571
}
570
572
} ,
571
573
sun_elevation_frequency : {
You can’t perform that action at this time.
0 commit comments