aqs_dailysummary_by_county: aqs_dailysummary_by_county

Description Usage Arguments Value Note See Also Examples

View source: R/bycounty.R

Description

\lifecycle

stable Returns multiple years of data where daily data is aggregated at the site level. Returned is a daily summary matching the input parameter, stateFIPS and county_code provided for bdate - edate time frame. Variables returned include mean value, maxima, percentiles, and etc.

Usage

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
aqs_dailysummary_by_county(
  parameter,
  bdate,
  edate,
  stateFIPS,
  countycode,
  cbdate = NA_Date_,
  cedate = NA_Date_,
  return_header = FALSE
)

Arguments

parameter

a character list or a single character string which represents the parameter code of the air pollutant related to the data being requested.

bdate

a R date object which represents that begin date of the data selection. Only data on or after this date will be returned.

edate

a R date object which represents that end date of the data selection. Only data on or before this date will be returned.

stateFIPS

a R character object which represents the 2 digit state FIPS code (with leading zero) for the state being requested. @seealso aqs_states() for the list of available FIPS codes.

countycode

a R character object which represents the 3 digit state FIPS code for the county being requested (with leading zero(s)). @seealso aqs_counties_by_state() for the list of available county codes for each state.

cbdate

a R date object which represents a "beginning date of last change" that indicates when the data was last updated. cbdate is used to filter data based on the change date. Only data that changed on or after this date will be returned. This is an optional variable which defaults to NA_Date_.

cedate

a R date object which represents an "end date of last change" that indicates when the data was last updated. cedate is used to filter data based on the change date. Only data that changed on or before this date will be returned. This is an optional variable which defaults to NA_Date_.

return_header

If FALSE (default) only returns data requested. If TRUE returns a AQSAPI_v2 object which is a two item list that contains header information returned from the API server mostly used for debugging purposes in addition to the data requested.

Value

a tibble or an AQS_Data Mart_APIv2 S3 object that contains daily summary statistics for the given parameter for a single countycode and stateFIPS combination. An AQS_Data Mart_APIv2 is a 2 item named list in which the first item (\$Header) is a tibble of header information from the AQS API and the second item (\$Data) is a tibble of the data returned.

Note

The AQS API only allows for a single year of dailysummary to be retrieved at a time. This function conveniently extracts date information from the bdate and edate parameters then makes repeated calls to the AQSAPI retrieving a maximum of one calendar year of data at a time. Each calendar year of data requires a separate API call so multiple years of data will require multiple API calls. As the number of years of data being requested increases so does the length of time that it will take to retrieve results. There is also a 5 second wait time inserted between successive API calls to prevent overloading the API server. This operation has a linear run time of /(Big O notation: O/(n + 5 seconds/)/).

See Also

Other Aggregate _by_county functions: aqs_annualsummary_by_county(), aqs_monitors_by_county(), aqs_qa_annualperformanceeval_by_county(), aqs_qa_blanks_by_county(), aqs_qa_collocated_assessments_by_county(), aqs_qa_flowrateaudit_by_county(), aqs_qa_flowrateverification_by_county(), aqs_qa_one_point_qc_by_county(), aqs_qa_pep_audit_by_county(), aqs_quarterlysummary_by_county(), aqs_quarterlysummary_by_site(), aqs_sampledata_by_county(), aqs_transactionsample_by_county()

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
# returns an aqs S3 object of daily summary FRM/FEM PM2.5 data
          #  for Wake County, NC between January and February 2016
 ## Not run: aqs_dailysummary_by_county(parameter = "88101",
                                     bdate = as.Date("20160101",
                                                   format = "%Y%m%d"),
                                     edate = as.Date("20170228",
                                                     format = "%Y%m%d"),
                                     stateFIPS = "37",
                                     countycode = "183"
                                    )
         
## End(Not run)

RAQSAPI documentation built on Jan. 29, 2022, 1:08 a.m.