-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtest.py
74 lines (59 loc) · 2.36 KB
/
test.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
from pyroutelib3 import Router # Import the router
import csv
#router = Router("car") # Initialise it
#start = router.data.findNode(4.36122,18.55496) # Find start and end nodes
#end = router.data.findNode(4.1005,18.6584)
#status, route = router.doRoute(start, end) # Find the route - a list of OSM nodes
#if status == 'success':
# routeLatLons = list(map(router.nodeLatLon, route)) # Get actual route coordinates
#print(routeLatLons)
def read_in_nodes(filename):
cz_list = []
camp_list = []
with open(filename) as csvfile:
reader = csv.reader(csvfile, delimiter=',')
next(reader)
for row in reader:
if row[5] == 'conflict_zone':
cz_list.append(row[3:5])
elif row[5] == 'camp':
camp_list.append(row[3:5])
else:
assert False
return cz_list, camp_list
def generate_all_cz_to_camp_routes(cz_list, camp_list):
router = Router("car") # Initialise it
list_of_routes = []
for cz in cz_list:
for camp in camp_list:
print(cz, camp)
start = router.data.findNode(float(cz[0]), float(cz[1])) # Find start and end nodes
end = router.data.findNode(float(camp[0]), float(camp[1]))
print('starting router')
status, route = router.doRoute(start, end) # Find the route - a list of OSM nodes
print('finish router')
if status == 'success':
print('success')
routeLatLons = list(map(router.nodeLatLon, route)) # Get actual route coordinates
list_of_routes.append(routeLatLons)
print(len(routeLatLons))
elif status == 'gave_up':
print('skipping as too long')
else:
assert False
return(list_of_routes)
def extract_nodes(list_of_routes):
list_of_nodes = []
for route in list_of_routes:
list_of_nodes.append(route[0])
list_of_nodes.append(route[-1])
return list_of_nodes
if __name__ == "__main__":
cz_list, camp_list = read_in_nodes('/home/s/sc676/Desktop/locations_2-2.csv')
print('CZs: ', cz_list)
print('camps: ', camp_list)
list_of_routes = generate_all_cz_to_camp_routes(cz_list, camp_list)
print(list_of_routes)
print(len(list_of_routes))
list_of_nodes = extract_nodes(list_of_routes)
print(list_of_nodes)