-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtableau.html
executable file
·217 lines (200 loc) · 7.56 KB
/
tableau.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
<!doctype html>
<html lang="fr">
<head>
<title>BlaBla Crash - Visualisation</title>
<link rel="icon" href="img/LOGO_BlaBla_Crash.png">
<link rel="stylesheet" href="css/style.css" type="text/css" media="screen" />
<link rel="stylesheet" href="css/ajout.css" type="text/css" media="screen" />
<link href="https://fonts.cdnfonts.com/css/bukhari-script" rel="stylesheet">
<script src="https://cdn.plot.ly/plotly-2.24.1.min.js" charset="utf-8"></script>
<script src="https://unpkg.com/mapbox-gl@latest/dist/mapbox-gl.js"></script>
<script src="js/utils.js" charset="utf-8"></script>
<script src="js/visualisation.js" charset="utf-8" defer></script>
<link href="css/F3.css" rel="stylesheet">
<script src="js/F3.js"></script>
<script src="js/modal.js" defer></script>
<meta charset="UTF-8">
</head>
<body>
<!-- Animation de chargement de la page -->
<div id="main_loader">
<div id="loader">
<div class="animation">
<div class="ball"></div>
<div class="ball"></div>
<div class="ball"></div>
</div>
<div class="text_loader">Chargement ... </div>
</div>
</div>
<div id="bloc_page" style="display: none;">
<!-- HEADER -->
<div id="header">
<div id="logo_header"><img id="img_logo_header" src="img/LOGO_BlaBla_Crash.png"></div>
<div class="text_header"><a id="text_header_accueil" href="index.html">Accueil</a></div>
<div class="text_header"><a id="text_header_visualisation" href="tableau.html">Visualisation</a></div>
<div class="text_header"><a id="text_header_ajout" href="ajout.html">Ajout d'accident</a></div>
</div>
<div style="overflow:auto; height: 60vh; width: 90wh; margin-bottom: 25px; margin-top: 25px;">
<div id="filtres">
<div class="filtre">
<button class="filtre_but" disabled>
VILLE
</button>
<select type="text" id="form_ville">
<option value="0" selected> <b>Aucun filtre</b> </option>
</select>
</div>
<div class="filtre">
<button class="filtre_but" disabled>
ATHMOSPHERE
</button>
<select name="form_athmo" id="form_athmo" >
<option value="0" selected> <b>Aucun filtre</b> </option>
</select>
</div>
<div class="filtre">
<button class="filtre_but" disabled>
LUMINOSITE
</button>
<select name="form_lum" id="form_lum">
<option value="0" selected> <b>Aucun filtre</b> </option>
</select>
</div>
<div class="filtre">
<button class="filtre_but" disabled>
SURFACE
</button>
<select name="form_route" id="form_route">
<option value="0" selected> <b>Aucun filtre</b> </option>
</select>
</div>
<div class="filtre">
<button class="filtre_but" disabled>
SECURITE
</button>
<select name="form_secu" id="form_secu">
<option value="0" selected> <b>Aucun filtre</b> </option>
</select>
</div>
<div class="filtre">
<button class="filtre_but" disabled>
GRAVITE
</button>
<select name="form_gravite" id="form_gravite">
<option value="0" selected> <b>Aucun filtre</b> </option>
</select>
</div>
</div>
<table class="items">
<thead>
<tr>
<th class="sep">
<div class="text">
ID
</div>
</th>
<th class="sep">
<div class="text">
Age
</div>
</th>
<th class="sep">
<div class="text">
Date
</div>
</th>
<th class="sep">
<div class="text">
Heure
</div>
</th>
<th class="sep">
<div class="text">
Ville
</div>
</th>
<th class="sep">
<div class="text">
Lattitude
</div>
</th>
<th class="sep">
<div class="text">
Longitude
</div>
</th>
<th class="sep">
<div class="text">
Athmosphère
</div>
</th>
<th class="sep">
<div class="text">
Luminosité
</div>
</th>
<th class="sep">
<div class="text">
Surface
</div>
</th>
<th class="sep">
<div class="text">
Sécurité
</div>
</th>
<th class="sep">
<div class="text">
Gravité
</div>
</th>
<th class="sep">
<div class="text">
Sélection
</div>
</th>
</tr>
</thead>
<tbody id="table_body">
</tbody>
</table>
</div>
<!-- DIV CARTE -->
<div id="div_style_map_visu">
<div id="div_map_tableau"></div>
<div id="boutons_visu">
<!-- <input type="button" value="Clusters" onclick="location.href='clusters.html';"> -->
</div>
</div>
<button id="clusters_button" type="button" style="margin-top: 20px; margin-bottom: 20px;" onclick="location.href='clusters.html';"><span id="">Afficher la carte des clusters</span></button>
<button id="predict_button" type="submit" style="margin-top: 20px; margin-bottom: 20px;"><span id="">Prédire la gravité d'un accident</span></button>
<div id="myModal" class="modal">
<!-- Modal content -->
<div class="modal-content">
<span class="close">×</span>
<p id="modal_text"></p>
<p id="modal_loading"></p>
<p id="knn_pred"></p>
<p id="rand_forest_pred"></p>
<p id="multi_pred"></p>
<p id="vector_pred"></p>
<p id="global_pred"></p>
</div>
</div>
<!--FOOTER-->
<div id="footer">
<div class="text_footer"><a id="text_footer_groupe">Groupe 6</a></div>
<div id="col_foot_1">
<div class="text_footer_nom"><a id="text_footer_antonin">Antonin Sabiron</a></div>
<div class="text_footer_nom"><a id="text_footer_teo">Téo Rortais</a></div>
</div>
<div id="col_foot_2">
<div class="text_footer_nom"><a id="text_footer_dorian">Dorian Tarin</a></div>
<div class="text_footer_nom"><a id="text_footer_mael">Maël Grellier Neau</a></div>
</div>
<div id="logo_isen"><img id="img_logo_isen" src="img/ISEN_blanc.png"></div>
</div>
</div>
</body>
</html>