-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
600 lines (473 loc) · 30.1 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
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
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
<!--
=========================================================
* Soft UI Design System - v1.0.9
=========================================================
* Product Page: https://www.creative-tim.com/product/soft-ui-design-system
* Copyright 2022 Creative Tim (https://www.creative-tim.com)
* Coded by www.creative-tim.com
=========================================================
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -->
<!--
=========================================================
* Auteur du contenu du site : G. Petit (UMRAE - https://www.umrae.fr/ - Université Gustave Eiffel)
* 05/2023
=========================================================
-->
<!DOCTYPE html>
<html lang="en" itemscope itemtype="http://schema.org/WebPage">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="apple-touch-icon" sizes="76x76" href="./assets/img/apple-icon.png">
<link rel="icon" type="image/png" href="./assets/img/favicon.png">
<title>SonoRezé</title>
<!-- Fonts and icons -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700" rel="stylesheet" />
<!-- Nucleo Icons -->
<link href="./assets/css/nucleo-icons.css" rel="stylesheet" />
<link href="./assets/css/nucleo-svg.css" rel="stylesheet" />
<!-- Font Awesome Icons -->
<script src="https://kit.fontawesome.com/42d5adcbca.js" crossorigin="anonymous"></script>
<link href="./assets/css/nucleo-svg.css" rel="stylesheet" />
<!-- CSS Files -->
<link id="pagestyle" href="./assets/css/soft-design-system.css?v=1.0.9" rel="stylesheet" />
</head>
<body class="index-page">
<!-- Navbar -->
<div class="container position-sticky z-index-sticky top-0">
<div class="row">
<div class="col-12">
<nav class="navbar navbar-expand-lg blur blur-rounded top-0 z-index-fixed shadow position-absolute my-3 py-2 start-0 end-0 mx-4">
<div class="container-fluid px-0">
<a class="navbar-brand font-weight-bolder ms-sm-3" href="./index.html" rel="tooltip" title="Accueil du site SonoRezé" data-placement="bottom">
Accueil
</a>
<button class="navbar-toggler shadow-none ms-2" type="button" data-bs-toggle="collapse" data-bs-target="#navigation" aria-controls="navigation" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon mt-2">
<span class="navbar-toggler-bar bar1"></span>
<span class="navbar-toggler-bar bar2"></span>
<span class="navbar-toggler-bar bar3"></span>
</span>
</button>
<div class="collapse navbar-collapse pt-3 pb-2 py-lg-0 w-100" id="navigation">
<ul class="navbar-nav navbar-nav-hover ms-lg-12 ps-lg-5 w-100">
<!-- li Projets -->
<li class="nav-item dropdown dropdown-hover mx-2">
<a class="nav-link ps-2 d-flex justify-content-between cursor-pointer align-items-center" href="javascript:;" id="dropdownMenuPages" data-bs-toggle="dropdown" aria-expanded="false">
Le projet
<img src="./assets/img/down-arrow-dark.svg" alt="down-arrow" class="arrow ms-1">
</a>
<div class="dropdown-menu dropdown-menu-animation dropdown-md p-3 border-radius-lg mt-0 mt-lg-3" aria-labelledby="dropdownMenuPages">
<!-- Navbar big size (full screen) -->
<div class="d-none d-lg-block">
<a href="./projet/historique.html" class="dropdown-item border-radius-md"><span class="ps-3">Historique</span></a>
<a href="./projet/demarche.html" class="dropdown-item border-radius-md"><span class="ps-3">Démarche</span></a>
<a href="./projet/territoire.html" class="dropdown-item border-radius-md"><span class="ps-3">Territoire</span></a>
<a href="./projet/equipe.html" class="dropdown-item border-radius-md"><span class="ps-3">Équipe</span></a>
</div><!-- navbar big - d-lg-block -->
<!-- Navbar small size (smartphone, tablet) -->
<div class="d-lg-none">
<a href="./projet/historique.html" class="dropdown-item border-radius-md"><span class="ps-3">Historique</span></a>
<a href="./projet/demarche.html" class="dropdown-item border-radius-md"><span class="ps-3">Démarche</span></a>
<a href="./projet/territoire.html" class="dropdown-item border-radius-md"><span class="ps-3">Territoire</span></a>
<a href="./projet/equipe.html" class="dropdown-item border-radius-md"><span class="ps-3">Équipe</span></a>
</div><!-- navbar small - d-lg-none -->
</div><!-- dropdown-menu -->
</li><!-- li Projets -->
<!-- li Pédagogie -->
<li class="nav-item dropdown dropdown-hover mx-2">
<a class="nav-link ps-2 d-flex justify-content-between cursor-pointer align-items-center" id="dropdownMenuPages" data-bs-toggle="dropdown" aria-expanded="false">
Pédagogie
<img src="./assets/img/down-arrow-dark.svg" alt="down-arrow" class="arrow ms-1">
</a>
<div class="dropdown-menu dropdown-menu-animation dropdown-md p-3 border-radius-lg mt-0 mt-lg-3" aria-labelledby="dropdownMenuPages">
<!-- Navbar big size (full screen) -->
<div class="d-none d-lg-block">
<a href="./pedagogie/notions.html" class="dropdown-item border-radius-md"><span class="ps-3">Notions de base</span></a>
<a href="./pedagogie/indicateurs.html" class="dropdown-item border-radius-md"><span class="ps-3">Indicateurs</span></a>
<a href="./pedagogie/acoustiquiz.html" class="dropdown-item border-radius-md"><span class="ps-3">AcoustiQUIZ</span></a>
</div><!-- navbar big - d-lg-block -->
<!-- Navbar small size (smartphone, tablet) -->
<div class="d-lg-none">
<a href="./pedagogie/notions.html" class="dropdown-item border-radius-md"><span class="ps-3">Notions de base</span></a>
<a href="./pedagogie/indicateurs.html" class="dropdown-item border-radius-md"><span class="ps-3">Indicateurs</span></a>
<a href="./pedagogie/acoustiquiz.html" class="dropdown-item border-radius-md"><span class="ps-3">AcoustiQUIZ</span></a>
</div><!-- navbar small - d-lg-none -->
</div><!-- dropdown-menu -->
</li><!-- li Pédagogie -->
<!-- li Participer -->
<li class="nav-item dropdown dropdown-hover mx-2">
<a class="nav-link ps-2 d-flex justify-content-between cursor-pointer align-items-center" href="javascript:;" id="dropdownMenuPages" data-bs-toggle="dropdown" aria-expanded="false">
Participer
<img src="./assets/img/down-arrow-dark.svg" alt="down-arrow" class="arrow ms-1">
</a>
<div class="dropdown-menu dropdown-menu-animation dropdown-md p-3 border-radius-lg mt-0 mt-lg-3" aria-labelledby="dropdownMenuPages">
<!-- Navbar big size (full screen) -->
<div class="d-none d-lg-block">
<a href="./participer/habitant.html" class="dropdown-item border-radius-md"><span class="ps-3">Vous êtes rezéen.ne</span></a>
<a href="./participer/collectivite.html" class="dropdown-item border-radius-md"><span class="ps-3">Vous êtes une collectivité</span></a>
</div><!-- navbar big - d-lg-block -->
<!-- Navbar small size (smartphone, tablet) -->
<div class="d-lg-none">
<a href="./participer/habitant.html" class="dropdown-item border-radius-md"><span class="ps-3">Vous êtes rezéen.ne</span></a>
<a href="./participer/collectivite.html" class="dropdown-item border-radius-md"><span class="ps-3">Vous êtes une collectivité</span></a>
</div><!-- navbar small - d-lg-none -->
</div><!-- dropdown-menu -->
</li><!-- li Participer -->
<!-- li Résultats -->
<li class="nav-item dropdown dropdown-hover mx-2">
<a class="nav-link ps-2 d-flex justify-content-between cursor-pointer align-items-center" id="dropdownMenuPages" data-bs-toggle="dropdown" aria-expanded="false">
Résultats
<img src="./assets/img/down-arrow-dark.svg" alt="down-arrow" class="arrow ms-1">
</a>
<ul class="dropdown-menu dropdown-menu-animation dropdown-mg p-3 border-radius-lg mt-0 mt-lg-3" aria-labelledby="dropdownMenuPages">
<!-- Navbar big size (full screen) -->
<div class="d-none d-lg-block">
<h6> SonoRezé I</h6>
<a href="./resultats/sonoreze_I/discussion.html" class="dropdown-item border-radius-md">Groupes de discussion</a>
<a href="./resultats/sonoreze_I/cartes.html" class="dropdown-item border-radius-md">Cartographies</a>
<a href="./resultats/sonoreze_I/portail_interactif.html" class="dropdown-item border-radius-md">Portail interactif</a>
<a href="./resultats/sonoreze_I/seminaire.html" class="dropdown-item border-radius-md">Séminaire final</a>
<br><h6> SonoRezé II</h6>
<li class="nav-item dropdown dropdown-hover dropdown-subitem">
<a class="dropdown-item py-2 ps-3 border-radius-md">
<div class="d-flex">
Thème 1 : Avion
</div>
</a>
<div class="dropdown-menu mt-0 py-3 px-2 mt-3">
<a class="dropdown-item ps-3 border-radius-md mb-1" href="./resultats/sonoreze_II/avion_ateliers.html">Ateliers</a>
<a class="dropdown-item ps-3 border-radius-md mb-1" href="./resultats/sonoreze_II/avion_methode.html">Méthode</a>
<a class="dropdown-item ps-3 border-radius-md mb-1" href="./resultats/sonoreze_II/avion_pedagogie.html">Pédagogie</a>
<a class="dropdown-item ps-3 border-radius-md mb-1" href="./resultats/sonoreze_II/avion_resultats.html">Résultats</a>
<a class="dropdown-item ps-3 border-radius-md mb-1" href="./resultats/sonoreze_II/avion_bilan.html">Bilan</a>
</div>
</li>
<a href="./resultats/sonoreze_II/portail_carto.html" class="dropdown-item border-radius-md">Portail cartographique</a>
<li class="nav-item dropdown dropdown-hover dropdown-subitem">
<a class="dropdown-item py-2 ps-3 border-radius-md">
<div class="d-flex">
Cartes sensibles
</div>
</a>
<div class="dropdown-menu mt-0 py-3 px-2 mt-3">
<a class="dropdown-item ps-3 border-radius-md mb-1" href="./resultats/sonoreze_II/cartes_etudiants.html">Étudiants</a>
<a class="dropdown-item ps-3 border-radius-md mb-1" href="./resultats/sonoreze_II/cartes_ecoliers.html">Écoliers</a>
<a class="dropdown-item ps-3 border-radius-md mb-1" href="./resultats/sonoreze_II/carte_pauline_roland.html">Pauline Roland</a>
</div>
</li>
<a href="./resultats/publications.html" class="dropdown-item border-radius-md"><h6>Publications</h6></a>
</div>
<!-- Navbar small size (smartphone, tablet) -->
<div class="d-lg-none">
<h6> SonoRezé I</h6>
<a href="./resultats/sonoreze_I/discussion.html" class="dropdown-item border-radius-md">Groupes de discussion</a>
<a href="./resultats/sonoreze_I/cartes.html" class="dropdown-item border-radius-md">Cartographies</a>
<a href="./resultats/sonoreze_I/portail_interactif.html" class="dropdown-item border-radius-md">Portail interactif</a>
<a href="./resultats/sonoreze_I/seminaire.html" class="dropdown-item border-radius-md">Séminaire final</a>
<br><h6> SonoRezé II</h6>
<a href="./resultats/sonoreze_II/avion_ateliers.html" class="dropdown-item border-radius-md">Avion - Ateliers</a>
<a href="./resultats/sonoreze_II/avion_methode.html" class="dropdown-item border-radius-md">Avion - Méthode</a>
<a href="./resultats/sonoreze_II/avion_pedagogie.html" class="dropdown-item border-radius-md">Avion - Pédagogie</a>
<a href="./resultats/sonoreze_II/avion_resultats.html" class="dropdown-item border-radius-md">Avion - Résultats</a>
<a href="./resultats/sonoreze_II/avion_bilan.html" class="dropdown-item border-radius-md">Avion - Bilan</a>
<a href="./resultats/sonoreze_II/portail_carto.html" class="dropdown-item border-radius-md">Portail cartographique</a>
<a href="./resultats/sonoreze_II/cartes_etudiants.html" class="dropdown-item border-radius-md">Cartes sensibles - Étudiants</a>
<a href="./resultats/sonoreze_II/cartes_ecoliers.html" class="dropdown-item border-radius-md">Cartes sensibles - Écoliers</a>
<a href="./resultats/sonoreze_II/carte_pauline_roland.html" class="dropdown-item border-radius-md">Cartes sensibles - Pauline Roland</a>
<a href="./resultats/publications.html" class="dropdown-item border-radius-md"><h6>Publications</h6></a>
</div><!-- navbar small - d-lg-none -->
</ul>
</li><!-- li Résultats -->
<!-- Actualités -->
<li class="nav-item ms-lg-0">
<a class="nav-link nav-link-icon me-2" href="./actu.html">
<p class="d-inline text-sm z-index-1 font-bold" data-bs-toggle="tooltip" data-bs-placement="bottom" title="Actualités">Actualités</p>
</a>
</li>
<!-- Contact -->
<li class="nav-item ms-lg-0">
<a class="nav-link nav-link-icon me-2" href="./contact.html">
<p class="d-inline text-sm z-index-1 font-bold" data-bs-toggle="tooltip" data-bs-placement="bottom" title="Nous contacter">Contact</p>
</a>
</li>
</ul><!-- navbar-nav -->
</div><!-- collapse navbar-collapse -->
</div><!-- container-fluid -->
</nav><!-- navbar -->
</div><!-- col-12 -->
</div><!-- row -->
</div><!-- container position-sticky -->
<!-- End Navbar -->
<header class="header-2">
<div class="page-header min-vh-75 relative" style="background-image: url('./assets/img/header_perso.png')">
<div class="container">
<div class="row">
<div class="col-lg-7 text-center mx-auto">
<h2 class="text-white pt-3 mt-n5"><img src="./assets/img/logo_sonoreze.png" width="300"></br></br>Bienvenue sur la plateforme SonoRezé</h2>
<!--<p class="lead text-white mt-3">Projet de recherche pour le diagnostic citoyen des environnements sonores de la ville de Rezé</p>-->
</div>
</div>
</div>
<div class="position-absolute w-100 z-index-1 bottom-0">
<svg class="waves" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 24 150 40" preserveAspectRatio="none" shape-rendering="auto">
<defs>
<path id="gentle-wave" d="M-160 44c30 0 58-18 88-18s 58 18 88 18 58-18 88-18 58 18 88 18 v44h-352z" />
</defs>
<g class="moving-waves">
<use xlink:href="#gentle-wave" x="48" y="-1" fill="rgba(255,255,255,0.40" />
<use xlink:href="#gentle-wave" x="48" y="3" fill="rgba(255,255,255,0.35)" />
<use xlink:href="#gentle-wave" x="48" y="5" fill="rgba(255,255,255,0.25)" />
<use xlink:href="#gentle-wave" x="48" y="8" fill="rgba(255,255,255,0.20)" />
<use xlink:href="#gentle-wave" x="48" y="13" fill="rgba(255,255,255,0.15)" />
<use xlink:href="#gentle-wave" x="48" y="16" fill="rgba(255,255,255,0.95" />
</g>
</svg>
</div>
</div>
</header>
<section class="pt-3 pb-4" id="count-stats">
<div class="container">
<div class="row">
<div class="col-lg-9 z-index-2 border-radius-xl mt-n10 mx-auto py-3 blur shadow-blur">
<div class="row">
<div class="col-md-4 position-relative">
<div class="p-3 text-center">
<h1 class="text-gradient text-primary"> <span id="state3" countTo="300">0</span>+</h1>
<h5 class="mt-3">Participants</h5>
<p class="text-sm">Ouvert à tous</p>
</div>
<hr class="vertical dark">
</div>
<div class="col-md-4 position-relative">
<div class="p-3 text-center">
<img src="./assets/img/citoyens_elus_chercheurs.png" height="150px">
</div>
<hr class="vertical dark">
</div>
<div class="col-md-4">
<div class="p-3 text-center">
<h1 class="text-gradient text-primary" <span id="state4" countTo="3000">0</span></h1>
<h5 class="mt-3">Mesures</h5>
<p class="text-sm">Un maillage dense</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="my-5 py-5">
<div class="container">
<div class="row">
<div class="col-md-12">
<h5 class="text-primary text-gradient text-center">
SonoRezé est un projet de recherche pour le diagnostic citoyen des environnements sonores de la ville de Rezé.</h5>
<p class="text-center">
L’<a href="https://www.univ-gustave-eiffel.fr/" target="_blank"><b>Université Gustave Eiffel</b></a> et la <a href="https://www.reze.fr/" target="_blank"><b>Ville de Rezé</b></a> se sont associés en 2021 pour mener l’expérience Sonorezé, avec l'objectif double d'établir un diagnostic des environnements sonores de la ville et d'associer les citoyens pour qu'ils deviennent "acteurs" "de l'amélioration de leur environnement.<br>
En 2023, ils sont rejoints par le laboratoire <a href="https://eso.cnrs.fr/eso.cnrs.fr/fr/index.html" target="_blank"><b>ESO</b></a> et le tiers-veilleur <a href="https://www.auxilia-conseil.com/" target="_blank"><b>Auxilia</b></a>. Le but : réfléchir à des actions co-construites portant sur les environnements sonores, et capitaliser les enseignements de cette approche innovante pour la déployer sur une variété de territoires.<br>
</p>
<h5 class="text-primary text-gradient text-center">Habitants de Rezé, votre rôle dans ce projet unique est central !</h5>
</p>
</div>
</div>
<br>
<div class="row align-items-center">
<div class="col-lg-6 ms-auto">
<div class="row justify-content-start">
<div class="col-md-6">
<div class="info">
<div class="icon icon-sm">
<img src="./assets/img/icon_science_light.png" width="40px">
</div>
<h5 class="font-weight-bolder mt-3">Science participative</h5>
<p class="pe-5">Les citoyens sont acteurs du projet, en réalisant des mesures des ambiances sonores grâce à leur smartphone (Android) et en participant à des groupes de discussion.</p>
</div>
</div>
<div class="col-md-6">
<div class="info">
<div class="icon icon-sm">
<img src="./assets/img/icon_simple_light.png" width="40px">
</div>
<h5 class="font-weight-bolder mt-3">Simple</h5>
<p class="pe-3">Pour participer, il suffit d'installer l'application (gratuite) NoiseCapture (développée par l'UMRAE - membre de SonoRezé) et de réaliser des mesures de l'environnement sonore.</p>
</div>
</div>
</div>
<div class="row justify-content-start mt-5">
<div class="col-md-6 mt-3">
<div class="info">
<div class="icon icon-sm">
<img src="./assets/img/icon_anonym_light.png" width="40px">
</div>
<h5 class="font-weight-bolder mt-3">Anonyme</h5>
<p class="pe-5">Les mesures réalisées respectent la vie privée. NoiseCapture n'enregistre pas le bruit ou les discussions. Seuls des indicateurs acoustiques sont extraits.</p>
</div>
</div>
<div class="col-md-6 mt-3">
<div class="info">
<div class="icon icon-sm">
<img src="./assets/img/icon_citizen_light.png" width="40px">
</div>
<h5 class="font-weight-bolder mt-3">Collectivité - Citoyens</h5>
<p class="pe-3">Cette démarche favorise une co-construction de la politique de prévention et de lutte contre le bruit, avec les différents acteurs locaux (élus, citoyens, ...).</p>
</div>
</div>
</div>
</div>
<div class="col-lg-4 ms-auto me-auto p-lg-4 mt-lg-0 mt-4">
<div class="card card-background card-background-mask-primary tilt" data-tilt>
<div class="full-background" style="background-image: url('./assets/img/sound-waves.jpg')"></div>
<!-- source image : https://pixabay.com/fr/illustrations/les-ondes-sonores-art-g%C3%A9om%C3%A9trique-7409203/-->
<div class="card-body pt-7 text-center">
<div class="icon icon-lg up mb-3 mt-3">
<img src="./assets/img/Logo_noisecapture.png" width="80px">
</div>
<h2 class="text-white up mb-0">NoiseCapture</h2>
<h4 class="text-white up mb-0">Application Android <br/>#Gratuite <br/> Respect vie privée</h4>
<a href="https://noise-planet.org/noisecapture.html" target="_blank" class="btn btn-outline-white mt-5 up btn-round">Télécharger l'application</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!---------------------------------------------------------------------------------------->
<section class="my-5 py-5">
<!-- Container Financements -->
<div class="container mt-sm-5 mt-3">
<div class="row mt-3">
<div class="col-lg-12">
<div class="position-relative border-radius-xl overflow-hidden shadow-lg mb-7">
<div class="container border-bottom text-center">
<div class="row justify-space-between py-2">
<h4 class="text-primary text-gradient">Membres du projet</h4>
<p>Pour en savoir plus sur le consortium, <a href="./projet/historique.html"><b>rendez-vous ici<b></a>.
</p>
<img src="./assets/img/historique/consortium_sonoreze_2.png" width="80%">
</div><!-- row -->
</div><!-- container -->
</div>
</div><!-- col-12 -->
</div> <!-- row mt-3 -->
</div><!-- container -->
<!-- Container Financements -->
<div class="container mt-sm-5 mt-3">
<div class="row mt-3">
<div class="col-lg-12">
<div class="position-relative border-radius-xl overflow-hidden shadow-lg mb-7">
<div class="container border-bottom text-center">
<div class="row justify-space-between py-2">
<h4 class="text-primary text-gradient">Financements</h4>
<p>Le projet SonoRezé est rendu possible grâce à deux financements successifs de l'<a href="http://www.future-isite.fr/li-site-future/" target="_blank"><b>I-Site Future</b></a> (2021-22) puis de l'<a href="https://anr.fr/" target="_blank"><b>Agence Nationale de la Recherche</b></a> (ANR) (2023-25).</br>
Pour en savoir plus, <a href="./projet/historique.html"><b>rendez-vous ici<b></a>.
</p>
<img src="./assets/img/historique/financement_sonoreze.png" width="80%">
</div><!-- row -->
</div><!-- container -->
</div>
</div><!-- col-12 -->
</div> <!-- row mt-3 -->
</div><!-- container -->
<!-- Container Aller plus loin -->
<div class="container mt-sm-5 mt-3">
<div class="row mt-3">
<div class="col-lg-12">
<div class="position-relative border-radius-xl overflow-hidden shadow-lg mb-7">
<div class="container border-bottom text-center">
<div class="row justify-space-between py-2">
<h4 class="text-primary text-gradient">Pour en savoir plus sur le bruit dans l'environnement</h4>
<p>Les environnements sonores jouent un rôle central dans la qualité environnementale d'une ville et le bien-être de ses habitants. De nombreuses études montrent le très grand <a href="https://www.bruitparif.fr/les-impacts-sanitaires-du-bruit1/" target="_blank"><b>impact sanitaire du bruit</b></a> : gêne, effets sur le sommeil, <i>etc.</i> Mais les environnements sonores peuvent également participer au repos, au ressourcement, au caractère animé de certains quartiers.
<br><br>
Pour améliorer les environnements sonores et lutter contre les nuisances, il existe des solutions. L'association BruitParif a publié à ce sujet un guide que nous vous invitons <a href="https://www.bruitparif.fr/pages/En-tete/700%20Accompagner/700%20PPBE%20en%20IdF/600%20Les%20solutions%20techniques%20pour%20lutter%20contre%20le%20bruit/790%20Bruit%20et%20urbanisme%20-%20Introduction.pdf" target="_blank"><b>à consulter</b></a>.
<br><br>
Même si ces outils apportent des réponses, il persiste encore de nombreuses questions de recherche et axes d'optimisation.<br>
Pour traiter de ces sujets, l'<a href="https://www.umrae.fr/" target="_blank"><b>Unité Mixte de Recherche en Acoustique Environnementale</b></a> (UMRAE) a été créé le 1er janvier 2018. Il s'agit d'un laboratoire de recherche commun entre l'<a href="https://www.univ-gustave-eiffel.fr/" target="_blank"><b>Université Gustave Eiffel</b></a> et le Centre d'Etudes et d'expertise sur les Risques, l'Environnement, la Mobilité et l'Aménagement (<a href="https://www.cerema.fr/" target="_blank"><b>Cerema</b></a>), deux établissements qui bénéficiaient déjà d'une expertise dans le domaine de l'acoustique environnementale. L'UMRAE regroupe des équipes de chercheurs, ingénieurs, personnels techniques et doctorants de ces deux organismes, répartis sur les sites de Nantes-Bouguenais, Strasbourg et Lyon-Bron, pour effectuer des missions de recherche relatives à la réduction du bruit et de son impact sur l'environnement.
<br>
Pour toutes questions relatives aux activités de l'UMRAE n'hésitez pas à <a href="https://www.umrae.fr/equipe/direction" target="_blank"><b>nous contacter</b></a>.
</p>
</div><!-- row -->
</div><!-- container -->
</div>
</div><!-- col-12 -->
</div> <!-- row mt-3 -->
</div><!-- container -->
</section>
<!---------------------------------------------------------------------------------------->
<!---------------------------------------------------------------------------------------->
<!-- Footer -->
<footer class="footer pt-5 mt-5">
<hr class="horizontal dark mb-5">
<div class="container">
<!--<div class=" row">-->
<div class="col-12">
<div class="text-center">
<p class="my-4 text-sm">
Auteur : G. Petit (<a href="https://www.umrae.fr/" target="_blank">UMRAE</a> - <a href="https://www.univ-gustave-eiffel.fr/" target="_blank">Université Gustave Eiffel</a>) - 2024</br>
-</br>
Illustration dans le bandeau : <a href="https://www.facebook.com/tonitorfer/" target="_blank">ToniTorfer</a> - tous droits réservés</br>
Template du site : All rights reserved. Copyright © <script>document.write(new Date().getFullYear())</script> Soft UI Design System by <a href="https://www.creative-tim.com" target="_blank">Creative Tim</a>.
</p>
</div>
</div>
<!--</div> row -->
</div><!-- container -->
</footer>
<!---------------------------------------------------------------------------------------->
<!---------------------------------------------------------------------------------------->
<!-- Core JS Files -->
<script src="./assets/js/core/popper.min.js" type="text/javascript"></script>
<script src="./assets/js/core/bootstrap.min.js" type="text/javascript"></script>
<script src="./assets/js/plugins/perfect-scrollbar.min.js"></script>
<!-- Plugin for TypedJS, full documentation here: https://github.com/inorganik/CountUp.js -->
<script src="./assets/js/plugins/countup.min.js"></script>
<script src="./assets/js/plugins/choices.min.js"></script>
<script src="./assets/js/plugins/prism.min.js"></script>
<script src="./assets/js/plugins/highlight.min.js"></script>
<!-- Plugin for Parallax, full documentation here: https://github.com/dixonandmoe/rellax -->
<script src="./assets/js/plugins/rellax.min.js"></script>
<!-- Plugin for TiltJS, full documentation here: https://gijsroge.github.io/tilt.js/ -->
<script src="./assets/js/plugins/tilt.min.js"></script>
<!-- Plugin for Selectpicker - ChoicesJS, full documentation here: https://github.com/jshjohnson/Choices -->
<script src="./assets/js/plugins/choices.min.js"></script>
<!-- Plugin for Parallax, full documentation here: https://github.com/wagerfield/parallax -->
<script src="./assets/js/plugins/parallax.min.js"></script>
<!-- Control Center for Soft UI Kit: parallax effects, scripts for the example pages etc -->
<!-- Google Maps Plugin -->
<script src="./assets/js/soft-design-system.min.js?v=1.0.9" type="text/javascript"></script>
<script type="text/javascript">
if (document.getElementById('state1')) {
const countUp = new CountUp('state1', document.getElementById("state1").getAttribute("countTo"));
if (!countUp.error) {
countUp.start();
} else {
console.error(countUp.error);
}
}
if (document.getElementById('state2')) {
const countUp1 = new CountUp('state2', document.getElementById("state2").getAttribute("countTo"));
if (!countUp1.error) {
countUp1.start();
} else {
console.error(countUp1.error);
}
}
if (document.getElementById('state3')) {
const countUp2 = new CountUp('state3', document.getElementById("state3").getAttribute("countTo"));
if (!countUp2.error) {
countUp2.start();
} else {
console.error(countUp2.error);
}
}
if (document.getElementById('state4')) {
const countUp3 = new CountUp('state4', document.getElementById("state4").getAttribute("countTo"));
if (!countUp3.error) {
countUp3.start();
} else {
console.error(countUp3.error);
};
}
</script>
</body>
</html>