-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (37 loc) · 2.04 KB
/
index.html
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
45
46
47
48
49
<!DOCTYPE html>
<html lang="en">
<head>
<script src="./scripts/p5/p5.min.js"></script>
<script src="./scripts/p5/p5.clickable.min.js"></script>
<script src="./scripts/p5/p5.sound.min.js"></script>
<script src="./scripts/sketch.js"></script>
<link rel="stylesheet" type="text/css" href="./css/style.css">
<meta charset="utf-8" />
</head>
<body>
<div><h2>Breaking the Chain of Infections with Corona-Warn-App<h2></div>
<div id="sketch-holder">
<!-- Our sketch will go here! -->
</div>
<!-- <p id="heading">SUBTITLE</p> -->
<!-- <p> Your name is <span id="name"></span>.</p> -->
<p style="width: 800px;">
This is a simulation of the digital contact tracing using the Corona-Warn-App.<br>
In the simulation pane, the movement of people can be seen. Any person can be selected with a click and
their own ID as well as the ones collected locally from people passed are shown.<br>
The ones reported to the RKI and stored on the server are shown too.
If a user becomes infected all users who met them are informed and quarantine off the simulation pane.<br>
The parameters of the simulation can be tuned below and the use off the app turned on and off.<br>
Leftmost is the start/stop button for pausing the simulation. To its right the use of the app can be turned on and off.<br>
The amount of people, their speed, distance at which the apps registers a contact as well as the infectiousness of the
virus can be tuned with the sliders to the buttons right.
Left is the smallest, right the largest value.<br>
<br>
Have fun and fiddle around!<br>
An easy cartoon description of the functionality can be found
<a href="https://github.com/DP-3T/documents/blob/master/public_engagement/cartoon/en/comic-en.pdf">here</a>.<br>
A detailed technical description of the functionality can be found
<a href="https://github.com/corona-warn-app/cwa-documentation/blob/master/solution_architecture.md">here</a>.<br>
</p>
</body>
</html>