Simple Timetable
Displays train timetables in the form of departure signs.
Displays the most recent trains using time data made by JavaScript.
${array name}["${departure time}"] = {track: "",type: "",destination: "",arrive: "",departure: "",message: ""};
It is recommended that array_name be a name that connects three pieces of information: the station name, the up/down line, and the day of the week.
-
example
Kanayama station (NH34:Meitetsu Nagoya Line) up line weekday schedule => NH34_UP_WD Nagoya station (NH36:Meitetsu Nagoya Line) down line holiday schedule => NH36_DOWN_HD
Describe the departure time as a four-digit string of numbers.
-
example
A Train departing at 9:34 => "934" A Train departing at 14:56 => "1456"
-
track Store the train's departure and arrival track No.
-
type Store the train type (e.g., "特急").
-
destination Stores the destination of the train (e.g., "豊橋").
-
arrive Store the arrive time of the train (e.g. "14:42").
-
departure Store the departure time of the train (e.g. "14:42").
-
message Show remarks about this train. Store down changes in train types, direct connections to other lines, etc.
$IY11_UP_WD["659"] = {track: "3",type: "急行",destination: "吉良吉田",arrive: "6:59",departure: "6:59",message: "名古屋から普通、鳴海から急行"};