forked from jtleek/modules
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenvironmental.html
217 lines (164 loc) · 4.68 KB
/
environmental.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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>Outdoor Air Quality in the United States</title>
<style type="text/css">
body, td {
font-family: sans-serif;
background-color: white;
font-size: 12px;
margin: 8px;
}
tt, code, pre {
font-family: 'DejaVu Sans Mono', 'Droid Sans Mono', 'Lucida Console', Consolas, Monaco, monospace;
}
h1 {
font-size:2.2em;
}
h2 {
font-size:1.8em;
}
h3 {
font-size:1.4em;
}
h4 {
font-size:1.0em;
}
h5 {
font-size:0.9em;
}
h6 {
font-size:0.8em;
}
a:visited {
color: rgb(50%, 0%, 50%);
}
pre {
margin-top: 0;
max-width: 95%;
border: 1px solid #ccc;
white-space: pre-wrap;
}
pre code {
display: block; padding: 0.5em;
}
code.r, code.cpp {
background-color: #F8F8F8;
}
table, td, th {
border: none;
}
blockquote {
color:#666666;
margin:0;
padding-left: 1em;
border-left: 0.5em #EEE solid;
}
hr {
height: 0px;
border-bottom: none;
border-top-width: thin;
border-top-style: dotted;
border-top-color: #999999;
}
@media print {
* {
background: transparent !important;
color: black !important;
filter:none !important;
-ms-filter: none !important;
}
body {
font-size:12pt;
max-width:100%;
}
a, a:visited {
text-decoration: underline;
}
hr {
visibility: hidden;
page-break-before: always;
}
pre, blockquote {
padding-right: 1em;
page-break-inside: avoid;
}
tr, img {
page-break-inside: avoid;
}
img {
max-width: 100% !important;
}
@page :left {
margin: 15mm 20mm 15mm 10mm;
}
@page :right {
margin: 15mm 10mm 15mm 20mm;
}
p, h2, h3 {
orphans: 3; widows: 3;
}
h2, h3 {
page-break-after: avoid;
}
}
</style>
</head>
<body>
<h1>Outdoor Air Quality in the United States</h1>
<h2>Background</h2>
<p>Outdoor air pollution in the United States monitored and regulated by
the <a href="http://www.epa.gov">Environmental Protection Agency</a> as well as
many state and local environmental agencies. Since the introduction of
the Clean Air Act in 1970, a major goal has been to reduce the levels
of outdoor air pollution so that we can maintain an adequate margin of
safety with respect to protecting public health.</p>
<p>So how are we doing? This is a question that can be asked and answered
in a variety of ways and different stakeholders (i.e. policy-makers,
scientists, state and local regulators) may have different levels of
interest in specific questions.</p>
<p>The goal of this project is to take the EPA's comprehensive database
of air pollution monitoring information and to tell a coherent story
about how outdoor air pollution has changed over time and space in the
United States. In this project you will examine a pair of “criteria
pollutants”, which are air pollutants for which national ambient air
quality standards have been developed. </p>
<p>The two pollutants that you will focus on in this project are O3 (ozone) and PM10 (coarse particulate matter).</p>
<h3>Data</h3>
<p>Data for outdoor air pollution monitoring is collected by the
Environmental Protection Agency and is made available through the
EPA's <a href="http://www.epa.gov/ttn/airs/airsaqs/detaildata/downloadaqsdata.htm">Air Quality
System</a>
(AQS). We have mirrored the EPA's web site on Coursera so please DO
NOT download the data from the EPA site. You can download the data
from the Coursera site directly at [URL].</p>
<h2>Questions to Answer</h2>
<p>The goal of national ambient air quality standards is to set maximum
levels at which the pollutants can be found in the air. However, in
many locations in the U.S. air pollution levels exceed the standards
and thus those locations are in “non-attainment”.</p>
<p>For this project, you need to develop a data product that answers the
following questions</p>
<ul>
<li><p>Given that various air quality control measures have been
implemented across the country, can we observe whether air pollution
levels have decreased over time?</p></li>
<li><p>In which counties are air pollution levels decreasing the fastest?
In which counties are they decreasing the slowest?</p></li>
<li><p>Which counties and states are in attainment of the air quality
standards which are in non-attainment?</p></li>
</ul>
<h2>Milestones</h2>
<ol>
<li><p>Write a set of R functions that scrapes the necessary pollution
data from the web and arranges the dataset in appropriate directories</p></li>
<li></li>
<li></li>
<li></li>
</ol>
<h2>What You Submit</h2>
<h2>Grading</h2>
<h2>Other Information</h2>
</body>
</html>