Parsing OSM links

main
Bob Mottram 2022-06-16 11:38:44 +01:00
parent 568f1a4237
commit 99130aa0ca
1 changed files with 2 additions and 2 deletions

View File

@ -18,10 +18,10 @@ from utils import save_json
def _geocoords_from_osm_link(url: str, osm_domain: str) -> (int, float, float):
"""Returns geocoordinates from an OSM map link
"""
if osm_domain + '/#map=' not in url:
if osm_domain + '#map=' not in url:
return None, None, None
coords_str = url.split(osm_domain + '/#map=')[1]
coords_str = url.split(osm_domain + '#map=')[1]
if '/' not in coords_str:
return None, None, None