Skip to content

Commit dcc2fc5

Browse files
committed
Council District changes
1 parent ffeb992 commit dcc2fc5

File tree

478 files changed

+312147
-312131
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

478 files changed

+312147
-312131
lines changed

Diff for: .gitignore

+27-27
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,28 @@
1-
## Jekyll stuff
2-
_site/
3-
.jekyll-metadata
4-
.sass-cache/
5-
6-
*/_archive/
7-
8-
## Windows detritus
9-
10-
# Windows image file caches
11-
Thumbs.db
12-
ehthumbs.db
13-
14-
# Folder config file
15-
Desktop.ini
16-
17-
# Recycle Bin used on file shares
18-
$RECYCLE.BIN/
19-
20-
# Mac crap
21-
.DS_Store
22-
23-
## Komodo project files
24-
*.komodoproject
25-
*.kpf
26-
/CrashHeatMap/nbproject/private/
27-
/FishFryCountdown/nbproject/private/
1+
## Jekyll stuff
2+
_site/
3+
.jekyll-metadata
4+
.sass-cache/
5+
6+
*/_archive/
7+
8+
## Windows detritus
9+
10+
# Windows image file caches
11+
Thumbs.db
12+
ehthumbs.db
13+
14+
# Folder config file
15+
Desktop.ini
16+
17+
# Recycle Bin used on file shares
18+
$RECYCLE.BIN/
19+
20+
# Mac crap
21+
.DS_Store
22+
23+
## Komodo project files
24+
*.komodoproject
25+
*.kpf
26+
/CrashHeatMap/nbproject/private/
27+
/FishFryCountdown/nbproject/private/
2828
/nbproject/private/

Diff for: BikeCrashMap/CrashHeatMap.html

+64-64
Original file line numberDiff line numberDiff line change
@@ -1,64 +1,64 @@
1-
<!DOCTYPE html>
2-
<html>
3-
<head>
4-
<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
5-
<meta http-equiv="content-type" content="text/html; charset=UTF-8"/>
6-
<meta name="apple-mobile-web-app-capable" content="yes">
7-
<meta charset="utf-8">
8-
<meta name="viewport" content="width=device-width, initial-scale=1">
9-
<meta name="description" content="CodeForPittsburgh">
10-
<meta name="author" content="Mark Howe">
11-
<title>Bike Crash Heat Map</title>
12-
<link rel="icon" href="img/homepc.png">
13-
<link rel="stylesheet" href="css/bootstrap.css">
14-
15-
<script src = "https://maps.googleapis.com/maps/api/js?key=AIzaSyCb3EA0lfao273s6Jkp8tfTzJfUSkswpOw&libraries=visualization"></script>
16-
<script src="js/heatmap.js"></script>
17-
18-
<style>
19-
#mapsection {
20-
width:100%;
21-
height:750px;
22-
float:left;
23-
padding:10px;
24-
}
25-
#info-box {
26-
background-color: #eeeeee;
27-
border: 2px solid black;
28-
bottom: 125px;
29-
height: 60px;
30-
padding: 10px;
31-
32-
}
33-
</style>
34-
35-
</head>
36-
37-
<body>
38-
39-
<div class="container">
40-
<div class="jumbotron">
41-
<h2 class="text-center"> Bicycle Crash Data Heat Map 2004-2015</h2>
42-
</div>
43-
44-
<div class="row">
45-
<div class="col-sm-10">
46-
<div id ="mapsection">
47-
</div>
48-
</div>
49-
50-
51-
<div class="col-sm-2">
52-
53-
<div id="nav">
54-
<div id="info-box">?</div>
55-
<br>
56-
</div>
57-
</div>
58-
</div>
59-
</div>
60-
61-
62-
</body>
63-
</html>
64-
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
5+
<meta http-equiv="content-type" content="text/html; charset=UTF-8"/>
6+
<meta name="apple-mobile-web-app-capable" content="yes">
7+
<meta charset="utf-8">
8+
<meta name="viewport" content="width=device-width, initial-scale=1">
9+
<meta name="description" content="CodeForPittsburgh">
10+
<meta name="author" content="Mark Howe">
11+
<title>Bike Crash Heat Map</title>
12+
<link rel="icon" href="img/homepc.png">
13+
<link rel="stylesheet" href="css/bootstrap.css">
14+
15+
<script src = "https://maps.googleapis.com/maps/api/js?key=AIzaSyCb3EA0lfao273s6Jkp8tfTzJfUSkswpOw&libraries=visualization"></script>
16+
<script src="js/heatmap.js"></script>
17+
18+
<style>
19+
#mapsection {
20+
width:100%;
21+
height:750px;
22+
float:left;
23+
padding:10px;
24+
}
25+
#info-box {
26+
background-color: #eeeeee;
27+
border: 2px solid black;
28+
bottom: 125px;
29+
height: 60px;
30+
padding: 10px;
31+
32+
}
33+
</style>
34+
35+
</head>
36+
37+
<body>
38+
39+
<div class="container">
40+
<div class="jumbotron">
41+
<h2 class="text-center"> Bicycle Crash Data Heat Map 2004-2015</h2>
42+
</div>
43+
44+
<div class="row">
45+
<div class="col-sm-10">
46+
<div id ="mapsection">
47+
</div>
48+
</div>
49+
50+
51+
<div class="col-sm-2">
52+
53+
<div id="nav">
54+
<div id="info-box">?</div>
55+
<br>
56+
</div>
57+
</div>
58+
</div>
59+
</div>
60+
61+
62+
</body>
63+
</html>
64+

Diff for: BikeCrashMap/README.md

+64-64
Original file line numberDiff line numberDiff line change
@@ -1,64 +1,64 @@
1-
# SQLCrashData
2-
## Maps and data for Bike Crashes
3-
Code for Pittsburgh is working on displaying crash data
4-
5-
Started by Mark Howe @mhowe0422 with @bikepgh
6-
7-
Data is from
8-
9-
https://data.wprdc.org/dataset/allegheny-county-crash-data
10-
11-
and uses only Bike Crash information
12-
13-
This is a work in progress.
14-
15-
http://codeforpittsburgh.github.io/BikeCrashMap/
16-
17-
With a heat map at
18-
19-
http://codeforpittsburgh.github.io/CrashHeatMap/
20-
21-
Bike rental locations from
22-
23-
https://healthyridepgh.com/data
24-
25-
26-
## Change requests
27-
28-
1) Display by year
29-
30-
2) Display by severity
31-
32-
3) Better GUI
33-
34-
4) Like to merge the county and city json shape data to allow the city neighborhoods to work during the mouse roll-over.
35-
36-
5) Handle adding/removing layers (bike,county,city neighborhoods... etc)
37-
38-
39-
## Application notes
40-
41-
These maps are based on the Google Map API
42-
43-
The current API key is registered to mhowe so if you clone/copy the code please use
44-
your own API key.
45-
46-
The code is split out to html (View) and the code for the javascript (Model and Controller) in a seperate file.
47-
48-
The main map display is index.php and based on bootstrap.js.
49-
50-
Used fixed xml file for the data that has the addresses already geo-coded
51-
52-
~~There are a number of bak named files. They will be cleaned up shortly.~~
53-
54-
## Change list
55-
56-
Removed color for maps. It was difficult to determine the bike map layer colors
57-
58-
Removed the City Neighborhood layer until I can get the mouse over to display neighborhood name
59-
60-
Added bike rental location with bike icon and click gets location and rack count
61-
62-
I know we don't control the bike layer line colors, but as a color-blind person I can't tell my dark green, green and brown lines
63-
64-
1+
# SQLCrashData
2+
## Maps and data for Bike Crashes
3+
Code for Pittsburgh is working on displaying crash data
4+
5+
Started by Mark Howe @mhowe0422 with @bikepgh
6+
7+
Data is from
8+
9+
https://data.wprdc.org/dataset/allegheny-county-crash-data
10+
11+
and uses only Bike Crash information
12+
13+
This is a work in progress.
14+
15+
http://codeforpittsburgh.github.io/BikeCrashMap/
16+
17+
With a heat map at
18+
19+
http://codeforpittsburgh.github.io/CrashHeatMap/
20+
21+
Bike rental locations from
22+
23+
https://healthyridepgh.com/data
24+
25+
26+
## Change requests
27+
28+
1) Display by year
29+
30+
2) Display by severity
31+
32+
3) Better GUI
33+
34+
4) Like to merge the county and city json shape data to allow the city neighborhoods to work during the mouse roll-over.
35+
36+
5) Handle adding/removing layers (bike,county,city neighborhoods... etc)
37+
38+
39+
## Application notes
40+
41+
These maps are based on the Google Map API
42+
43+
The current API key is registered to mhowe so if you clone/copy the code please use
44+
your own API key.
45+
46+
The code is split out to html (View) and the code for the javascript (Model and Controller) in a seperate file.
47+
48+
The main map display is index.php and based on bootstrap.js.
49+
50+
Used fixed xml file for the data that has the addresses already geo-coded
51+
52+
~~There are a number of bak named files. They will be cleaned up shortly.~~
53+
54+
## Change list
55+
56+
Removed color for maps. It was difficult to determine the bike map layer colors
57+
58+
Removed the City Neighborhood layer until I can get the mouse over to display neighborhood name
59+
60+
Added bike rental location with bike icon and click gets location and rack count
61+
62+
I know we don't control the bike layer line colors, but as a color-blind person I can't tell my dark green, green and brown lines
63+
64+

0 commit comments

Comments
 (0)