diff --git a/eddb.py b/eddb.py index 9e818672..52131e02 100755 --- a/eddb.py +++ b/eddb.py @@ -35,14 +35,14 @@ class EDDB: return '.' -# build system & station database from files systems.json and stations_lite.json from http://eddb.io/api +# build system & station database from files systems.json and stations.json from http://eddb.io/api if __name__ == "__main__": import json # system_name by system_id systems = dict([(x['id'], str(x['name'])) for x in json.loads(open('systems.json').read())]) - stations = json.loads(open('stations_lite.json').read()) + stations = json.loads(open('stations.json').read()) # check that all populated systems have known coordinates coords = dict([(x['id'], x['x'] or x['y'] or x['z']) for x in json.loads(open('systems.json').read())]) diff --git a/stations.p b/stations.p index b0b48b50..51e5d70d 100644 Binary files a/stations.p and b/stations.p differ