-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
18 lines (18 loc) · 909 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<html>
<head>
<script src="./libs/require.js"></script>
<script src="require-config.js"></script>
<script>
require(["index"]);
</script>
<title>SimuBus. Simulate Buses in Traffic</title>
</head>
<body>
<p><a href="https://github.com/nickhodge/simubus">Source code</a></p>
<p>Absolute Time (s): <strong data-bind="text: absoluteTime_S().toFixed(1)"></strong></p>
<p>Vehicles in queue: <strong data-bind="text: vehicles_in_queue"></strong></p>
<p>Vehicles Km/hr (avg): <strong data-bind="text: vehicles_average_Kmph().toFixed(1)"></strong></p>
<p>Vehicles finish/hr: <strong data-bind="text: vehicles_finish_pH().toFixed(1)"></strong></p>
<p>Buses in queue: <strong data-bind="text: buses_in_queue"></strong></p>
<p>B-Line Pause Time (s): <strong data-bind="text: avg_bline_queued_time_S().toFixed(1)"></strong></p>
</body>