index.html 67.2 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
	
  </head>
  <body>
  
Patrick's avatar
Patrick committed
162
  <div id="story-frame" class="startscreen vcm-map-top loadingpointer">
Patrick's avatar
Patrick committed
163
164
165
166
167
168
169
      <!-- 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
170
              <button id="tourstart-btn" onclick="removebuildings(); Introshow();" class="buttonset one"><span class="i18n_balloon_startscreen_btn">Start</span>
Patrick's avatar
Patrick committed
171
              </button>
Patrick's avatar
Patrick committed
172
              <!-- stopStory();    getNAVcar();  -------Test back to start: getFlow();getFlowtest();getTraffic(); -->
Patrick's avatar
Patrick committed
173
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 -->
      <div id="tour-frame" style="display: none; overflow-y: scroll;">
Patrick's avatar
Patrick committed
180
          <div class="tour-top-navi"  style="z-index:99">
Patrick's avatar
Patrick committed
181
182
             <a href="#" onclick="Introshow();setpositionVAR(false);" id = "btn_intro" class=" top-nav buttonset one btn_home btn_size"><i class="fa fa-home"></i></a>
             <a href="#" onclick="addcont('main_bock2');showtourSpecific('main');setpositionVAR(false);" id = "btn_bock" class=" top-nav buttonset one btn_home btn_size"><i class="fa fa-code-fork"></i> Böckingerstraße</a>
Patrick's avatar
Patrick committed
183
184
185
             <a href="#" onclick="removebuildings();addcont('main_nordbstuff2');NordbahnhofText();setpositionVAR(false);" id = "btn_nord" class=" top-nav buttonset one btn_home btn_size"><i class="fa fa-code-fork"></i> Nordbahnhof</a>
             <!-- <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> -->
             <a href="#" onclick="removebuildings();addcont('main_bock');addcont('main_heatdem');addcont('main_nordbstuff');Expert();setpositionVAR(false);" 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
186
             <!-- style="float:right;margin-right:2em;" --> 
Patrick's avatar
Patrick committed
187
          </div>
Patrick's avatar
Patrick committed
188
189
190
191
        <!-- Expertenmodus-.--------------------------
            ======================================================================================================= -->
        <div id="Expertenmodus" class="SideInfo" style="display:none;">

Patrick's avatar
Patrick committed
192
            <h1 class="headOne" id="headOne">Toolbox der Plattform</h1>
Patrick's avatar
Patrick committed
193
            <button id="men_partizipation"  onclick="addcont('main_bock');setpositionVAR(false);showtourSpecific('menu');" type="button" class="collapsible">Partizipation</button>
Patrick's avatar
Patrick committed
194
195
196
            <div id="testscroll" class="content">
                <button onclick="topFunction()" id="btn_backtotop" title="Go to top">Top</button>

Patrick's avatar
Patrick committed
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
                <div class="SideInfo">

                    <h1  id="headOne">Böckinger Straße</h1> 
                    <!-- class="sticky" -->
                    <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
217
218
                        <p class="contentOne">@les_stuttgart</p>
                        <p class="contentOne">#ibasummerschool2019 #howtocommons #experiment</p>
Patrick's avatar
Patrick committed
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
                    <div id="bilder_bock">                  
                                <!-- Slideshow container -->

                    </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>
        
                    <button id="btn_umfrage_bock2" class="accordion">Umfrage</button>
                      <div class="sub-menu" style="background-color:white;">
Patrick's avatar
Patrick committed
241
242
                          <a class="contentOne" href="#" onclick="" >Umfrage:</a><br>
                          <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
243
                    
Patrick's avatar
Patrick committed
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
                          <p id="umfrage_bock" 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
260
261
                              <p class="contentOne">@les_stuttgart</p>
                              <p class="contentOne">#ibasummerschool2019 #howtocommons #experiment</p>
Patrick's avatar
Patrick committed
262
263
264
                      </div>
                      <div></div>
                </div>
Patrick's avatar
Patrick committed
265

Patrick's avatar
Patrick committed
266
267
268
269
270
            </div>
            <button id="men_energie"  onclick="setpositionVAR(false);" type="button" class="collapsible">Energie</button>
            <div class="content">

                <button id="men_energie"  onclick="EnergiekonzeptFunction('nothing');" type="button" class="collapsible">Energiekonzept</button>
Patrick's avatar
Patrick committed
271
                <div class="content subcontent">
Patrick's avatar
Patrick committed
272
                    <h1 class="headOne" id="headOne">Energie Projekt Stöckach</h1>
Patrick's avatar
Patrick committed
273
                    
Patrick's avatar
Patrick committed
274
                    <p class="contentOne">In dieser Studie wurden untersucht, wie das nachhaltigste und kostengünstigste Design eines Energiesystems für das" zukünftige" EnBW-Areal aussehen könnte. Mit Hilfe eines 3D Modells (CityGML) und weiteren Tools wurde der Gesamtbedarf an Strom, Wärme und Warmwasser berechnet und die Potenziale verschiedener Technologien wie Photovoltaik, Wärmepumpen oder Batterie- und Wärmespeicher untersucht. </p>
Patrick's avatar
Patrick committed
275
        
Patrick's avatar
Patrick committed
276
                    <button id="energydemand"  onclick="highlightFeatures('energydemand')" type="button" class="collapsible">Energiebedarf</button>
Patrick's avatar
Patrick committed
277
                    <div class="content subcontent">
Patrick's avatar
Patrick committed
278
                        <p class="contentOne">Der jährliche Energiebedarf für Strom, Heizung und Warmwasser wird für das EnBW-Areal auf 2,88 GWh, 1,57 GWh bzw. 1,77 GWh geschätzt. </p>
Patrick's avatar
Patrick committed
279
280
281
282
283
284
285
                        
                        <div class="slideshow-container">
        
                            <!-- Full-width images with number and caption text -->
                                <div class="mySlides2 fade">
                                <div class="numbertext">1 / 4</div>
                                <img src="images/content/contentstoeckach/img1.jpg" style="width:100%">
Patrick's avatar
Patrick committed
286
                                <div class="text">Der geschätzte stündliche Wärmeenergiebedarf (Einheit: kW)</div>
Patrick's avatar
Patrick committed
287
288
289
290
291
                                </div>
                            
                                <div class="mySlides2 fade">
                                <div class="numbertext">2 / 4</div>
                                <img src="images/content/contentstoeckach/img2.jpg" style="width:100%">
Patrick's avatar
Patrick committed
292
                                <div class="text">Der geschätzte stündliche Energiebedarf für die Warmwasserbereitung (Einheit: kW)</div>
Patrick's avatar
Patrick committed
293
294
295
296
297
                                </div>
                            
                                <div class="mySlides2 fade">
                                <div class="numbertext">3 / 4</div>
                                <img src="images/content/contentstoeckach/img3.jpg" style="width:100%">
Patrick's avatar
Patrick committed
298
299
                                <div class="text">
                                    Elektrizitätsbedarf für Nicht-Wohnräume (Einheit: kW)</div>
Patrick's avatar
Patrick committed
300
301
302
303
304
                                </div>
                
                                <div class="mySlides2 fade">
                                <div class="numbertext">4 / 4</div>
                                <img src="images/content/contentstoeckach/img4.jpg" style="width:100%">
Patrick's avatar
Patrick committed
305
                                <div class="text">Strombedarf für Wohnen und Räume (Einheit: kW)</div>
Patrick's avatar
Patrick committed
306
307
308
309
310
311
312
313
314
315
                                </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
316
                            <!-- <div style="text-align:center">
Patrick's avatar
Patrick committed
317
318
319
320
321
                                <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
322
                            </div> -->
Patrick's avatar
Patrick committed
323
                    
Patrick's avatar
Patrick committed
324
                    </div>
Patrick's avatar
Patrick committed
325
                    <button id="solarpotential" onclick="highlightFeatures('solarpotential')" type="button" class="collapsible">Solar PV Potenzial</button>
Patrick's avatar
Patrick committed
326
                    <div class="content subcontent">
Patrick's avatar
Patrick committed
327
                        <p class="contentOne">Die Studie zeigt, dass das EnBW-Areal ein realisierbares Potenzial zur Nutzung von ca. 30-35 % der Dachfläche zur lokalen Stromerzeugung aus Solar-PV hat. Infolgedessen können die energieverbrauchsbedingten CO2-Emissionen im Vergleich zum in dieser Studie bewerteten Basisszenario um ca. 30 % reduziert werden, bei 8 % geringeren Kosten. PV-Abschaltungen aufgrund von Überproduktion und Einspeisebeschränkungen könnten den Anteil der integrierten PV-Erzeugung deutlich über 35 % Durchdringungsgrad senken. Es gibt sowohl technologische als auch marktbasierte Strategien zur optimalen Integration der lokalen PV-Erzeugung. Solche Konzepte müssen jedoch weiter detailliert analysiert werden.</p>
Patrick's avatar
Patrick committed
328
                    </div>
Patrick's avatar
Patrick committed
329
                    <button id="heatpump" onclick="highlightFeatures('heatpump')" type="button" class="collapsible">Power-to-Heat über Wärmepumpe</button>
Patrick's avatar
Patrick committed
330
                    <div class="content subcontent">
Patrick's avatar
Patrick committed
331
332
333
                        <p class="contentOne">Hocheffiziente Wärmepumpen können sowohl die CO2-Emissionen als auch den Primärenergieeinsatz reduzieren. Ein direkter Vergleich zwischen Wärmepumpen und Fernwärme ist schwierig, da die Emissionen eines Fernheizwerks stark von seinem Brennstoffmix abhängen. In Stuttgart ist es üblich, einen Brennstoffmix aus Kohle, Gas und Siedlungsabfällen zur Wärmeerzeugung einzusetzen. <br>
                            Es ist wirtschaftlich sinnvoller, den Wärmepumpenbetrieb so zu planen, dass er den Grundlast-Heizungs- und Warmwasserbedarf deckt. Das erhöht die Auslastung der Wärmepumpe und damit die Rendite der Investition. <br>
                            Thermische Speicher verbessern die Auslastung der Wärmepumpenkapazität. Durch die Flexibilität der thermischen Speicher zur Deckung des Spitzenbedarfs können die Wärmepumpen für den Grundlastbetrieb leicht unterdimensioniert werden. <br>
Patrick's avatar
Patrick committed
334
335
336
337
338
339
340
                            </p>
                            <div class="slideshow-container">
        
                                <!-- Full-width images with number and caption text -->
                                    <!-- <div class="mySlides"> -->
                                    
                                    <img src="images/content/contentstoeckach/img5.jpg" style="width:100%; margin-bottom: 5em;">
Patrick's avatar
Patrick committed
341
                                    <div class="text" style="margin-top:0em;">Die Leistung der Wärmepumpe(n) wird zur Deckung des Grundlastwärmebedarfs zugewiesen. Die Talpunkte des Wärmepumpenbetriebs werden durch thermische Speicherladevorgänge aufgefüllt, um die Auslastung der Wärmepumpe zu verbessern.</div>
Patrick's avatar
Patrick committed
342
343
344
                                    <!-- </div> -->
                                </div>
                    </div>
Patrick's avatar
Patrick committed
345
                    <button id="thermalstorage" onclick="highlightFeatures('thermalstorage')" type="button" class="collapsible">Thermische Speicherung</button>
Patrick's avatar
Patrick committed
346
                    <div class="content subcontent">
Patrick's avatar
Patrick committed
347
                        <p class="contentOne">Thermische Speicher verbessern die Ausnutzung der Wärmepumpenleistung. Durch die Flexibilität der thermischen Speicher zur Deckung des Spitzenbedarfs können die Wärmepumpen für den Grundlastbetrieb leicht unterdimensioniert werden.</p>
Patrick's avatar
Patrick committed
348
                    </div>
Patrick's avatar
Patrick committed
349
                    <button id="batterystorage" onclick="highlightFeatures('batterystorage')" type="button" class="collapsible">Batteriespeicher </button>
Patrick's avatar
Patrick committed
350
                    <div class="content subcontent">
Patrick's avatar
Patrick committed
351
                        <p class="contentOne">Die Einführung von Batteriespeichern für Wohngebäude in Deutschland wird durch das Ziel der Eigenverbrauchsoptimierung angetrieben. Bei niedriger PV-Durchdringung kann der erzeugte PV-Strom direkt verbraucht werden, daher ist der Nutzen von Batteriesystemen geringer. Bei höheren PV-Durchdringungsgraden und wenn innovative Marktdesigns die Teilnahme von Batteriespeichersystemen ermöglichen, um andere Dienstleistungen für das Stromnetz zu erbringen, kann der Wert von Batteriespeichersystemen jedoch schnell steigen. </p>
Patrick's avatar
Patrick committed
352
                    </div>
Patrick's avatar
Patrick committed
353
                    <button id="localEnergy" onclick="highlightFeatures('energydemand')" type="button" class="collapsible">Ist die lokale Energiewende wirtschaftlich wettbewerbsfähig? </button>
Patrick's avatar
Patrick committed
354
                    <div class="content subcontent">
Patrick's avatar
Patrick committed
355
356
                        <p class="contentOne">Die Antwort auf diese Frage hat zwei Ebenen. Die erste Ebene ist die aggregierte Machbarkeit auf Systemebene, die wir aus unserer Studie ablesen können. Die zweite Ebene ist die Verteilung des Nutzens und die wirtschaftliche Machbarkeit auf der Ebene des einzelnen Prosumenten, was eine viel tiefere Analyse erfordert. <br>
                            Wir sehen auf der Systemebene: Die lokale Energiewende hat eine positive Perspektive. Einige der Szenarien, die wir untersucht haben, haben ihre Gesamtinvestition innerhalb der ersten 8 Jahre wieder hereingeholt. 
Patrick's avatar
Patrick committed
357
358
359
360
361
362
363
                             <br></p>
                             <div class="slideshow-container">
        
                                <!-- Full-width images with number and caption text -->
                                    <!-- <div class="mySlides"> -->
                                    
                                    <img src="images/content/contentstoeckach/img6.jpg" style="width:100%; margin-bottom: 4em;">
Patrick's avatar
Patrick committed
364
                                    <div class="text" style="margin-top:0em;">Vergleich der Investitionsrendite in jedem Szenario bis zum Breakeven-Punkt im Vergleich zum Basisszenario (Einheit: EUR)</div>
Patrick's avatar
Patrick committed
365
366
367
368
369
                                    <!-- </div> -->
                                </div>
                    </div>
                </div>
                <button id="men_energie"  onclick="nordbahnview();" type="button" class="collapsible">Wärmebedarf</button>
Patrick's avatar
Patrick committed
370
                <div class="content subcontent">
Patrick's avatar
Patrick committed
371

Patrick's avatar
Patrick committed
372
373
374
                        <h1 class="headOne" 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.
Patrick's avatar
Patrick committed
375
376
377
378
379
                            Der Energie Nutzungs Aspekt kann nur bedingt herangezogen werden, da die Gebäude sehr unterschiedliche Nutzungen haben.<br>
                            <strong>Neu Button:</strong> Zukünftige Gebäude basiert auf dem internationalen <a href="https://www.asp-stuttgart.de/portfolio-items/internationaler-wettbewerb-rosenstein-stuttgart/">Wettbewerb Rosenstein</a><br>
                            <strong>Ist Zustand Button:</strong> Aktuelle Gebäude<br>
                            <strong>Hightlight Button:</strong> zeigt das Stadtquartier Nordbahnhof<br>
                            <strong>Wärmebedarf Button:</strong> zeigt den Wärmebedarf der Gebäude
Patrick's avatar
Patrick committed
380
381
                        </p>
                        <div id="nordbplanung">
Patrick's avatar
Patrick committed
382

Patrick's avatar
Patrick committed
383
384
                        </div>
                        <br>
Patrick's avatar
Patrick committed
385
386
                        <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
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
                        <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 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
404

Patrick's avatar
Patrick committed
405
                        </div>
Patrick's avatar
Patrick committed
406
                        <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
407
408
409
410
                    <!-- <div id="slider-color"></div> -->
                </div>
          
            </div>
Patrick's avatar
Patrick committed
411
            <button id="men_acoustic" onclick="akkustikview()" type="button" class="collapsible">Akkustik</button>
Patrick's avatar
Patrick committed
412
            <div class="content">
Patrick's avatar
Patrick committed
413

Patrick's avatar
Patrick committed
414
                    <a class="contentOne"><strong>Lärmkarten:</strong></a><br>
Patrick's avatar
Patrick committed
415
                    <a class="contentOne" >Straßeverkehr</a><br>
Patrick's avatar
Patrick committed
416
417
418
                    <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
419
   
Patrick's avatar
Patrick committed
420
                      <a class="contentOne" >Bahnverkehr</a><br>
Patrick's avatar
Patrick committed
421
422
423
                      <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
424
                      <br><a class="contentOne" >Flugverkehr</a><br>
Patrick's avatar
Patrick committed
425
426
427
                      <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
428
                      <br><a  class="contentOne" >Kombiniert</a><br>
Patrick's avatar
Patrick committed
429
430
431
                      <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>
                      <button id ="btn_AllOff" onclick="noisemap('offAll');buildingSeeThroughfalse(true);buildingSeeThroughfalse(false);removebuildings();">Off</button>
Patrick's avatar
Patrick committed
432
                      
Patrick's avatar
Patrick committed
433
                      <br><br>
Patrick's avatar
Patrick committed
434
                    <a class="contentOne"><strong>Noise Sensors (Live):</strong></a><br>
Patrick's avatar
Patrick committed
435
436
                    <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
437
438
                    <br>
                      
Patrick's avatar
Patrick committed
439
                    <a class="contentOne"><strong>Noise Sensors (historisch):</strong></a><br>
Patrick's avatar
Patrick committed
440
441
                    <button id ="btn_NoiseSensOpen" onclick="NoiseText(false);">Open</button><br><br>
                    <br>
Patrick's avatar
Patrick committed
442
                    <h2>Lärmsensoren aus dem Luftdaten.info Projekt</h2><br>
Patrick's avatar
Patrick committed
443
444
445
446
447
448
449
450
451
                    <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">
                    <option value="49368">49368</option>
                    <option value="53627">53627</option>
                    <option value="29212">29212</option>
                    <option value="compLAeq">compare LAeq</option>
                    </select>
                    <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
452

Patrick's avatar
Patrick committed
453
454
                    <div id="unconstrained"></div><br>
                    <span class="example-val" id="unconstrained-values"></span>
Patrick's avatar
Patrick committed
455
                    <a class="contentOne">Überblick Sensor</a>
Patrick's avatar
Patrick committed
456
                    <div id="chartNoiseExp"><div style='width:100%;margin-top:10px;' id="chartNoise"></div></div>
Patrick's avatar
Patrick committed
457
                    <a class="contentOne">Genauere Sensordaten (LAeq)</a>
Patrick's avatar
Patrick committed
458
459
                    <div style='width:100%;margin-top:10px;' id="chartNoiseSTA"></div>
                <!-- <div id="slider-color"></div> -->
Patrick's avatar
Patrick committed
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
                        <p class="contentOne">Da der Sensor in UTC format die Zeit misst wird hier keine Unterscheidung zwischen Sommer und Winterzeit gemacht.</p><br><br>
                        <div class='my-legend' style="width:100%">
                            <div class='legend-title'>in dB </div>
                            <div class='legend-scale'>
                              <ul class='legend-labels'>
                                <li class="OneN" id="OneN"><span class="rectangle" style='background:#AF8A54;'></span>>50 dB</li>
                                <li class="TwoN" id="TwoN"><span class="rectangle" style='background:#FA842B;'></span>>55 dB</li>
                                <li class="ThreeN" id="ThreeN"><span class="rectangle" style='background:#C1121C;'></span>>60 dB</li>
                                <li class="FourN" id="FourN"><span class="rectangle" style='background:#8D1D2C;'></span>>65 dB</li>
                                <li class="FiveN" id="FiveN"><span class="rectangle" style='background:#992572;'></span>>70 dB</li>
                                <li class="sixN" id="sixN"><span class="rectangle" style='background:#3481B8;'></span>>75 dB</li>
                                <li class="sevenN" id="sevenN"><span class="rectangle" style='background:#1A5784;'></span>>80 dB</li>
                              </ul>
                            </div>
                            <!-- <div class='legend-source'>Source: <a href="#link to source">Name of source</a></div> -->
                        </div><br><br>
Patrick's avatar
Patrick committed
476
    
Patrick's avatar
Patrick committed
477

Patrick's avatar
Patrick committed
478
            </div>
Patrick's avatar
Patrick committed
479
            <button id="men_mobility" onclick="MobilityView();setpositionVAR(true);getPosition();" type="button" class="collapsible">Mobilität</button>
Patrick's avatar
Patrick committed
480
            <div class="content">
Patrick's avatar
Patrick committed
481
                <a class="contentOne" onclick="" >Baustellen</a><br>
Patrick's avatar
Patrick committed
482
483
                <button class = "btn_on" onclick="getAccidents('CONSTRUCTION')">On</button>
                <button class = "btn_off" onclick="deleteAccidents('CONSTRUCTION')">Off</button><br>
Patrick's avatar
Patrick committed
484

Patrick's avatar
Patrick committed
485
                <a  class="contentOne" onclick="" >Straßenschließungen</a><br>
Patrick's avatar
Patrick committed
486
487
                <button class = "btn_on" onclick="getAccidents('ROAD_CLOSURE')">On</button>
                <button class = "btn_off" onclick="deleteAccidents('ROAD_CLOSURE')">Off</button><br>
Patrick's avatar
Patrick committed
488

Patrick's avatar
Patrick committed
489
                <a  class="contentOne" >Verkehrsfluss</a><br>
Patrick's avatar
Patrick committed
490
491
                <button class = "btn_on" onclick="drawFlow()">On</button>
                <button class = "btn_off" onclick="deleteFlow()">Off</button><br>
Patrick's avatar
Patrick committed
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515

                
                <h1 id="headNordB">Navigationsrechner</h1>
                <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>
                <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>
                <button class="btn_standard" style="width:8em;height:2em;" onclick="deletenav();">Route löschen</button><br><br>
                <p class="contentOne">Duration with Car</p>
                <input type="text" id="Routeduration" name="Duration" disabled style="border-style: none none none solid;"><br>
                <p class="contentOne">Duration with Public</p>
                <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
516
            </div>
Patrick's avatar
Patrick committed
517
            <!-- <button id="men_navigation" onclick="setpositionVAR(true);getPosition();" type="button" class="collapsible">Navigation</button>
Patrick's avatar
Patrick committed
518
            <div class="content">
Patrick's avatar
Patrick committed
519
                <h1 id="headNordB">Navigationsrechner</h1>
Patrick's avatar
Patrick committed
520
521
522
523
524
525
526
527
528
529
530
                <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
531
                <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
532
533
                <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
534
                <input type="text" id="Routeduration" name="Duration" disabled style="border-style: none none none solid;"><br>
Patrick's avatar
Patrick committed
535
                <p class="contentOne">Duration with Public</p>
Patrick's avatar
Patrick committed
536
                <input type="text" id="RoutedurationPub" name="Duration" disabled style="border-style: none none none solid;">
Patrick's avatar
Patrick committed
537
538
539
540
541
542
543
                <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
544
            </div> -->
Patrick's avatar
Patrick committed
545
546
547
548
549
550

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

Patrick's avatar
Patrick committed
551
            <h1 class="sticky headOne" id="headOne">Intro zu unserer Plattform</h1>
Patrick's avatar
Patrick committed
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
            
            <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
569
570
                <p class="contentOne">@les_stuttgart</p>
                <p class="contentOne">#ibasummerschool2019 #howtocommons #experiment</p>
Patrick's avatar
Patrick committed
571
572
                <!--Projekts-->
                <h2>Unsere Projekte</h2>
Patrick's avatar
Patrick committed
573
                <div class="row3">
Patrick's avatar
Patrick committed
574
                    <div style="cursor:pointer;" onclick="addcont('main_bock2');showtourSpecific('main');setpositionVAR(false);"class="column3">
Patrick's avatar
Patrick committed
575
                      <h3 class="top-left">Böckinger Straße</h3>
Patrick's avatar
Patrick committed
576
                      <img class="imagecol3" src="images/projects/bockinger1.png" alt="Snow" style="width:100%">
Patrick's avatar
Patrick committed
577
                    </div>
Patrick's avatar
Patrick committed
578
                    <div style="cursor:pointer;" onclick="removebuildings();addcont('main_heatdem2');addcont('main_nordbstuff2');NordbahnhofText();setpositionVAR(false);" class="column3">
Patrick's avatar
Patrick committed
579
                        <h3 class="top-left">Nordbahnhof</h3>
Patrick's avatar
Patrick committed
580
                      <img class="imagecol3" src="images/projects/nordbahn1.png" alt="Forest" style="width:100%">
Patrick's avatar
Patrick committed
581
                    </div>
Patrick's avatar
Patrick committed
582
                    <!-- <div style="cursor:pointer;" onclick="NoiseText(true);setpositionVAR(false);" class="column3">
Patrick's avatar
Patrick committed
583
                      <h3 class="top-left">Akkustik Projekt</h3>
Patrick's avatar
Patrick committed
584
                      <img class="imagecol3" src="images/projects/noise1.png" alt="Mountains" style="width:100%">
Patrick's avatar
Patrick committed
585
                    </div> -->
Patrick's avatar
Patrick committed
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
                  </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
605
606
607
608
          <!-- Projekt 1
            ======================================================================================================= -->
        <div id="projektOne" class="SideInfo" style="display:none;">

Patrick's avatar
Patrick committed
609
            <h1 class="headOne" id="headOne">Böckinger Straße</h1> 
Patrick's avatar
Patrick committed
610
            <!-- class="sticky" -->
Patrick's avatar
Patrick committed
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
            <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
627
628
                <p class="contentOne">@les_stuttgart</p>
                <p class="contentOne">#ibasummerschool2019 #howtocommons #experiment</p>
Patrick's avatar
Patrick committed
629
        
Patrick's avatar
Patrick committed
630
            <div id="bilder_bock2">
Patrick's avatar
Patrick committed
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
                        <!-- Slideshow container -->

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

Patrick's avatar
Patrick committed
649
650
            <button id="btn_umfrage_bock" class="accordion">Umfrage</button>
              <div class="sub-menu" style="background-color:white;">
Patrick's avatar
Patrick committed
651
                  <a class="contentOne" href="#" onclick="" >Umfrage:</a><br>
Patrick's avatar
Patrick committed
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
                  <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 id="umfrage_bock" 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
670
671
                      <p class="contentOne">@les_stuttgart</p>
                      <p class="contentOne">#ibasummerschool2019 #howtocommons #experiment</p>
Patrick's avatar
Patrick committed
672
673
              </div>
              <div></div>
Patrick's avatar
Patrick committed
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
        </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
697
698
                <p class="contentOne">@les_stuttgart</p>
                <p class="contentOne">#ibasummerschool2019 #howtocommons #experiment</p>
Patrick's avatar
Patrick committed
699
700
701
702
703
        


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

Patrick's avatar
Patrick committed
707
            <h1 class="sticky headOne" id="headOne">Energy Project Stöckach</h1>
Patrick's avatar
Patrick committed
708
709
710
711
712
713
            
            <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
714

Patrick's avatar
Patrick committed
715
            <button id="energydemand"  onclick="highlightFeatures('energydemand')" type="button" class="collapsible">Energy demand</button>
Patrick's avatar
Patrick committed
716
            <div class="content">
Patrick's avatar
Patrick committed
717
                <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
718
719
720
721
722
723
                
                <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
724
                        <img src="images/content/contentstoeckach/img1.jpg" style="width:100%">
Patrick's avatar
Patrick committed
725
726
727
728
729
                        <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
730
                        <img src="images/content/contentstoeckach/img2.jpg" style="width:100%">
Patrick's avatar
Patrick committed
731
732
733
734
735
                        <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
736
                        <img src="images/content/contentstoeckach/img3.jpg" style="width:100%">
Patrick's avatar
Patrick committed
737
738
739
740
741
                        <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
742
                        <img src="images/content/contentstoeckach/img4.jpg" style="width:100%">
Patrick's avatar
Patrick committed
743
744
745
746
747
748
749
750
751
752
753
                        <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
754
                    <!-- <div style="text-align:center">
Patrick's avatar
Patrick committed
755
756
757
758
759
                        <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
760
                    </div> -->
Patrick's avatar
Patrick committed
761
            
Patrick's avatar
Patrick committed
762
            </div>
Patrick's avatar
Patrick committed
763
            <button id="solarpotential" onclick="highlightFeatures('solarpotential')" type="button" class="collapsible">Solar PV potential</button>
Patrick's avatar
Patrick committed
764
            <div class="content">
Patrick's avatar
Patrick committed
765
                <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
766
            </div>
Patrick's avatar
Patrick committed
767
            <button id="heatpump" onclick="highlightFeatures('heatpump')" type="button" class="collapsible">Power-to-heat via heat pump</button>
Patrick's avatar
Patrick committed
768
            <div class="content">
Patrick's avatar
Patrick committed
769
                <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
770
771
772
773
774
775
776
777
                    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
778
                            <img src="images/content/contentstoeckach/img5.jpg" style="width:100%; margin-bottom: 5em;">
Patrick's avatar
Patrick committed
779
780
781
                            <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
782
            </div>
Patrick's avatar
Patrick committed
783
            <button id="thermalstorage" onclick="highlightFeatures('thermalstorage')" type="button" class="collapsible">Thermal storage </button>
Patrick's avatar
Patrick committed
784
            <div class="content">
Patrick's avatar
Patrick committed
785
                <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
786
            </div>
Patrick's avatar
Patrick committed
787
            <button id="batterystorage" onclick="highlightFeatures('batterystorage')" type="button" class="collapsible">Battery storage  </button>
Patrick's avatar
Patrick committed
788
            <div class="content">
Patrick's avatar
Patrick committed
789
                <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
790
            </div>
Patrick's avatar
Patrick committed
791
792
            <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
793
                <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
794
795
796
797
798
799
800
                    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
801
                            <img src="images/content/contentstoeckach/img6.jpg" style="width:100%; margin-bottom: 4em;">
Patrick's avatar
Patrick committed
802
803
804
805
                            <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
806
        </div>
Patrick's avatar
Patrick committed
807
808
809
        <!-- ======================================================================================================================================================================== -->
        <!-- Nordbahnhof -->
        <div id="NordbahnhofInfo" class="SideInfo" style="display:none;">
Patrick's avatar
Patrick committed
810
            <h1 class="headOne" id="headNordB">Nordbahnhof</h1>
Patrick's avatar
Patrick committed
811
812
            
            <p class="contentOne">Im Nordbahnhof Areal ist ein Neubau geplant. Dieser kann in verschiedenen Aspekten mit den bestehenden Bauten verglichen werden.
Patrick's avatar
Patrick committed
813
814
815
816
817
                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.<br><br>
            <strong>Neu Button:</strong> Zukünftige Gebäude basiert auf dem internationalen <a href="https://www.asp-stuttgart.de/portfolio-items/internationaler-wettbewerb-rosenstein-stuttgart/">Wettbewerb Rosenstein</a><br>
                            <strong>Ist Zustand Button:</strong> Aktuelle Gebäude<br>
                        </p>
            
Patrick's avatar
Patrick committed
818
819
820
821
            <div id="nordbplanung2">


            </div>
Patrick's avatar
Patrick committed
822
            <br>
Patrick's avatar
Patrick committed
823

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

	<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
948
    <script src='js/backtotop.js'></script>
Patrick's avatar
Patrick committed
949
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
Patrick's avatar
Patrick committed
950
    <script src='lib/vcm_ui.js'></script>
Patrick's avatar
Patrick committed
951
    <script src="js/SimStadtApi_stud.js"></script>
952
    <script src="js/here.js"></script>
Patrick's avatar
Patrick committed
953
    <script src="js/codepoly.js"></script>
Patrick's avatar
Patrick committed
954
    <script src="templates/custom.js"></script>
Patrick's avatar
Patrick committed
955
    <script src="templates/newDevBahn.js"></script>
Patrick's avatar
Patrick committed
956
957
    <script src="templates/cus_Menu.js"></script>
    <script src="templates/cus_SimStadt.js"></script>
Patrick's avatar
Patrick committed
958
959
    
    <script src="templates/collapse.js"></script>
Patrick's avatar
Patrick committed
960
961
962
963
964
965
    <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
966
 
Patrick's avatar
Patrick committed
967
968
  </body>
</html>