-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
208 lines (171 loc) · 6.67 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>streetdudes | Gender representation in Ulm street names</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="http://code.jquery.com/jquery-1.8.0.min.js"></script>
<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.7.3/leaflet.css" />
<link rel="stylesheet" href="leaflet.label/leaflet.label.css" />
<script src="http://cdn.leafletjs.com/leaflet-0.7.3/leaflet-src.js"></script>
<script src="leaflet.label/leaflet.label.js"></script>
<script src="dudes.geojson" type="text/javascript"></script>
<script src="gals.geojson" type="text/javascript"></script>
<!-- fancybox -->
<link rel="stylesheet" href="./fancybox/jquery.fancybox.css" type="text/css" media="screen" />
<script type="text/javascript" src="./fancybox/jquery.fancybox.pack.js"></script>
<style type="text/css">
.fancybox-custom .fancybox-skin {
box-shadow: 0 0 50px #222;
}
html, body, #map, h4, ul {
height:100%;
width:100%;
padding:0px;
margin:0px;
font-size:8pt;
}
h4{
margin: 6px 0px;
}
a {
color: #FEFEFE;
text-decoration:none;
font-style:italic;
}
#dialog a{
font-style:normal;
font-weight: 600;
color: #333333;
font-family: sans;
}
#title{
background:#333333;
position: fixed;
top:10px;
right:30px;
z-index:100;
color: #FEFEFE;
font-family: sans;
border: 1px solid #333;
margin:4px;
padding:4px;
filter: alpha(opacity=80);
-moz-opacity:0.8;
-khtml-opacity: 0.8;
opacity: 0.8;
border-radius: 4px;
-o-border-radius: 4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
}
#dialog{
width:400px;
display:none;
font-family: sans;
}
#legend{
width:250px;
background:#555555;
position: fixed;
bottom:30px;
right:30px;
z-index:100;
color: #EEEEEE;
font-family: sans;
border: 1px solid #EEEEEE;
margin:6px;
padding:6px;
filter: alpha(opacity=90);
-moz-opacity:0.9;
-khtml-opacity: 0.9;
opacity: 0.9;
border-radius: 6px;
-o-border-radius: 6px;
-moz-border-radius: 6px;
-webkit-border-radius: 6px;
}
.logos {
position:absolute;
bottom:10px;
left:10px;
z-index:99;
}
.logos img, #dialogdiv img {
border:1px solid #000;
}
.logos img:hover, #dialog div img {
border:1px solid #0084b0;
}
</style>
<script type="text/javascript">
$(document).ready(function() {
$(".fancybox").fancybox();
});
</script>
</head>
<body>
<div id="dialog">
<h4>Über dieses Projekt</h4>
<p></p>
<p>Dieses Projekt wurde im Rahmen der <a target="_blank" href="http://codeweek.eu/">CodeWeek.EU 2014</a> von der <a target="_blank" href="http://www.ulmapi.de">datalove-Gruppe / UlmAPI</a> entwickelt. Alle Quellen sind auf <a target="_blank" href="https://github.com/UlmApi/streetdudes">github</a> verfügbar.</p>
<h4>Warum?</h4>
<p>Bei der Umbenennung des Westplatz in „Theodor-Heuss-Platz“ kam die Frage auf, wie viele Plätze und Straßen eigentlich schon nach Männern benannt sind, und wie viele nach Frauen. Diese Darstellung soll einen Überblick darüber geben. Quelle war das <a href="http://daten.ulm.de/daten/single/strassenverzeichnis-und-gewannnamen">Straßenverzeichnis der Stadt Ulm</a> (<a href="http://creativecommons.org/licenses/by/3.0/de/">CC-BY 3.0 DE</a>), das momentan händisch männlichen und weiblichen Namensgeber_innen zugeordnet wurde. Die Namen und Hintergrundinformationen über die weiblichen Namensgeberinnen wurden uns über ein <a href="http://www.worldcat.org/title/eigenwillig-und-couragiert-wegweisende-frauen-in-ulm-und-neu-ulm/oclc/496271718&referer=brief_results">Buch als Abschlussbericht</a> des Arbeitskreis Frauengeschichte des <a href="http://uulm.de/?zawiw">ZAWiW an der Uni Ulm</a> zur Verfügung gestellt (Danke! :D). Die Straßenzüge wurden daraufhin mit <a href="http://qgis.org/de/site/">QGIS</a> aus der Openstreetmap extrahiert (<a href="http://opendatacommons.org/licenses/odbl/">© OpenStreetMap-Mitwirkende</a>)</p>
<h4>Da ist aber was falsch!</h4>
<p>Das kann gut sein. Bei einigen Straßen sind wir uns aktuell noch nicht sicher, ob sie konkret nach Männern oder Frauen benannt wurden. Zum Teil handelt es sich dabei z.B. um Namen Ulmer Patrizierfamilien. Work in Progress, <a target="_blank" href="https://github.com/UlmApi/streetdudes">schickt uns Pull Requests</a>!</p>
<h4>Kontakt</h4>
<p>WWW: <a target="_blank" href="http://www.ulmapi.de">ulmapi.de</a><br/>
Mail: datalove (at) uni-ulm.de <br/>
Twitter: <a target="_blank" href="http://twitter.com/ulmapi">@ulmapi</a><br/>
</p>
</div>
<div id="legend">
<h4>StreetDudes</h4>
<p>Eine kleine Übersicht über nach Männern und Frauen benannte Straßen Ulms. <a href='#dialog' class='fancybox'>Mehr Informationen über diese Karte</a></p>
<h4>Legende</h4>
<ul>
<li id="Mann"><b>Mann</b></li>
<li id="Frau"><b>Frau</b></li>
</ul>
</div>
<div class="logos">
<a target="_blank" href="http://www.ulmapi.de"><img src="img/ulmapi.png" alt="ulmapi" title="Ein Projekt von datalove ulm / ulmAPI.de"></a>
</div>
<div id="map"></div>
<script>
var attr_osm = 'Kartendaten © <a href="http://openstreetmap.org/">OpenStreetMap</a>-Beitragende; Tiles: <a href="http://codefor.de">CfG-Kartenserver</a>';
var bbs_ulm = new L.TileLayer('http://tiles.codefor.de/static/bbs/ulm/{z}/{x}/{y}.png', {opacity: 0.7, attribution: attr_osm});
var map = new L.Map('map').addLayer(bbs_ulm).setView(new L.LatLng(48.4018, 9.99), 14);
var dudeColor = "#998ec3";
var galColor = "#f1a340";
var dudeStyle = {
"color": dudeColor,
"weight": 5,
"opacity": 0.75
};
var galStyle = {
"color": galColor,
"weight": 5,
"opacity": 0.75
};
function onEachFeature(feature, layer) {
// does this feature have a property named popupContent?
if (feature.properties && feature.properties.name) {
layer.bindLabel(feature.properties.name);
}
if (feature.properties && feature.properties.Lagebezeichnungen_Strassen_BENANNT_NA) {
var content = "<strong>" + feature.properties.name + "</strong>, benannt nach " + feature.properties.Lagebezeichnungen_Strassen_BENANNT_NA;
if (feature.properties.Lagebezeichnungen_Strassen_URL) {
content = content + "<br><a href=" + feature.properties.Lagebezeichnungen_Strassen_URL + ">Mehr zu dieser Person lesen!</a>";
}
layer.bindPopup(content);
}
}
var streets = new L.LayerGroup();
L.geoJson(dudes, { style: dudeStyle , onEachFeature: onEachFeature}).addTo(map);
L.geoJson(gals, {style: galStyle, onEachFeature: onEachFeature }).addTo(map);
document.getElementById("Mann").style.color=dudeColor;
document.getElementById("Frau").style.color=galColor;
</script>
</body>
</html>