Top Banner
AQS Concepts
21

AQS Concepts. In This Section We Will Talk About AQS Concepts 2 AQS Background History AQS as part of a monitoring program Types of Information in AQS.

Dec 21, 2015

Download

Documents

Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: AQS Concepts. In This Section We Will Talk About AQS Concepts 2 AQS Background History AQS as part of a monitoring program Types of Information in AQS.

AQS Concepts

Page 2: AQS Concepts. In This Section We Will Talk About AQS Concepts 2 AQS Background History AQS as part of a monitoring program Types of Information in AQS.

In This Section We Will Talk About

AQS Concepts2

AQS BackgroundHistoryAQS as part of a monitoring programTypes of Information in AQSAQS and CDXDatabase basicsAQS Data ModelTying AQS codes to real-world examples

Page 3: AQS Concepts. In This Section We Will Talk About AQS Concepts 2 AQS Background History AQS as part of a monitoring program Types of Information in AQS.

What is AQS?

AQS Concepts3

EPA’s Database Application used to House and Store Ambient Air Quality Data

Centralizes the Location of DataUsed to Determine if areas are meeting the

National Ambient Air Quality Standards (NAAQS)

Used by Universities and Institutes to Perform Health Studies

Page 4: AQS Concepts. In This Section We Will Talk About AQS Concepts 2 AQS Background History AQS as part of a monitoring program Types of Information in AQS.

Brief History of AQS

AQS Concepts4

SAROAD (1970 – 1985)Storage And Retrieval Of Air DataCreated in Response to the 1970 Clean Air Act

AIRS – AQS (1985 – 2000)Aeroemetric Information Retrieval System

Stored Ambient Air Quality Data (Air Quality Subsystem) as well as Point Source Emission Data

Combined the Data from Ambient, Point Source, and Quality Assurance Data Systems

AQS (2000 – Present)Air Quality SystemContains Ambient Air Quality Data and Quality

Assurance Information

Page 5: AQS Concepts. In This Section We Will Talk About AQS Concepts 2 AQS Background History AQS as part of a monitoring program Types of Information in AQS.

How Does AQS Fit in the Big Picture?

AQS Concepts5

Monitor the Air Handle

Data

Acquire Data

Report (Load) DataAnalyze

RegulateStore

AQS

Page 6: AQS Concepts. In This Section We Will Talk About AQS Concepts 2 AQS Background History AQS as part of a monitoring program Types of Information in AQS.

Types of Core Data in AQS

AQS Concepts6

Site

Mon

itors

Det

ail

Dat

a

Page 7: AQS Concepts. In This Section We Will Talk About AQS Concepts 2 AQS Background History AQS as part of a monitoring program Types of Information in AQS.

Site Information

AQS Concepts7

Physical location – Where is the site?Latitude and longitudeStreet address

Characteristics of the siteNearby StreetsOpen Path Set UpPrimary monitor (PM2.5, lead or NO2)

Identified byState Code - County Code - Site ID ORTribal Code - Site ID

Page 8: AQS Concepts. In This Section We Will Talk About AQS Concepts 2 AQS Background History AQS as part of a monitoring program Types of Information in AQS.

Monitor Information

AQS Concepts8

How is a Given Pollutant Measured? When Sampling Began Which Network(s) are associated with the Monitor What Agencies run the Monitor What Are the Monitoring Objectives What Obstructions are Nearby What Nearby Roads May Affect the Monitor If the Monitor is Collocated, is this monitor the Primary or

Collocated Monitor? If Collocated, which is the Primary? How Frequently Does the Monitor Try to Get a Sample?

Identified by AQS Site ID + Pollutant Code + Parameter Occurrence Code (POC)

(Think of it a POC a Sequence Number)

Page 9: AQS Concepts. In This Section We Will Talk About AQS Concepts 2 AQS Background History AQS as part of a monitoring program Types of Information in AQS.

Detail Data

AQS Concepts9

Sample Measurement Obtained by the InstrumentUser Reports:

Individual Sample Data (Raw Data) Any Notes & Flags Pertaining to the Sample Data

Audit Data (Precision and Bias Data)AQS Computes

Multi-hour Averages (e.g. 8-hour running average) Daily Summaries Site Summaries (PM2.5 and Lead Only) Quarterly Summaries Annual Summaries Site Annual Summaries (PM2.5 and Lead Only)

Identified by Individual Sample Data

Monitor ID + When the Sample Was Taken (Date & Time) + StatusAudit Data

Monitor ID + When the Sample Was Taken (Date & Time)Summary Data

Monitor ID + Time Period Summarized + Sample Duration + Exceptional Data Type + Pollutant Standard

Page 10: AQS Concepts. In This Section We Will Talk About AQS Concepts 2 AQS Background History AQS as part of a monitoring program Types of Information in AQS.

Reference Data

AQS Concepts10

“Extra” Information about the Data in AQSSets of Codes Available for these DescriptionsStandard Codes Used where Available

Codes are Used to Identify States, Counties, Tribal Lands, Pollutants, Sample Lengths, etc…

Page 11: AQS Concepts. In This Section We Will Talk About AQS Concepts 2 AQS Background History AQS as part of a monitoring program Types of Information in AQS.

Examples of Commonly Used Codes

AQS Concepts11

Parameter CodesO3 = 44201NO2 = 42602SO2 hourly = 42401CO = 42101PM2.5 = 88101PM10 STP = 81102Lead (TSP) at LC FRM/FEM=

14129Lead (PM10) at LC FRM/FEM =

85129

Units of Measure001 = µg/m3

007 = ppm (parts per million)008 = ppb (parts per billion

Collection Frequency Codes1 = Every Day3 = Every 3rd Day6 = Every 6th Day

Duration Codes7 = 24 Hours1 = 1 HourW = 8-Hour Running Avg.*X = 24-Hour Block Avg.*Y = 3-Hour Block Avg. *

* AQS Generated DurationsLC = local conditionsSTP = standard temperature and pressureFRM = Federal Reference MethodFEM = Federal Equivalent Method

Page 12: AQS Concepts. In This Section We Will Talk About AQS Concepts 2 AQS Background History AQS as part of a monitoring program Types of Information in AQS.

Core + Reference Information

AQS Concepts12

An Ozone (44201) Monitor in Wake County(183), North Carolina (37) is represented as37-183-0001-44201-1

A PM10 (81102) Monitor for the St. Regis Band of Mohawk Indians of New York (007) is represented asTT-007-1234-81102-1

Page 13: AQS Concepts. In This Section We Will Talk About AQS Concepts 2 AQS Background History AQS as part of a monitoring program Types of Information in AQS.

Components of AQS

AQS Concepts13

Oracle DatabaseAQS

Oracle Forms &Reports

CDX or CDX Web;EN

• Holds all the Data• All the Processes and Codes• Enforcement of the Rules

• User Interface for the database

• Sends files to/from AQS• external application

Page 14: AQS Concepts. In This Section We Will Talk About AQS Concepts 2 AQS Background History AQS as part of a monitoring program Types of Information in AQS.

What is a Database?

AQS Concepts14

A collection of information about a particular subject stored so that the information can be accessed and organized

The AQS Database stores information about ambient air quality measurements

Oracle DatabaseAQS

Page 15: AQS Concepts. In This Section We Will Talk About AQS Concepts 2 AQS Background History AQS as part of a monitoring program Types of Information in AQS.

How Does it Do That?

AQS Concepts15

Data are Stored in TablesIdentifies the Different “Categories” of

Information that You Want to TrackTables Consist of Fields & Records of

Information (Like Spreadsheet Columns & Rows)Fields Defines the Attributes / Characteristics of the

Information in a TableRecords Are Individual Entries in the Table

Tables Can Be Related to Each Other

Oracle DatabaseAQS

Page 16: AQS Concepts. In This Section We Will Talk About AQS Concepts 2 AQS Background History AQS as part of a monitoring program Types of Information in AQS.

Address Book Example

AQS Concepts16

People• ID• FirstName• LastName• Address• EMailAddress

Phone_Numbers• ID• PhoneType• TelephoneNumber

A Person Can HaveMultiple Phone Numbers

PhoneTypes• PhoneType

This could be a table with a list of valid phone types

(“Cell”, “Home”, “Office”, etc.)

Oracle DatabaseAQS

The Relationship is Defined Between the Two Tables by the “ID” Field

Page 17: AQS Concepts. In This Section We Will Talk About AQS Concepts 2 AQS Background History AQS as part of a monitoring program Types of Information in AQS.

The AQS Database

AQS Concepts17

The AQS database can be considered to have four fundamental types of data:

Sites: Information about monitoring locationsMonitors: Information about how

measurements are takenDetail Data: Measurements, Summaries, and

QA informationReference Data: Information about the real-

world (e.g., States, Tribes, Pollutants (parameters))

Oracle DatabaseAQS

Page 18: AQS Concepts. In This Section We Will Talk About AQS Concepts 2 AQS Background History AQS as part of a monitoring program Types of Information in AQS.

AQS Site and Monitor Data Model

AQS Concepts18

Oracle DatabaseAQS

Page 19: AQS Concepts. In This Section We Will Talk About AQS Concepts 2 AQS Background History AQS as part of a monitoring program Types of Information in AQS.

AQS Data Model – Sample Data

AQS Concepts19

Oracle DatabaseAQS

Page 20: AQS Concepts. In This Section We Will Talk About AQS Concepts 2 AQS Background History AQS as part of a monitoring program Types of Information in AQS.

AQS Data Model – Summary Data

AQS Concepts20

Oracle DatabaseAQS

Page 21: AQS Concepts. In This Section We Will Talk About AQS Concepts 2 AQS Background History AQS as part of a monitoring program Types of Information in AQS.

Exercise 1.1

AQS Concepts21

1. Name the 4 Categories of Data in AQS.1. ________2. ________3. ________4. ________

2. What is meant by a “site”? How do you uniquely define a “site” in AQS?

3. What is meant by a “monitor”? How do you uniquely define a “monitor” in AQS?

4. What would a Summary Record with a Duration Code of “W” and a Parameter Code of “44201” represent?