Extract bbox calculation in the downloader

This commit is contained in:
Ilya Zverev 2018-05-28 15:32:49 +03:00
parent a8e9db4863
commit a06ff6f837
2 changed files with 14 additions and 4 deletions

View file

@ -40,7 +40,8 @@ class OsmConflator:
'dataset_id', required='A fairly unique id of the dataset to query OSM')
def download_osm(self):
self.osmdata = self.downloader.download(self.dataset.values())
bboxes = self.downloader.calc_boxes(self.dataset.values())
self.osmdata = self.downloader.download(bboxes)
def parse_osm(self, fileobj):
self.osmdata = self.downloader.parse_xml(fileobj)

View file

@ -247,9 +247,7 @@ class OsmDownloader:
return result
def download(self, dataset_points):
"""Constructs an Overpass API query and requests objects
to match from a server."""
def calc_boxes(self, dataset_points):
profile_bbox = self.profile.get('bbox', True)
if not profile_bbox:
bboxes = [None]
@ -257,6 +255,17 @@ class OsmDownloader:
bboxes = [profile_bbox]
else:
bboxes = self.split_into_bboxes(dataset_points)
return bboxes
def download(self, bboxes=None):
"""Constructs an Overpass API query and requests objects
to match from a server."""
if not bboxes:
pbbox = self.profile.get('bbox', True)
if pbbox and hasattr(pbbox, '__len__') and len(pbbox) == 4:
bboxes = [pbbox]
else:
bboxes = [None]
query = self.construct_overpass_query(bboxes)
logging.debug('Overpass query: %s', query)