diff options
author | Daniel Friesel <derf@finalrewind.org> | 2021-03-28 11:47:52 +0200 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2021-03-28 11:47:52 +0200 |
commit | bcb0b6e080d7beda5c64e08347eebef1940e31d6 (patch) | |
tree | f7041f643d87e573f4a69bdbf85ed8c8fb788ba8 /bin/merge-haltestellen-and-iris | |
parent | b9df4c4e63c0bf5c2f761386d8a7e7b3285b8a71 (diff) |
fall back to stop id and proximity search on error
This is useful for non-VRR stops, which may be split into several sub-stops.
For instance, Aachen Rothe Erde is listed as de:05334:1645 -- which is the
bus stop. The train station is de:05334:1646. proximity search returns
results for both stops.
Requires vrr-fakedisplay 1.6.0 or later
Diffstat (limited to 'bin/merge-haltestellen-and-iris')
-rwxr-xr-x | bin/merge-haltestellen-and-iris | 24 |
1 files changed, 9 insertions, 15 deletions
diff --git a/bin/merge-haltestellen-and-iris b/bin/merge-haltestellen-and-iris index 4cc64ca..b801c5a 100755 --- a/bin/merge-haltestellen-and-iris +++ b/bin/merge-haltestellen-and-iris @@ -17,13 +17,11 @@ vrr_stops = list() with open("haltestellenliste.csv", "r", encoding="iso-8859-1") as f: f.readline() cr = csv.reader(f, delimiter=";") - for city, place, _, _, _, lon, lat, stop, _, _ in cr: + for _, _, _, _, optid, lon, lat, stop, _, _ in cr: lon = lon[:5] + lon[6:] lat = lat[:6] + lat[7:] try: - vrr_stops.append( - (stop.strip(), float(lat), float(lon), city.strip(), place.strip()) - ) + vrr_stops.append((stop.strip(), float(lat), float(lon), optid.strip())) except ValueError: # invalid entry pass @@ -38,24 +36,20 @@ for iris_stop in ProgressBar(max=len(iris_stops)).iter(iris_stops): iris_name = iris_stop["name"] iris_lat, iris_lon = iris_stop["latlong"] - for stop, lat, lon, city, place in vrr_stops: + for stop, lat, lon, optid in vrr_stops: if stop == iris_name: - output[eva] = city, place, stop + output[eva] = stop, optid break if eva in output: continue candidates = list() - for stop, lat, lon, city, place in vrr_stops: + for stop, lat, lon, optid in vrr_stops: if abs(lat - iris_lat) < 0.01 and abs(lon - iris_lon) < 0.01: candidates.append( ( - stop, - lat, - lon, - city, - place, + (stop, lat, lon, optid), distance((lat, lon), (iris_lat, iris_lon)).m, ) ) @@ -63,10 +57,10 @@ for iris_stop in ProgressBar(max=len(iris_stops)).iter(iris_stops): if not candidates: continue - candidates.sort(key=lambda x: x[5]) + candidates.sort(key=lambda x: x[1]) - stop, _, _, city, place, _ = candidates[0] - output[eva] = city, place, stop + stop, lat, lon, optid = candidates[0][0] + output[eva] = stop, optid with open("share/vrr.json", "w", encoding="utf-8") as f: json.dump(output, f, ensure_ascii=False) |