summaryrefslogtreecommitdiff
path: root/config.example.json
diff options
context:
space:
mode:
authorIsmaël Bouya <ismael.bouya@normalesup.org>2019-12-05 09:46:16 +0100
committerIsmaël Bouya <ismael.bouya@normalesup.org>2019-12-05 09:51:27 +0100
commitc27a5ab960b56a6a4ad06e916350a525f86de82f (patch)
treebb183c6d3c729ee528ce44d06e17957f751fd9f6 /config.example.json
downloadGoogleMapsTrafficPlots-c27a5ab960b56a6a4ad06e916350a525f86de82f.tar.gz
GoogleMapsTrafficPlots-c27a5ab960b56a6a4ad06e916350a525f86de82f.tar.zst
GoogleMapsTrafficPlots-c27a5ab960b56a6a4ad06e916350a525f86de82f.zip
Initial commitHEADmaster
Diffstat (limited to 'config.example.json')
-rw-r--r--config.example.json39
1 files changed, 39 insertions, 0 deletions
diff --git a/config.example.json b/config.example.json
new file mode 100644
index 0000000..fec6b23
--- /dev/null
+++ b/config.example.json
@@ -0,0 +1,39 @@
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}