-
Notifications
You must be signed in to change notification settings - Fork 4
/
resources.html
421 lines (362 loc) · 27 KB
/
resources.html
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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
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
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
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
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="enviroCar website">
<meta name="author" content="52north GmbH">
<link rel="icon" href="assets/app_logo.png">
<title>enviroCar.org</title>
<!-- Bootstrap core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Custom fonts for this template -->
<link href="css/material-icons.css" rel="stylesheet">
<link href="css/lato-font.css" rel="stylesheet" type="text/css">
<link href="css/open-sans-font.css" rel="stylesheet" type="text/css">
<!--this stylesheet is for the footer icons-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.6.3/css/font-awesome.min.css">
<!-- Custom styles for this template -->
<link href="css/style.css" rel="stylesheet">
<link href="css/bootstrap.copy.min.css" rel="stylesheet">
<script src="js/jquery.copy.min.js"></script>
<script src="js/bootstrap.copy.min.js"></script>
<script src="js/i18next.copy.min.js"></script>
<script src="js/jquery-i18next.min.js"></script>
<script src="js/i18nextify.min.js"></script>
<script>
window.i18nextify.init({
backend: {
loadPath: 'locales/{{lng}}/translation.json'
}
});
</script>
</head>
<body id="page-top" style="display: none; background-color: #fff;">
<!-- Navigation Bar -->
<nav class="navbar fixed-top navbar-dark bg-primary navbar-expand-lg navbar-expand-md" style="position: fixed; top: 0; border-bottom: solid 1px #0065A0;" id="mainNav">
<a style="padding: 0;" class="navbar-brand js-scroll-trigger" href="#page-top">
<img style="height: 80%; width: auto;" alt="enviroCar logo" src="assets/logo_white.png" onclick="openSubpage('index.html')">
</a>
<button class="navbar-toggler ml-auto navbar-dark" type="button" data-toggle="collapse" data-target="#navbarResponsive" aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarResponsive">
<ul class="navbar-nav mr-auto navbar-right">
<li class="nav-item">
<a class="nav-link js-scroll-trigger" onclick="openSubpage('index.html')">nav.home</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" onclick="openSubpage('collect.html')">nav.collect</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" onclick="openSubpage('share.html')">nav.share</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" onclick="openSubpage('analysis.html')">nav.analysis</a>
</li>
<li class="nav-item nav-onSelected">
<a class="nav-link js-scroll-trigger" href="#page-top">nav.resources</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="https://envirocar.org/app/">
<img src="assets/login_white.png"/>my enviroCar</a>
</li>
<li class="nav-item dropdown">
<a href="#" class="nav-link dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">nav.language</a>
<ul class="dropdown-menu">
<li><a class="lngOption" onclick="changeLanguage('en')">English</a></li>
<li><a class="lngOption" onclick="changeLanguage('de')">Deutsch</a></li>
</ul>
</li>
</ul>
</div>
</nav>
<div class="placeholder" style="height: 50px;"></div>
<!-- Resources -->
<section style="background-color: #fff;">
<div class="container-fluid row col-12 nomargin" style="margin-bottom: 86px !important;text-align: center;">
<h2 class="section-heading col-8" style="text-align: center; margin:auto; margin-bottom: 16px;">res1</h2>
<p class="section-lead" style="text-align: center;">res1_2<a target="_blank" href="https://de.wikipedia.org/wiki/Open_Data">res1_3</a>res1_4
</p>
<p class="section-lead" style="text-align: center;">res1_5</p>
</div>
</section>
<!-- Documentation -->
<section style="background-color: #f3f3f3;">
<div class="container-fluid row row-eq-height col-12 nomargin">
<div class="col-lg-5 col-md-5 col-sm-12 col-12 noPadding nomargin img-frame">
<span class="helper"></span>
<img class="img-fluid" src="assets/api.png" alt="">
</div>
<div class="col-lg-1 col-md-1 hidden-sm hidden-xs col-0"></div>
<div class="row col-lg-6 col-md-6 col-sm-12 col-12 noPadding nomargin div-frame" style=" display: flex;
justify-content: center;
align-items: center; ">
<div>
<hr class="col-12 section-heading-spacer">
<div class="container-fluid row col-12 nomargin">
<h2 class="section-heading col-12" style="text-align: center; margin:auto; margin-bottom: 16px;">res3</h2>
</div>
<p class="section-lead">res3_1 <br><br>
res3_11<a target="_blank" href="http://envirocar.github.io/enviroCar-server/api/">res3_2</a>.
</p>
</div>
</div>
</div>
</section>
<!-- Storage and Access -->
<!-- <section style="background-color: #fff;">
<div class="container-fluid row row-eq-height col-12 nomargin">
<div class="row col-lg-6 col-md-6 col-sm-12 col-12 noPadding nomargin div-frame" style=" display: flex;
justify-content: center;
align-items: center; ">
<div>
<hr class="col-12 section-heading-spacer">
<div class="container-fluid row col-12 nomargin">
<h2 class="section-heading col-12" style="text-align: center; margin:auto; margin-bottom: 16px;">Datenspeicherung und -zugriff</h2>
</div>
<p class="section-lead">pf.da2<a style="color: #0065A0;" class="curser" onclick="openSubpage('analysis.html')">enviroCar Web App</a>pf.da3<br><br>
pf.da4<a target="_blank" href="https://envirocar.org/api/stable/">enviroCar API</a>pf.da5
<a target="_blank" href="http://envirocar.github.io/enviroCar-server/api/">pf.da6</a>.
<br><br>
pf.da7<br><br>
pf.da8
<a target="_blank" href="https://opendatacommons.org/licenses/odbl/1.0/">Open Database License (ODbL)</a>
pf.da9<a style="color: #0065A0;" class="curser" onclick="openSubpage('conditions.html')">pf.da10</a>pf.da11<br><br>
</p>
</div>
</div>
<div class="col-lg-1 col-md-1 hidden-sm hidden-xs col-0"></div>
<div class="col-lg-5 col-md-5 col-sm-12 col-12 noPadding nomargin img-frame">
<span class="helper"></span>
<img class="img-fluid" src="/assets/storage_access.png" alt="">
</div>
</div>
</section> -->
<!-- Blog -->
<section style="background-color: #fff;">
<div class="container-fluid row row-eq-height col-12 nomargin">
<div class="row col-lg-6 col-md-6 col-sm-12 col-12 noPadding nomargin div-frame" style=" display: flex;
justify-content: center;
align-items: center; ">
<div>
<hr class="col-12 section-heading-spacer">
<div class="container-fluid row col-12 nomargin">
<h2 class="section-heading col-12" style="text-align: center; margin:auto; margin-bottom: 16px;">Blog</h2>
</div>
<p class="section-lead">res4_1
<br><br>
res4_11 <a href="mailto:[email protected]?Subject=" target="_top">[email protected]</a>.
<br><br>
res4_2
<a target="_blank" href=" https://blog.52north.org/category/envirocar-2/ ">res4_3</a>.
</p>
</div>
</div>
<div class="col-lg-1 col-md-1 hidden-sm hidden-xs col-0"></div>
<div class="col-lg-5 col-md-5 col-sm-12 col-12 noPadding nomargin img-frame">
<span class="helper"></span>
<img class="img-fluid" src="/assets/eCblog_blau.png" alt="">
</div>
</div>
</section>
<!-- Publications -->
<section style="background-color: #f3f3f3;">
<div class="container-fluid row row-eq-height col-12 nomargin">
<div class="col-lg-5 col-md-5 col-sm-12 col-12 noPadding nomargin img-frame">
<span class="helper"></span>
<img class="img-fluid" src="/assets/eCpub_weiß_transp.png" alt="">
</div>
<div class="col-lg-1 col-md-1 hidden-sm hidden-xs col-0"></div>
<div class="row col-lg-6 col-md-6 col-sm-12 col-12 noPadding nomargin div-frame" style=" display: flex;
justify-content: center;
align-items: center; ">
<div>
<hr class="col-12 section-heading-spacer">
<div class="container-fluid row col-12 nomargin">
<h2 class="section-heading col-12" style="text-align: center; margin:auto; margin-bottom: 16px;">res5</h2>
</div>
<p class="section-lead">res5_1<br>res5_2</p>
</div>
<div class = "container">
<div class = "panel-group">
<div class = "panel panel-default">
<div class = "panel-heading">
<h2 class="section-lead" style="text-align: center; ">
<a data-toggle = "collapse" href = "#test">res5_3</a>
</h2>
</div>
<div id = "test" class="panel-collapse collapse">
<ul class = "list-group">
<li class = "list-group-item">Remke, A., Gräler, B., de Wall, A., Autermann, C., and A. Wytzisk (2019): enviroCar – ein Citizen Science Labor für nachhaltige Mobilität.<a target="_blank" href=" https://blog.52north.org/category/envirocar-2/ ">
<br> https://doi.org/10.17605/OSF.IO/8FHRZ</a> </li>
<li class = "list-group-item">BigGIS - Scalable GIS for Predictive and Prescriptive Analytics (2019). Smart City – enviroCar. Project Website:<a target="_blank" href="http://biggis-project.eu/biggis-docs/demos/enviro-car ">
<br>http://biggis-project.eu/biggis-docs/demos/enviro-car</a></li>
<li class = "list-group-item">Massoud, R.; Bellotti, F. ; Berta, R.; De Gloria, A. and S. Poslad (2019): Exploring Fuzzy Logic and Random Forest for Car Drivers’ Fuel Consumption Estimation in IoT-Enabled Serious Games. 14th IEEE International Symposium on Autonomous Decentralized Systems (ISADS, 2019). Electronic Engineering and Computer Science. Accepted Paper. <a target="_blank" href="https://qmro.qmul.ac.uk/xmlui/handle/123456789/55782">
<br>https://qmro.qmul.ac.uk/xmlui/handle/123456789/55782</a></li>
<li class =" list-group-item">Voland, P. (2019): Webbasierte Visualisierung von Extended Floating Car Data (XFCD). Master Thesis, Potsdam<a target="_blank" href="https://publishup.uni-potsdam.de/frontdoor/index/index/docId/9675">
<br>https://publishup.uni-potsdam.de/frontdoor/index/index/docId/9675</a></li>
<li class =" list-group-item">Häußler, J.; Stein, M. ; Seebacher, D. ; Janetzko, H.; Schreck, T. and D. A. Keim (2018): Visual Analysis of Urban Traffic Data based on High-Resolution andHigh-Dimensional Environmental Sensor Data. In: Bujack, R.; K. Rink and D. Zeckzer (Eds.)(2018): Workshop on Visualisation in Environmental Sciences (EnvirVis) (2018). <a target="_blank" href="https://dx.doi.org/10.2312/envirvis.20181138">
<br>https://dx.doi.org/10.2312/envirvis.20181138</a></li>
<li class = "list-group-item">Herold, J.; Klöpper, R.; Lippe, S.; Stasch, C. and H. Wulffius (2018): Untersuchung der Qualität des Verkehrsablaufs auf Hauptverkehrsstraßen mithilfe von Bürgerinnen und Bürgern. In: Bund deutscher Verkehrsingenieure (BSVI) (2018): Deutscher Ingenieurpreis Straße und Verkehr 2017. Reihe: Aus der BSVI – Straßenverkehrstechnik 1.2018.<a target="_blank" href="http://biggis-project.eu/biggis-docs/demos/enviro-car ">
<br>http://biggis-project.eu/biggis-docs/demos/enviro-car</a></li>
<li class = "list-group-item">Massoud, R; Poslad, S.; Bellotti, F. and R. B. K. M. A. De Gloria (2018): A Fuzzy Logic Module to Estimate a Driver’s Fuel Consumption for Reality-Enhanced Serious Games. International Journal of Serious Games Volume 5, Issue 4, December 2018 ISSN:2384-8766.<a target="_blank" href="http://journal.seriousgamessociety.org/index.php/IJSG/article/view/266/316">
<br>http://journal.seriousgamessociety.org/index.php/IJSG/article/view/266/316</a></li>
<li class = "list-group-item">Wittkop, J. (2017): Citizen Science in Traffic Monitoring - Evaluating the Effect of Speed Limits on Traffic Flow in the City of Münster. Unpublished Master Thesis, Münster.</li>
<li class =" list-group-item">Farmer, C. J. Q. and C. Keßler (2016): Hierarchical Prism Trees for Scalable Time Geographic Analysis. In: Miller, J.A.; O’Sullivan, D. & N. Wiegand (Eds.): Geographic Information Science. 9th International Conference, GIScience 2016, Montreal. Springer International Publishing, Switzerland. LNCS 992, pp. 34-47. <a target="_blank" href="https://doi.org/10.1007/978-3-319-45738-3_3 ">
<br>https://doi.org/10.1007/978-3-319-45738-3_3 </a></li>
<li class =" list-group-item">Kersten, R. and M. Krüßel (10.04.2015): Machbarkeitsstudie zur Beurteilung der Verkehrsqualität mit Hilfe des Systems enviroCar. Im Auftrag des Kompetenzzentrums Bau und Verkehr der Fachhochschule Münster - Fachbereich Bauingenieurwesen.<a target="_blank" href="https://www.fh-muenster.de/bau/labore/ins_bau_verkehr/120010100001247213.php">
<br>https://www.fh-muenster.de/bau/labore/ins_bau_verkehr/120010100001247213.php</a></li>
<li class =" list-group-item">Keßler, C. and C. Farmer (2015): Querying and integrating spatial–temporal information on the Web of Data via time geography. Web Semantics: Science, Services and Agents on the World Wide Web 35. Pp 25-34 10.1016/j.websem.2015.09.005.</li>
<li class =" list-group-item">Remke, A., Stasch, C. and A. Wytzisk (2015): Bürger-generierte Geoinformation für nachhaltige Möbilität. In: zfv Zeitschrift für Geodäsie, Geoinformation und Landmanagement. DWD e.V. Heft 2/2105 – 140. Jahrgang, S.76 – 80.
</li>
<li class =" list-group-item">Bröring, A., Remke, A., Stasch, C., Autermann, C., Rieke, M. and J. Möllers (2015): enviroCar: A Citizen Science Platform for Analyzing and Mapping Crowd‐Sourced Car Sensor Data. Transactions in GIS. 19. 362-376.<a target="_blank" href="https://doi.org/10.1111/tgis.12155">
<br>https://doi.org/10.1111/tgis.12155</a></li>
<li class =" list-group-item">von Bechen, F. (2015): Using enviroCar data for cost attributes in routing applications. Unpublished Bachelor Thesis, Kranzberg</li>
<li class =" list-group-item">Prummer, F. (2014): GIS-Based Emission Analysis Using Car-Borne Sensor Data. In: Gómez, J. M., Sonnenschein, M., Vogel, U., Winter, A., Rapp, B. and N. Giesen (Red.), Proceedings of the 28th Conference on EnviroInfo 2014, Oldenburg, Germany: BIS-Verlag. ISBN 978-3-8142-2317-9 <a target="_blank" href="https://www.iai.kit.edu/ictensure/site;jsessionid=306F2F4A286A0EED12B6746B06EE1A39?mod=litdb&subject=vol&pid=XC545A6F6&action=detail">
<br>Proceedings of the 28th Conference on EnviroInfo 2014</a></li>
<li class =" list-group-item">Jirka, S., Remke, A. and A. Bröring (2013): enviroCar – Crowd Sourced Traffic and Environment Data for Sustainable Mobility. In Proceedings of the Workshop "Environmental Information Systems and Services - Infrastructures and Platforms 2013 - with Citizens Observatories, Linked Open Data and SEIS/SDI Best Practices". Neusiedl am See.<a target="_blank" href="http://ceur-ws.org/Vol-1322/paper_7.pdf">
<br>https://publishup.uni-potsdam.de/frontdoor/index/index/docId/9675</a></li>
<li class =" list-group-item">Voland, P. (2019): Webbasierte Visualisierung von Extended Floating Car Data (XFCD). Master Thesis, Potsdam<a target="_blank" href="https://publishup.uni-potsdam.de/frontdoor/index/index/docId/9675">
<br>http://ceur-ws.org/Vol-1322/paper_7.pdf</a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!--enviroCar Source Code-->
<section id="research" class="sectionResearch" style="background-color: #fff;">
<div class="container-fluid row col-12 nomargin">
<hr class="col-6 section-heading-spacer" style="text-align: center;">
<div class="col-12 mr-auto" style="padding-bottom: 35px;">
<div class="clearfix"></div>
<h2 class="section-heading mr-auto" style="padding-bottom: 24px; text-align:center;">enviroCar Source Code</h2>
<p class="section-lead" style="text-align:center;">
src.cd1
<a target="_blank" href="https://github.com/envirocar">src.cd2</a>src.cd3
</p>
</div>
<div class="col-12 row noPadding nomargin">
<div class="col-lg-3 col-md-6 col-sm-6 portfolio-item" style="margin-bottom: 24px;">
<div class="card card-1 card-anim card-step">
<a target="_blank" href="https://github.com/enviroCar/enviroCar-server">
<div style="position:relative;"><img class="card-img-top" src="assets/env_server.png" alt="enviroCar server">
</div>
</a>
<div class="card-body">
<h4 class="card-title card-step-title">
<a target="_blank" class="js-scroll-trigger" href="https://github.com/enviroCar/enviroCar-server" style="color: #313131 !important;">
<img style="width: 24px; height: 24px;margin-right: 4px; margin-bottom: 5px;" src="assets/products/GitHub-Mark.png">
env_server_title
</a>
</h4>
<p class="sourceCode-text">
env_server_text
</p>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 col-sm-6 portfolio-item" style="margin-bottom: 24px;">
<div class="card card-1 card-anim card-step">
<a target="_blank" href="https://github.com/MojioMS/enviroCar-landing-page">
<div style="position:relative;"><img class="card-img-top" src="assets/env_website.png" alt="enviroCar website">
</div>
</a>
<div class="card-body">
<h4 class="card-title card-step-title">
<a target="_blank" class="js-scroll-trigger" href="https://github.com/MojioMS/enviroCar-landing-page" style="color: #313131 !important;">
<img style="width: 24px; height: 24px;margin-right: 4px; margin-bottom: 5px;" src="assets/products/GitHub-Mark.png">env_website_title</a>
</h4>
<p class="sourceCode-text">
env_website_text</p>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 col-sm-6 portfolio-item" style="margin-bottom: 24px;">
<div class="card card-1 card-anim card-step">
<a target="_blank" href="https://github.com/enviroCar/enviroCar-app">
<div style="position:relative;"><img class="card-img-top" src="assets/env_app.png" alt="enviroCar android app">
</div>
</a>
<div class="card-body">
<h4 class="card-title card-step-title">
<a target="_blank" class="js-scroll-trigger" href="https://github.com/enviroCar/enviroCar-app" style="color: #313131 !important;">
<img style="width: 24px; height: 24px;margin-right: 4px; margin-bottom: 5px;" src="assets/products/GitHub-Mark.png">env_app_title</a>
</h4>
<p class="sourceCode-text">
env_app_text</p>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 col-sm-6 portfolio-item" style="margin-bottom: 24px;">
<div class="card card-1 card-anim card-step">
<a target="_blank" href="https://github.com/enviroCar/envirocar-www-ng">
<div style="position:relative;"><img class="card-img-top" src="assets/env_webapp.png" alt="enviroCar webapp">
</div>
</a>
<div class="card-body">
<h4 class="card-title card-step-title">
<a target="_blank" href="https://github.com/enviroCar/envirocar-www-ng" style="color: #313131 !important;">
<img style="width: 24px; height: 24px;margin-right: 4px; margin-bottom: 5px;" src="assets/products/GitHub-Mark.png">env_webapp_title</a>
</h4>
<p class="sourceCode-text">
env_webapp_text</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!--Footer-->
<footer class="bg-primary">
<div class="row footerdiv">
<!--leerer Platz links im Footer-->
<div class="spaceholder col-lg-2 col-md-2 hidden-sm hidden-xs"></div>
<!--1. column-->
<div class="footer-item col-xs-3 col-sm-3 col-md-2 col-lg-2" >
<!-- <h3>ft.background</h3> -->
<ul style="font-size: 2rem;">
<li><a class="footerLink"onclick="openSubpage('about.html')">ft.about</a></li>
</ul>
</div>
<!--2. column-->
<div class="footer-item col-xs-3 col-sm-3 col-md-2 col-lg-2" >
<ul style="font-size: 2rem;">
<li><a class="footerLink" onclick="openSubpage('faq.html')">ft.faq</a></li>
<li><a class="footerLink" href="https://blog.52north.org/category/envirocar-2/">Blog</a></li>
</ul>
</div>
<!--3. column-->
<div class="footer-item col-xs-3 col-sm-3 col-md-2 col-lg-2" >
<ul style="font-size: 2rem;">
<li><a class="footerLink" onclick="openSubpage('imprint.html')">ft.imprint</a></li>
<li><a class="footerLink" onclick="openSubpage('conditions.html')">ft.terms</a></li>
<li><a class="footerLink" onclick="openSubpage('TermsOfUse.html')">ft.TermsOfUse</a></li>
</ul>
</div>
<!--4. column: Icons-->
<div class="footer-item col-xs-3 col-sm-3 col-md-2 col-lg-2">
<ul>
<li><a href="https://twitter.com/enviroCar_org"><i class="fa fa-twitter fa-2x " ></i></a></li>
<li><a href="https://www.facebook.com/enviroCar/"><i class="fa fa-facebook fa-2x"></i></a></li>
<li><a href="https://github.com/enviroCar"><i class="fa fa-github fa-2x"></i></a></li>
</ul>
</div>
<!--leerer Platz rechts im Footer-->
<div class="spaceholder col-lg-2 col-md-2 hidden-sm hidden-xs"></div>
<!--Copyright Section-->
<div class="footer-copyright text-center py-3">© 2021 Copyright by 52°North Spatial Information Research GmbH. All Rights Reserved.
</div>
</div>
</footer>
<!-- Bootstrap core JavaScript -->
<!--<script src="js/jquery.min.js"></script>-->
<script src="js/jquery.easing.1.3.min.js"></script>
<script src="js/popper.min.js"></script>
<script src="js/scrolling-nav.js"></script>
<script src="js/language-url.js"></script>
</body>
</html>