-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
179 lines (157 loc) · 8.8 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<meta name="description" content="">
<meta name="author" content="">
<link rel="icon" href="../../favicon.ico">
<title>Civic Data Hackathon: Syracuse Roads Data Challenge Powered By AT&T</title>
<!-- Bootstrap core CSS -->
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css" integrity="sha384-rHyoN1iRsVXV4nD0JutlnGaslCJuC7uwjduW9SVrLvRYooPp2bWYgmgJQIXwl/Sp" crossorigin="anonymous">
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
<!-- Custom styles for this template -->
<link href="./css/jumbotron.css" rel="stylesheet">
<link href="./css/main.css" rel="stylesheet">
<!-- Just for debugging purposes. Don't actually copy these 2 lines! -->
<!--[if lt IE 9]><script src="../../assets/js/ie8-responsive-file-warning.js"></script><![endif]-->
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<nav class="navbar navbar-inverse navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<a class="navbar-brand" href="#">City of Syracuse</a>
</div>
</div>
</nav>
<!-- Main jumbotron for a primary marketing message or call to action -->
<div class="jumbotron">
<div class="container">
<div class="row">
<h1 style="color:#d44500">Civic Data Hackathon: Syracuse Roads Data Challenge</h1>
</div>
<div class="row">
<div>
<h2>Powered by AT&T</h2>
</div>
</div>
<div class="row">
<p style="text-align:center">Download City of Syracuse data below!</p>
<div class="row">
<div class="button-center">
<a class="btn btn-primary" href="https://ischool.syr.edu/landing-pages/civic-data-hackathon-syracuse-roads-challenge" target="_blank" role="button">Challenge Details</a>
<a class="btn btn-primary" href="examples.html" target="_blank" role="button">Examples</a>
</div>
</div>
</div>
</div>
</div>
<div class="container">
<!-- Example row of columns -->
<div class="row text-center">
<h2><strong>City Data</strong></h2>
</div>
<div class="row">
<div class="col-md-4">
<h3>Street Shapefile</h3>
<p>This street shapefile includes all of the streets in the City of Syracuse. It also includes the category of street, like a major road versus a local road. You can join the road rating and potholes data to this shapefile using the unique Street ID attribute that is contained across datasets.</p>
<div class="button-center">
<p><a class="btn btn-primary" href="./data/street_shapefile.zip" role="button">Download Data</a></p>
<p><a class="btn btn-primary" href="./data/street_shapefile/road_centerlines.pdf" role="button">Data Description</a></p>
</div>
</div>
<div class="col-md-4">
<h3>Potholes Filled</h3>
<p>This is a record of most potholes filled in the City of Syracuse since April, 2016. Most potholes are filled using a machine called a durapatcher. Each time a durapatcher fills a pothole, a row of data is logged, documenting the time and location. Some larger potholes are filled using other methods, and not all potholes in the city are found. The City only started tracking all potholes filled in April, 2016.</p>
<div class="button-center">
<p><a class="btn btn-primary" href="./data/potholes.csv" role="button">Download Data</a></p>
<p><a class="btn btn-primary" href="./data/PotholesDataDictionary.pdf" role="button">Data Description</a></p>
</div>
</div>
<div class="col-md-4">
<h3>Road Ratings</h3>
<p>Every road block in the city is rated on a 1-10 scale. Each road is rated every two years, and we are supplying records of road ratings going back to the year 2000. There is a scoring criteria for these ratings - 1 is the worst rating and 10 is the best. Generally, it is accepted that once a road reaches a rating of 5 or below, it is a candidate for larger maintenance work called "milling and paving".</p>
<div class="button-center">
<p><a class="btn btn-primary" href="roadratings.html" role="button">Download Ratings 2000-2015</a></p>
<p><a class="btn btn-primary" href="./data/RoadRatingsDataDictionary.pdf" role="button">Data Description</a></p>
</div>
</div>
</div>
<div class="row text-center">
<h2><strong>Other Open Data</strong></h2>
</div>
<div class="row">
<div class="col-md-4">
<h3>Central New York Data</h3>
<ul>
<li><a href="http://communitygeography.org/maps-data-profiles/" target="_blank">Syracuse Community Geography</a></li>
<li><a href="https://syruniv.maps.arcgis.com/apps/OnePane/basicviewer/index.html?appid=e3161b83f9bd4a6c95b744947c707436" target="_blank">MapSyracuse</a></li>
<li><a href="http://www.fsihost.com/onondaga/Default.aspx" target="_blank">Onondaga County GIS</a></li>
<li><a href="https://smtc.maps.arcgis.com/home/index.html" target="_blank">Syracuse Metropolitan Transportation Council GIS</a></li>
</ul>
</div>
<div class="col-md-4">
<h3>New York State Data</h3>
<ul>
<li><a href="https://data.ny.gov/" target="_blank">Open Data Portal</a></li>
<li><a href="https://health.data.ny.gov/" target="_blank">Health Data Portal</a></li>
<li><a href="http://gis.ny.gov/GIS">GIS Clearinghouse</a></li>
<li><a href="https://511ny.org/developers/resources">511NY Developer Resource Area</a></li>
</ul>
</div>
<div class="col-md-4">
<h3>Federal Data</h3>
<ul>
<li><a href="http://data.gov" target="_blank">Open Data Portal</a></li>
<li><a href="http://www-fars.nhtsa.dot.gov/QueryTool/querysection/selectyear.aspx" target="_blank">National Highway Traffic Safety Administration</a></li>
<li><a href="http://www.rita.dot.gov/bts/ntm">National Transit Map</a></li>
</ul>
</div>
</div>
</div>
<hr>
<footer>
<div class="container">
<div class="row">
<div class="col-md-2">
<img class="img-responsive center-block" width=50 SRC="./assets/syracuselogo.jpg">
</div>
<div class="col-md-2">
<img class="img-responsive center-block" width=50 SRC="./assets/ischoollogo.jpg">
</div>
<div class="col-md-2">
<img class="img-responsive center-block" width=50 SRC="./assets/attlogo.PNG">
</div>
</div>
</div>
</footer>
</div> <!-- /container -->
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="../../assets/js/vendor/jquery.min.js"><\/script>')</script>
<script src="../../dist/js/bootstrap.min.js"></script>
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
<script src="../../assets/js/ie10-viewport-bug-workaround.js"></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-66477210-2', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>