2017-09-21 12:48:05 +00:00
|
|
|
import requests
|
|
|
|
import json
|
|
|
|
import urllib.parse
|
|
|
|
from classes import *
|
|
|
|
|
|
|
|
def getValidator(name):
|
|
|
|
return requests.get("http://www.oebb.at/__ressources/system/stationsHafas.jsp?q=%s" % name).text
|
|
|
|
|
|
|
|
def validateName(name):
|
|
|
|
stations = json.loads(getValidator(name))
|
|
|
|
for station in stations:
|
|
|
|
name = station["value"]
|
|
|
|
sttype = station["type"]
|
|
|
|
try:
|
|
|
|
extid = station["extId"]
|
|
|
|
except:
|
|
|
|
extid = None
|
|
|
|
xcoord = station["xcoord"]
|
|
|
|
ycoord = station["ycoord"]
|
|
|
|
prodclass = station["prodClass"]
|
|
|
|
|
|
|
|
yield Station(name = name, sttype = sttype, extid = extid, xcoord = xcoord, ycoord = ycoord, prodclass = prodclass)
|
|
|
|
|
2017-09-23 14:57:24 +00:00
|
|
|
def worker(name, json = False):
|
2017-09-24 19:04:59 +00:00
|
|
|
outtext = """{
|
|
|
|
"stations": [
|
|
|
|
""" if json else """<?xml version="1.0" encoding="UTF-8"?>
|
2017-09-23 14:57:24 +00:00
|
|
|
<stations>
|
2017-09-21 19:55:32 +00:00
|
|
|
"""
|
|
|
|
|
|
|
|
for station in validateName(name):
|
2017-09-24 19:04:59 +00:00
|
|
|
outtext += ",\n" if (json and not outtext.strip()[-1] == "[") else ""
|
|
|
|
outtext += station.json(2) if json else station.xml(1)
|
|
|
|
outtext += "\n" if not json else ""
|
2017-09-21 19:55:32 +00:00
|
|
|
|
2017-09-24 19:04:59 +00:00
|
|
|
outtext += """
|
|
|
|
]
|
|
|
|
}""" if json else "</stations>"
|
2017-09-21 19:55:32 +00:00
|
|
|
|
|
|
|
return outtext
|
|
|
|
|