diff --git a/satnogs.py b/satnogs.py index 35e9f01..62399cb 100644 --- a/satnogs.py +++ b/satnogs.py @@ -139,7 +139,7 @@ def map_view(): def api_active_stations(): sations = [] for x in Stations: - sations.append([x["name"],[x["lat"],x["lng"]]]) + sations.append([x["name"],{"lat":x["lat"],"lng":x["lng"]}]) return json.dumps(sations) @app.route('/stations_from_sat/')