index.html 47.6 KB
Newer Older
Patrick's avatar
Patrick committed
1
2
3
4
5
6
<!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">
Patrick's avatar
Patrick committed
7
    <title>Weilimdorf Beteiligung</title>
Patrick's avatar
Patrick committed
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
    <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
    
Patrick's avatar
Patrick committed
156
157
158
159
160
161
	
  </head>
  <body>
  
  <header class="tour-header vcm-header-height vcm-header-base vcm-border-splash">
      <div id="header">
Patrick's avatar
Patrick committed
162
          <div class="logo-box vcm_copyright_headerLogoBox" style="width:40rem!important;">
Patrick's avatar
Patrick committed
163
              <div class="company-logo"></div>
Patrick's avatar
Patrick committed
164
              <div class="company-logo2"></div>
Patrick's avatar
Patrick committed
165
166
          </div>
          <div class="title-box vcm_copyright_headerTitle"></div>
167
                    <!-- Drop down menu starts here -->
Patrick's avatar
Patrick committed
168
                    <div class="dropdown hidden" id="dropdownMain" style="float: right; right:20px">
Patrick's avatar
Patrick committed
169
                        <i class="fa fa-bars" id="dropdownMenu" style="font-size:1.8rem;color: white !important; margin-top:1rem;"></i>
170
                            <div class="dropdown-content" id="dropdownContent">
Patrick's avatar
Patrick committed
171
                                    <button class="accordion">Kartenauswahl</button>
172
                                    <div class="sub-menu">
Patrick's avatar
Patrick committed
173
174
175
176
177
178
179
180
181
182
183
                                        <!-- <a href="#" onclick="">Luftbilder</a>   -->
                                        <div class='box-4'>
                                            <p id="selectedMap" style="text-align: center; margin-top:0px;color:#000000;">Orthofoto</p><div class='switch2'>
                                            <input type='checkbox' name='toggle' id='SLayerChange' onclick='switchLayer(true);'>
                                            
                                            <label for='toggle'><i></i></label>
                                            <span></span>
                                            
                                            </div>
                                            </div>
      
Patrick's avatar
Patrick committed
184
185
186
187
188
                                    </div>
                                    <button class="accordion">Gebiete</button>
                                    <div class="sub-menu">
                                        <!-- <a href="#" onclick="">Luftbilder</a>   -->
                                        <div class='box-4'>
189
190
                                            <p id="selectedArea" style="text-align: center; margin-top:0px;color:#000000;">An</p><div class='switch2'>
                                            <input type='checkbox' name='toggle' id='ALayerChange' onclick='switchArea(true);' checked>
Patrick's avatar
Patrick committed
191
192
193
194
195
196
197
                                            
                                            <label for='toggle'><i></i></label>
                                            <span></span>
                                            
                                            </div>
                                            </div>
      
Patrick's avatar
Patrick committed
198
199
200
201
202
                                    </div>
                                    <button class="accordion">Gelände</button>
                                    <div class="sub-menu">
                                        <!-- <a href="#" onclick="">Luftbilder</a>   -->
                                        <div class='box-4'>
203
204
                                            <p id="selectedTerrain" style="text-align: center; margin-top:0px;color:#000000;">An</p><div class='switch2'>
                                            <input type='checkbox' name='toggle' id='TLayerChange' onclick='switchTerrain(true);' checked>
Patrick's avatar
Patrick committed
205
206
207
208
209
210
211
                                            
                                            <label for='toggle'><i></i></label>
                                            <span></span>
                                            
                                            </div>
                                            </div>
      
Patrick's avatar
Patrick committed
212
213
214
215
216
217
218
219
220
221
222
223
224
225
                                    </div>
                                    <button class="accordion">Gebäude</button>
                                    <div class="sub-menu">
                                        <!-- <a href="#" onclick="">Luftbilder</a>   -->
                                        <div class='box-4'>
                                            <p id="selectedBuilding" style="text-align: center; margin-top:0px;color:#000000;">Einfärben</p><div class='switch2'>
                                            <input type='checkbox' name='toggle' id='BLayerChange' onclick='changeColor(true);'>
                                            
                                            <label for='toggle'><i></i></label>
                                            <span></span>
                                            
                                            </div>
                                            </div>
      
226
                                    </div>
Patrick's avatar
update    
Patrick committed
227
                                    <!-- <button class="accordion">Add Pins</button>
Patrick's avatar
Patrick committed
228
                                    <div class="sub-menu">
Patrick's avatar
update    
Patrick committed
229
                                        
Patrick's avatar
Patrick committed
230
231
                                        <a href="#" onclick="addingPin()">Adding a Pin</a>
                                        
Patrick's avatar
update    
Patrick committed
232
                             
Patrick's avatar
Patrick committed
233
                                    </div> -->
Patrick's avatar
update    
Patrick committed
234

235
236
237
                            </div>
                      </div>
                    <!-- Drop down menu ends here -->            
Patrick's avatar
Patrick committed
238
239
240
241
242
           <div class="tool-box" style="cursor:pointer"></div> 
      </div>
  </header>
  <div id="story-frame" class="startscreen vcm-map-top">
      <!-- Content Start Screen -->
243
      <div class="balloon teaser-balloon" style="overflow-y: scroll;" id="balloon-startscreen">
Patrick's avatar
Patrick committed
244
245
246
          <div class="balloon-content">
              <h1 class="balloon-title i18n_balloon_startscreen_title">
 			     <!--img src="images/Logo_SV.png"  width="150"-->
Patrick's avatar
Patrick committed
247
                 <strong>Weilimdorf Beteiligungsplattform</strong> <br>
Patrick's avatar
Patrick committed
248
              </h1>
Patrick's avatar
Patrick committed
249
250
251
252
              <br>
              <p class="contentOne">Die digitale Beteiligungsplattform für das Projekt in Weilimdorf wurde von der <a href="https://www.hft-stuttgart.de/">Hochschule für Technik Stuttgart</a> zusammen mit der <a href="https://www.steg.de/">STEG</a> entwickelt.</p><br>
              <p class="contentOne">Sie beinhaltet ein 3D-Stadtmodell sowie ein Geländemodell durch welches Sie navigieren können.</p>
              <p class="contentOne">Zusätzlich wurden verschiedene Inhalte kuriert und Umfragen erstellt welche Sie auf der Seite beantworten können um sich zu informieren und Ihre Meinung abzugeben.</p><br>
Patrick's avatar
Patrick committed
253
              <img src="./icons/HFT_M4_LAB_rgb.svg" alt="M4_Lab_Logo" width="400">
Patrick's avatar
Patrick committed
254
              <img src="./icons/InnHoch.svg" alt="InnHochschule" width="600">
Patrick's avatar
Patrick committed
255
256
              <details>
                <summary class="contentOne">Anleitung zur Benutzung der Plattform</summary>
257
258
                <p class="contentOne">Hier kommt der ausführliche Inhalt zur Anleitung</p>
                <img style='padding-top:10px' id="erklImage" src='images/erklaerung.png' alt='Simply Easy Learning' usemap="#image-map">
Patrick's avatar
Patrick committed
259
                
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
                <map name="image-map">
                    <area  alt="ErklaerungOne" title="ErklaerungOne" onclick="erklOne()" coords="1638,121,52" shape="circle">
                    <area  alt="ErklaerungTwo" title="ErklaerungTwo" onclick="erklTwo()" coords="1636,358,48" shape="circle">
                    <area  alt="ErklaerungThree" title="ErklaerungThree" onclick="erklThree()" coords="1746,858,50" shape="circle">
                    <area  alt="ErklaerungFour" title="ErklaerungFour" onclick="erklFour()" coords="388,732,52" shape="circle">
                </map>
                <details id="InhaltOne">
                    <summary class="contentOne">Punkt <img src='images/Intro/Bild1.png' style="width:20px;margin-bottom:-10px;">: Menü</summary>
                    <p class="contentOne">In diesem Menü können Sie verschiedene sogenannte Layer auswählen und damit verschiedene Inhalte wie das Gelände, die einzelnen Gebiete oder eine schematische Karte anzuzeigen. Damit können Sie ihre Anzeige individuell anpassen.</p>
                </details>
                <details id="InhaltTwo">
                    <summary class="contentOne">Punkt <img src='images/Intro/Bild2.png' style="width:20px;margin-bottom:-10px;">: Navigation</summary>
                    <p class="contentOne">Die Navigation bietet verschiedene Möglichkeiten. Die Navigation kann genutzt werden um sich auf der Karte zu bewegen und dient als Alternative zu der Navigation mit den Maustasten. <br>
                        Mit den <b>Pfeilen</b> kann man sich in die entsprechende Richtung bewegen. Das <b>Auge</b> lässt Sie um den momentanen Bildschirmmittelpunkt rotieren.
                        Die beiden Icons der <b>Grids</b> verringern bzw. vergrößern den Neigungswinkel. <b>Plus</b>Plus und <b>Minus</b> dienen zum Zoom. Der schräge Pfeil lässt Sie zu ihrem aktuellen Physischen Standort springen und das Icon des Männchens bringt Sie in einen Fußgänger Modus indem sie sich ähnliches wie in einem Spiele mit Pfeiltasten fortbewegen können. 
                    </p>
                </details>
                <details id="InhaltThree">
                    <summary class="contentOne">Punkt <img src='images/Intro/Bild3.png' style="width:20px;margin-bottom:-10px;">: Funktionalitäten</summary>
                    <p class="contentOne">Die Funktionalitäten welche auf der rechten Seite angzeigt werden erlauben es Ihnen die Ansicht zu verändern. Sie können mit dem Icon des Gebäudes auf die Ausgangsansicht zurückspringen. Über das 3D Icon lässt sich zwischen der 2D und 3D Karte umschalten. Das Kartensymbol erlaubt die Anzeige einer kleinen Übersichtskarte die die Navigation erleichtern soll.</p>
                </details>
                <details id="InhaltFour">
                    <summary class="contentOne">Punkt <img src='images/Intro/Bild4.png' style="width:20px;margin-bottom:-10px;">: Inhalt</summary>
                    <p class="contentOne">Die Inhalte in der Karte welche für das Beteiligungsverfahren relevant sind werden über verschiedene Icons in der Karte verortet.</p>
                </details>
Patrick's avatar
Patrick committed
285
              </details>
286
              <button id="tourstart-btn" onclick="stopStory();" class="buttonset one"><span class="i18n_balloon_startscreen_btn">Start</span>
Patrick's avatar
Patrick committed
287
288
289
290
291
292
293
294
              </button>
          </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
295
          <div class="tour-top-navi"  style="z-index:99">
Patrick's avatar
Patrick committed
296
297
             <a href="#" onclick="goHome()" id = "testing" class="top-nav buttonset one"><i class="fa fa-home"></i>Home</a>
             <!-- <a href="#energiefahrrad" class="top-nav buttonset one"><i class="fa fa-bicycle"></i> Projekt 2</a>
Patrick's avatar
Patrick committed
298
             <a href="#wea" class="top-nav buttonset one"><i class="fa fa-bolt"></i> Projekt 3</a>
Patrick's avatar
Patrick committed
299
             <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
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
	<!-- 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>
          <!-- 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
341
                <div class="mySlides1 fade">
Patrick's avatar
Patrick committed
342
                <div class="numbertext">1 / 17</div>
Patrick's avatar
Patrick committed
343
                <img src="images/content/contentboeckingerstrasse/grafik_aufgabenstellung.jpg" style="width:100%">
Patrick's avatar
Patrick committed
344
345
346
                <div class="text">Grafik</div>
                </div>
            
Patrick's avatar
Patrick committed
347
                <div class="mySlides1 fade">
Patrick's avatar
Patrick committed
348
                <div class="numbertext">2 / 17</div>
Patrick's avatar
Patrick committed
349
                <img src="images/content/contentboeckingerstrasse/boeckinger_strasse.jpg" style="width:100%">
Patrick's avatar
Patrick committed
350
351
352
                <div class="text">Böckinger Straße</div>
                </div>
            
Patrick's avatar
Patrick committed
353
                <div class="mySlides1 fade">
Patrick's avatar
Patrick committed
354
                <div class="numbertext">3 / 17</div>
Patrick's avatar
Patrick committed
355
                <img src="images/content/contentboeckingerstrasse/holzwerkstatt_igh.jpg" style="width:100%">
Patrick's avatar
Patrick committed
356
357
358
                <div class="text">Holzwerkstatt</div>
                </div>

Patrick's avatar
Patrick committed
359
                <div class="mySlides1 fade">
Patrick's avatar
Patrick committed
360
                <div class="numbertext">4 / 17</div>
Patrick's avatar
Patrick committed
361
                <img src="images/content/contentboeckingerstrasse/infoabend_garten_igh.jpg" style="width:100%">
Patrick's avatar
Patrick committed
362
363
364
                <div class="text">Infoabend im Garten</div>
                </div>

Patrick's avatar
Patrick committed
365
                <div class="mySlides1 fade">
Patrick's avatar
Patrick committed
366
                <div class="numbertext">5 / 17</div>
Patrick's avatar
Patrick committed
367
                <img src="images/content/contentboeckingerstrasse/interviews_nachbarschaft.jpg" style="width:100%">
Patrick's avatar
Patrick committed
368
369
370
                <div class="text">Interviews in der Nachbarschaft</div>
                </div>

Patrick's avatar
Patrick committed
371
                <div class="mySlides1 fade">
Patrick's avatar
Patrick committed
372
                <div class="numbertext">6 / 17</div>
Patrick's avatar
Patrick committed
373
                <img src="images/content/contentboeckingerstrasse/offene_bauwerkstatt_1.jpg" style="width:100%">
Patrick's avatar
Patrick committed
374
375
376
                <div class="text">Offene Bauwerkstatt</div>
                </div>

Patrick's avatar
Patrick committed
377
                <div class="mySlides1 fade">
Patrick's avatar
Patrick committed
378
                <div class="numbertext">7 / 17</div>
Patrick's avatar
Patrick committed
379
                <img src="images/content/contentboeckingerstrasse/offene_bauwerkstatt_2.jpg" style="width:100%">
Patrick's avatar
Patrick committed
380
381
382
                <div class="text">Offene Bauwerkstatt</div>
                </div>

Patrick's avatar
Patrick committed
383
                <div class="mySlides1 fade">
Patrick's avatar
Patrick committed
384
                <div class="numbertext">8 / 17</div>
Patrick's avatar
Patrick committed
385
                <img src="images/content/contentboeckingerstrasse/offene_bauwerkstatt_3.jpg" style="width:100%">
Patrick's avatar
Patrick committed
386
387
388
                <div class="text">Offene Bauwerkstatt</div>
                </div>

Patrick's avatar
Patrick committed
389
                <div class="mySlides1 fade">
Patrick's avatar
Patrick committed
390
                <div class="numbertext">9 / 17</div>
Patrick's avatar
Patrick committed
391
                <img src="images/content/contentboeckingerstrasse/planungsgebiet_choreographie.jpg" style="width:100%">
Patrick's avatar
Patrick committed
392
393
394
                <div class="text">Planungsgebiet Choreographie</div>
                </div>

Patrick's avatar
Patrick committed
395
                <div class="mySlides1 fade">
Patrick's avatar
Patrick committed
396
                <div class="numbertext">10 / 17</div>
Patrick's avatar
Patrick committed
397
                <img src="images/content/contentboeckingerstrasse/planungsgebiet_vogelperspektive.jpg" style="width:100%">
Patrick's avatar
Patrick committed
398
399
400
                <div class="text">Planungsgebiet Vogelperspektive</div>
                </div>

Patrick's avatar
Patrick committed
401
                <div class="mySlides1 fade">
Patrick's avatar
Patrick committed
402
                <div class="numbertext">11 / 17</div>
Patrick's avatar
Patrick committed
403
                <img src="images/content/contentboeckingerstrasse/station1_spielekiosk.jpg" style="width:100%">
Patrick's avatar
Patrick committed
404
405
406
                <div class="text">Spielekiosk</div>
                </div>

Patrick's avatar
Patrick committed
407
                <div class="mySlides1 fade">
Patrick's avatar
Patrick committed
408
                <div class="numbertext">12 / 17</div>
Patrick's avatar
Patrick committed
409
                <img src="images/content/contentboeckingerstrasse/station2_gartenkiosk.jpg" style="width:100%">
Patrick's avatar
Patrick committed
410
411
412
                <div class="text">Gartenkiosk</div>
                </div>

Patrick's avatar
Patrick committed
413
                <div class="mySlides1 fade">
Patrick's avatar
Patrick committed
414
                <div class="numbertext">13 / 17</div>
Patrick's avatar
Patrick committed
415
                <img src="images/content/contentboeckingerstrasse/station3_outdoorkiosk.jpg" style="width:100%">
Patrick's avatar
Patrick committed
416
417
418
                <div class="text">Outdoorkiosk</div>
                </div>

Patrick's avatar
Patrick committed
419
                <div class="mySlides1 fade">
Patrick's avatar
Patrick committed
420
                <div class="numbertext">14 / 17</div>
Patrick's avatar
Patrick committed
421
                <img src="images/content/contentboeckingerstrasse/station3_outdoorkiosk1.jpg" style="width:100%">
Patrick's avatar
Patrick committed
422
423
424
                <div class="text">Outdoorkiosk</div>
                </div>

Patrick's avatar
Patrick committed
425
                <div class="mySlides1 fade">
Patrick's avatar
Patrick committed
426
                <div class="numbertext">15 / 17</div>
Patrick's avatar
Patrick committed
427
                <img src="images/content/contentboeckingerstrasse/station4_infokiosk.jpg" style="width:100%">
Patrick's avatar
Patrick committed
428
429
430
                <div class="text">Infokiosk</div>
                </div>

Patrick's avatar
Patrick committed
431
                <div class="mySlides1 fade">
Patrick's avatar
Patrick committed
432
                <div class="numbertext">16 / 17</div>
Patrick's avatar
Patrick committed
433
                <img src="images/content/contentboeckingerstrasse/workshop_cafe_tas_1.jpg" style="width:100%">
Patrick's avatar
Patrick committed
434
435
436
                <div class="text">Workshop Cafe Tas</div>
                </div>

Patrick's avatar
Patrick committed
437
                <div class="mySlides1 fade">
Patrick's avatar
Patrick committed
438
                <div class="numbertext">17 / 17</div>
Patrick's avatar
Patrick committed
439
                <img src="images/content/contentboeckingerstrasse/workshop_cafe_tas_2.jpg" style="width:100%">
Patrick's avatar
Patrick committed
440
441
442
443
444
                <div class="text">Workshop Cafe Tas</div>
                </div>

            
                <!-- Next and previous buttons -->
Patrick's avatar
Patrick committed
445
446
                <a class="prev" onclick="plusSlides(-1, 0)">&#10094;</a>
                <a class="next" onclick="plusSlides(1, 0)">&#10095;</a>
Patrick's avatar
Patrick committed
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
            </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>
Patrick's avatar
Patrick committed
487
        <!-- <div id="TestText" class="SideInfo" style="display:none;">
Patrick's avatar
Patrick committed
488

Patrick's avatar
Patrick committed
489
490
491
492
493
494
495
496
497
            <h1 class="sticky" id="headOne">Böckinger Straße</h1>
            
            <p class="contentOne">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent pharetra ut sem nec mattis. Ut gravida consectetur urna quis faucibus. Ut in justo nunc. Suspendisse potenti. Aliquam nec tortor aliquet enim ultricies gravida. Vivamus justo enim, mattis quis malesuada id, iaculis vel orci. Vivamus tortor leo, finibus a eros et, accumsan volutpat nisl. Sed sit amet ex eget lectus finibus rhoncus ac quis metus.
                Aliquam erat volutpat. Vivamus ut fermentum lectus. Quisque hendrerit felis eu convallis tincidunt. Aenean pretium finibus orci. Nam est justo, semper non est id, ultricies laoreet mi. Donec rutrum quam a ex congue ultrices. Nullam vulputate elit at iaculis scelerisque. Aliquam metus diam, vulputate eget purus et, placerat pharetra elit. Integer quis erat ut dolor pellentesque gravida. Aliquam vulputate urna vel neque interdum imperdiet. Quisque facilisis condimentum odio ac sollicitudin. Integer eleifend eget augue eget mattis. Pellentesque eu lectus rhoncus, malesuada lacus ut, lobortis turpis. Mauris in scelerisque orci. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.
                Phasellus mollis viverra magna vitae semper. Vestibulum turpis mi, elementum in dapibus vel, convallis at odio. Etiam diam leo, rhoncus a risus et, eleifend molestie ipsum. Nullam vitae aliquam metus. Duis efficitur urna ut eros accumsan, sit amet placerat felis laoreet. Cras vitae neque in mauris euismod consequat egestas sed magna. Sed sit amet nibh in enim eleifend pulvinar non eu diam. Integer mauris lacus, malesuada non diam sed, mattis laoreet elit. Suspendisse potenti. Donec pulvinar finibus lorem, posuere varius arcu tempus at.
                Ut nec leo enim. Nullam gravida fringilla aliquam. Proin varius, dui nec euismod tincidunt, urna arcu vehicula ex, in eleifend libero ipsum sit amet lacus. Sed scelerisque urna in odio consectetur, eu pulvinar velit auctor. Morbi fringilla, ipsum vitae sollicitudin condimentum, felis felis sagittis quam, eget varius purus turpis sed ipsum. Ut ut sagittis eros. In sem neque, vehicula et vulputate congue, elementum vitae diam. Mauris nulla orci, pharetra vitae libero ac, sodales vulputate nibh. Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Ut blandit cursus aliquam. Maecenas ornare luctus nibh vel consectetur. Quisque eros felis, condimentum a justo nec, facilisis cursus turpis. Praesent sagittis consequat dui, vel rutrum leo sagittis ac. Nullam efficitur libero sed risus tincidunt posuere.
                Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae; Integer finibus nisl sit amet feugiat convallis. Nunc consequat, ex sit amet pretium aliquet, magna nunc rhoncus elit, ut vestibulum tortor dolor sit amet turpis. Nullam neque nisi, rhoncus efficitur lacinia ut, ullamcorper sit amet dui. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin gravida nibh quis congue. </p>
           
        </div> -->
Patrick's avatar
Patrick committed
498
499
500
        <div id="UmfrageOne" class="SideInfo" style="display:none;">

            
Patrick's avatar
Patrick committed
501
            <iframe id="iframe" style="width: 95%; height:50em;margin-left:1em;margin-right:1em;border: none;" src="https://umfrage.smartvillages.online/limesurvey/index.php/796921?lang=de"></iframe>
Patrick's avatar
Patrick committed
502
            
Patrick's avatar
Patrick committed
503
            <!-- <p class="contentOne">Die Reduzierung des privaten Wohnraums bedingt auch das Zusammenleben
Patrick's avatar
Patrick committed
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
                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>
Patrick's avatar
Patrick committed
520
                <p>#ibasummerschool2019 #howtocommons #experiment</p> -->
Patrick's avatar
Patrick committed
521
522
523
524
525
        


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

Patrick's avatar
Patrick committed
529
            <h1 class="sticky" id="headOne">Energy Project Stöckach</h1>
Patrick's avatar
Patrick committed
530
531
532
533
534
535
            
            <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
536

Patrick's avatar
Patrick committed
537
            <button id="energydemand"  onclick="highlightFeatures('energydemand')" type="button" class="collapsible">Energy demand</button>
Patrick's avatar
Patrick committed
538
539
            <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
540
541
542
543
544
545
                
                <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
546
                        <img src="images/content/contentstoeckach/img1.jpg" style="width:100%">
Patrick's avatar
Patrick committed
547
548
549
550
551
                        <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
552
                        <img src="images/content/contentstoeckach/img2.jpg" style="width:100%">
Patrick's avatar
Patrick committed
553
554
555
556
557
                        <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
558
                        <img src="images/content/contentstoeckach/img3.jpg" style="width:100%">
Patrick's avatar
Patrick committed
559
560
561
562
563
                        <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
564
                        <img src="images/content/contentstoeckach/img4.jpg" style="width:100%">
Patrick's avatar
Patrick committed
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
                        <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
584
            </div>
Patrick's avatar
Patrick committed
585
            <button id="solarpotential" onclick="highlightFeatures('solarpotential')" type="button" class="collapsible">Solar PV potential</button>
Patrick's avatar
Patrick committed
586
            <div class="content">
Patrick's avatar
Patrick committed
587
                <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
588
            </div>
Patrick's avatar
Patrick committed
589
            <button id="heatpump" onclick="highlightFeatures('heatpump')" type="button" class="collapsible">Power-to-heat via heat pump</button>
Patrick's avatar
Patrick committed
590
            <div class="content">
Patrick's avatar
Patrick committed
591
592
593
594
595
596
597
598
599
                <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
600
                            <img src="images/content/contentstoeckach/img5.jpg" style="width:100%; margin-bottom: 5em;">
Patrick's avatar
Patrick committed
601
602
603
                            <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
604
            </div>
Patrick's avatar
Patrick committed
605
            <button id="thermalstorage" onclick="highlightFeatures('thermalstorage')" type="button" class="collapsible">Thermal storage </button>
Patrick's avatar
Patrick committed
606
607
608
            <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
609
            <button id="batterystorage" onclick="highlightFeatures('batterystorage')" type="button" class="collapsible">Battery storage  </button>
Patrick's avatar
Patrick committed
610
611
612
            <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
613
614
615
616
617
618
619
620
621
622
            <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
623
                            <img src="images/content/contentstoeckach/img6.jpg" style="width:100%; margin-bottom: 4em;">
Patrick's avatar
Patrick committed
624
625
626
627
                            <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
628
        </div>
Patrick's avatar
Patrick committed
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
        <!-- ======================================================================================================================================================================== -->
        <!-- 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
656
            <div style='width:100%;margin-top:200px;' id="chartNordB"></div>
Patrick's avatar
Patrick committed
657
658
        <!-- <div id="slider-color"></div> -->
        </div>
Patrick's avatar
Patrick committed
659
660
661
662
663
664
665
666
667
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

        <!-- ========================================================================================================= -->
        <!-- Areas in Weilimdorf -->
        <div id="WeilimdorfAreas" class="SideInfo" style="display:none;">

            <h1 class="sticky" id="headOne">Weilimdorf</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>
        


            <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
704
        
Patrick's avatar
Patrick committed
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
      </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
723
    <script src="sources/nouislider.js"></script>
Patrick's avatar
Patrick committed
724
    <script src="https://cdn.jsdelivr.net/npm/apexcharts"></script>
Patrick's avatar
Patrick committed
725
    <script src="templates/slider.js"></script>
Patrick's avatar
test    
Patrick committed
726
    <script src="templates/UserBalloon.js"></script>
727
    <script src="templates/ErklIntro.js"></script>
Patrick's avatar
Patrick committed
728
    <link href="templates/sliders.css" rel="stylesheet">
Patrick's avatar
Patrick committed
729

730
731
    <script src="templates/limesurvey.js"></script>

Patrick's avatar
Patrick committed
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
	<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-->
    <script src='lib/vcm_ui.js'></script>
Patrick's avatar
Patrick committed
748

Patrick's avatar
Patrick committed
749
750
    
    <script src="templates/custom.js"></script>
Patrick's avatar
Patrick committed
751
    <script src="templates/newDevBahn.js"></script>
Patrick's avatar
Patrick committed
752
    <!-- <script src="templates/cus_Menu.js"></script> -->
Patrick's avatar
Patrick committed
753
    <script src="templates/cus_SimStadt.js"></script>
Patrick's avatar
Patrick committed
754
755
    
    <script src="templates/collapse.js"></script>
Patrick's avatar
Patrick committed
756
    <script src="templates/checkmobile.js"></script>
Patrick's avatar
Patrick committed
757
	<script src="templates/layerSwitch.js"></script>
Patrick's avatar
Patrick committed
758
759
760
	<script src="https://code.jquery.com/jquery-3.3.1.min.js"
                  integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
                  crossorigin="anonymous"></script>
Patrick's avatar
Patrick committed
761
762
    <!-- <script src="https://code.jquery.com/jquery-3.3.1.min.js"></script> -->
    <script src="templates/cus_Menu.js"></script>
Patrick's avatar
Patrick committed
763
    <script src="templates/story/virtualcitystory.js"></script>
Patrick's avatar
Patrick committed
764
 
Patrick's avatar
Patrick committed
765
766
  </body>
</html>