]> git.immae.eu Git - perso/Immae/Projets/Scripts/GoogleMapsTrafficPlots.git/blame - config.example.json
Initial commit
[perso/Immae/Projets/Scripts/GoogleMapsTrafficPlots.git] / config.example.json
CommitLineData
c27a5ab9
IB
1{
2 "api_key": "your-api-key see https://developers.google.com/maps/documentation/distance-matrix/start",
3 "locations": {
4 "home": "6 Rue Ribotti, 06300 Nice, France",
5 "work": "43.586337,6.939781"
6 },
7 "plots": {
8 "home-work": {
9 "days": ["monday","tuesday","wednesday","thursday","friday"],
10 "name": "Home -> Work",
11 "times": [
12 "6:30", "7:00", "7:30", "8:00", "8:30",
13 "9:00", "9:30", "10:00"
14 ],
15 "origin": "home",
16 "destination": "work"
17 },
18 "work-home": {
19 "days": ["monday","tuesday","wednesday","thursday","friday"],
20 "name": "Work -> Home",
21 "times": [
22 "16:00", "16:30", "17:00", "17:30", "18:00",
23 "18:30", "19:00", "19:30", "20:00"
24 ],
25 "origin": "work",
26 "destination": "home"
27 },
28 "work-gym": {
29 "days": ["monday"],
30 "name": "Work -> Monday’s gym",
31 "times": [
32 "11:00", "11:15", "11:30", "11:45",
33 "12:00", "12:15"
34 ],
35 "origin": "work",
36 "destination": "330 Rue Henri Laugier, 06600 Antibes, France"
37 }
38 }
39}