-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathroutesAPI.py
54 lines (37 loc) · 1.14 KB
/
routesAPI.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
from flask import Flask, Response, render_template
import googlemaps as gm
import json
from tsp import Held_Karp
app = Flask(__name__, template_folder='templates')
def setup():
fp = open('key')
content = fp.readlines()
key = content[0]
client = gm.Client(key)
return client
@app.route("/")
def index():
return render_template('index.html')
@app.route("/cities/<string:cities>", methods=['GET'])
def getTour(cities):
citieslist = []
for string in cities.split("_"):
citieslist.append(string.replace('-',', '))
matrix = getMatrix(citieslist)
path, cost = Held_Karp(matrix)
pathlist = []
for node in path:
pathlist.append(citieslist[node])
return Response(json.dumps(pathlist), mimetype='application/json')
def getMatrix(citieslist):
client = setup()
apiMatrix = client.distance_matrix(citieslist, citieslist)
matrix = []
for row in apiMatrix['rows']:
column = []
for element in row['elements']:
column.append(element['duration']['value'])
matrix.append(column)
return matrix
if __name__=='__main__':
app.run(debug=True)