index.html 71.9 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
    
Patrick's avatar
Patrick committed
158
159
160
	
  </head>
  <body>
161
  
patri's avatar
patri committed
162
  <div id="story-frame" style="z-index:95" class="startscreen vcm-map-top loadingpointer">
Patrick's avatar
Patrick committed
163
164
165
166
167
      <!-- 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
168
                 <strong>Kesselkompass</strong> <br>Informieren, Beteiligen, Kooperieren
Patrick's avatar
Patrick committed
169
              </h1>
Patrick's avatar
Patrick committed
170
              <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
171
              <button id="tourstart-btn" onclick="removebuildings(); Introshow();historyInfo();" class="buttonset one"><span class="i18n_balloon_startscreen_btn">Start</span>
Patrick's avatar
Patrick committed
172
              </button>
Patrick's avatar
Patrick committed
173
              <!-- stopStory();    getNAVcar();  -------Test back to start: getFlow();getFlowtest();getTraffic(); -->
Patrick's avatar
Patrick committed
174
175
176
177
178
179
          </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
180
      <div id="tour-frame" style="display: none; overflow-y: scroll;overflow-x: hidden;">
patri's avatar
patri committed
181
        
Patrick's avatar
Patrick committed
182
          <div class="tour-top-navi"  style="z-index:99">
patri's avatar
patri committed
183
            <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
184
185
             <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
186
187
             <!-- <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
188
             <!-- <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
189
             <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
190
             <!-- style="float:right;margin-right:2em;" --> 
Patrick's avatar
Patrick committed
191
          </div>
Patrick's avatar
Patrick committed
192
193
194
195
        <!-- Expertenmodus-.--------------------------
            ======================================================================================================= -->
        <div id="Expertenmodus" class="SideInfo" style="display:none;">

Patrick's avatar
Patrick committed
196
            <h1 class="headOne" >Toolbox der Plattform</h1>
Patrick's avatar
Patrick committed
197
            <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
198
            <button id="men_partizipation"  onclick="addcont('main_bock');setpositionVAR(false);showtourSpecific('menu');" type="button" class="collapsible">Partizipation</button>
Patrick's avatar
Patrick committed
199
200
201
            <div id="testscroll" class="content">
                <button onclick="topFunction()" id="btn_backtotop" title="Go to top">Top</button>

Patrick's avatar
Patrick committed
202
203
                <div class="SideInfo">

Patrick's avatar
Patrick committed
204
205
206
207
                    <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
208

Patrick's avatar
Patrick committed
209
210
211
212
213
214
                    <div id="bilder_bock">                  
                                <!-- Slideshow container -->

                    </div>  

        
Patrick's avatar
Patrick committed
215
                    <button id="btn_umfrage_bock2" class="accordion">Umfragebeispiel mit Limesurvey</button>
Patrick's avatar
Patrick committed
216
                      <div class="sub-menu" style="background-color:white;">
Patrick's avatar
Patrick committed
217
                          <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
218
219
220
221

                      </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
222
                          <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
223

Patrick's avatar
Patrick committed
224
                      </div>
Patrick's avatar
Patrick committed
225
226
227
228
229
230
                      <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
231
                      <button id="getLocationFav" class="btn_standard">Aktuelle Position</button><br>
patri's avatar
patri committed
232
                      <br>                      <label class="container contentOne">Andere Lieblingsorte
patri's avatar
patri committed
233
234
235
236
                        <input type="checkbox" id="favcheck" onclick="switchFavPlaces()">
                        <span class="checkmark"></span>
                      </label>

Patrick's avatar
Patrick committed
237
                </div>
Patrick's avatar
Patrick committed
238

Patrick's avatar
Patrick committed
239
            </div>
Patrick's avatar
Updates    
Patrick committed
240
            <button id="men_energie"  onclick="setpositionVAR(false);nordbahnview();" type="button" class="collapsible">Energie</button>
Patrick's avatar
Patrick committed
241
            <div class="content">
Patrick's avatar
Updates    
Patrick committed
242
                        <h3>Wärmebedarf</h3>
Patrick's avatar
Patrick committed
243
                        <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
244
245
                        </p>
                        <div id="nordbplanung">
Patrick's avatar
Patrick committed
246

Patrick's avatar
Patrick committed
247
248
                        </div>
                        <br>
Patrick's avatar
Patrick committed
249
250
                        <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
251
                        <p class="contentOne">Der Energienutzungsaspekt kann nur bedingt herangezogen werden, da die Gebäude sehr unterschiedliche Nutzungen haben.</p>
Patrick's avatar
Patrick committed
252
253
254
                        <div id="unconstrained"></div><br>
                        <span class="example-val" id="unconstrained-values"></span>
                        
Patrick's avatar
Updates    
Patrick committed
255
                        <div class='my-legend addition'>
Patrick's avatar
Patrick committed
256
                            <div class='legend-title'>in [kWh/m²·a] </div>
Patrick's avatar
Updates    
Patrick committed
257
                            <div class='legend-scale addition2'>
Patrick's avatar
Patrick committed
258
259
260
261
262
263
264
265
266
267
268
                              <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
269

Patrick's avatar
Patrick committed
270
                        </div>
Patrick's avatar
Updates    
Patrick committed
271
272
273
                        <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
274
            </div>
Patrick's avatar
Patrick committed
275
            <button id="men_acoustic" onclick="akkustikview()" type="button" class="collapsible">Akustik</button>
Patrick's avatar
Patrick committed
276
            <div class="content">
Patrick's avatar
Patrick committed
277

Patrick's avatar
Updates    
Patrick committed
278
                    <h3>Lärmkartierung</h3>
Patrick's avatar
Patrick committed
279
                    <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
280
                    <br><a class="contentOne" >Straßeverkehr</a><br>
Patrick's avatar
Patrick committed
281
282
283
                    <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
284
                      <a class="contentOne" >Bahnverkehr</a><br>
Patrick's avatar
Patrick committed
285
286
287
                      <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
288
                      <br><a class="contentOne" >Flugverkehr</a><br>
Patrick's avatar
Patrick committed
289
290
291
                      <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
292
                      <br><a  class="contentOne" >Kombiniert</a><br>
Patrick's avatar
Patrick committed
293
294
                      <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
295
296
297
298
299
                      <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
300
301
302
303
304
305
306
                            <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
307
                          </ul>
Patrick's avatar
Patrick committed
308
                          <!-- <ul class='legend-labels' style="display: block;">
Patrick's avatar
Updates    
Patrick committed
309
310
311
312
313
314
315
                            <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
316
                          </ul> -->
Patrick's avatar
Updates    
Patrick committed
317
318
319
320
                        </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
321
                      <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
322
323
                      <br>
                    <!-- <a class="contentOne"><strong>Noise Sensors (Live):</strong></a><br>
Patrick's avatar
Patrick committed
324
325
                    <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
326
327
                    <br>
                      
Patrick's avatar
Patrick committed
328
                    <a class="contentOne"><strong>Noise Sensors (historisch):</strong></a><br>
Patrick's avatar
Patrick committed
329
                    <button id ="btn_NoiseSensOpen" onclick="NoiseText(false);">Open</button><br><br>
Patrick's avatar
Updates    
Patrick committed
330
331
                    <br> -->
                    <h3>Lärmsensoren</h3>
Patrick's avatar
Patrick committed
332
333
                    <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
334
                    <!-- <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
335
                    <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
336
337
338
                    <option value="49368">49368</option>
                    <option value="53627">53627</option>
                    <option value="29212">29212</option>
Patrick's avatar
Updates    
Patrick committed
339
                    <option value="Sens" selected>Sensor wählen</option>
Patrick's avatar
Patrick committed
340
                    </select>
Patrick's avatar
Updates    
Patrick committed
341
                    <!-- <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
342

Patrick's avatar
Patrick committed
343
344
                    <div id="unconstrained"></div><br>
                    <span class="example-val" id="unconstrained-values"></span>
Patrick's avatar
Patrick committed
345
                    <a class="contentOne">Lärmbelastungswerte:</a>
Patrick's avatar
Patrick committed
346
                    <div id="chartNoiseExp"><div style='width:100%;margin-top:10px;' id="chartNoise"></div></div>
Patrick's avatar
Patrick committed
347
                    
Patrick's avatar
Patrick committed
348
349
                    <div style='width:100%;margin-top:10px;' id="chartNoiseSTA"></div>
                <!-- <div id="slider-color"></div> -->
Patrick's avatar
Patrick committed
350
                        <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
351
                        
Patrick's avatar
Patrick committed
352
    
Patrick's avatar
Patrick committed
353

Patrick's avatar
Patrick committed
354
            </div>
Patrick's avatar
Patrick committed
355
            <button id="men_mobility" onclick="MobilityView();setpositionVAR(true);getPosition();" type="button" class="collapsible">Mobilität</button>
Patrick's avatar
Patrick committed
356
            <div class="content">
Patrick's avatar
Patrick committed
357
                
Patrick's avatar
Updates    
Patrick committed
358
                <!-- <a class="contentOne" style="margin-top:1em" >Baustellen</a><br>
Patrick's avatar
Patrick committed
359
                <button class = "btn_on" onclick="getAccidents('CONSTRUCTION')">On</button>
Patrick's avatar
Updates    
Patrick committed
360
                <button class = "btn_off" onclick="deleteAccidents('CONSTRUCTION')">Off</button> -->
Patrick's avatar
Patrick committed
361
                <h3 id="headNordB">Navigationsrechner</h3>
Patrick's avatar
Patrick committed
362
363
                <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
364
365
                <button class="btn_standard" style="width:10em;height:2em;" onclick="getStart('Start');">Startpunkt</button>
                
Patrick's avatar
Patrick committed
366
367
368
369
370
                <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
371
372
                <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
373
374
375
                <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
376

Patrick's avatar
Updates    
Patrick committed
377
378
                <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
379
                <button class="btn_standard" style="width:8em;height:2em;" onclick="deletenav();">Route löschen</button><br><br>
Patrick's avatar
Patrick committed
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
                <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
402
                <p class="contentOne">Dauer mit dem Auto</p>
Patrick's avatar
Patrick committed
403
                <input type="text" id="Routeduration" name="Duration" disabled style="border-style: none none none solid;"><br>
Patrick's avatar
Updates    
Patrick committed
404
                <p class="contentOne">Dauer mit ÖPNV</p>
Patrick's avatar
Patrick committed
405
406
407
408
                <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
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
                <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
434
            
Patrick's avatar
Patrick committed
435
            </div>
Patrick's avatar
Patrick committed
436
            <!-- <button id="men_navigation" onclick="setpositionVAR(true);getPosition();" type="button" class="collapsible">Navigation</button>
Patrick's avatar
Patrick committed
437
            <div class="content">
Patrick's avatar
Patrick committed
438
                <h1 id="headNordB">Navigationsrechner</h1>
Patrick's avatar
Patrick committed
439
440
441
442
443
444
445
446
447
448
449
                <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
450
                <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
451
452
                <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
453
                <input type="text" id="Routeduration" name="Duration" disabled style="border-style: none none none solid;"><br>
Patrick's avatar
Patrick committed
454
                <p class="contentOne">Duration with Public</p>
Patrick's avatar
Patrick committed
455
                <input type="text" id="RoutedurationPub" name="Duration" disabled style="border-style: none none none solid;">
Patrick's avatar
Patrick committed
456
457
458
459
460
461
462
                <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
463
            </div> -->
Patrick's avatar
Patrick committed
464
465
466
467
468
469

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

Patrick's avatar
Patrick committed
470
            <h1 class="headOne" id="headOne">Kesselkompass – Informieren, Beteiligen, Kooperieren</h1>
Patrick's avatar
Patrick committed
471
472
            <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
473
                            <!-- <div class="row3">
Patrick's avatar
Patrick committed
474
                    <div style="cursor:pointer;" onclick="addcont('main_bock2');showtourSpecific('main');setpositionVAR(false);"class="column3">
Patrick's avatar
Patrick committed
475
                      <h3 class="top-left">Böckinger Straße</h3>
Patrick's avatar
Patrick committed
476
                      <img class="imagecol3" src="images/projects/bockinger1.png" alt="Snow" style="width:100%">
Patrick's avatar
Patrick committed
477
                    </div>
Patrick's avatar
Patrick committed
478
                    <div style="cursor:pointer;" onclick="removebuildings();addcont('main_heatdem2');addcont('main_nordbstuff2');NordbahnhofText();setpositionVAR(false);" class="column3">
Patrick's avatar
Patrick committed
479
                        <h3 class="top-left">Nordbahnhof</h3>
Patrick's avatar
Patrick committed
480
                      <img class="imagecol3" src="images/projects/nordbahn1.png" alt="Forest" style="width:100%">
Patrick's avatar
Patrick committed
481
                    </div>
Patrick's avatar
Patrick committed
482
483
                    
                  </div> -->
Patrick's avatar
Patrick committed
484
485
                  <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
486
487
            <p class="contentOne">Schreiben Sie uns einfach an les@hft-stuttgart.de</p> <br>

Patrick's avatar
Patrick committed
488
489
490
491
492
493
494
495
496
497
498
499
            <div style="height:90px">
            <img src="images/logos/logo_kleiner.svg" width="120" height="100" alt="Hund">
            <img src="images/logos/vcs_logo_black_120px.png" width="120" height="55" margin-top="10px" alt="Hund">
            <img src="images/logos/cesium-logo.png" width="118" height="26" alt="Hund">
            </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
500
501
            <!-- <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
502
            <div class="row3">
patri's avatar
patri committed
503
                    <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
504
                        <h3 class="top-left">Nordbahnhof</h3>
Patrick's avatar
Patrick committed
505
                        <img class="imagecol3" src="images/thumbnails/Nord_thumb_001.jpg" alt="Forest" style="width:100%">
Patrick's avatar
Patrick committed
506
                    </div>
Patrick's avatar
Patrick committed
507
508
                    <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
509
                    </div>
Patrick's avatar
Patrick committed
510
511
512
513
514
                    <!-- <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
515
516
                    
                    <h3>Archiv</h3>
Patrick's avatar
Patrick committed
517
                    <div class="row3">
patri's avatar
patri committed
518
                    <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
519
                        <h3 class="top-left">Böckinger Straße</h3>
Patrick's avatar
Patrick committed
520
                        <img class="imagecol3" src="images/thumbnails/boe_thumb_001_sw.jpg" alt="Snow" style="width:100%">
Patrick's avatar
Patrick committed
521
                    </div>
Patrick's avatar
Patrick committed
522
523
                    <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
524
                    </div>
Patrick's avatar
Patrick committed
525
526
527
528
529
530

                    <!-- <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
531
                    
Patrick's avatar
Patrick committed
532
533

        </div>
Patrick's avatar
Patrick committed
534
535
536
537
          <!-- Projekt 1
            ======================================================================================================= -->
        <div id="projektOne" class="SideInfo" style="display:none;">

Patrick's avatar
Patrick committed
538
            <h1 class="headOne" id="headOne">Böckinger Straße</h1> 
Patrick's avatar
Patrick committed
539
            <!-- class="sticky" -->
Patrick's avatar
Patrick committed
540
                    
Patrick's avatar
Patrick committed
541
            <div id="bilder_bock2">
Patrick's avatar
Patrick committed
542
543
544
                        <!-- Slideshow container -->

            </div>
Patrick's avatar
Patrick committed
545
546
547
548
549
550
            <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
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
        </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
574
575
                <p class="contentOne">@les_stuttgart</p>
                <p class="contentOne">#ibasummerschool2019 #howtocommons #experiment</p>
Patrick's avatar
Patrick committed
576
577
578
579
580
        


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

Patrick's avatar
Patrick committed
584
            <h1 class="sticky headOne" id="headOne">Energy Project Stöckach</h1>
Patrick's avatar
Patrick committed
585
586
587
588
589
590
            
            <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
591

Patrick's avatar
Patrick committed
592
            <button id="energydemand"  onclick="highlightFeatures('energydemand')" type="button" class="collapsible">Energy demand</button>
Patrick's avatar
Patrick committed
593
            <div class="content">
Patrick's avatar
Patrick committed
594
                <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
595
596
597
598
599
600
                
                <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
601
                        <img src="images/content/contentstoeckach/img1.jpg" style="width:100%">
Patrick's avatar
Patrick committed
602
603
604
605
606
                        <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
607
                        <img src="images/content/contentstoeckach/img2.jpg" style="width:100%">
Patrick's avatar
Patrick committed
608
609
610
611
612
                        <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
613
                        <img src="images/content/contentstoeckach/img3.jpg" style="width:100%">
Patrick's avatar
Patrick committed
614
615
616
617
618
                        <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
619
                        <img src="images/content/contentstoeckach/img4.jpg" style="width:100%">
Patrick's avatar
Patrick committed
620
621
622
623
624
625
626
627
628
629
630
                        <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
631
                    <!-- <div style="text-align:center">
Patrick's avatar
Patrick committed
632
633
634
635
636
                        <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
637
                    </div> -->
Patrick's avatar
Patrick committed
638
            
Patrick's avatar
Patrick committed
639
            </div>
Patrick's avatar
Patrick committed
640
            <button id="solarpotential" onclick="highlightFeatures('solarpotential')" type="button" class="collapsible">Solar PV potential</button>
Patrick's avatar
Patrick committed
641
            <div class="content">
Patrick's avatar
Patrick committed
642
                <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
643
            </div>
Patrick's avatar
Patrick committed
644
            <button id="heatpump" onclick="highlightFeatures('heatpump')" type="button" class="collapsible">Power-to-heat via heat pump</button>
Patrick's avatar
Patrick committed
645
            <div class="content">
Patrick's avatar
Patrick committed
646
                <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
647
648
649
650
651
652
653
654
                    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
655
                            <img src="images/content/contentstoeckach/img5.jpg" style="width:100%; margin-bottom: 5em;">
Patrick's avatar
Patrick committed
656
657
658
                            <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
659
            </div>
Patrick's avatar
Patrick committed
660
            <button id="thermalstorage" onclick="highlightFeatures('thermalstorage')" type="button" class="collapsible">Thermal storage </button>
Patrick's avatar
Patrick committed
661
            <div class="content">
Patrick's avatar
Patrick committed
662
                <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
663
            </div>
Patrick's avatar
Patrick committed
664
            <button id="batterystorage" onclick="highlightFeatures('batterystorage')" type="button" class="collapsible">Battery storage  </button>
Patrick's avatar
Patrick committed
665
            <div class="content">
Patrick's avatar
Patrick committed
666
                <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
667
            </div>
Patrick's avatar
Patrick committed
668
669
            <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
670
                <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
671
672
673
674
675
676
677
                    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
678
                            <img src="images/content/contentstoeckach/img6.jpg" style="width:100%; margin-bottom: 4em;">
Patrick's avatar
Patrick committed
679
680
681
682
                            <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
683
        </div>
Patrick's avatar
Patrick committed
684
685
686
        <!-- ======================================================================================================================================================================== -->
        <!-- Nordbahnhof -->
        <div id="NordbahnhofInfo" class="SideInfo" style="display:none;">
Patrick's avatar
Patrick committed
687
            <h1 class="headOne" id="headNordB">Nordbahnhof</h1>
Patrick's avatar
Patrick committed
688
689
690
691
            <div class="slideshow-containerNord">

                <div class="mySlidesNord fadeNord">
                  <div class="numbertextNord">1 / 2</div>
Patrick's avatar
Patrick committed
692
693
                  <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
694
695
696
697
                </div>
                
                <div class="mySlidesNord fadeNord">
                  <div class="numbertextNord">2 / 2</div>
Patrick's avatar
Patrick committed
698
699
                  <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
700
701
702
703
                </div>
                <a class="prevNord" onclick="plusSlidesNord(-1)">&#10094;</a>
                <a class="nextNord" onclick="plusSlidesNord(1)">&#10095;</a>
                </div>
Patrick's avatar
Patrick committed
704
705
                <br> 
                               <div style="text-align:center">
Patrick's avatar
Patrick committed
706
707
                  <span class="dotNord" onclick="currentSlideNord(1)"></span> 
                  <span class="dotNord" onclick="currentSlideNord(2)"></span> 
Patrick's avatar
Patrick committed
708
709

                </div>
Patrick's avatar
Patrick committed
710
711
712
713
714
715
716
                <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
717
            <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
718
            
Patrick's avatar
Patrick committed
719
            <div id="nordbplanung2">
Patrick's avatar
Patrick committed
720
            </div><br>
Patrick's avatar
Patrick committed
721
722
723
724
725
726
                <!-- 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
727
                <div style="display:inline-block; width:100%">
Patrick's avatar
Patrick committed
728
729
730
731
732
733
734
735
                    <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
736
                <div style="display:inline-block; width:100%">
Patrick's avatar
Patrick committed
737
738
739
740
741
742
743
744
745
                    <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
746
                <div style="display:inline-block; width:100%">
Patrick's avatar
Patrick committed
747
748
749
750
751
752
753
                    <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
754
                <div style="display:inline-block; width:100%">
Patrick's avatar
Patrick committed
755
756
757
758
759
760
761
                    <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
762
                <div style="display:inline-block; width:100%">
Patrick's avatar
Patrick committed
763
764
765
766
767
768
769
                    <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
770
                <div style="display:inline-block; width:100%">
Patrick's avatar
Patrick committed
771
772
773
774
775
776
777
                    <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
778
                <div style="display:inline-block; width:100%">
Patrick's avatar
Patrick committed
779
780
781
782
783
784
785
                    <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
786
                <div style="display:inline-block; width:100%">
Patrick's avatar
Patrick committed
787
788
789
790
791
792
793
794
795
                    <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
796
                    <input type="checkbox" id="quizcheck" onclick="switchQuizResults(); check_Bau('all')">
Patrick's avatar
Patrick committed
797
798
                    <span class="checkmark"></span>
                    </label>
Patrick's avatar
Patrick committed
799
            <h3 id="UmfrageNordb">Umfrage</h3>
Patrick's avatar
Patrick committed
800
            <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
801
            <br>
Patrick's avatar
Patrick committed
802

Patrick's avatar
Patrick committed
803
804
        <!-- <div id="slider-color"></div> -->
        </div>
Patrick's avatar
Patrick committed
805
806
807
808
809
        <!-- ======================================================================================================================================================================== -->
        <!-- Noise -->
        <div id="NoiseInfo" class="SideInfo" style="display:none;">
            <!-- <h1 class="sticky" id="headNoise">Lärmdaten</h1>
            <br> -->
Patrick's avatar
Patrick committed
810
            <h1 class="headOne">Lärmdaten aus Stuttgart</h1>
Patrick's avatar
Patrick committed
811
            <br>
Patrick's avatar
Patrick committed
812
            <h3>Kombinierte Lärmkarten (Auto, Bahn, Flughafen)</h3><br>
Patrick's avatar
Patrick committed
813
814
815
            <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
816
            <h3>Lärmsensoren aus dem Luftdaten.info Projekt</h3><br>
Patrick's avatar
Patrick committed
817
818
819
            <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
820
                <option value="49368">49368</option>
Patrick's avatar
Patrick committed
821
822
                <!-- <option value="53627">53627</option>
                <option value="29212">29212</option> -->
Patrick's avatar
Patrick committed
823
824
                <option value="compLAeq">compare LAeq</option>
                </select>
Patrick's avatar
Patrick committed
825
                <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
826
827
828
829
830
831
832
833
            <!-- <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
834
835
836
837
838
            <!-- <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
839
            <a class="contentOne">Überblick Sensor</a>
Patrick's avatar
Patrick committed
840
841
            <div id="chartNoiseMain">
            <div style='width:100%;margin-top:10px;' id="chartNoise"></div></div>
Patrick's avatar
Patrick committed
842
            <a class="contentOne">Genauere Sensordaten (LAeq)</a>
Patrick's avatar
Patrick committed
843
            <div style='width:100%;margin-top:10px;' id="chartNoiseSTA"></div>
Patrick's avatar
Patrick committed
844
        <!-- <div id="slider-color"></div> -->
Patrick's avatar
Patrick committed
845
                <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
846
847
848
        </div>
        <!-- ======================================================================================================================================================================== -->
        <!-- Navigation -->
Patrick's avatar
Patrick committed
849
        <div id="Navigation" class="SideInfo" style="display:none;">
Patrick's avatar
Patrick committed
850
            <h1 class="sticky" id="headNordB">Navigationsrechner</h1>
Patrick's avatar
Patrick committed
851
            <p class="contentOne">Bitte wählen Sie einen Start und Endpunkt für ihre Route aus.</p>
Patrick's avatar
Patrick committed
852
853
854
855
856
             <!-- <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
857
            
Patrick's avatar
Patrick committed
858
859
860
            <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
861
            <!-- <select>
Patrick's avatar
Patrick committed
862
863
                <option>mit Parkplatz</option>
                <option>ohne Parkplatz</option>
Patrick's avatar
Patrick committed
864
              </select> -->
Patrick's avatar
Patrick committed
865
866
867
            <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
868
869
870
871
            <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
872
873
874
875
876
877
878
            <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
879
        </div>
Patrick's avatar
Patrick committed
880
881
882
883
884
885
      </div>
      <div id="tour-button" title="Karte/Story umschalten">
          <i class="fa"></i>
      </div>
      <!-- End of: Content Tour -->
  </div>
Patrick's avatar
Patrick committed
886
887
888
889
  <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
890
  <div id="vcs_map_container" ondragenter="return dragEnter(event)" ondrop="return dragDrop(event)" ondragover="return dragOver(event)"></div>
Patrick's avatar
Patrick committed
891
892
893
894
895
896
  
    <!--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
897
    <script src='https://unpkg.com/@turf/turf@6/turf.min.js'></script>
Patrick's avatar
Patrick committed
898
899
900
    <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
901
    <script src="sources/nouislider.js"></script>
Patrick's avatar
Patrick committed
902
    <script src="https://cdn.jsdelivr.net/npm/apexcharts"></script>
Patrick's avatar
Patrick committed
903
    <script src="templates/slider.js"></script>
Patrick's avatar
Patrick committed
904
905
    <script src="templates/UserBalloon.js"></script>
    <script src="js/navigation.js"></script>
Patrick's avatar
Patrick committed
906
    <script src="js/soundquiz.js"></script>
Patrick's avatar
Patrick committed
907
    <script src="js/ServerorLocal.js"></script>
Patrick's avatar
Patrick committed
908
    <script src="js/noise.js"></script>
Patrick's avatar
Patrick committed
909
    <script src="js/STAnoise.js"></script>
Patrick's avatar
Patrick committed
910
    <link href="templates/sliders.css" rel="stylesheet">
Patrick's avatar
Patrick committed
911
    <link rel="stylesheet" href="css/menu.css">
912
    
Patrick's avatar
Patrick committed
913
914
915
916
917
918
919
920
921
922
923

	<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>
924
<link rel="stylesheet" href="css/dragable.css">
Patrick's avatar
Patrick committed
925
926
927
928
    <!--script>
      vcs.vcm.Framework.activateLogging();
      vcs.vcm.Framework.loadConfig('config.json');
    </script-->
patri's avatar
patri committed
929
930
    <script src="lib/jquery-3.5.1.min.js"></script>
    <script src='js/history.js'></script>
Patrick's avatar
Patrick committed
931
    <script src='js/backtotop.js'></script>
patri's avatar
patri committed
932
933
    <!-- <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> -->
    
Patrick's avatar
Patrick committed
934
    <script src='lib/vcm_ui.js'></script>
Patrick's avatar
Patrick committed
935
    <script src="js/SimStadtApi_stud.js"></script>
936
    <script src="js/here.js"></script>
937
    <script src="js/favoriteplaces.js"></script>
Patrick's avatar
Patrick committed
938
    <script src="js/codepoly.js"></script>
Patrick's avatar
Patrick committed
939
    <script src="templates/custom.js"></script>
Patrick's avatar
Patrick committed
940
    <script src="templates/newDevBahn.js"></script>
Patrick's avatar
Patrick committed
941
942
    <script src="templates/cus_Menu.js"></script>
    <script src="templates/cus_SimStadt.js"></script>
Patrick's avatar
Patrick committed
943
944
    
    <script src="templates/collapse.js"></script>
Patrick's avatar
Patrick committed
945
946
947
948
949
950
    <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
951
    <script src="js/DragnDrop.js"></script> 
patri's avatar
patri committed
952
    <script src="js/updown.js"></script> 
Patrick's avatar
Patrick committed
953
954
  </body>
</html>