Decreased default max_request_bboxes to 4
This commit is contained in:
parent
0511154a37
commit
1e034bafa4
1 changed files with 1 additions and 1 deletions
|
@ -458,7 +458,7 @@ class OsmConflator:
|
|||
return new_box
|
||||
|
||||
# height, width, lats, lons
|
||||
max_bboxes = self.profile.get('max_request_boxes', 8)
|
||||
max_bboxes = self.profile.get('max_request_boxes', 4)
|
||||
boxes = [[lats[-1][0]-lats[0][0], lons[-1][0]-lons[0][0], lats, lons]]
|
||||
initial_area = boxes[0][0] * boxes[0][1]
|
||||
while len(boxes) < max_bboxes and len(boxes) <= len(self.dataset):
|
||||
|
|
Loading…
Add table
Reference in a new issue