-
Notifications
You must be signed in to change notification settings - Fork 0
/
cabot.py
50 lines (47 loc) · 2.12 KB
/
cabot.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
# All Scout Groups in the District
def groups(colour):
return [
[51.478694, -2.598413, colour], # 1st Bishopston
[51.480797, -2.600790, colour], # 3rd Bristol
[51.455414, -2.620371, colour], # 7th Bristol
[51.466310, -2.600189, colour], # 18th Bristol
[51.487019, -2.618401, colour], # 26th Bristol
[51.480802, -2.632638, colour], # 43rd Bristol
[51.482790, -2.609786, colour], # 44th Bristol
[51.486130, -2.589508, colour], # 62nd Bristol
[51.474631, -2.583211, colour], # 63rd Bristol
[51.477276, -2.613254, colour], # 77th Bristol
[51.492844, -2.617409, colour], # 90th Bristol
[51.479488, -2.589410, colour], # 91st Bristol
[51.486301, -2.651812, colour], # 126th Bristol
[51.486417, -2.624055, colour], # 167th Bristol
[51.512744, -2.615185, colour], # 169th Bristol
[51.490045, -2.680752, colour], # 191st Bristol
[51.490904, -2.608534, colour], # 227th Bristol
]
# Explorer Scout Unit meeting locations
# TODO: load spaces from a csv to generate colour
units = [
[51.472855, -2.584198, "red"], # Arizona
[51.478694, -2.598413, "red"], # Brabazon
[51.486130, -2.589508, "orange"], # Concorde
[51.474631, -2.583211, "orange"], # Phoenix
[51.512744, -2.615185, "green"], # Pirates
[51.487019, -2.618401, "orange"], # Spaniorum
[51.466310, -2.600189, "green"], # Spitfire
[51.486417, -2.624055, "red"], # Steama
[51.482790, -2.609786, "orange"], # White Tree
]
# Pubs that are generally pretty good for meetings
def pubs(colour):
return [
[51.474103, -2.610815, colour], # Cambridge Arms
[51.489346, -2.622630, colour], # Dirty Duck
[51.489124, -2.608267, colour], # Eastfield
[51.484152, -2.597948, colour], # Gloucester Old Spot
[51.490833, -2.616545, colour], # POT at WOT
[51.479252, -2.586436, colour], # The Annexe
[51.491627, -2.595643, colour], # The Beehive
[51.488820, -2.584981, colour], # The Welly
[51.480420, -2.611778, colour], # Westbury Park Tavern
]