Get rid of obsolete --bbox parameter for process_subways.py

This commit is contained in:
Alexey Zakharenkov 2021-06-25 23:54:55 +03:00 committed by Olga Khlopkova
parent 2734f9fd9e
commit 2dfb2e46e0
2 changed files with 6 additions and 15 deletions

View file

@ -59,7 +59,7 @@ if you allow the `process_subway.py` to fetch data from Overpass API. Here are t
```
3. Execute
```bash
python3 ./process_subways.py --bbox -c "London" \
python3 ./process_subways.py -c "London" \
-l validation.log -d London.yaml
```
here

View file

@ -26,13 +26,11 @@ from subway_structure import (
)
def overpass_request(overground, overpass_api, bboxes=None):
def overpass_request(overground, overpass_api, bboxes):
query = '[out:json][timeout:1000];('
if bboxes is None:
bboxes = [None]
modes = MODES_OVERGROUND if overground else MODES_RAPID
for bbox in bboxes:
bbox_part = '' if not bbox else '({})'.format(','.join(str(coord) for coord in bbox))
bbox_part = '({})'.format(','.join(str(coord) for coord in bbox))
query += '('
for mode in modes:
query += 'rel[route="{}"]{};'.format(mode, bbox_part)
@ -52,13 +50,12 @@ def overpass_request(overground, overpass_api, bboxes=None):
def multi_overpass(overground, overpass_api, bboxes):
if not bboxes:
return overpass_request(overground, overpass_api, None)
SLICE_SIZE = 10
INTERREQUEST_WAIT = 5 # in seconds
result = []
for i in range(0, len(bboxes) + SLICE_SIZE - 1, SLICE_SIZE):
if i > 0:
time.sleep(5)
time.sleep(INTERREQUEST_WAIT)
result.extend(overpass_request(overground, overpass_api, bboxes[i:i+SLICE_SIZE]))
return result
@ -167,9 +164,6 @@ if __name__ == '__main__':
parser.add_argument('--overpass-api',
default='http://overpass-api.de/api/interpreter',
help="Overpass API URL")
parser.add_argument(
'-b', '--bbox', action='store_true',
help='Use city boundaries to query Overpass API instead of querying the world')
parser.add_argument('-q', '--quiet', action='store_true', help='Show only warnings and errors')
parser.add_argument('-c', '--city', help='Validate only a single city or a country')
parser.add_argument('-t', '--overground', action='store_true',
@ -232,10 +226,7 @@ if __name__ == '__main__':
logging.error('Would not download that many cities from Overpass API, '
'choose a smaller set')
sys.exit(3)
if options.bbox:
bboxes = [c.bbox for c in cities]
else:
bboxes = None
bboxes = [c.bbox for c in cities]
logging.info('Downloading data from Overpass API')
osm = multi_overpass(options.overground, options.overpass_api, bboxes)
calculate_centers(osm)