index.html 58.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
161
162
163
164
165
166
167
	
  </head>
  <body>
  
  <header class="tour-header vcm-header-height vcm-header-base vcm-border-splash">
      <div id="header">
          <div class="logo-box vcm_copyright_headerLogoBox">
              <div class="company-logo"></div>
          </div>
          <div class="title-box vcm_copyright_headerTitle"></div>
Patrick's avatar
Patrick committed
168
            
169
170
                    <!-- Drop down menu starts here -->
                    <div class="dropdown hidden" style="float: right; right:20px">
Patrick's avatar
Patrick committed
171
                        
Patrick's avatar
Patrick committed
172
                        <i class="fa fa-bars" id="dropdownMenu" style="font-size:1.8rem;color: white !important; margin-top:1rem;"></i>
173
                            <div class="dropdown-content" style="width:20rem;">
Patrick's avatar
Patrick committed
174
                                <button class="accordion">Partizipation</button>
175
                                    <div class="sub-menu">
Patrick's avatar
Patrick committed
176
                                        <a href="#" onclick="showtourSpecific('menu')">Böckingerstraße</a>           
177
                                    </div>
Patrick's avatar
Patrick committed
178
                                <button class="accordion">Energy</button>
179
                                    <div class="sub-menu">
Patrick's avatar
Patrick committed
180
                                        <a href="#" onclick="EnergiekonzeptFunction('nothing')">Stöckach</a>
Patrick's avatar
Patrick committed
181
182

                                        <a href="#" onclick="nordbahnview()">Nordbahnhof</a>
Patrick's avatar
Patrick committed
183
184
185
                                    </div>
                                <button class="accordion">Acoustics</button>
                                    <div class="sub-menu">
Patrick's avatar
Patrick committed
186
187
                                        <a><strong>Lärmkarten:</strong></a>
                                        <a href="#">Straße</a>
Patrick's avatar
Patrick committed
188
189
190
                                        <button id ="btn_StreetDay" onclick="noisemap('Streetday')">Day</button>
                                        <button id ="btn_StreetNight" onclick="noisemap('Streetnight')">Night</button>
                                        <button id ="btn_StreetOff" onclick="noisemap('offS')">Off</button>
Patrick's avatar
Patrick committed
191
                                        
Patrick's avatar
Patrick committed
192
193
194
                                        
                                        <!-- <div class="switch-toggle switch-3 switch-candy">
                                            <button id ="btn_StreetDay">Day</button>
195
196
197
198
199
200
201
202
203
                                            <input id="on" name="state-d" type="radio" checked="" />
                                            <label for="on" onclick="noisemap('Streetday')">Day</label>
                                          
                                            <input id="na" name="state-d" type="radio" />
                                            <label for="na" onclick="noisemap('Streetnight')">Night</label>
                                          
                                            <input id="off" name="state-d" type="radio" checked="checked"  />
                                            <label for="off" onclick="noisemap('offS')">OFF</label>
                                          
Patrick's avatar
Patrick committed
204
                                          </div><br> -->
Patrick's avatar
Patrick committed
205
                                          <a href="#">Bahn</a>
Patrick's avatar
Patrick committed
206
207
208
                                          <button id ="btn_RailDay" onclick="noisemap('Railday')">Day</button>
                                          <button id ="btn_RailNight" onclick="noisemap('Railnight')">Night</button>
                                          <button id ="btn_RailOff" onclick="noisemap('offR')">Off</button>
Patrick's avatar
Patrick committed
209
210
                                        
                                        <a><strong>Noise Sensors (Live):</strong></a>
Patrick's avatar
Patrick committed
211
212
                                        <button id ="btn_NoiseSensOn" onclick="noisesens('on')">On</button>
                                        <button id ="btn_NoiseSensOff" onclick="noisesens('off')">Off</button><br>
Patrick's avatar
Patrick committed
213
214
                                        <a><strong>Noise Sensors (historisch):</strong></a>
                                        <button id ="btn_NoiseSensOpen" onclick="NoiseText();">Open</button>
Patrick's avatar
Patrick committed
215
                                        <!-- <div class="switch-toggle switch-3 switch-candy">
216
217
218
219
220
221
222
223
224
225

                                            <input id="onR" name="state-d" type="radio" checked="" />
                                            <label for="onR" onclick="noisemap('Railday')">Day</label>
                                          
                                            <input id="naR" name="state-d" type="radio" />
                                            <label for="naR" onclick="noisemap('Railnight')">Night</label>
                                          
                                            <input id="offR" name="state-d" type="radio" checked="checked"  />
                                            <label for="offR" onclick="noisemap('offR')">OFF</label>
                                          
Patrick's avatar
Patrick committed
226
                                          </div> -->
227
                                    </div>
228

Patrick's avatar
Patrick committed
229
                                <button class="accordion">Mobility</button>
230
                                    <div class="sub-menu">
Patrick's avatar
Patrick committed
231
                                        <a href="#" onclick="" >Bauarbeiten</a>
Patrick's avatar
Patrick committed
232
233
                                        <button class = "btn_on" onclick="getAccidents('CONSTRUCTION')">On</button>
                                        <button class = "btn_off" onclick="deleteAccidents('CONSTRUCTION')">Off</button>
Patrick's avatar
Patrick committed
234
                                        
Patrick's avatar
Patrick committed
235
236

                                        <!-- <div class="switch-toggle switch-3 switch-candy">
237
238
239
240
241
242
243

                                            <input id="acc-on" name="state-d" type="radio" checked="" />
                                            <label for="on" onclick="getAccidents('CONSTRUCTION')">ON</label>
                                          
                                            <input id="acc-off" name="state-d" type="radio" checked="true"/>
                                            <label for="na" onclick="deleteAccidents('CONSTRUCTION')">OFF</label>
                                                                                    
Patrick's avatar
Patrick committed
244
                                          </div><br> -->
Patrick's avatar
Patrick committed
245
                                          <a href="#" onclick="" >Straßenschließungen</a>
Patrick's avatar
Patrick committed
246
247
                                          <button class = "btn_on" onclick="getAccidents('ROAD_CLOSURE')">On</button>
                                          <button class = "btn_off" onclick="deleteAccidents('ROAD_CLOSURE')">Off</button>
Patrick's avatar
Patrick committed
248
                                          
Patrick's avatar
Patrick committed
249
                                        <!-- <div class="switch-toggle switch-3 switch-candy">
250
251
252
253
254
255
256

                                            <input id="road-on" name="state-d" type="radio" checked="" />
                                            <label for="on" onclick="getAccidents('ROAD_CLOSURE')">ON</label>
                                          
                                            <input id="road-off" name="state-d" type="radio" checked="true"/>
                                            <label for="na" onclick="deleteAccidents('ROAD_CLOSURE')">OFF</label>
                                                                                    
Patrick's avatar
Patrick committed
257
                                          </div> -->
Patrick's avatar
Patrick committed
258
                                          <a href="#">Verkehrsflow</a>
Patrick's avatar
Patrick committed
259
260
                                          <button class = "btn_on" onclick="drawFlow()">On</button>
                                          <button class = "btn_off" onclick="deleteFlow()">Off</button>
Patrick's avatar
Patrick committed
261
                                          
Patrick's avatar
Patrick committed
262
263
264
265
266
267
268
269
270
                                          <!-- <div class="switch-toggle switch-3 switch-candy">

                                            <input id="flow-on" name="state-d" type="radio" checked="" />
                                            <label for="on" onclick="drawFlow()">ON</label>
                                          
                                            <input id="flow-off" name="state-d" type="radio" checked="true"/>
                                            <label for="na" onclick="deleteFlow()">OFF</label>
                                                                                    
                                          </div> -->
271
                                    </div>
Patrick's avatar
Patrick committed
272
                                    <button class="accordion" onclick="Navigationshow();getPosition();" >Navigation</button>
Patrick's avatar
Patrick committed
273
274
                                    <button class="accordion" onclick="simstadtget();" >SimStadt</button>
                                    <!-- <button class="accordion" onclick="NoiseText();" >STA Noise</button> -->
Patrick's avatar
Patrick committed
275
                                    <!-- <div class="sub-menu">
Patrick's avatar
Patrick committed
276
277
278
279
280
281
282
283
284
285
286
                                        <a href="#" onclick="Navigationshow();getPosition();" >Car</a>
                                        <div class="switch-toggle switch-3 switch-candy">

                                            <input id="acc-on" name="state-d" type="radio" checked="" />
                                            <label for="on" onclick="drawnavcar()">ON</label>
                                          
                                            <input id="acc-off" name="state-d" type="radio" checked="true"/>
                                            <label for="na" onclick="">OFF</label><br><br>
                                                                                                                                
                                          </div><br>
                                        
Patrick's avatar
Patrick committed
287
                                    </div> -->
288
                            </div>
Patrick's avatar
Patrick committed
289
290
291
292
293
                            <div id = "loadermain" class="loader" style="margin-right: 40px; margin-top: 40px; margin-left: -50px;
                            margin-top: -40px;
                            height: 40px;
                            width: 40px;
                            position: absolute;"></div>
294
295
                      </div>
                    <!-- Drop down menu ends here -->            
Patrick's avatar
Patrick committed
296
297
298
299
300
301
302
303
304
305
306
           <div class="tool-box" style="cursor:pointer"></div> 
      </div>
  </header>
  <div id="story-frame" class="startscreen vcm-map-top">
      <!-- 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"-->
                 <strong>M4_Lab</strong> <br>Platform
              </h1>
Patrick's avatar
Patrick committed
307
              <button id="tourstart-btn" onclick="removebuildings(); Introshow();" class="buttonset one"><span class="i18n_balloon_startscreen_btn">Start</span>
Patrick's avatar
Patrick committed
308
              </button>
Patrick's avatar
Patrick committed
309
              <!-- stopStory();    getNAVcar();  -------Test back to start: getFlow();getFlowtest();getTraffic(); -->
Patrick's avatar
Patrick committed
310
311
312
313
314
315
316
          </div>
          <div class="dialog-image-balloon"></div>
          <div class="balloon-left-edge"></div>
      </div>
      <!-- End of: Content Start Screen -->
      <!-- Content Tour -->
      <div id="tour-frame" style="display: none; overflow-y: scroll;">
Patrick's avatar
Patrick committed
317
          <div class="tour-top-navi"  style="z-index:99">
Patrick's avatar
Patrick committed
318
319
320
321
322
             <a href="#" onclick="Introshow()" id = "testing" class=" top-nav buttonset one btn_home"><i class="fa fa-home"></i> Zurück zum Intro</a>
             <a href="#" onclick="showtourSpecific('menu')" id = "testing" class=" top-nav buttonset one btn_home"><i class="fa fa-code-fork"></i> Böckingerstraße</a>
             <a href="#" onclick="NordbahnhofText()" id = "testing" class=" top-nav buttonset one btn_home"><i class="fa fa-code-fork"></i> Nordbahnhof</a>
             <a href="#" onclick="NoiseText()" id = "testing" class=" top-nav buttonset one btn_home"><i class="fa fa-code-fork"></i> Akkustik Projekt</a>
             <a href="#" onclick="Expert()" id = "testing" style="float:right;margin-right:2em;" class=" top-nav buttonset one btn_home"><i class="fa fa-lock"></i> Experten Modus</a>
Patrick's avatar
Patrick committed
323
             <!-- <a href="#energiefahrrad" class="top-nav buttonset one"><i class="fa fa-bicycle"></i> Projekt 2</a>
Patrick's avatar
Patrick committed
324
             <a href="#wea" class="top-nav buttonset one"><i class="fa fa-bolt"></i> Projekt 3</a>
Patrick's avatar
Patrick committed
325
             <a href="#projects" id="back" class="top-nav buttonset one"><i class="fa fa-bolt"></i> Back to Projekt View 3</a> -->
Patrick's avatar
Patrick committed
326
327
328
329
330
331
332
333
334
335
336
337
	<!-- Buttonleiste oben
			  <a href="#demo-viewpoint" class="top-nav buttonset one"><i class="fa fa-globe"></i> Viewpoint</a>	
              <a href="#demo-hiding" class="top-nav buttonset one"><i class="fa fa-eye-slash"></i> Hiding</a>
              <a href="#demo-highlight" class="top-nav buttonset one"><i class="fa fa-building"></i> Higlighting</a>
              <a href="#demo-planning" class="top-nav buttonset one"><i class="fa fa-building"></i> Planning</a>
              <a href="#demo-layer" class="top-nav buttonset one"><i class="fa fa-exchange"></i> Layer Switch</a>
              <a href="#demo-labels" class="top-nav buttonset one"><i class="fa fa-tag"></i> Labels</a>
              <a href="#demo-poi" class="top-nav buttonset one"><i class="fa fa-map-marker"></i> POI</a>
              <a href="#demo-rotate" class="top-nav buttonset one"><i class="fa fa-repeat"></i> Rotate</a>
              <a href="#story_start" class="top-nav buttonset one"><i class="fa fa-arrow-up"></i></a>
	--> 
          </div>
Patrick's avatar
Patrick committed
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
        <!-- Expertenmodus-.--------------------------
            ======================================================================================================= -->
        <div id="Expertenmodus" class="SideInfo" style="display:none;">

            <h1 class="sticky" id="headOne">Expertenmodus der Plattform</h1>
            <div class="dropdown" style="float: right; right:20px">
                        
                <i class="fa fa-bars" id="dropdownMenu" onclick="onoff()"  style="font-size:1.8rem;color: black !important; margin-top:1rem;"></i>
                    
                    <div id = "loadermain" class="loader" style="margin-right: 40px; margin-top: 40px; margin-left: -50px;
                    margin-top: -40px;
                    height: 40px;
                    width: 40px;
                    position: absolute;"></div>
              </div>
               
              <div id="menustuff"  class="hidden">
              <button class="accordion">Partizipation</button>
              <div class="sub-menu">
                  <a href="#" onclick="showtourSpecific('menu')">Böckingerstraße</a>           
              </div>
          <button class="accordion">Energy</button>
              <div class="sub-menu">
                  <a href="#" onclick="EnergiekonzeptFunction('nothing')">Stöckach</a>

                  <a href="#" onclick="nordbahnview()">Nordbahnhof</a>
              </div>
          <button class="accordion">Acoustics</button>
              <div class="sub-menu">
                  <a><strong>Lärmkarten:</strong></a><br>
                  <a href="#">Straße</a><br>
                  <button id ="btn_StreetDay" onclick="noisemap('Streetday')">Day</button>
                  <button id ="btn_StreetNight" onclick="noisemap('Streetnight')">Night</button>
                  <button id ="btn_StreetOff" onclick="noisemap('offS')">Off</button><br>
                  
                  
                  <!-- <div class="switch-toggle switch-3 switch-candy">
                      <button id ="btn_StreetDay">Day</button>
                      <input id="on" name="state-d" type="radio" checked="" />
                      <label for="on" onclick="noisemap('Streetday')">Day</label>
                    
                      <input id="na" name="state-d" type="radio" />
                      <label for="na" onclick="noisemap('Streetnight')">Night</label>
                    
                      <input id="off" name="state-d" type="radio" checked="checked"  />
                      <label for="off" onclick="noisemap('offS')">OFF</label>
                    
                    </div><br> -->
                    <a href="#">Bahn</a><br>
                    <button id ="btn_RailDay" onclick="noisemap('Railday')">Day</button>
                    <button id ="btn_RailNight" onclick="noisemap('Railnight')">Night</button>
                    <button id ="btn_RailOff" onclick="noisemap('offR')">Off</button>
                    <br><br>
                  <a><strong>Noise Sensors (Live):</strong></a><br>
                  <button id ="btn_NoiseSensOn" onclick="noisesens('on')">On</button>
                  <button id ="btn_NoiseSensOff" onclick="noisesens('off')">Off</button><br><br>
                  <a><strong>Noise Sensors (historisch):</strong></a><br>
                  <button id ="btn_NoiseSensOpen" onclick="NoiseText();">Open</button><br>
                  <!-- <div class="switch-toggle switch-3 switch-candy">

                      <input id="onR" name="state-d" type="radio" checked="" />
                      <label for="onR" onclick="noisemap('Railday')">Day</label>
                    
                      <input id="naR" name="state-d" type="radio" />
                      <label for="naR" onclick="noisemap('Railnight')">Night</label>
                    
                      <input id="offR" name="state-d" type="radio" checked="checked"  />
                      <label for="offR" onclick="noisemap('offR')">OFF</label>
                    
                    </div> -->
              </div>

          <button class="accordion">Mobility</button>
              <div class="sub-menu">
                  <a href="#" onclick="" >Bauarbeiten</a><br>
                  <button class = "btn_on" onclick="getAccidents('CONSTRUCTION')">On</button>
                  <button class = "btn_off" onclick="deleteAccidents('CONSTRUCTION')">Off</button><br>
                  

                  <!-- <div class="switch-toggle switch-3 switch-candy">

                      <input id="acc-on" name="state-d" type="radio" checked="" />
                      <label for="on" onclick="getAccidents('CONSTRUCTION')">ON</label>
                    
                      <input id="acc-off" name="state-d" type="radio" checked="true"/>
                      <label for="na" onclick="deleteAccidents('CONSTRUCTION')">OFF</label>
                                                              
                    </div><br> -->
                    <a href="#" 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><br>
                    
                  <!-- <div class="switch-toggle switch-3 switch-candy">

                      <input id="road-on" name="state-d" type="radio" checked="" />
                      <label for="on" onclick="getAccidents('ROAD_CLOSURE')">ON</label>
                    
                      <input id="road-off" name="state-d" type="radio" checked="true"/>
                      <label for="na" onclick="deleteAccidents('ROAD_CLOSURE')">OFF</label>
                                                              
                    </div> -->
                    <a href="#">Verkehrsflow</a><br>
                    <button class = "btn_on" onclick="drawFlow()">On</button>
                    <button class = "btn_off" onclick="deleteFlow()">Off</button><br>
                    
                    <!-- <div class="switch-toggle switch-3 switch-candy">

                      <input id="flow-on" name="state-d" type="radio" checked="" />
                      <label for="on" onclick="drawFlow()">ON</label>
                    
                      <input id="flow-off" name="state-d" type="radio" checked="true"/>
                      <label for="na" onclick="deleteFlow()">OFF</label>
                                                              
                    </div> -->
              </div>
              <button class="accordion" onclick="Navigationshow();getPosition();" >Navigation</button>
              <button class="accordion" onclick="simstadtget();" >SimStadt</button>
              <!-- <button class="accordion" onclick="NoiseText();" >STA Noise</button> -->
              <!-- <div class="sub-menu">
                  <a href="#" onclick="Navigationshow();getPosition();" >Car</a>
                  <div class="switch-toggle switch-3 switch-candy">

                      <input id="acc-on" name="state-d" type="radio" checked="" />
                      <label for="on" onclick="drawnavcar()">ON</label>
                    
                      <input id="acc-off" name="state-d" type="radio" checked="true"/>
                      <label for="na" onclick="">OFF</label><br><br>
                                                                                                          
                    </div><br>
                  
              </div> -->


            </div>


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

            <h1 class="sticky" id="headOne">Intro zu unserer Plattform</h1>
            
            <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>
                <p>@les_stuttgart</p>
                <p>#ibasummerschool2019 #howtocommons #experiment</p>
                <!--Projekts-->
                <h2>Unsere Projekte</h2>
                <div class="row">
                    <div class="column">
                      <h3>Böckinger Straße</h3>
                      <img src="images/projects/bockinger.PNG" alt="Snow" style="width:100%">
                    </div>
                    <div class="column">
                        <h3>Nordbahnhof</h3>
                      <img src="images/projects/nordbahn.PNG" alt="Forest" style="width:100%">
                    </div>
                    <div class="column">
                      <h3>Akkustik Projekt</h3>
                      <img src="images/projects/noise.PNG" alt="Mountains" style="width:100%">
                    </div>
                  </div>


            <p class="contentOne"><Strong>TEAM KOMMUNIKATION</Strong> arbeitet direkt mit den Anwohnern zusammen.
                Wer sind relevante Akteure? Welches Potential bringen neue Akteure mit?
                Welche Art der Kommunikation braucht es? In Interviews werden Bedürfnisse
                und Wünsche für das zukünftige Quartier abgefragt und gemeinsam
                eine Kommunikationsstrategie erarbeitet.<br>
                <strong>TEAM PROGRAMM</strong> beschäftigt sich damit, wie man die gegenwärtigen und
                zukünftigen Bewohner*innen des Quartiers aktivieren kann, Gemeingüter
                zu entwickeln und zu nutzen. Welche Aktivitäten gibt es bereits vor Ort?
                Wo finden sie statt? Und durch welches Programm kann man Akteure
                zusammen bringen?<br>
                <strong>TEAM BAU</strong> gestaltet eine bauliche Intervention, die von den Nachbarn
                gemeinschaftlich im Sinne eines Urban Common genutzt werden kann.
                Was fehlt noch? Welche bauliche Intervention kann die Bildung von urban
                commons unterstützen? Und was bleibt am Ende zurück?</p>

        </div>
Patrick's avatar
Patrick committed
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
          <!-- Projekt 1
            ======================================================================================================= -->
        <div id="projektOne" class="SideInfo" style="display:none;">

            <h1 class="sticky" id="headOne">Böckinger Straße</h1>
            
            <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>
                <p>@les_stuttgart</p>
                <p>#ibasummerschool2019 #howtocommons #experiment</p>
        
                        <!-- Slideshow container -->
            <div class="slideshow-container">

            <!-- Full-width images with number and caption text -->
Patrick's avatar
Patrick committed
562
                <div class="mySlides1 fade">
Patrick's avatar
Patrick committed
563
                <div class="numbertext">1 / 17</div>
Patrick's avatar
Patrick committed
564
                <img src="images/content/contentboeckingerstrasse/grafik_aufgabenstellung.jpg" style="width:100%">
Patrick's avatar
Patrick committed
565
566
567
                <div class="text">Grafik</div>
                </div>
            
Patrick's avatar
Patrick committed
568
                <div class="mySlides1 fade">
Patrick's avatar
Patrick committed
569
                <div class="numbertext">2 / 17</div>
Patrick's avatar
Patrick committed
570
                <img src="images/content/contentboeckingerstrasse/boeckinger_strasse.jpg" style="width:100%">
Patrick's avatar
Patrick committed
571
572
573
                <div class="text">Böckinger Straße</div>
                </div>
            
Patrick's avatar
Patrick committed
574
                <div class="mySlides1 fade">
Patrick's avatar
Patrick committed
575
                <div class="numbertext">3 / 17</div>
Patrick's avatar
Patrick committed
576
                <img src="images/content/contentboeckingerstrasse/holzwerkstatt_igh.jpg" style="width:100%">
Patrick's avatar
Patrick committed
577
578
579
                <div class="text">Holzwerkstatt</div>
                </div>

Patrick's avatar
Patrick committed
580
                <div class="mySlides1 fade">
Patrick's avatar
Patrick committed
581
                <div class="numbertext">4 / 17</div>
Patrick's avatar
Patrick committed
582
                <img src="images/content/contentboeckingerstrasse/infoabend_garten_igh.jpg" style="width:100%">
Patrick's avatar
Patrick committed
583
584
585
                <div class="text">Infoabend im Garten</div>
                </div>

Patrick's avatar
Patrick committed
586
                <div class="mySlides1 fade">
Patrick's avatar
Patrick committed
587
                <div class="numbertext">5 / 17</div>
Patrick's avatar
Patrick committed
588
                <img src="images/content/contentboeckingerstrasse/interviews_nachbarschaft.jpg" style="width:100%">
Patrick's avatar
Patrick committed
589
590
591
                <div class="text">Interviews in der Nachbarschaft</div>
                </div>

Patrick's avatar
Patrick committed
592
                <div class="mySlides1 fade">
Patrick's avatar
Patrick committed
593
                <div class="numbertext">6 / 17</div>
Patrick's avatar
Patrick committed
594
                <img src="images/content/contentboeckingerstrasse/offene_bauwerkstatt_1.jpg" style="width:100%">
Patrick's avatar
Patrick committed
595
596
597
                <div class="text">Offene Bauwerkstatt</div>
                </div>

Patrick's avatar
Patrick committed
598
                <div class="mySlides1 fade">
Patrick's avatar
Patrick committed
599
                <div class="numbertext">7 / 17</div>
Patrick's avatar
Patrick committed
600
                <img src="images/content/contentboeckingerstrasse/offene_bauwerkstatt_2.jpg" style="width:100%">
Patrick's avatar
Patrick committed
601
602
603
                <div class="text">Offene Bauwerkstatt</div>
                </div>

Patrick's avatar
Patrick committed
604
                <div class="mySlides1 fade">
Patrick's avatar
Patrick committed
605
                <div class="numbertext">8 / 17</div>
Patrick's avatar
Patrick committed
606
                <img src="images/content/contentboeckingerstrasse/offene_bauwerkstatt_3.jpg" style="width:100%">
Patrick's avatar
Patrick committed
607
608
609
                <div class="text">Offene Bauwerkstatt</div>
                </div>

Patrick's avatar
Patrick committed
610
                <div class="mySlides1 fade">
Patrick's avatar
Patrick committed
611
                <div class="numbertext">9 / 17</div>
Patrick's avatar
Patrick committed
612
                <img src="images/content/contentboeckingerstrasse/planungsgebiet_choreographie.jpg" style="width:100%">
Patrick's avatar
Patrick committed
613
614
615
                <div class="text">Planungsgebiet Choreographie</div>
                </div>

Patrick's avatar
Patrick committed
616
                <div class="mySlides1 fade">
Patrick's avatar
Patrick committed
617
                <div class="numbertext">10 / 17</div>
Patrick's avatar
Patrick committed
618
                <img src="images/content/contentboeckingerstrasse/planungsgebiet_vogelperspektive.jpg" style="width:100%">
Patrick's avatar
Patrick committed
619
620
621
                <div class="text">Planungsgebiet Vogelperspektive</div>
                </div>

Patrick's avatar
Patrick committed
622
                <div class="mySlides1 fade">
Patrick's avatar
Patrick committed
623
                <div class="numbertext">11 / 17</div>
Patrick's avatar
Patrick committed
624
                <img src="images/content/contentboeckingerstrasse/station1_spielekiosk.jpg" style="width:100%">
Patrick's avatar
Patrick committed
625
626
627
                <div class="text">Spielekiosk</div>
                </div>

Patrick's avatar
Patrick committed
628
                <div class="mySlides1 fade">
Patrick's avatar
Patrick committed
629
                <div class="numbertext">12 / 17</div>
Patrick's avatar
Patrick committed
630
                <img src="images/content/contentboeckingerstrasse/station2_gartenkiosk.jpg" style="width:100%">
Patrick's avatar
Patrick committed
631
632
633
                <div class="text">Gartenkiosk</div>
                </div>

Patrick's avatar
Patrick committed
634
                <div class="mySlides1 fade">
Patrick's avatar
Patrick committed
635
                <div class="numbertext">13 / 17</div>
Patrick's avatar
Patrick committed
636
                <img src="images/content/contentboeckingerstrasse/station3_outdoorkiosk.jpg" style="width:100%">
Patrick's avatar
Patrick committed
637
638
639
                <div class="text">Outdoorkiosk</div>
                </div>

Patrick's avatar
Patrick committed
640
                <div class="mySlides1 fade">
Patrick's avatar
Patrick committed
641
                <div class="numbertext">14 / 17</div>
Patrick's avatar
Patrick committed
642
                <img src="images/content/contentboeckingerstrasse/station3_outdoorkiosk1.jpg" style="width:100%">
Patrick's avatar
Patrick committed
643
644
645
                <div class="text">Outdoorkiosk</div>
                </div>

Patrick's avatar
Patrick committed
646
                <div class="mySlides1 fade">
Patrick's avatar
Patrick committed
647
                <div class="numbertext">15 / 17</div>
Patrick's avatar
Patrick committed
648
                <img src="images/content/contentboeckingerstrasse/station4_infokiosk.jpg" style="width:100%">
Patrick's avatar
Patrick committed
649
650
651
                <div class="text">Infokiosk</div>
                </div>

Patrick's avatar
Patrick committed
652
                <div class="mySlides1 fade">
Patrick's avatar
Patrick committed
653
                <div class="numbertext">16 / 17</div>
Patrick's avatar
Patrick committed
654
                <img src="images/content/contentboeckingerstrasse/workshop_cafe_tas_1.jpg" style="width:100%">
Patrick's avatar
Patrick committed
655
656
657
                <div class="text">Workshop Cafe Tas</div>
                </div>

Patrick's avatar
Patrick committed
658
                <div class="mySlides1 fade">
Patrick's avatar
Patrick committed
659
                <div class="numbertext">17 / 17</div>
Patrick's avatar
Patrick committed
660
                <img src="images/content/contentboeckingerstrasse/workshop_cafe_tas_2.jpg" style="width:100%">
Patrick's avatar
Patrick committed
661
662
663
664
665
                <div class="text">Workshop Cafe Tas</div>
                </div>

            
                <!-- Next and previous buttons -->
Patrick's avatar
Patrick committed
666
667
                <a class="prev" onclick="plusSlides(-1, 0)">&#10094;</a>
                <a class="next" onclick="plusSlides(1, 0)">&#10095;</a>
Patrick's avatar
Patrick committed
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
            </div>
            <br>
            
            <!-- The dots/circles -->
            <div style="text-align:center">
                <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>
                <span class="dot" onclick="currentSlide(5)"></span>
                <span class="dot" onclick="currentSlide(6)"></span>
                <span class="dot" onclick="currentSlide(7)"></span>
                <span class="dot" onclick="currentSlide(8)"></span>
                <span class="dot" onclick="currentSlide(9)"></span>
                <span class="dot" onclick="currentSlide(10)"></span>
                <span class="dot" onclick="currentSlide(11)"></span>
                <span class="dot" onclick="currentSlide(12)"></span>
                <span class="dot" onclick="currentSlide(13)"></span>
                <span class="dot" onclick="currentSlide(14)"></span>
                <span class="dot" onclick="currentSlide(15)"></span>
                <span class="dot" onclick="currentSlide(16)"></span>
                <span class="dot" onclick="currentSlide(17)"></span>
            </div>

            <p class="contentOne"><Strong>TEAM KOMMUNIKATION</Strong> arbeitet direkt mit den Anwohnern zusammen.
                Wer sind relevante Akteure? Welches Potential bringen neue Akteure mit?
                Welche Art der Kommunikation braucht es? In Interviews werden Bedürfnisse
                und Wünsche für das zukünftige Quartier abgefragt und gemeinsam
                eine Kommunikationsstrategie erarbeitet.<br>
                <strong>TEAM PROGRAMM</strong> beschäftigt sich damit, wie man die gegenwärtigen und
                zukünftigen Bewohner*innen des Quartiers aktivieren kann, Gemeingüter
                zu entwickeln und zu nutzen. Welche Aktivitäten gibt es bereits vor Ort?
                Wo finden sie statt? Und durch welches Programm kann man Akteure
                zusammen bringen?<br>
                <strong>TEAM BAU</strong> gestaltet eine bauliche Intervention, die von den Nachbarn
                gemeinschaftlich im Sinne eines Urban Common genutzt werden kann.
                Was fehlt noch? Welche bauliche Intervention kann die Bildung von urban
                commons unterstützen? Und was bleibt am Ende zurück?</p>

        </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>
                <p>@les_stuttgart</p>
                <p>#ibasummerschool2019 #howtocommons #experiment</p>
        


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

Patrick's avatar
Patrick committed
740
            <h1 class="sticky" id="headOne">Energy Project Stöckach</h1>
Patrick's avatar
Patrick committed
741
742
743
744
745
746
            
            <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
747

Patrick's avatar
Patrick committed
748
            <button id="energydemand"  onclick="highlightFeatures('energydemand')" type="button" class="collapsible">Energy demand</button>
Patrick's avatar
Patrick committed
749
750
            <div class="content">
                <p>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
751
752
753
754
755
756
                
                <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
757
                        <img src="images/content/contentstoeckach/img1.jpg" style="width:100%">
Patrick's avatar
Patrick committed
758
759
760
761
762
                        <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
763
                        <img src="images/content/contentstoeckach/img2.jpg" style="width:100%">
Patrick's avatar
Patrick committed
764
765
766
767
768
                        <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
769
                        <img src="images/content/contentstoeckach/img3.jpg" style="width:100%">
Patrick's avatar
Patrick committed
770
771
772
773
774
                        <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
775
                        <img src="images/content/contentstoeckach/img4.jpg" style="width:100%">
Patrick's avatar
Patrick committed
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
                        <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 -->
                    <div style="text-align:center">
                        <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>
  
                    </div>
            
Patrick's avatar
Patrick committed
795
            </div>
Patrick's avatar
Patrick committed
796
            <button id="solarpotential" onclick="highlightFeatures('solarpotential')" type="button" class="collapsible">Solar PV potential</button>
Patrick's avatar
Patrick committed
797
            <div class="content">
Patrick's avatar
Patrick committed
798
                <p>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
799
            </div>
Patrick's avatar
Patrick committed
800
            <button id="heatpump" onclick="highlightFeatures('heatpump')" type="button" class="collapsible">Power-to-heat via heat pump</button>
Patrick's avatar
Patrick committed
801
            <div class="content">
Patrick's avatar
Patrick committed
802
803
804
805
806
807
808
809
810
                <p>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>
                    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
811
                            <img src="images/content/contentstoeckach/img5.jpg" style="width:100%; margin-bottom: 5em;">
Patrick's avatar
Patrick committed
812
813
814
                            <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
815
            </div>
Patrick's avatar
Patrick committed
816
            <button id="thermalstorage" onclick="highlightFeatures('thermalstorage')" type="button" class="collapsible">Thermal storage </button>
Patrick's avatar
Patrick committed
817
818
819
            <div class="content">
                <p>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>
            </div>
Patrick's avatar
Patrick committed
820
            <button id="batterystorage" onclick="highlightFeatures('batterystorage')" type="button" class="collapsible">Battery storage  </button>
Patrick's avatar
Patrick committed
821
822
823
            <div class="content">
                <p>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>
            </div>
Patrick's avatar
Patrick committed
824
825
826
827
828
829
830
831
832
833
            <button id="localEnergy" onclick="highlightFeatures('energydemand')" type="button" class="collapsible">Is local energy transition economically competitive? </button>
            <div class="content">
                <p>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>
                    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
834
                            <img src="images/content/contentstoeckach/img6.jpg" style="width:100%; margin-bottom: 4em;">
Patrick's avatar
Patrick committed
835
836
837
838
                            <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
839
        </div>
Patrick's avatar
Patrick committed
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
        <!-- ======================================================================================================================================================================== -->
        <!-- Nordbahnhof -->
        <div id="NordbahnhofInfo" class="SideInfo" style="display:none;">
            <h1 class="sticky" id="headNordB">Nordbahnhof</h1>
            
            <p class="contentOne">Im Nordbahnhof Areal ist ein Neubau geplant. Dieser kann in verschiedenen Aspekten mit den bestehenden Bauten verglichen werden.
                Der Energie Nutzungs Aspekt kann nur bedingt herangezogen werden, da die Gebäude sehr unterschiedliche Nutzungen haben. Hier würde es sich anbieten verschiedene Planungen aufgrund ihrer Energienutzung zu vergleichen.
            </p>
            <br>
            <h2>Specific Space Heating Demand</h2>
            <p>The specific space heating demand wurde mit SimStadt simuliert. Die Werte sind in [kWh/m²·a] angegeben.</p><br>
            <div id="unconstrained"></div><br>
            <span class="example-val" id="unconstrained-values"></span>
            
            <div class='my-legend'>
                <div class='legend-title'>in [kWh/m²·a] </div>
                <div class='legend-scale'>
                  <ul class='legend-labels'>
                    <li id="One"><span class="rectangle" style='background:#38943d;'></span>min-100</li>
                    <li id="Two"><span class="rectangle" style='background:#699438;'></span>100-200</li>
                    <li id="Three"><span class="rectangle" style='background:#d0d40b;'></span>200-300</li>
                    <li id="Four"><span class="rectangle" style='background:#db6f09;'></span>300-400</li>
                    <li 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>
Patrick's avatar
Patrick committed
867
            <div style='width:100%;margin-top:200px;' id="chartNordB"></div>
Patrick's avatar
Patrick committed
868
869
        <!-- <div id="slider-color"></div> -->
        </div>
Patrick's avatar
Patrick committed
870
871
872
873
874
875
        <!-- ======================================================================================================================================================================== -->
        <!-- Noise -->
        <div id="NoiseInfo" class="SideInfo" style="display:none;">
            <!-- <h1 class="sticky" id="headNoise">Lärmdaten</h1>
            <br> -->
            <h2>Historical Noise Data</h2>
Patrick's avatar
Patrick committed
876
877
            <br>
            <div id="loadingHistNoise"></div>
Patrick's avatar
Patrick committed
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
            <label for="cars">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);" name="sensor" id="sensors">
                <option value="49368">49368</option>
                <option value="53627">53627</option>
                <option value="29212">29212</option>
                <option value="compLAeq">compare LAeq</option>
                </select>
                <a href="#" id ="btn_NoiseSensShow" style="width:6em !important; height:2em !important;border-radius: 3px; padding-top: 1em;padding-bottom: 2em;" onclick="getSTAHistNoise();setNoiseWaiting();HistNoiseData('49368')">anzeigen</a>
            <!-- <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
894
895
896
897
898
            <!-- <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
899
            <a>Überblick Sensor</a>
Patrick's avatar
Patrick committed
900
            <div style='width:100%;margin-top:10px;' id="chartNoise"></div>
Patrick's avatar
Patrick committed
901
902
            <a>Genauere Sensordaten (LAeq)</a>
            <div style='width:100%;margin-top:10px;' id="chartNoiseSTA"></div>
Patrick's avatar
Patrick committed
903
        <!-- <div id="slider-color"></div> -->
Patrick's avatar
Patrick committed
904
                <a>Da der Sensor in UTC format die Zeit misst wird hier keine Unterscheidung zwischen Sommer und Winterzeit gemacht.</a>
Patrick's avatar
Patrick committed
905
906
907
        </div>
        <!-- ======================================================================================================================================================================== -->
        <!-- Navigation -->
Patrick's avatar
Patrick committed
908
909
910
        <div id="Navigation" class="SideInfo" style="display:none;">
            <h1 class="sticky" id="headNordB">Navigationsberechner</h1>
            <p class="contentOne">Bitte wählen Sie einen Start und Endpunkt für ihre Route aus.</p>
Patrick's avatar
Patrick committed
911
912
913
914
915
             <!-- <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
916
            
Patrick's avatar
Patrick committed
917
918
919
            <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
920
            <!-- <select>
Patrick's avatar
Patrick committed
921
922
                <option>mit Parkplatz</option>
                <option>ohne Parkplatz</option>
Patrick's avatar
Patrick committed
923
              </select> -->
Patrick's avatar
Patrick committed
924
925
926
            <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
927
928
929
930
            <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
931
932
933
934
935
936
937
            <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
938
        </div>
Patrick's avatar
Patrick committed
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
      </div>
      <div id="tour-button" title="Karte/Story umschalten">
          <i class="fa"></i>
      </div>
      <!-- End of: Content Tour -->
  </div>

  <div id="vcs_map_container"></div>
  
    <!--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-->

    <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
957
    <script src="sources/nouislider.js"></script>
Patrick's avatar
Patrick committed
958
    <script src="https://cdn.jsdelivr.net/npm/apexcharts"></script>
Patrick's avatar
Patrick committed
959
    <script src="templates/slider.js"></script>
Patrick's avatar
Patrick committed
960
961
    <script src="templates/UserBalloon.js"></script>
    <script src="js/navigation.js"></script>
Patrick's avatar
Patrick committed
962
    <script src="js/ServerorLocal.js"></script>
Patrick's avatar
Patrick committed
963
    <script src="js/noise.js"></script>
Patrick's avatar
Patrick committed
964
    <script src="js/STAnoise.js"></script>
Patrick's avatar
Patrick committed
965
    <link href="templates/sliders.css" rel="stylesheet">
Patrick's avatar
Patrick committed
966
    <link rel="stylesheet" href="css/menu.css">
Patrick's avatar
Patrick committed
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982

	<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>

    <!--script>
      vcs.vcm.Framework.activateLogging();
      vcs.vcm.Framework.loadConfig('config.json');
    </script-->
Patrick's avatar
Patrick committed
983
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
Patrick's avatar
Patrick committed
984
    <script src='lib/vcm_ui.js'></script>
Patrick's avatar
Patrick committed
985
    <script src="js/SimStadtApi_stud.js"></script>
986
    <script src="js/here.js"></script>
Patrick's avatar
Patrick committed
987
    <script src="js/codepoly.js"></script>
Patrick's avatar
Patrick committed
988
    <script src="templates/custom.js"></script>
Patrick's avatar
Patrick committed
989
    <script src="templates/newDevBahn.js"></script>
Patrick's avatar
Patrick committed
990
991
    <script src="templates/cus_Menu.js"></script>
    <script src="templates/cus_SimStadt.js"></script>
Patrick's avatar
Patrick committed
992
993
    
    <script src="templates/collapse.js"></script>
Patrick's avatar
Patrick committed
994
995
996
997
998
999
    <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
1000
 
Patrick's avatar
Patrick committed
1001
1002
  </body>
</html>