index.html 72.7 KB
Newer Older
Patrick's avatar
Patrick committed
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
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta http-equiv="X-UA-Compatible" content="IE=edge"/>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0, user-scalable=no">
    <title>M4_Lab Platform</title>
    <meta name="description" content="Möchten Sie Ihre massiven Geodaten, z.B. 3D-Stadtmodell, Schrägluftbilder oder Punktwolken als gehostete Webkarte veröffentlichen?" />
    <meta name="keywords" content="digital@bw, SmartVillages, WebGIS, 3D-Stadtmodell, CityGML, virtualcityMAP, virtualcitySYSTEMS">
    <meta name="author" content="virtualcitySYSTEMS" />
    <meta name="publisher" content="Landesamt für Geoinformation und Landentwicklung Baden-Württemberg">
    <meta name="copyright" content="Landesamt für Geoinformation und Landentwicklung Baden-Württemberg">
    <meta name="robots" content="index,follow">
    <meta name="page-topic" content="Dienstleistung">
    <meta name="page-type" content="company">
    <meta http-equiv="language" content="deutsch, de">
    <meta name="date" content="2017">
    <meta name="audience" content="alle">
    <!--favicon -->
    <link rel="shortcut icon" href="images/favicon.ico"  />
    <meta name="theme-color" content="#ffffff">

    <!-- Social Media Tags -->
    <meta property="og:locale" content="de_DE" />
    <meta property="og:type" content="company" />
    <meta property="og:title" content="virtualcityMAP - 3D-Stadtmodelle im Browser" />
    <meta property="og:description" content="3D-Stadtmodelle im Browser - Entscheiden Sie sich für WebGIS Lösungen von virtualcitySYSTEMS." />
    <meta property="og:url" content="https://www.virtualcitysystems.de" />
    <meta property="og:site_name" content="virtualcitySYSTEMS" />
    <meta property="article:tag" content="Berlin" />
    <meta property="article:tag" content="WebGIS" />
    <meta property="article:tag" content="3D-Stadtmodell" />
    <meta property="article:tag" content="CityGML" />
    <meta property="article:tag" content="Open Data" />
    <meta property="article:tag" content="Cesium" />
    <meta property="article:tag" content="SmartCities" />
    <meta property="article:section" content="company" />
    <meta property="article:section" content="city" />
    <meta property="article:published_time" content="2017-01-01T10:10:10+00:00" />
    <meta property="og:image" content="http://www.virtualcitysystems.de/images/vcs/slider/virtualcitySYSTEMS_Webhosting_Silder.jpg" />
    <meta name="twitter:title" content="virtualcityMAP - 3D-Stadtmodelle im Browser" />
    <meta name="twitter:image" content="http://www.virtualcitysystems.de/images/vcs/slider/virtualcitySYSTEMS_Webhosting_Silder.jpg" />
    <meta name="twitter:site" content="@virtualcity" />
    <meta name="twitter:card" content="summary" />

  <style>
  .login-logo{
        background-image:url("images/digital.png");
        background-size: contain;
        background-repeat: no-repeat;
        display: inline-block;
        float: left;
        width: 180px;
        height: 60px;
    }
    .screen-bkgr{
	    background-image:url("images/backgrd.png");
        background-size: cover;
        background-repeat: repeat;
        position:absolute;
        top:0;
        left:0;
        right:0;
        bottom:0;
        text-align:center;
        font-family:Arial, sans-serif;
        font-size:1rem;
    }	
 .login-header{
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 60px;
        padding: 10px;
        background-color: rgba(255,255,255,0.9);
    }
    .login-header h2{
        color: #000000;
        line-height: 1rem;
        display: inline-block;
    }
    .login-header-links{
        display: inline-block;
        float: right;
    }
    .login-header-links a{
        color: #000000;
        text-decoration: none;
    }
    .login-content-wrap{
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        bottom: 50px;
        overflow-y: auto;
    }
    .login-content{
        display: inline-block;
        width: 60%;
        margin-top: 40px;
        background-color: #ffffff;
        text-align: left;
		opacity: 0.9;
    }
    .login-content-header{
        background-color: #c9c9c9;
        padding: 10px;
    }
    .login-content-form{
        padding: 10px;
		opacity: 0.8;
    }
    .login-content-form li{
        line-height: 1.5rem;
    }
    .login-button{
        display: inline-block;
        padding: 5px 10px;
        border: 1 px #000000;
        color: #000000;
        font-weight: bold;
		font-size: 18px;
        background-color: #F7E819;
    }
    .login-footer{
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 50px;
        background-color: #8f1a1a;
        text-align: right;
    }
    .login-footer a{
        color: #ffffff;
        text-decoration: none;
        font-size: .9rem;
        margin: 20px 10px 0 0;
        display: inline-block;
142
    }
Patrick's avatar
Patrick committed
143
	 
Patrick's avatar
Patrick committed
144
145
146
147
	 </style>
	
	<link rel='stylesheet' href='css/vcm_ui.css'>
    <link rel='stylesheet' href='css/vcm.css'>
Patrick's avatar
Patrick committed
148
149
    <link rel='stylesheet' href='css/collapse.css'>

Patrick's avatar
Patrick committed
150
151
	<!-- // added Story -->	
	<link rel="stylesheet" href="templates/custom.css">
Patrick's avatar
Patrick committed
152
153
    <link rel="stylesheet" href="templates/story/story.css">
    <link rel="stylesheet" href="templates/cus_Menu.css">
Patrick's avatar
Patrick committed
154
    <link rel="stylesheet" href="sources/nouislider.css">
Patrick's avatar
Patrick committed
155
156
    <link rel="stylesheet" href="css/loading.css">
    <!-- <link rel="stylesheet" href="css/menu.css"> -->
Patrick's avatar
Patrick committed
157
    <link rel="stylesheet" href="css/confetti.css">
Patrick's avatar
Patrick committed
158
    
Patrick's avatar
Patrick committed
159
160
161
	
  </head>
  <body>
Patrick's avatar
Patrick committed
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
  <!-- Confetti -->
    <div id="confetti_main" class="confetti" style="display:none;">
        <div class="confetti-piece"></div>
        <div class="confetti-piece"></div>
        <div class="confetti-piece"></div>
        <div class="confetti-piece"></div>
        <div class="confetti-piece"></div>
        <div class="confetti-piece"></div>
        <div class="confetti-piece"></div>
        <div class="confetti-piece"></div>
        <div class="confetti-piece"></div>
        <div class="confetti-piece"></div>
        <div class="confetti-piece"></div>
        <div class="confetti-piece"></div>
        <div class="confetti-piece"></div>
    </div>
  <!-- Confetti_Ende -->
  <!-- ballons -->
  <div id="celeb_balloons-container" style="display:none;">
</div>
  <!-- baloons_ende -->
patri's avatar
patri committed
183
  <div id="story-frame" style="z-index:95" class="startscreen vcm-map-top loadingpointer">
Patrick's avatar
Patrick committed
184
185
186
187
188
      <!-- Content Start Screen -->
      <div class="balloon teaser-balloon" id="balloon-startscreen">
          <div class="balloon-content">
              <h1 class="balloon-title i18n_balloon_startscreen_title">
 			     <!--img src="images/Logo_SV.png"  width="150"-->
Patrick's avatar
Patrick committed
189
                 <strong>Kesselkompass</strong> <br>Informieren, Beteiligen, Kooperieren
Patrick's avatar
Patrick committed
190
              </h1>
Patrick's avatar
Patrick committed
191
              <p class="contentOne">Willkommen auf der 3D-Partizipationsplattform Kesselkompass, ein Transferprojekt des M4_Lab an der Hochschule für Technik Stuttgart. Hier finden Sie Informationen und die Möglichkeit zur Beteiligung an unterschiedlichen Forschungsprojekten im Raum Stuttgart, die sich mit städtischer Planung auseinandersetzen. Über die 3D-Kartenansicht der Stadt Stuttgart können Sie verschiedene digitale Werkzeuge nutzen, wissenschaftliche Daten visualisieren, sich über Projekte und Planungen informieren, an Umfragen teilnehmen oder neue Anregungen und Kooperationspartner*innen finden. Viel Spaß beim Stöbern!</p>
patri's avatar
patri committed
192
              <button id="tourstart-btn" onclick="removebuildings(); Introshow();historyInfo();" class="buttonset one"><span class="i18n_balloon_startscreen_btn">Start</span>
Patrick's avatar
Patrick committed
193
              </button>
Patrick's avatar
Patrick committed
194
              <!-- stopStory();    getNAVcar();  -------Test back to start: getFlow();getFlowtest();getTraffic(); -->
Patrick's avatar
Patrick committed
195
196
197
198
199
200
          </div>
          <div class="dialog-image-balloon"></div>
          <div class="balloon-left-edge"></div>
      </div>
      <!-- End of: Content Start Screen -->
      <!-- Content Tour -->
patri's avatar
patri committed
201
      <div id="tour-frame" style="display: none; overflow-y: scroll;overflow-x: hidden;">
patri's avatar
patri committed
202
        
Patrick's avatar
Patrick committed
203
          <div class="tour-top-navi"  style="z-index:99">
patri's avatar
patri committed
204
            <div id="updown" onclick="changesize()" style="display: block; font-size: 20px; padding-left: 48%; margin-right: -50%;   position: -webkit-sticky; position: sticky;">&#9650</div>
patri's avatar
patri committed
205
206
             <a onclick="Introshow();setpositionVAR(false);zoomtop('IntroProj');historyInfo();histInfo();" id = "btn_intro" class=" top-nav buttonset one btn_home btn_size">Info</a>
             <a onclick="zoomtop('ProjektePage');Projektshow();historyProjekt();" id = "btn_intro02" class=" top-nav buttonset one btn_home btn_size">Projekte</a>
Patrick's avatar
Patrick committed
207
208
             <!-- <a href="#" onclick="addcont('main_bock2');showtourSpecific('main');setpositionVAR(false);zoomto('projektOne')" id = "btn_bock" class=" top-nav buttonset one btn_home btn_size"><i class="fa fa-code-fork"></i> Böckingerstraße</a>
             <a href="#" onclick="removebuildings();addcont('main_nordbstuff2');NordbahnhofText();setpositionVAR(false);zoomto('NordbahnhofInfo')" id = "btn_nord" class=" top-nav buttonset one btn_home btn_size"><i class="fa fa-code-fork"></i> Nordbahnhof</a> -->
Patrick's avatar
Patrick committed
209
             <!-- <a href="#" onclick="NoiseText(true);setpositionVAR(false);" id = "btn_acous" class=" top-nav buttonset one btn_home btn_size"><i class="fa fa-code-fork"></i> Akkustik Projekt</a> -->
patri's avatar
patri committed
210
             <a style="float: right; margin-right: 7px; " onclick="removebuildings();addcont('main_bock');addcont('main_heatdem');addcont('main_nordbstuff');Expert();setpositionVAR(false);zoomtop('Expertenmodus');historyToolbox();histExpert();" id = "btn_expert"  class=" top-nav buttonset one btn_home btn_size"><i id="icon_lock" class="fa fa-lock"></i> Toolbox</a>
Patrick's avatar
Patrick committed
211
             <!-- style="float:right;margin-right:2em;" --> 
Patrick's avatar
Patrick committed
212
          </div>
Patrick's avatar
Patrick committed
213
214
215
216
        <!-- Expertenmodus-.--------------------------
            ======================================================================================================= -->
        <div id="Expertenmodus" class="SideInfo" style="display:none;">

Patrick's avatar
Patrick committed
217
            <h1 class="headOne" >Toolbox der Plattform</h1>
Patrick's avatar
Patrick committed
218
            <p class="contentOne">Die Toolbox ist eine wachsende Sammlung. Hier können aus den verschiedenen Fachbereichen von Umfragen, über Energieverbrauchssimulation und Lärmkartierungen, bis zu Routenberechnung und Anzeige der aktuellen Verkehrslage unterschiedliche digitale Werkzeuge ausprobiert werden. </p><br>
Patrick's avatar
Patrick committed
219
            <button id="men_partizipation"  onclick="addcont('main_bock');setpositionVAR(false);showtourSpecific('menu');" type="button" class="collapsible">Partizipation</button>
Patrick's avatar
Patrick committed
220
221
222
            <div id="testscroll" class="content">
                <button onclick="topFunction()" id="btn_backtotop" title="Go to top">Top</button>

Patrick's avatar
Patrick committed
223
224
                <div class="SideInfo">

Patrick's avatar
Patrick committed
225
226
227
228
                    <p class="contentOne">Unter dem Thema der digitalen Partizipation werden diverse Werkzeuge über die Zeit implementiert und getestet. Derzeit ist die Einbindung von Umfragen über die Anbieter Limesurvey und Unipark möglich. Die Auswertungen werden anschließend in den Projektdokumentationen gezeigt. 
                        Wie eine Umfrage innerhalb eines Projekts aussehen kann, ist derzeit in unserem LABOR Nordbahnhof zu beobachten. 
                        
                        </p><br>
Patrick's avatar
Patrick committed
229

Patrick's avatar
Patrick committed
230
231
232
233
234
235
                    <div id="bilder_bock">                  
                                <!-- Slideshow container -->

                    </div>  

        
Patrick's avatar
Patrick committed
236
                    <button id="btn_umfrage_bock2" class="accordion">Umfragebeispiel mit Limesurvey</button>
Patrick's avatar
Patrick committed
237
                      <div class="sub-menu" style="background-color:white;">
Patrick's avatar
Patrick committed
238
                          <iframe style="width: 95%; height:36em;margin-left:1em;margin-right:1em;border: none;" src="https://umfrage.smartvillages.online/limesurvey/index.php/351963?lang=de-informal"></iframe>
Patrick's avatar
Patrick committed
239
240
241
242

                      </div>
                      <button id="btn_umfrage_bock3" class="accordion">Umfragebeispiel mit Unipark</button>
                      <div class="sub-menu" style="background-color:white;">
Patrick's avatar
Patrick committed
243
                          <iframe style="width: 95%; height:120em;margin-left:1em;margin-right:1em;border: none;" src="https://ww2.unipark.de/uc/HFT_Stuttgart_Studenten/f7c4/"></iframe>
Patrick's avatar
Patrick committed
244

Patrick's avatar
Patrick committed
245
                      </div>
Patrick's avatar
Patrick committed
246
247
248
249
250
251
                      <div>
                        <p class="contentOne">Hier testen wir momentan eine Funktion die es Ihnen erlaubt ihren Lieblingsort zu markieren und zu kommentieren. 
                            
                            </p><br> 
                            <img id="dragFrom" onmouseover="setPointStartEnd('fav')" ondragstart="dragstart_handler(event);" draggable=true src="templates/locationSM.png" style="height:30px;height: 30px; display: inline-block; position: absolute;cursor: -webkit-grab; cursor: grab;">
                      </div><br><br>
Cholgrrr's avatar
Cholgrrr committed
252
                      <button id="getLocationFav" class="btn_standard">Aktuelle Position</button><br>
patri's avatar
patri committed
253
                      <br>                      <label class="container contentOne">Andere Lieblingsorte
patri's avatar
patri committed
254
255
256
257
                        <input type="checkbox" id="favcheck" onclick="switchFavPlaces()">
                        <span class="checkmark"></span>
                      </label>

Patrick's avatar
Patrick committed
258
                </div>
Patrick's avatar
Patrick committed
259

Patrick's avatar
Patrick committed
260
            </div>
Patrick's avatar
Updates    
Patrick committed
261
            <button id="men_energie"  onclick="setpositionVAR(false);nordbahnview();" type="button" class="collapsible">Energie</button>
Patrick's avatar
Patrick committed
262
            <div class="content">
Patrick's avatar
Updates    
Patrick committed
263
                        <h3>Wärmebedarf</h3>
Patrick's avatar
Patrick committed
264
                        <p class="contentOne">Durch dieses Tool kann der spezifische Wärmebedarf von Gebäuden visualisiert und mithilfe der Regler Grenzwerte verändert werden. </a><br>
Patrick's avatar
Patrick committed
265
266
                        </p>
                        <div id="nordbplanung">
Patrick's avatar
Patrick committed
267

Patrick's avatar
Patrick committed
268
269
                        </div>
                        <br>
Patrick's avatar
Patrick committed
270
271
                        <h3>Spezifischer Wärmebedarf</h3>
                        <p class="contentOne">Der spezifische Wärmebedarf (Wärmebedarf pro Quadrat Meter pro Jahr) wurde mit SimStadt simuliert. Die Werte sind in [kWh/m²·a] angegeben.</p><br>
Patrick's avatar
Patrick committed
272
                        <p class="contentOne">Der Energienutzungsaspekt kann nur bedingt herangezogen werden, da die Gebäude sehr unterschiedliche Nutzungen haben.</p>
Patrick's avatar
Patrick committed
273
274
275
                        <div id="unconstrained"></div><br>
                        <span class="example-val" id="unconstrained-values"></span>
                        
Patrick's avatar
Updates    
Patrick committed
276
                        <div class='my-legend addition'>
Patrick's avatar
Patrick committed
277
                            <div class='legend-title'>in [kWh/m²·a] </div>
Patrick's avatar
Updates    
Patrick committed
278
                            <div class='legend-scale addition2'>
Patrick's avatar
Patrick committed
279
280
281
282
283
284
285
286
287
288
289
                              <ul class='legend-labels'>
                                <li class="One" id="One"><span class="rectangle" style='background:#38943d;'></span>min-100</li>
                                <li class="Two" id="Two"><span class="rectangle" style='background:#699438;'></span>100-200</li>
                                <li class="Three" id="Three"><span class="rectangle" style='background:#d0d40b;'></span>200-300</li>
                                <li class="Four" id="Four"><span class="rectangle" style='background:#db6f09;'></span>300-400</li>
                                <li class="Five" id="Five"><span class="rectangle" style='background:#ad0202;'></span>400-max</li>
                              </ul>
                            </div>
                            <!-- <div class='legend-source'>Source: <a href="#link to source">Name of source</a></div> -->
                        </div>
                        <div id="main_heatdem">
Patrick's avatar
Patrick committed
290

Patrick's avatar
Patrick committed
291
                        </div>
Patrick's avatar
Updates    
Patrick committed
292
293
294
                        <p class="contentOne">Der Graph vergleicht beispielhaft zwei Gebäude bezüglich ihres monatlichen Wärmebedarfs. Ein Gebäude wurde aus den bestehenden Bauten gewählt und das Andere aus den Geplanten.</p>
                        <!-- <p class="contentOne">Vergleich zwischen dem monatlichen Gasamtwärmebedarf der zukünftigen Gebäude und der aktuellen Gebäude.</p> -->

Patrick's avatar
Patrick committed
295
            </div>
Patrick's avatar
Patrick committed
296
            <button id="men_acoustic" onclick="akkustikview()" type="button" class="collapsible">Akustik</button>
Patrick's avatar
Patrick committed
297
            <div class="content">
Patrick's avatar
Patrick committed
298

Patrick's avatar
Updates    
Patrick committed
299
                    <h3>Lärmkartierung</h3>
Patrick's avatar
Patrick committed
300
                    <p class="contentOne">Hier können Sie sich die Ergebnisse der Lärmkartierung 2017 nach den Berechnungsmethoden der EU-Umgebungslärmrichtlinie für die einzelnen Lärmquellen Straßen-, Schienen- und Flugverkehr ansehen. Die kombinierte Lärmkarte bildet durch einfache energetische Summation der Pegel eine Gesamtlärmkarte aller getrennt betrachteten Lärmquellen. </p>
Patrick's avatar
Updates    
Patrick committed
301
                    <br><a class="contentOne" >Straßeverkehr</a><br>
Patrick's avatar
Patrick committed
302
303
304
                    <button id ="btn_StreetDay" onclick="noisemap('Streetday');buildingSeeThrough(true);buildingSeeThrough(false)">Day</button>
                    <button id ="btn_StreetNight" onclick="noisemap('Streetnight');buildingSeeThrough(true);buildingSeeThrough(false)">Night</button>
                    <button id ="btn_StreetOff" onclick="noisemap('offS');buildingSeeThroughfalse(true);buildingSeeThroughfalse(false);removebuildings();">Off</button><br>
Patrick's avatar
Patrick committed
305
                      <a class="contentOne" >Bahnverkehr</a><br>
Patrick's avatar
Patrick committed
306
307
308
                      <button id ="btn_RailDay" onclick="noisemap('Railday');buildingSeeThrough(true);buildingSeeThrough(false)">Day</button>
                      <button id ="btn_RailNight" onclick="noisemap('Railnight');buildingSeeThrough(true);buildingSeeThrough(false)">Night</button>
                      <button id ="btn_RailOff" onclick="noisemap('offR');buildingSeeThroughfalse(true);buildingSeeThroughfalse(false);removebuildings();">Off</button>
Patrick's avatar
Patrick committed
309
                      <br><a class="contentOne" >Flugverkehr</a><br>
Patrick's avatar
Patrick committed
310
311
312
                      <button id ="btn_AirDay" onclick="noisemap('Airday');buildingSeeThrough(true);buildingSeeThrough(false)">Day</button>
                      <button id ="btn_AirNight" onclick="noisemap('Airnight');buildingSeeThrough(true);buildingSeeThrough(false)">Night</button>
                      <button id ="btn_AirOff" onclick="noisemap('offAir');buildingSeeThroughfalse(true);buildingSeeThroughfalse(false);removebuildings();">Off</button>
Patrick's avatar
Patrick committed
313
                      <br><a  class="contentOne" >Kombiniert</a><br>
Patrick's avatar
Patrick committed
314
315
                      <button id ="btn_AllDay" onclick="noisemap('Allday');buildingSeeThrough(true);buildingSeeThrough(false)">Day</button>
                      <button id ="btn_AllNight" onclick="noisemap('Allnight');buildingSeeThrough(true);buildingSeeThrough(false)">Night</button>
Patrick's avatar
Updates    
Patrick committed
316
317
318
319
320
                      <button id ="btn_AllOff" onclick="noisemap('offAll');buildingSeeThroughfalse(true);buildingSeeThroughfalse(false);removebuildings();">Off</button><br><br>
                      <div class='my-legend' style="width:100%;margin-top:1em;">
                        <div class='legend-title'>in dB </div>
                        <div class='legend-scale'>
                          <ul class='legend-labels' style="display: block;">
Patrick's avatar
Patrick committed
321
322
323
324
325
326
327
                            <li class="OneN" id="OneN"><span class="rectangle" style='background:#AF8A54;float: left;'></span> >50 dB</li>
                            <li class="TwoN" id="TwoN"><span class="rectangle" style='background:#FA842B;float: left;'></span> >55 dB</li>
                            <li class="ThreeN" id="ThreeN"><span class="rectangle" style='background:#C1121C;float: left;'></span> >60 dB</li>
                            <li class="FourN" id="FourN"><span class="rectangle" style='background:#8D1D2C;float: left;'></span> >65 dB</li>
                            <li class="FiveN" id="FiveN"><span class="rectangle" style='background:#992572;float: left;'></span> >70 dB</li>
                            <li class="sixN" id="sixN"><span class="rectangle" style='background:#3481B8;float: left;'></span> >75 dB</li>
                            <li class="sevenN" id="sevenN"><span class="rectangle" style='background:#1A5784;float: left;'></span> >80 dB</li>
Patrick's avatar
Updates    
Patrick committed
328
                          </ul>
Patrick's avatar
Patrick committed
329
                          <!-- <ul class='legend-labels' style="display: block;">
Patrick's avatar
Updates    
Patrick committed
330
331
332
333
334
335
336
                            <li class="OneN" id="OneN1">>50 dB</li>
                            <li class="TwoN" id="TwoN1">>55 dB</li>
                            <li class="ThreeN" id="ThreeN1">>60 dB</li>
                            <li class="FourN" id="FourN1">>65 dB</li>
                            <li class="FiveN" id="FiveN1">>70 dB</li>
                            <li class="sixN" id="sixN1">>75 dB</li>
                            <li class="sevenN" id="sevenN1">>80 dB</li>
Patrick's avatar
Patrick committed
337
                          </ul> -->
Patrick's avatar
Updates    
Patrick committed
338
339
340
341
                        </div>
                        <!-- <div class='legend-source'>Source: <a href="#link to source">Name of source</a></div> -->
                    </div><br><br><br><br>
                      <p class="contentOne" style="margin-top:1em;">Die Größe der Raster für die Berechnung der Pegel beträgt 10m in 4m Höhe über der Geländeoberfläche. Die Betrachtungszeitraum Tag gibt die Mittelung über den gesamten Tag (L_DEN) an. Der Betrachtungszeitraum Nacht (L_Night) umfasst die Zeit zwischen 22 Uhr und 6 Uhr.</p>
Patrick's avatar
Patrick committed
342
                      <p class="contentOne">Für die Überlassung der Daten wird der Landeshauptstadt Stuttgart, Amt für Umweltschutz, Abteilung Stadtklimatologie, der Landesanstalt für Umwelt Baden-Württemberg; und dem Eisenbahnbundesamt herzlich gedankt.</p>
Patrick's avatar
Updates    
Patrick committed
343
344
                      <br>
                    <!-- <a class="contentOne"><strong>Noise Sensors (Live):</strong></a><br>
Patrick's avatar
Patrick committed
345
346
                    <button id ="btn_NoiseSensOn" onclick="noisesens('on')">On</button>
                    <button id ="btn_NoiseSensOff" onclick="noisesens('off')">Off</button><br><br>
Patrick's avatar
Patrick committed
347
348
                    <br>
                      
Patrick's avatar
Patrick committed
349
                    <a class="contentOne"><strong>Noise Sensors (historisch):</strong></a><br>
Patrick's avatar
Patrick committed
350
                    <button id ="btn_NoiseSensOpen" onclick="NoiseText(false);">Open</button><br><br>
Patrick's avatar
Updates    
Patrick committed
351
352
                    <br> -->
                    <h3>Lärmsensoren</h3>
Patrick's avatar
Patrick committed
353
354
                    <p class="contentOne">Drei Lärmsensoren im Raum Stuttgart messen zeitaktuell die Lärmbelastung vor Ort. Die Daten können Sie sich hier durch Auswahl eines Sensors anzeigen lassen.</p>
                    <br><div class="row2" id="loadingHistNoise"></div>
Patrick's avatar
Updates    
Patrick committed
355
                    <!-- <label class="column2" style="position:relative;padding-left:0px; padding-top:10px; padding-bottom:10px;margin-left:0px;" >Sensor wählen:</label> -->
Patrick's avatar
Patrick committed
356
                    <select class="dropbtn" style="border-radius: 3px; height: 3.1em; box-shadow: 0 8px 16px 0 #27272733, 0 6px 20px 0 rgba(0,0,0,0.19);" name="sensor" id="sensors">
Patrick's avatar
Patrick committed
357
358
359
                    <option value="49368">49368</option>
                    <option value="53627">53627</option>
                    <option value="29212">29212</option>
Patrick's avatar
Updates    
Patrick committed
360
                    <option value="Sens" selected>Sensor wählen</option>
Patrick's avatar
Patrick committed
361
                    </select>
Patrick's avatar
Updates    
Patrick committed
362
                    <!-- <a class="contentOne column2" href="#" id ="btn_NoiseSensShow" style="width:6em !important; height:2em !important;border-radius: 3px; padding-top: 0.7em;padding-bottom: 2.3em;" onclick="getSTAHistNoise();setNoiseWaiting();HistNoiseData('Exp','49368')">anzeigen</a> -->
Patrick's avatar
Patrick committed
363

Patrick's avatar
Patrick committed
364
365
                    <div id="unconstrained"></div><br>
                    <span class="example-val" id="unconstrained-values"></span>
Patrick's avatar
Patrick committed
366
                    <a class="contentOne">Lärmbelastungswerte:</a>
Patrick's avatar
Patrick committed
367
                    <div id="chartNoiseExp"><div style='width:100%;margin-top:10px;' id="chartNoise"></div></div>
Patrick's avatar
Patrick committed
368
                    
Patrick's avatar
Patrick committed
369
370
                    <div style='width:100%;margin-top:10px;' id="chartNoiseSTA"></div>
                <!-- <div id="slider-color"></div> -->
Patrick's avatar
Patrick committed
371
                        <p class="contentOne">Da der Sensor in UTC format die Zeit misst wird hier keine Unterscheidung zwischen Sommer und Winterzeit gemacht. Aufgrund der großen Datenmenge kann die Darstellung einige Zeit in Anspruch nehmen.</p><br><br>
Patrick's avatar
Updates    
Patrick committed
372
                        
Patrick's avatar
Patrick committed
373
    
Patrick's avatar
Patrick committed
374

Patrick's avatar
Patrick committed
375
            </div>
Patrick's avatar
Patrick committed
376
            <button id="men_mobility" onclick="MobilityView();setpositionVAR(true);getPosition();" type="button" class="collapsible">Mobilität</button>
Patrick's avatar
Patrick committed
377
            <div class="content">
Patrick's avatar
Patrick committed
378
                
Patrick's avatar
Updates    
Patrick committed
379
                <!-- <a class="contentOne" style="margin-top:1em" >Baustellen</a><br>
Patrick's avatar
Patrick committed
380
                <button class = "btn_on" onclick="getAccidents('CONSTRUCTION')">On</button>
Patrick's avatar
Updates    
Patrick committed
381
                <button class = "btn_off" onclick="deleteAccidents('CONSTRUCTION')">Off</button> -->
Patrick's avatar
Patrick committed
382
                <h3 id="headNordB">Navigationsrechner</h3>
Patrick's avatar
Patrick committed
383
384
                <p class="contentOne">Bitte wählen Sie einen Start und Endpunkt für ihre Route aus. Klicken Sie hierfür auf den Button Startpunkt und danach auf die gewünschte Stelle in der Karte. Oder ziehen sie die Marker auf der rechten Seite an die gewünschte Stelle in der Karte mit Drag and Drop. Wiederholen Sie das für den Endpunkt, dann können Sie sich über die Route Buttons den Weg anzeigen.</p>
                <div style="width:34em;"><br><br>
Patrick's avatar
Patrick committed
385
386
                <button class="btn_standard" style="width:10em;height:2em;" onclick="getStart('Start');">Startpunkt</button>
                
Patrick's avatar
Patrick committed
387
388
389
390
391
                <input style="width:12em;height:2em;" type="text" id="Spunktlat" name="Spunktlat">
                <input style="width:12em;height:2em;" type="text" id="Spunktlon" name="Spunktlon">
                <img id="dragFrom" onmouseover="setPointStartEnd('start')" ondragstart="dragstart_handler(event);" draggable=true src="templates/locationSM.png" style="height:30px;height: 30px; display: inline-block; position: absolute;cursor: -webkit-grab; cursor: grab;">
                <br><br>
                <!-- <div id=dragFrom2 ><span draggable=true >drop me</span></div> -->
Patrick's avatar
Patrick committed
392
393
                <button class="btn_standard" style="width:10em;height:2em;" onclick="getStart('End');">Endpunkt</button>
                <input style="width:12em;height:2em;" type="text" id="Epunktlat" name="Epunktlat">
Patrick's avatar
Patrick committed
394
395
396
                <input style="width:12em;height:2em;" type="text" id="Epunktlon" name="Epunktlon">
                <img id="dragFrom2" onmouseover="setPointStartEnd('end')" ondragstart="dragstart_handler(event);" draggable=true src="templates/locationSM.png" style="height:30px;height: 30px; display: inline-block; position: absolute;cursor: -webkit-grab; cursor: grab;">
                <br><br>
Patrick's avatar
Patrick committed
397

Patrick's avatar
Updates    
Patrick committed
398
399
                <button class="btn_standard" id="buttonCar" style="width:13em;height:2em;" onclick="setRouteCar();">Route Auto</button>
                <button class="btn_standard" id="buttonPub" style="width:13em;height:2em;" onclick="setRoutePublic();">Route ÖPNV<div id="loaderPub" style="display:none;" class="loader"></div></button>
Patrick's avatar
Patrick committed
400
                <button class="btn_standard" style="width:8em;height:2em;" onclick="deletenav();">Route löschen</button><br><br>
Patrick's avatar
Patrick committed
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
                <ul style="padding-left:0em">
                    <li style="width:65px;">
                        <svg width="100" height="20">
                        <rect width="60" height="20" style="fill:rgb(30,144,255);stroke-width:1.5;stroke:rgb(153,153,153)" />
                        </svg>
                        <p class="contentOne" style="margin-top:0em">zu Fuß</p>
                    </li>
                    <li style="width:65px;">
                        <svg width="100" height="20">
                        <rect width="60" height="20" style="fill:rgb(199,21,133);stroke-width:1.5;stroke:rgb(153,153,153)" />
                        </svg>
                        <p class="contentOne" style="margin-top:0em">mit Auto</p>
                    </li>
                    <li style="width:65px;">
                        <svg width="100" height="20">
                        <rect width="60" height="20" style="fill:rgb(255, 140, 0);stroke-width:1.5;stroke:rgb(153,153,153)" />
                        </svg>
                        <p class="contentOne" style="margin-top:0em">mit Bahn</p>
                    </li>

                </ul>
                
Patrick's avatar
Updates    
Patrick committed
423
                <p class="contentOne">Dauer mit dem Auto</p>
Patrick's avatar
Patrick committed
424
                <input type="text" id="Routeduration" name="Duration" disabled style="border-style: none none none solid;"><br>
Patrick's avatar
Updates    
Patrick committed
425
                <p class="contentOne">Dauer mit ÖPNV</p>
Patrick's avatar
Patrick committed
426
427
428
429
                <input type="text" id="RoutedurationPub" name="Duration" disabled style="border-style: none none none solid;">
                <br>
                <div id="PubRouteShow" style="margin-top:1em;">
                </div></div>
Patrick's avatar
Patrick committed
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
                <br><br>
                <h3>Verkehrsinformationen</h3><br>
                <label class="container contentOne">Baustellen
                    <input type="checkbox" id="baucheck" onclick="CheckboxCheck('CONSTRUCTION')">
                    <span class="checkmark"></span>
                  </label>
                  
                <br>

                <!-- <a  class="contentOne" onclick="" >Straßenschließungen</a><br>
                <button class = "btn_on" onclick="getAccidents('ROAD_CLOSURE')">On</button>
                <button class = "btn_off" onclick="deleteAccidents('ROAD_CLOSURE')">Off</button> -->
                <label class="container contentOne">Straßenschließungen
                    <input type="checkbox" id="Streetcheck" onclick="CheckboxCheck('ROAD_CLOSURE')">
                    <span class="checkmark"></span>
                  </label>
                  <br>

                <!-- <a  class="contentOne" >Verkehrsfluss</a><br>
                <button class = "btn_on" onclick="drawFlow()">On</button>
                <button class = "btn_off" onclick="deleteFlow()">Off</button><br> -->
                <label class="container contentOne">Verkehrsfluss
                    <input type="checkbox" id="flowcheck" onclick="CheckboxCheck('FLOW')">
                    <span class="checkmark"></span>
                  </label>
Patrick's avatar
Patrick committed
455
            
Patrick's avatar
Patrick committed
456
            </div>
Patrick's avatar
Patrick committed
457
            <!-- <button id="men_navigation" onclick="setpositionVAR(true);getPosition();" type="button" class="collapsible">Navigation</button>
Patrick's avatar
Patrick committed
458
            <div class="content">
Patrick's avatar
Patrick committed
459
                <h1 id="headNordB">Navigationsrechner</h1>
Patrick's avatar
Patrick committed
460
461
462
463
464
465
466
467
468
469
470
                <p class="contentOne">Bitte wählen Sie einen Start und Endpunkt für ihre Route aus.</p>
                <div style="width:34em;">
                <button class="btn_standard" style="width:10em;height:2em;" onclick="getStart('Start');">Startpunkt</button>
                <input style="width:12em;height:2em;" type="text" id="Spunktlat" name="Spunktlat">
                <input style="width:12em;height:2em;" type="text" id="Spunktlon" name="Spunktlon"><br><br>
                
                <button class="btn_standard" style="width:10em;height:2em;" onclick="getStart('End');">Endpunkt</button>
                <input style="width:12em;height:2em;" type="text" id="Epunktlat" name="Epunktlat">
                <input style="width:12em;height:2em;" type="text" id="Epunktlon" name="Epunktlon"><br><br>

                <button class="btn_standard" id="buttonCar" style="width:13em;height:2em;" onclick="setRouteCar();">Route berechnen (Auto)</button>
Patrick's avatar
Patrick committed
471
                <button class="btn_standard" id="buttonPub" style="width:13em;height:2em;" onclick="setRoutePublic();">Route berechnen (ÖPNV)<div id="loaderPub" style="display:none;" class="loader"></div></button>
Patrick's avatar
Patrick committed
472
473
                <button class="btn_standard" style="width:8em;height:2em;" onclick="deletenav();">Route löschen</button><br><br>
                <p class="contentOne">Duration with Car</p>
Patrick's avatar
Patrick committed
474
                <input type="text" id="Routeduration" name="Duration" disabled style="border-style: none none none solid;"><br>
Patrick's avatar
Patrick committed
475
                <p class="contentOne">Duration with Public</p>
Patrick's avatar
Patrick committed
476
                <input type="text" id="RoutedurationPub" name="Duration" disabled style="border-style: none none none solid;">
Patrick's avatar
Patrick committed
477
478
479
480
481
482
483
                <br>
                <div id="PubRouteShow" style="margin-top:1em;">
                </div></div>
            </div>
            <button id="men_simstadt" type="button" class="collapsible">SimStadt</button>
            <div class="content">
                
Patrick's avatar
Patrick committed
484
            </div> -->
Patrick's avatar
Patrick committed
485
486
487
488
489
490

        </div>
            <!-- INTRO-.--------------------------
            ======================================================================================================= -->
        <div id="IntroProj" class="SideInfo" style="display:none;">

Patrick's avatar
Patrick committed
491
            <h1 class="headOne" id="headOne">Kesselkompass – Informieren, Beteiligen, Kooperieren</h1>
Patrick's avatar
Patrick committed
492
493
            <p class="contentOne">Kesselkompass ist eine 3D-Partizipationsplattform, die einen einfachen Zugang zu Stadtraum, Planung und Wissenschaft ermöglicht. Über die 3D-Kartenansicht kann man verschiedene digitale Werkzeuge nutzen, wissenschaftliche Daten visualisieren, sich über Projekte und Planungen informieren, an Umfragen teilnehmen oder neue Anregungen und Kooperationspartner*innen in den Projektgebieten finden. </p>
            <p class="contentOne">Unsere Projekte  werden im Rahmen individueller Forschungsfragen und transdisziplinären Seminarreihen in spezifischen Gebieten erarbeitet. Hier kann man sich informieren sowie aktiv am Ideenfindungsprozess beteiligen. </p><br>
Patrick's avatar
Patrick committed
494
                            <!-- <div class="row3">
Patrick's avatar
Patrick committed
495
                    <div style="cursor:pointer;" onclick="addcont('main_bock2');showtourSpecific('main');setpositionVAR(false);"class="column3">
Patrick's avatar
Patrick committed
496
                      <h3 class="top-left">Böckinger Straße</h3>
Patrick's avatar
Patrick committed
497
                      <img class="imagecol3" src="images/projects/bockinger1.png" alt="Snow" style="width:100%">
Patrick's avatar
Patrick committed
498
                    </div>
Patrick's avatar
Patrick committed
499
                    <div style="cursor:pointer;" onclick="removebuildings();addcont('main_heatdem2');addcont('main_nordbstuff2');NordbahnhofText();setpositionVAR(false);" class="column3">
Patrick's avatar
Patrick committed
500
                        <h3 class="top-left">Nordbahnhof</h3>
Patrick's avatar
Patrick committed
501
                      <img class="imagecol3" src="images/projects/nordbahn1.png" alt="Forest" style="width:100%">
Patrick's avatar
Patrick committed
502
                    </div>
Patrick's avatar
Patrick committed
503
504
                    
                  </div> -->
Patrick's avatar
Patrick committed
505
506
                  <p class="contentOne">Die Toolbox ist eine wachsende Sammlung aller digitalen Werkzeuge, die auf der Plattform angewendet werden können. Von Umfragen, über Energieverbrauchssimulation und Lärmkartierungen, bis zu Routenberechnung und Anzeige der aktuellen Verkehrslage kann können hier alle Möglichkeiten ausgetestet werden. </p><br>
            <p class="contentOne">Die 3D-Partizipationsplattform Kesselkompass ist ein Transferprojekt des M4_Lab an der Hochschule für Technik, an dem verschiedene Forschungsprojekte und -bereiche wie Energietechnik, Bauakustik, Mobilität und Verkehr, Stadtplanung und Wirtschaftspsychologie beteiligt sind. Sie befindet sich in einer steten Entwicklungsphase, daher sind wir für jegliche Anregungen, Feedback oder Fragen dankbar. </p>
Patrick's avatar
Updates    
Patrick committed
507
508
            <p class="contentOne">Schreiben Sie uns einfach an les@hft-stuttgart.de</p> <br>

Patrick's avatar
Patrick committed
509
            <div style="height:90px">
patri's avatar
patri committed
510
511
512
            <img src="images/logos/logo_kleiner.svg" width="120" height="100" alt="hft">
            <img src="images/logos/virtualcitysystems.png" width="150" height="55" margin-top="10px" alt="vcs">
            <img src="images/logos/cesium-logo.png" width="118" height="26" alt="cesium">
Patrick's avatar
Patrick committed
513
514
515
516
517
518
519
520
            </div>
        </div>
        <!-- Projekte-.--------------------------
            ======================================================================================================= -->
        <div id="ProjektePage" class="SideInfo" style="display:none;">

            <h1 class="headOne" id="headOne">Kesselkompass – Informieren, Beteiligen, Kooperieren</h1>
            <h3>Was sind unsere Projekte?</h3>
Patrick's avatar
Updates    
Patrick committed
521
522
            <!-- <p class="contentOne">Unsere Projekte  werden im Rahmen individueller Forschungsfragen und transdisziplinären Seminarreihen in spezifischen Gebieten erarbeitet. Hier kann man sich informieren sowie aktiv am Ideenfindungsprozess beteiligen. </p><br> -->
                <h3>Aktuell</h3>    
Patrick's avatar
Patrick committed
523
            <div class="row3">
patri's avatar
patri committed
524
                    <div style="cursor:pointer;" id = "btn_nord" onclick="removebuildings();addcont('main_nordbstuff2');NordbahnhofText();setpositionVAR(false);zoomtop('NordbahnhofInfo');historyNordb()" class="column3">
Patrick's avatar
Patrick committed
525
                        <h3 class="top-left">Nordbahnhof</h3>
Patrick's avatar
Patrick committed
526
                        <img class="imagecol3" src="images/thumbnails/Nord_thumb_001.jpg" alt="Forest" style="width:100%">
Patrick's avatar
Patrick committed
527
                    </div>
Patrick's avatar
Patrick committed
528
529
                    <div class="column23">
                        <p style="padding-top: 0em; margin-top: 0em;" class="contentOne">Drei Quartiere liegen beim LABOR Nordbahnhof im Fokus verschiedener Aktionen und Experimente im öffentlichen Raum. Hier können Sie sich aktiv am Prozess beteiligen und ihre Ideen und Meinung einbringen!</p>
Patrick's avatar
Updates    
Patrick committed
530
                    </div>
Patrick's avatar
Patrick committed
531
532
533
534
535
                    <!-- <div style="cursor:pointer;" onclick="NoiseText(true);setpositionVAR(false);" class="column3">
                        <h3 class="top-left">Akkustik Projekt</h3>
                        <img class="imagecol3" src="images/projects/noise1.png" alt="Mountains" style="width:100%">
                    </div> -->
                    </div>
Patrick's avatar
Updates    
Patrick committed
536
537
                    
                    <h3>Archiv</h3>
Patrick's avatar
Patrick committed
538
                    <div class="row3">
patri's avatar
patri committed
539
                    <div style="cursor:pointer;" id = "btn_bock" onclick="addcont('main_bock2');showtourSpecific('main');setpositionVAR(false);zoomtop('projektOne');historyBock()"class="column3">
Patrick's avatar
Patrick committed
540
                        <h3 class="top-left">Böckinger Straße</h3>
Patrick's avatar
Patrick committed
541
                        <img class="imagecol3" src="images/thumbnails/boe_thumb_001_sw.jpg" alt="Snow" style="width:100%">
Patrick's avatar
Patrick committed
542
                    </div>
Patrick's avatar
Patrick committed
543
544
                    <div class="column23">
                        <p style="padding-top: 0em; margin-top: 0em;" class="contentOne">Wie lassen sich vorhandene Quartiersstrukturen in einer wachsenden Nachbarschaft nutzen und erweitern? Um das herauszufinden, beleben vier kleine Rotkäppchen-Kioske das Quartier und den öffentlichen Raum in der Böckinger Straße. </p>
Patrick's avatar
Updates    
Patrick committed
545
                    </div>
Patrick's avatar
Patrick committed
546
547
548
549
550
551

                    <!-- <div style="cursor:pointer;" onclick="NoiseText(true);setpositionVAR(false);" class="column3">
                        <h3 class="top-left">Akkustik Projekt</h3>
                        <img class="imagecol3" src="images/projects/noise1.png" alt="Mountains" style="width:100%">
                    </div> -->
                    </div>
Patrick's avatar
Updates    
Patrick committed
552
                    
Patrick's avatar
Patrick committed
553
554

        </div>
Patrick's avatar
Patrick committed
555
556
557
558
          <!-- Projekt 1
            ======================================================================================================= -->
        <div id="projektOne" class="SideInfo" style="display:none;">

Patrick's avatar
Patrick committed
559
            <h1 class="headOne" id="headOne">Böckinger Straße</h1> 
Patrick's avatar
Patrick committed
560
            <!-- class="sticky" -->
Patrick's avatar
Patrick committed
561
                    
Patrick's avatar
Patrick committed
562
            <div id="bilder_bock2">
Patrick's avatar
Patrick committed
563
564
565
                        <!-- Slideshow container -->

            </div>
Patrick's avatar
Patrick committed
566
567
568
569
570
571
            <p class="contentOne">Wie lassen sich vorhandene Quartiersstrukturen in einer wachsenden Nachbarschaft nutzen und erweitern? Das ist eine der Fragestellungen, die sich im Planungsgebiet Böckinger Straße in Stuttgart Rot stellt. Die bestehende Nachbarschaft soll durch die Entstehung von 300 neuen Wohneinheiten beträchtlich erweitert werden. Im Rahmen der IBA Summer School 2019 initiierte das Labor für Experimentellen Stadtraum  ein zivilgesellschaftliches Experiment zur Untersuchung und Förderung der sozialen Interaktion in der Nachbarschaft. Der Startpunkt dafür war durch das Engagement der Evangelischen Gesellschaft (eva) und das Immanuel Grözinger Haus mit seinem angegliederten Garten und Nachbarschaftscafé bereits gesetzt. Vier ‚Rotkäppchen‘-Kioske wurden in einem einwöchigen Workshop in Kooperation mit der eva vor Ort von einem interdisziplinären Team Studierender konzipiert, gebaut und an einem Aktionstag gemeinsam mit den Nachbar*innen durch die Siedlung geführt. Der Austausch im Quartier sollte durch den Info-Kiosk und Garten-Kiosk, der ein als Verteiler für Gemüse aus dem Garten des Immanuel Grözinger Hauses ist, gestärkt werden. Die Nutzung und Aktivität im öffentlichen Raum der Siedlung sollten durch den Brettspiel- und den Sport-Kiosk gefördert werden.</p>
            <p class="contentOne">In einem darauf aufbauenden Seminar wurden die vier Kioske durch Studierende der Studiengänge Architektur, Stadtplanung und Wirtschaftspsychologie als kommunikative Werkzeuge erneut getestet und weiterentwickelt. Während der Experimentierphase wurden durch verschiedene Aktionen so weitere Erkenntnisse über die Rotkäppchen und die Vorstellungen eines zukünftigen Zusammenlebens im wachsenden Quartier gesammelt. </p><br>
            <p class="contentOne">Die Pflege der Kioske wurde bereits relativ früh im Prozess von den Bewohnern des Immanuel Grözinger Hauses übernommen. Nachdem Info- und Gartenkiosk ihren Platz im öffentlichen Raum vor dem Café TaS eingenommen hatten, wurde ihre Nutzung umstandslos von den Nachbar*innen aufgenommen und ebenso eigenständig erweitert. So wurde aus dem Gartenkiosk bald ein Fairteiler  für ausrangierte Gegenstände, der durch den Betreuer der Holzwerkstatt des Immanuel Grözinger Hauses auch eine liebevolle Erweiterung in Form einer verschließbaren Tür und eines neuen Anstrichs erhielt. </p><br>
            <p class="contentOne">>> hier geht’s zur Dokumentation  </p>
            <p class="contentOne">Weitere Informationen und Eindrücke auch auf Instagram @les_stuttgart</p>

Patrick's avatar
Patrick committed
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
        </div>

        <div id="UmfrageOne" class="SideInfo" style="display:none;">

            
            <iframe style="width: 95%; height:35em;margin-left:1em;margin-right:1em;border: none;" src="https://umfrage.smartvillages.online/limesurvey/index.php/351963?lang=de-informal"></iframe>
            
            <p class="contentOne">Die Reduzierung des privaten Wohnraums bedingt auch das Zusammenleben
                im Quartier. Wohnfunktionen werden wieder in den öffentlichen Raum
                und die Gemeinschaft verlagert und im Sinne von urbanen Gemeingütern
                genutzt. Die Funktionsweise solcher Gemeingüter beruht dabei hauptsächlich
                auf drei Grundelementen: der Ressource, einer Gruppe, die die Ressource
                gemeinsam nutzt und den Regeln, die diese Gruppe zur Nutzung
                festlegt. Aber wie kann man solche Gemeingüter in einem sich neu
                entwickelnden Quartier implementieren?</p>
            <p class="contentOne">In einem Realexperiment werden Konzepte und Ideen in Verknüpfung mit
                lokalen Akteuren erarbeitet und ausprobiert. <br>
                Der Garten des Imanuel Grözinger Hauses dient dabei als Ausgangspunkt. Drei Teams - Kommunikation,
                Programm und Bau - führen Interviews, erarbeiten ein Programm
                und eine bauliche Intervention vor Ort. Den Abschluss bildet ein Aktionstag
                gemeinsam mit Bewohnern und Nachbarn.</p><br>
                <p class="contentOne">Folgen Sie uns auf Instagram! Fotos und Videos führen Sie durch unsere
                gesamte Woche in der Böckinger Straße.</p><br>
Patrick's avatar
Patrick committed
595
596
                <p class="contentOne">@les_stuttgart</p>
                <p class="contentOne">#ibasummerschool2019 #howtocommons #experiment</p>
Patrick's avatar
Patrick committed
597
598
599
600
601
        


        </div>
            <!--=======================================================================================================-->
Patrick's avatar
Patrick committed
602
603
604
            <!-- Project Stoeckach Energiekonzept -->
        <div id="Energiekonzept" class="SideInfo" style="display:none;">

Patrick's avatar
Patrick committed
605
            <h1 class="sticky headOne" id="headOne">Energy Project Stöckach</h1>
Patrick's avatar
Patrick committed
606
607
608
609
610
611
            
            <p class="contentOne">In this study, we have evaluated multiple local energy system scenarios to find the optimal energy system design concepts for the” future” EnBW-Areal. In this study,
                <br> •	we developed a 3D CityGML model for the EnBW-Areal and along with other calculation tools, estimated the electricity, heat, and hot water related energy demand profiles for the neighborhood.
                <br> •	we evaluated multiple energy supply options that includes energy sources and conversion technologies to meet the estimated total energy demand.
                <br> •	we evaluated the cost minimized technology mixes that achieves reduced CO2 emissions and compared the different energy system scenarios against a baseline energy system.
                </p>
Patrick's avatar
Patrick committed
612

Patrick's avatar
Patrick committed
613
            <button id="energydemand"  onclick="highlightFeatures('energydemand')" type="button" class="collapsible">Energy demand</button>
Patrick's avatar
Patrick committed
614
            <div class="content">
Patrick's avatar
Patrick committed
615
                <p class="contentOne">The annual electrical, heating, and hot water energy demand for the EnBW-Areal is estimated to be 2.88 GWh, 1.57 GWh, and 1.77 GWh, respectively. </p>
Patrick's avatar
Patrick committed
616
617
618
619
620
621
                
                <div class="slideshow-container">

                    <!-- Full-width images with number and caption text -->
                        <div class="mySlides2 fade">
                        <div class="numbertext">1 / 4</div>
Patrick's avatar
Patrick committed
622
                        <img src="images/content/contentstoeckach/img1.jpg" style="width:100%">
Patrick's avatar
Patrick committed
623
624
625
626
627
                        <div class="text">The estimated hourly heat energy demand (units: kW)</div>
                        </div>
                    
                        <div class="mySlides2 fade">
                        <div class="numbertext">2 / 4</div>
Patrick's avatar
Patrick committed
628
                        <img src="images/content/contentstoeckach/img2.jpg" style="width:100%">
Patrick's avatar
Patrick committed
629
630
631
632
633
                        <div class="text">The estimated hourly energy demand for hot water generation (units: kW)</div>
                        </div>
                    
                        <div class="mySlides2 fade">
                        <div class="numbertext">3 / 4</div>
Patrick's avatar
Patrick committed
634
                        <img src="images/content/contentstoeckach/img3.jpg" style="width:100%">
Patrick's avatar
Patrick committed
635
636
637
638
639
                        <div class="text">Electricity demand for non-residential spaces (units: kW)</div>
                        </div>
        
                        <div class="mySlides2 fade">
                        <div class="numbertext">4 / 4</div>
Patrick's avatar
Patrick committed
640
                        <img src="images/content/contentstoeckach/img4.jpg" style="width:100%">
Patrick's avatar
Patrick committed
641
642
643
644
645
646
647
648
649
650
651
                        <div class="text">Electricity demand for residential and spaces (units: kW)</div>
                        </div>
        
                    
                        <!-- Next and previous buttons -->
                        <a class="prev" onclick="plusSlides(-1, 1)">&#10094;</a>
                        <a class="next" onclick="plusSlides(1, 1)">&#10095;</a>
                    </div>
                    <br>
                    
                    <!-- The dots/circles -->
Patrick's avatar
Patrick committed
652
                    <!-- <div style="text-align:center">
Patrick's avatar
Patrick committed
653
654
655
656
657
                        <span class="dot" onclick="currentSlide(1)"></span>
                        <span class="dot" onclick="currentSlide(2)"></span>
                        <span class="dot" onclick="currentSlide(3)"></span>
                        <span class="dot" onclick="currentSlide(4)"></span>
  
Patrick's avatar
Patrick committed
658
                    </div> -->
Patrick's avatar
Patrick committed
659
            
Patrick's avatar
Patrick committed
660
            </div>
Patrick's avatar
Patrick committed
661
            <button id="solarpotential" onclick="highlightFeatures('solarpotential')" type="button" class="collapsible">Solar PV potential</button>
Patrick's avatar
Patrick committed
662
            <div class="content">
Patrick's avatar
Patrick committed
663
                <p class="contentOne">The study shows that the EnBW-Areal has a feasible potential to utilize approx. 30-35% of the roof area to generate local electricity from solar PV. As a result, the energy consumption related CO2 emissions can be reduced by about 30% compared to the base scenario evaluated in this study at an 8% less cost. PV curtailment due to over production and feed-in constraints could lower the share of integrated PV generation significantly above 35% penetration levels. There are both technological and market-based strategies to optimally integrate the local PV generation. However, such concepts must be analyzed further in greater detail.   </p>
Patrick's avatar
Patrick committed
664
            </div>
Patrick's avatar
Patrick committed
665
            <button id="heatpump" onclick="highlightFeatures('heatpump')" type="button" class="collapsible">Power-to-heat via heat pump</button>
Patrick's avatar
Patrick committed
666
            <div class="content">
Patrick's avatar
Patrick committed
667
                <p class="contentOne">High-efficient heat pumps can both reduce the CO2 emissions and the primary energy use. A direct comparison between the heat pumps and district heating is tricky because the emissions from a district heating plant heavily depends on it’s fuel mix. In Stuttgart, it is common to use a fuel mix comprising of coal, gas, and municipal waste to generate heat. <br>
Patrick's avatar
Patrick committed
668
669
670
671
672
673
674
675
                    It is more economically feasible to schedule the heat pump operation to supply the base-load heating and hot water demand. That increases the utilization of heat pump capacity, and therefore the rate of return on the investment. <br>
                    Thermal storages improve the utilization of heat pump capacity. The flexibility of thermal storage units to meet the peak demand enable the heat pumps to be slightly undersized for the base-load operation. <br>
                    </p>
                    <div class="slideshow-container">

                        <!-- Full-width images with number and caption text -->
                            <!-- <div class="mySlides"> -->
                            
Patrick's avatar
Patrick committed
676
                            <img src="images/content/contentstoeckach/img5.jpg" style="width:100%; margin-bottom: 5em;">
Patrick's avatar
Patrick committed
677
678
679
                            <div class="text" style="margin-top:0em;">The capacity of heat pump(s) is allocated to supply base-load heat demand. The valley points of heat pump operation are filled by thermal storage charging action to improve heat pump capacity utilization.</div>
                            <!-- </div> -->
                        </div>
Patrick's avatar
Patrick committed
680
            </div>
Patrick's avatar
Patrick committed
681
            <button id="thermalstorage" onclick="highlightFeatures('thermalstorage')" type="button" class="collapsible">Thermal storage </button>
Patrick's avatar
Patrick committed
682
            <div class="content">
Patrick's avatar
Patrick committed
683
                <p class="contentOne">Thermal storages improve the utilization of heat pump capacity. The flexibility of thermal storage units to meet the peak demand enable the heat pumps to be slightly undersized for the base-load operation.</p>
Patrick's avatar
Patrick committed
684
            </div>
Patrick's avatar
Patrick committed
685
            <button id="batterystorage" onclick="highlightFeatures('batterystorage')" type="button" class="collapsible">Battery storage  </button>
Patrick's avatar
Patrick committed
686
            <div class="content">
Patrick's avatar
Patrick committed
687
                <p class="contentOne">The adoption of residential battery storages in Germany is driven by the self-consumption optimization objective. At lower PV levels, the generated PV electricity can be directly consumed, hence the benefits of battery systems are less. However, at higher PV penetration levels and when innovative market designs enable the participation of battery storage systems to provide other services to the electricity network, the value of battery storage systems can increase rapidly. </p>
Patrick's avatar
Patrick committed
688
            </div>
Patrick's avatar
Patrick committed
689
690
            <button id="localEnergy" onclick="highlightFeatures('energydemand')" type="button" class="collapsible">Is local energy transition economically competitive? </button>
            <div class="content">
Patrick's avatar
Patrick committed
691
                <p class="contentOne">The answer to this question has two layers. The first layer is the aggregated system level feasibility, which is what we can see from our study. The second layer is the benefit distribution and economic feasibility at the individual prosumer level that is something that requires much deeper analysis. <br>
Patrick's avatar
Patrick committed
692
693
694
695
696
697
698
                    We see at the system level; the local energy transition has a positive outlook. Some of the scenarios that we looked at recovered their total investment within the first 8 years. 
                     <br></p>
                     <div class="slideshow-container">

                        <!-- Full-width images with number and caption text -->
                            <!-- <div class="mySlides"> -->
                            
Patrick's avatar
Patrick committed
699
                            <img src="images/content/contentstoeckach/img6.jpg" style="width:100%; margin-bottom: 4em;">
Patrick's avatar
Patrick committed
700
701
702
703
                            <div class="text" style="margin-top:0em;">Comparison of the return of investment in each scenario until the breakeven point compared to the base scenario (units: EUR)</div>
                            <!-- </div> -->
                        </div>
            </div>
Patrick's avatar
Patrick committed
704
        </div>
Patrick's avatar
Patrick committed
705
706
707
        <!-- ======================================================================================================================================================================== -->
        <!-- Nordbahnhof -->
        <div id="NordbahnhofInfo" class="SideInfo" style="display:none;">
Patrick's avatar
Patrick committed
708
            <h1 class="headOne" id="headNordB">Nordbahnhof</h1>
Patrick's avatar
Patrick committed
709
710
711
712
            <div class="slideshow-containerNord">

                <div class="mySlidesNord fadeNord">
                  <div class="numbertextNord">1 / 2</div>
Patrick's avatar
Patrick committed
713
714
                  <img src="images/NordB/002.jpg" style="width:100%;border-radius: 10px;border: 1px solid black;">
                  <div class="textNord">Foto des Nordbahnhofs</div>
Patrick's avatar
Patrick committed
715
716
717
718
                </div>
                
                <div class="mySlidesNord fadeNord">
                  <div class="numbertextNord">2 / 2</div>
Patrick's avatar
Patrick committed
719
720
                  <img src="images/NordB/001.jpg" style="width:100%;border-radius: 10px;border: 1px solid black;">
                  <div class="textNord">Städtebauliches Konzept für den Nordbahnhof (Grafik: asp Architekten GmbH) </div>
Patrick's avatar
Patrick committed
721
722
723
724
                </div>
                <a class="prevNord" onclick="plusSlidesNord(-1)">&#10094;</a>
                <a class="nextNord" onclick="plusSlidesNord(1)">&#10095;</a>
                </div>
Patrick's avatar
Patrick committed
725
726
                <br> 
                               <div style="text-align:center">
Patrick's avatar
Patrick committed
727
728
                  <span class="dotNord" onclick="currentSlideNord(1)"></span> 
                  <span class="dotNord" onclick="currentSlideNord(2)"></span> 
Patrick's avatar
Patrick committed
729
730

                </div>
Patrick's avatar
Patrick committed
731
732
733
734
735
736
737
                <p class="contentOne">Die zukünftigen Entwicklungen im neuen Rosenstein- und Wagenhallenquartier werden auch mit Blick auf die <a href="https://www.iba27.de/">IBA’27</a>  einen essenziellen Beitrag zum Stadtentwicklungsprozess in Stuttgart leisten. Als Schnittstelle zwischen diesen beiden Quartieren spielt auch das Nordbahnhofviertel, dessen städtebauliche Insellage seine Entwicklung stark geprägt hat, eine wichtige Rolle. Das ehemals hauptsächlich von Post- und Bahnmitarbeitenden besiedelte Viertel wird heute zu einem großen Teil von Bewohner*innen mit Migrationshintergrund bewohnt, die derzeit noch durch eine Milieuschutzsatzung von im Zuge der Quartiersentwicklung steigenden Mietpreisen verschont bleiben. </p>
            <p class="contentOne">Diese drei Quartiere liegen im Fokus des aktuell laufenden Labor Nordbahnhof. Verschiedene Aktionen und Experimente werden die Quartiere bespielen, verbinden und so auch zum Stadtentwicklungsprozess beitragen. Hier finden Sie in Kürze weitere Informationen zum Forschungsprozess, Zeitplan und den Akteur*innen im Quartier. Über das Umfrage-Icon auf der Karte können Sie sich auch aktiv am Projekt teilnehmen beteiligen und ihre Meinung und Ideen mit allen teilen. </p>
            <p class="contentOne">Bei aktuellen Fragen wenden Sie sich an les@hft-stuttgart.de</p>
            <h3>Das Rosenstein-Viertel</h3>
            
                

Patrick's avatar
Patrick committed
738
            <p class="contentOne">Die Fläche, die mit der Fertigstellung des neuen Hauptbahnhofs frei wird, bietet für die Stadt Stuttgart enormes Potenzial. Ein Quartier soll entstehen, das nachhaltig und klimagerecht ist und dabei leben, arbeiten und wohnen verbindet. Die Arbeitsgemeinschaft asp Architekten GmbH und Koeber Landschaftsarchitektur GmbH gingen mit ihrem städtebaulichen Konzept als Sieger aus dem Internationalen städtebaulichen Wettbewerb Rosenstein hervor. </p>
Patrick's avatar
Patrick committed
739
            
Patrick's avatar
Patrick committed
740
            <div id="nordbplanung2">
Patrick's avatar
Patrick committed
741
            </div><br>
Patrick's avatar
Patrick committed
742
743
744
745
746
747
                <!-- Lärmquiz -->
                <h3 id="LaermquizNordb">Lärmquiz</h3>
                <div>
                    <p class="contentOne">Hier testen wir momentan eine Quiz. Hören Sie sich einfach den Audioausschnitt an und ziehen Sie das Icon auf der linken Seite an die entsprechende Stelle in der Karte. Am unteren Ende können Sie Ihre Annahmen mit einem Klick auf Ergebnisse verifizieren. 
                        </p><br> 
                    </div>
Patrick's avatar
Patrick committed
748
                <div style="display:inline-block; width:100%">
Patrick's avatar
Patrick committed
749
750
751
752
753
754
755
756
                    <img id="dragFrom" onmouseover="setPointStartEnd('quiz_baustelle')" ondragstart="dragstart_handler_quiz1(event);" draggable=true src="datasource-data/NoiseData/Icons_soundquiz/l_noise_spacecadet.png" style="margin-top:5px; height:40px;height: 40px; display: inline-block; position: absolute;cursor: -webkit-grab; cursor: grab;">
                    <audio controls style="margin-left:2em;"><source src="datasource-data/NoiseData/soundquiz/Baustelle.wav" type="audio/wav" >
                    Your browser does not support the audio element.
                    </audio>
                    <img id="solution_bau" onclick = "check_Bau('quiz_baustelle')" src="datasource-data/NoiseData/Icons_soundquiz/icon_undecided.png" style="margin-top:5px; height:50px;display: inline-block; position: absolute;">
                    <!-- <button onclick = "check_Bau('quiz_baustelle')">Antwort Baustelle</button> -->
                </div>

Patrick's avatar
Patrick committed
757
                <div style="display:inline-block; width:100%">
Patrick's avatar
Patrick committed
758
759
760
761
762
763
764
765
766
                    <img id="dragFrom2" onmouseover="setPointStartEnd('quiz_pragfriedhof')" ondragstart="dragstart_handler_quiz2(event);" draggable=true src="datasource-data/NoiseData/Icons_soundquiz/l_noise_paologreen.png" style="margin-top:5px; height:40px;height: 40px; display: inline-block; position: absolute;cursor: -webkit-grab; cursor: grab;">
                <audio controls style="margin-left:2em;"><source src="datasource-data/NoiseData/soundquiz/Pragfriedhof.wav" type="audio/wav" >
                    Your browser does not support the audio element.
                    </audio>
                    <img id="solution_prag" onclick = "check_Bau('quiz_pragfriedhof')" src="datasource-data/NoiseData/Icons_soundquiz/icon_undecided.png" style="margin-top:5px; height:50px;display: inline-block; position: absolute;">
                    
                    <!-- <button onclick = "check_Bau('quiz_pragfriedhof')">Antwort Pragfriedhof</button> -->
                </div> 

Patrick's avatar
Patrick committed
767
                <div style="display:inline-block; width:100%">
Patrick's avatar
Patrick committed
768
769
770
771
772
773
774
                    <img id="dragFrom3" onmouseover="setPointStartEnd('quiz_marktplatz')" ondragstart="dragstart_handler_quiz3(event);" draggable=true src="datasource-data/NoiseData/Icons_soundquiz/l_noise_rosybrown.png" style="margin-top:5px; height:40px;height: 40px; display: inline-block; position: absolute;cursor: -webkit-grab; cursor: grab;">
                <audio controls style="margin-left:2em;"><source src="datasource-data/NoiseData/soundquiz/Marktplatz.wav" type="audio/wav" >
                    Your browser does not support the audio element.
                    </audio>
                    <img id="solution_markt" onclick = "check_Bau('quiz_marktplatz')" src="datasource-data/NoiseData/Icons_soundquiz/icon_undecided.png" style="margin-top:5px; height:50px;display: inline-block; position: absolute;">
                    <!-- <button onclick = "check_Bau('quiz_marktplatz')">Antwort Marktplatz</button> -->
                </div> 
Patrick's avatar
Patrick committed
775
                <div style="display:inline-block; width:100%">
Patrick's avatar
Patrick committed
776
777
778
779
780
781
782
                    <img id="dragFrom4" onmouseover="setPointStartEnd('quiz_skaten')" ondragstart="dragstart_handler_quiz4(event);" draggable=true src="datasource-data/NoiseData/Icons_soundquiz/l_noise_rosevale.png" style="margin-top:5px; height:40px;height: 40px; display: inline-block; position: absolute;cursor: -webkit-grab; cursor: grab;">
                <audio controls style="margin-left:2em;"><source src="datasource-data/NoiseData/soundquiz/Skaten.wav" type="audio/wav" >
                    Your browser does not support the audio element.
                    </audio>
                    <img id="solution_skaten" onclick = "check_Bau('quiz_skaten')" src="datasource-data/NoiseData/Icons_soundquiz/icon_undecided.png" style="margin-top:5px; height:50px;display: inline-block; position: absolute;">
                    <!-- <button onclick = "check_Bau('quiz_skaten')">Antwort Skaten</button> -->
                </div> 
Patrick's avatar
Patrick committed
783
                <div style="display:inline-block; width:100%">
Patrick's avatar
Patrick committed
784
785
786
787
788
789
790
                    <img id="dragFrom5" onmouseover="setPointStartEnd('quiz_kirche')" ondragstart="dragstart_handler_quiz5(event);" draggable=true src="datasource-data/NoiseData/Icons_soundquiz/l_noise_myrtlegreen.png" style="margin-top:5px; height:40px;height: 40px; display: inline-block; position: absolute;cursor: -webkit-grab; cursor: grab;">
                <audio controls style="margin-left:2em;"><source src="datasource-data/NoiseData/soundquiz/Kirche.wav" type="audio/wav" >
                    Your browser does not support the audio element.
                    </audio>
                    <img id="solution_kirche" onclick = "check_Bau('quiz_kirche')" src="datasource-data/NoiseData/Icons_soundquiz/icon_undecided.png" style="margin-top:5px; height:50px;display: inline-block; position: absolute;">
                    <!-- <button onclick = "check_Bau('quiz_kirche')">Antwort Kirche</button> -->
                </div> 
Patrick's avatar
Patrick committed
791
                <div style="display:inline-block; width:100%">
Patrick's avatar
Patrick committed
792
793
794
795
796
797
798
                    <img id="dragFrom6" onmouseover="setPointStartEnd('quiz_meerschweinchen')" ondragstart="dragstart_handler_quiz6(event);" draggable=true src="datasource-data/NoiseData/Icons_soundquiz/l_noise_babyblue.png" style="margin-top:5px; height:40px;height: 40px; display: inline-block; position: absolute;cursor: -webkit-grab; cursor: grab;">
                <audio controls style="margin-left:2em;"><source src="datasource-data/NoiseData/soundquiz/Meerschweinchen.wav" type="audio/wav" >
                    Your browser does not support the audio element.
                    </audio>
                    <img id="solution_meerschweinchen" onclick = "check_Bau('quiz_meerschweinchen')" src="datasource-data/NoiseData/Icons_soundquiz/icon_undecided.png" style="margin-top:5px; height:50px;display: inline-block; position: absolute;">
                    <!-- <button onclick = "check_Bau('quiz_meerschweinchen')">Antwort Meerschweinchen</button> -->
                </div> 
Patrick's avatar
Patrick committed
799
                <div style="display:inline-block; width:100%">
Patrick's avatar
Patrick committed
800
801
802
803
804
805
806
                    <img id="dragFrom7" onmouseover="setPointStartEnd('quiz_ufapalast')" ondragstart="dragstart_handler_quiz7(event);" draggable=true src="datasource-data/NoiseData/Icons_soundquiz/l_noise_rubyred.png" style="margin-top:5px; height:40px;height: 40px; display: inline-block; position: absolute;cursor: -webkit-grab; cursor: grab;">
                <audio controls style="margin-left:2em;"><source src="datasource-data/NoiseData/soundquiz/UFA_Palast.wav" type="audio/wav" >
                    Your browser does not support the audio element.
                    </audio>
                    <img id="solution_ufapalast" onclick = "check_Bau('quiz_ufapalast')" src="datasource-data/NoiseData/Icons_soundquiz/icon_undecided.png" style="margin-top:5px; height:50px;display: inline-block; position: absolute;">
                    <!-- <button onclick = "check_Bau('quiz_ufapalast')">Antwort UFA Palast</button> -->
                </div> 
Patrick's avatar
Patrick committed
807
                <div style="display:inline-block; width:100%">
Patrick's avatar
Patrick committed
808
809
810
811
812
813
814
815
816
                    <img id="dragFrom8" onmouseover="setPointStartEnd('quiz_rostensteinpark')" ondragstart="dragstart_handler_quiz8(event);" draggable=true src="datasource-data/NoiseData/Icons_soundquiz/l_noise_greensheen.png" style="margin-top:5px; height:40px;height: 40px; display: inline-block; position: absolute;cursor: -webkit-grab; cursor: grab;">
                <audio controls style="margin-left:2em;"><source src="datasource-data/NoiseData/soundquiz/Rosensteinpark.wav" type="audio/wav" >
                    Your browser does not support the audio element.
                    </audio>
                    <img id="solution_rosenstein" onclick = "check_Bau('quiz_rostensteinpark')" src="datasource-data/NoiseData/Icons_soundquiz/icon_undecided.png" style="margin-top:5px; height:50px;display: inline-block; position: absolute;">
                    <!-- <button onclick = "check_Bau('quiz_rostensteinpark')">Antwort Rosensteinpark</button> -->
                </div> 

                    <label class="container contentOne">Ergebnisse
Patrick's avatar
Patrick committed
817
                    <input type="checkbox" id="quizcheck" onclick="switchQuizResults();">
Patrick's avatar
Patrick committed
818
819
                    <span class="checkmark"></span>
                    </label>
Patrick's avatar
Patrick committed
820
            <h3 id="UmfrageNordb">Umfrage</h3>
Patrick's avatar
Patrick committed
821
            <iframe style="width: 95%; height:120em;margin-left:1em;margin-right:1em;margin-top:1em;border: none;" src="https://ww2.unipark.de/uc/HFT_Stuttgart_Studenten/f7c4/"></iframe>
Patrick's avatar
Patrick committed
822
            <br>
Patrick's avatar
Patrick committed
823

Patrick's avatar
Patrick committed
824
825
        <!-- <div id="slider-color"></div> -->
        </div>
Patrick's avatar
Patrick committed
826
827
828
829
830
        <!-- ======================================================================================================================================================================== -->
        <!-- Noise -->
        <div id="NoiseInfo" class="SideInfo" style="display:none;">
            <!-- <h1 class="sticky" id="headNoise">Lärmdaten</h1>
            <br> -->
Patrick's avatar
Patrick committed
831
            <h1 class="headOne">Lärmdaten aus Stuttgart</h1>
Patrick's avatar
Patrick committed
832
            <br>
Patrick's avatar
Patrick committed
833
            <h3>Kombinierte Lärmkarten (Auto, Bahn, Flughafen)</h3><br>
Patrick's avatar
Patrick committed
834
835
836
            <button id ="btn_RailDay" onclick="noisemap2('day');buildingSeeThrough(true);buildingSeeThrough(false)">Day</button>
            <button id ="btn_RailNight" onclick="noisemap2('night');buildingSeeThrough(true);buildingSeeThrough(false)">Night</button>
            <button id ="btn_RailOff" onclick="noisemap2('off');buildingSeeThroughfalse(true);buildingSeeThroughfalse(false)">Off</button><br><br>
Patrick's avatar
Patrick committed
837
            <h3>Lärmsensoren aus dem Luftdaten.info Projekt</h3><br>
Patrick's avatar
Patrick committed
838
839
840
            <div class="row2" id="loadingHistNoise"></div>
            <label class="column2" style="position:relative;padding-left:0px; padding-top:10px; padding-bottom:10px;margin-left:0px;">Sensor wählen:</label>
                <select class="dropbtn" style="border-radius: 3px; height: 3em; box-shadow: 0 8px 16px 0 #27272733, 0 6px 20px 0 rgba(0,0,0,0.19);margin-left:20px;" name="sensor" id="sensors">
Patrick's avatar
Patrick committed
841
                <option value="49368">49368</option>
Patrick's avatar
Patrick committed
842
843
                <!-- <option value="53627">53627</option>
                <option value="29212">29212</option> -->
Patrick's avatar
Patrick committed
844
845
                <option value="compLAeq">compare LAeq</option>
                </select>
Patrick's avatar
Patrick committed
846
                <a class="contentOne column2" href="#" id ="btn_NoiseSensShow" style="width:6em !important; height:2em !important;border-radius: 3px; padding-top: 0.7em;padding-bottom: 2.3em;" onclick="getSTAHistNoise();setNoiseWaiting();HistNoiseData('Main','49368')">anzeigen</a>
Patrick's avatar
Patrick committed
847
848
849
850
851
852
853
854
            <!-- <div class="dropdown">
                <button class="dropbtn">Sensor wählen:</button>
                <div class="dropdown-content">
                <a href="#" onclick="getSTAHistNoise();setNoiseWaiting();HistNoiseData('49368')">49368</a>
                <a href="#">53627</a>
                <a href="#">29212</a>
                </div>
              </div> -->
Patrick's avatar
Patrick committed
855
856
857
858
859
            <!-- <p>The specific space heating demand wurde mit SimStadt simuliert. Die Werte sind in [kWh/m²·a] angegeben.</p><br>
            <button onclick="HistNoiseData()">GetData</button>
            <button onclick="showgraphNoise()">GetData</button> -->
            <div id="unconstrained"></div><br>
            <span class="example-val" id="unconstrained-values"></span>
Patrick's avatar
Patrick committed
860
            <a class="contentOne">Überblick Sensor</a>
Patrick's avatar
Patrick committed
861
862
            <div id="chartNoiseMain">
            <div style='width:100%;margin-top:10px;' id="chartNoise"></div></div>
Patrick's avatar
Patrick committed
863
            <a class="contentOne">Genauere Sensordaten (LAeq)</a>
Patrick's avatar
Patrick committed
864
            <div style='width:100%;margin-top:10px;' id="chartNoiseSTA"></div>
Patrick's avatar
Patrick committed
865
        <!-- <div id="slider-color"></div> -->
Patrick's avatar
Patrick committed
866
                <p class="contentOne">Da der Sensor in UTC format die Zeit misst wird hier keine Unterscheidung zwischen Sommer und Winterzeit gemacht.</p>
Patrick's avatar
Patrick committed
867
868
869
        </div>
        <!-- ======================================================================================================================================================================== -->
        <!-- Navigation -->
Patrick's avatar
Patrick committed
870
        <div id="Navigation" class="SideInfo" style="display:none;">
Patrick's avatar
Patrick committed
871
            <h1 class="sticky" id="headNordB">Navigationsrechner</h1>
Patrick's avatar
Patrick committed
872
            <p class="contentOne">Bitte wählen Sie einen Start und Endpunkt für ihre Route aus.</p>
Patrick's avatar
Patrick committed
873
874
875
876
877
             <!-- <button onclick="setRouteCar();">TestPunkt</button> -->
             <div style="width:34em;">
            <button class="btn_standard" style="width:10em;height:2em;" onclick="getStart('Start');">Startpunkt</button>
            <input style="width:12em;height:2em;" type="text" id="Spunktlat" name="Spunktlat">
            <input style="width:12em;height:2em;" type="text" id="Spunktlon" name="Spunktlon"><br><br>
Patrick's avatar
Patrick committed
878
            
Patrick's avatar
Patrick committed
879
880
881
            <button class="btn_standard" style="width:10em;height:2em;" onclick="getStart('End');">Endpunkt</button>
            <input style="width:12em;height:2em;" type="text" id="Epunktlat" name="Epunktlat">
            <input style="width:12em;height:2em;" type="text" id="Epunktlon" name="Epunktlon"><br><br>
Patrick's avatar
Patrick committed
882
            <!-- <select>
Patrick's avatar
Patrick committed
883
884
                <option>mit Parkplatz</option>
                <option>ohne Parkplatz</option>
Patrick's avatar
Patrick committed
885
              </select> -->
Patrick's avatar
Patrick committed
886
887
888
            <button class="btn_standard" id="buttonCar" style="width:13em;height:2em;" onclick="setRouteCar();">Route berechnen (Auto)</button>
            <button class="btn_standard" id="buttonPub" style="width:13em;height:2em;" onclick="setRoutePublic();">Route berechnen (Öffis)<div id="loaderPub" style="display:none;" class="loader"></div></button>
            <button class="btn_standard" style="width:8em;height:2em;" onclick="deletenav();">Route löschen</button><br><br>
Patrick's avatar
Patrick committed
889
890
891
892
            <p class="contentOne">Duration with Car</p>
            <input type="text" id="Routeduration" name="Duration"><br>
            <p class="contentOne">Duration with Public</p>
            <input type="text" id="RoutedurationPub" name="Duration">
Patrick's avatar
Patrick committed
893
894
895
896
897
898
899
            <br>
            <div id="PubRouteShow" style="margin-top:1em;">
            <!-- <a>Startpunkt</a>
            <div class="walkingshape"></div>
            <a>Endpunkt</a> -->
            </div>
        </div>
Patrick's avatar
Patrick committed
900
        </div>
Patrick's avatar
Patrick committed
901
902
903
904
905
906
      </div>
      <div id="tour-button" title="Karte/Story umschalten">
          <i class="fa"></i>
      </div>
      <!-- End of: Content Tour -->
  </div>
Patrick's avatar
Patrick committed
907
908
909
910
  <div class="logo_kk" onclick="Introshow();setpositionVAR(false);">
    <img id="logo_Main" src="images/logo/Logo.svg">
    <p id="logo_title"><span style="color: red">K</span>essel<span style="color: red">K</span>ompass</p>
  </div>
Patrick's avatar
Patrick committed
911
  <div id="vcs_map_container" ondragenter="return dragEnter(event)" ondrop="return dragDrop(event)" ondragover="return dragOver(event)"></div>
Patrick's avatar
Patrick committed
912
913
914
915
916
917
  
    <!--div id="vcs_map_container">
      <div id="vcs_loading" style="background-color:#dee2c9; position:absolute; top:0; left:0; right:0; bottom:0; padding:12% 0; text-align:center; font-family:Arial, sans-serif; font-size:1.4rem; line-height:4rem;">
        <div> virtualcity<b>MAP</b></div><img src='images/loading.gif'>
      </div>
    </div-->
Patrick's avatar
Patrick committed
918
    <script src='https://unpkg.com/@turf/turf@6/turf.min.js'></script>
Patrick's avatar
Patrick committed
919
920
921
    <script src="lib/Cesium/Cesium.js"></script>
    <script src='lib/vcm_thirdparty.js'></script>
    <script src="lib/vcm-compiled_api.js"></script>
Patrick's avatar
Patrick committed
922
    <script src="sources/nouislider.js"></script>
Patrick's avatar
Patrick committed
923
    <script src="https://cdn.jsdelivr.net/npm/apexcharts"></script>
Patrick's avatar
Patrick committed
924
    <script src="templates/slider.js"></script>
Patrick's avatar
Patrick committed
925
926
    <script src="templates/UserBalloon.js"></script>
    <script src="js/navigation.js"></script>
Patrick's avatar
Patrick committed
927
    <script src="js/soundquiz.js"></script>
Patrick's avatar
Patrick committed
928
    <script src="js/ServerorLocal.js"></script>
Patrick's avatar
Patrick committed
929
    <script src="js/noise.js"></script>
Patrick's avatar
Patrick committed
930
    <script src="js/STAnoise.js"></script>
Patrick's avatar
Patrick committed
931
    <link href="templates/sliders.css" rel="stylesheet">
Patrick's avatar
Patrick committed
932
    <link rel="stylesheet" href="css/menu.css">
933
    
Patrick's avatar
Patrick committed
934
935
936
937
938
939
940
941
942
943
944

	<script>
      var startVCM = function() {
        if(document.getElementById("check").checked === true){
            vcs.vcm.Framework.activateLogging();
            vcs.vcm.Framework.loadConfig('config.json');
        } else {
            alert("Bitte  bestätigen Sie die Nutzungsbedingungen.");
        }
      }
    </script>
945
<link rel="stylesheet" href="css/dragable.css">
Patrick's avatar
Patrick committed
946
947
948
949
    <!--script>
      vcs.vcm.Framework.activateLogging();
      vcs.vcm.Framework.loadConfig('config.json');
    </script-->
patri's avatar
patri committed
950
951
    <script src="lib/jquery-3.5.1.min.js"></script>
    <script src='js/history.js'></script>
Patrick's avatar
Patrick committed
952
    <script src='js/backtotop.js'></script>
patri's avatar
patri committed
953
954
    <!-- <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> -->
    
Patrick's avatar
Patrick committed
955
    <script src='lib/vcm_ui.js'></script>
Patrick's avatar
Patrick committed
956
    <script src="js/SimStadtApi_stud.js"></script>
957
    <script src="js/here.js"></script>
958
    <script src="js/favoriteplaces.js"></script>
Patrick's avatar
Patrick committed
959
    <script src="js/codepoly.js"></script>
Patrick's avatar
Patrick committed
960
    <script src="templates/custom.js"></script>
Patrick's avatar
Patrick committed
961
    <script src="templates/newDevBahn.js"></script>
Patrick's avatar
Patrick committed
962
963
    <script src="templates/cus_Menu.js"></script>
    <script src="templates/cus_SimStadt.js"></script>
Patrick's avatar
Patrick committed
964
965
    
    <script src="templates/collapse.js"></script>
Patrick's avatar
Patrick committed
966
967
968
969
970
971
    <script src="templates/checkmobile.js"></script>
	
	<script src="https://code.jquery.com/jquery-3.3.1.min.js"
                  integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
                  crossorigin="anonymous"></script>
    <script src="templates/story/virtualcitystory.js"></script>
Patrick's avatar
Patrick committed
972
    <script src="js/DragnDrop.js"></script> 
patri's avatar
patri committed
973
    <script src="js/updown.js"></script> 
Patrick's avatar
Patrick committed
974
975
  </body>
</html>