This repository has been archived by the owner on Dec 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathabout.php
93 lines (85 loc) · 4.07 KB
/
about.php
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
<!DOCTYPE html>
<html>
<head>
<title>adsb.chaos-consulting.de - Alpha</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--adsb-->
<link rel="stylesheet" href="css/about.css" />
<!-- <link rel="stylesheet" href="css/mainstyle.css" /> -->
<!--FontAwesome-->
<link href="css/all.css" rel="stylesheet">
<!--dump1090 Markers-->
<script src="js/markers.js"></script>
</head>
<body onload="attribution()">
<?php include('navbar.php'); ?>
<div id="rc3">
<h1 style="padding-top: 0px;">Hello rc3-NOWHERE!</h1>
NOW that you are HERE: Congratulations, you've found us in the endless NOWHERE of rc3.<br/>
If you're wondering what this is: Start reading or better: Join our talk at r3s-Stage on day 0 at 09:00 p.m. CET.<br/>
We will be available for your questions on our mumble-Server <a href="mumble://mumble.chaos-consulting.de/">mumble.chaos-consulting.de</a> throughout the Congress. Also, our Hackspace has an Assembly in the rc3 Workadventure.<br/>
Have a nice Congress!
</div>
<h1 style="clear:left">About</h1>
We are a community of hobbyists bulding our own ADS-B map. We are building this in our spare time without any commercial interest. We are always in search for likeminded people, so if you like this website consider building your own station and contribute your data.
<br>
Read our Instructions on how to build a receiver station and how to feed data to us.
<br><br>
<a href="https://github.com/chaos-consulting/adsberry" target="blank">->Instructions on Github<-</a>
<h1>Attributions</h1>
This webapp is open source and is made with open source components. Without the great tools below this would not be possible.
<br>
<hr>
<h2>Leafletjs</h2>
This is the libary we are using to build the interactive map <a href="https://leafletjs.com">https://leafletjs.com</a>
<hr>
<h2>Leaflet-realtime</h2>
Making those planes move <a href="https://github.com/perliedman/leaflet-realtime">https://github.com/perliedman/leaflet-realtime</a>
<hr>
<h2>Leaflet-active-area</h2>
Doin good stuff <a href="https://github.com/Mappy/Leaflet-active-area">https://github.com/Mappy/Leaflet-active-area</a>
<hr>
<h2>Font-Awesome</h2>
For all the pretty clicky icons <a href="https://fontawesome.com/">https://fontawesome.com</a>
<hr>
<h2>Tabulator</h2>
Dynamic sortable tables in the sidebar <a href="http://tabulator.info">http://tabulator.info</a>
<hr>
<h2>Openstreetmap</h2>
All map data <a href="https://www.openstreetmap.org/copyright">https://www.openstreetmap.org/copyright</a>
<hr>
<h2>Deutscher Wetterdienst / PegelOnline</h2>
The precipitation data, weather warnings and water levels of German rivers and coasts are taken from the great Open Data Services by <a href="https://www.dwd.de/">Deutscher Wetterdienst</a> and <a href="https://www.wsv.de/">Wasserstraßen- und Schifffahrtsverwaltung des Bundes</a>
<hr>
<h2>Wikipedia</h2>
All the knowledge about airlines and planes <a href="https://de.wikipedia.org">https://de.wikipedia.org</a>
<hr>
<h2>junzis Aircraft Database</h2>
Aircraft registrations and model information are based on the last release of <a href="https://junzis.com/adb/">junzis Aircraft DB (MIT License)</a>, regulary updated by us with own observations and research.
<hr>
<h2>Markers</h2>
<div id="attributionMarkers"></div>
<hr>
<br><br>
If you want to see the code of this website you can find it here: <a href="https://github.com/chaos-consulting/adsb2.0">https://github.com/chaos-consulting/adsb2.0</a>
</body>
<!--script-->
<script>
//Attribution
function attribution(){
var output="<table><thead><tr><td>Marker</td><td>License</td><td>Origin</td></thead><tbody>";
Object.values(markers).forEach(
function(i){
Object.entries(i).forEach(
function(ii){
output += "<tr><td>" + ii[0] + "</td><td>" + ii[1].license + "</td><td>" + ii[1].origin + "</td></tr>";
}
)
}
)
output += "</tbody></table>";
document.getElementById("attributionMarkers").innerHTML = output;
}
</script>
</html>