This repository was archived by the owner on Dec 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtimetable.js
More file actions
44 lines (43 loc) · 1.41 KB
/
Copy pathtimetable.js
File metadata and controls
44 lines (43 loc) · 1.41 KB
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
/*
* This file contains the meet codes and the schedule
* Dictionary element 'link' contains labels and their respective meet codes
* Value of 'time' is in the format HHMM (24h format, without colon)
*/
data = {
"link": {
"CS401": "usk-fscq-nkv",
"CS402": "gec-xhsk-jjp",
"CS403": "yzt-mzav-ruh",
"CS411": "knc-szrc-cxn",
"CS412": "mro-tdkm-gzj",
"CS413": "iqf-knkk-ogr",
"EC401": "xss-btcc-jcc",
"EC402": "eyr-gqsm-qmj"
},
"schedule": {
"Mon": [
{ "time": [0850, 1100], "label": "CS401" },
{ "time": [1150, 1300], "label": "CS403" },
{ "time": [1350, 1700], "label": "CS411" }
],
"Tue": [
{ "time": [0950, 1050], "label": "CS401" },
{ "time": [1050, 1300], "label": "CS402" },
{ "time": [1350, 1600], "label": "EC401" }
],
"Wed": [
{ "time": [0950, 1050], "label": "EC402" },
{ "time": [1050, 1150], "label": "EC401" },
{ "time": [1150, 1300], "label": "EC402" },
{ "time": [1450, 1700], "label": "CS403" }
],
"Thu": [
{ "time": [0950, 1300], "label": "CS413" },
{ "time": [1450, 1700], "label": "CS402" }
],
"Fri": [
{ "time": [1050, 1300], "label": "EC402" },
{ "time": [1350, 1700], "label": "CS412" }
]
}
};