R/county_job_forecast.R

Defines functions county_job_forecast

Documented in county_job_forecast

#' API Wrapper to call Colorado county job forecasts
#'
#' This API wrapper returns a dataframe of county populations for the years
#'  and counties selected.
#'
#'  Note: Selecting all of the counties can be done by providing 300 as the fips_list
#'        The Denver Metro counties are included together as fips=500.
#'
#' @param fips_list Numeric FIPS code(s) for the county (0 for the state) (no leading 0's)
#' @param year_list Numeric list of years between 1990 and 2050
#' @importFrom jsonlite read_json
#' @import dplyr
#'
#' @export


county_job_forecast = function(fips_list, year_list) {
  # subject to change, but this is the server URL
  url_stub = "https://gis.dola.colorado.gov/lookups/jobs-forecast?"

  # Type checks for each list so that we don't get any text sent to the API for a SQL Injection.
  if (!is.numeric(fips_list))
    stop("FIPS should be numeric.")
  if (!is.numeric(year_list))
    stop("Years should be numeric.")

  if (any(year_list < 1990) || any(year_list > 2050))
    stop("One or more year is out of range. Years should be between 1990 and 2050")

  # Checks for two special call types 300 is for all counties, 0 is for state total, puts proper list
  # together for call
  suppressWarnings(if (fips_list == 300 | fips_list == 0) {
    fips = c( 3, 7, 9, 11, 15, 17, 19, 21, 23, 25, 27, 29,  33, 37, 39, 41, 43,
             45, 47, 49, 51, 53, 55, 57, 61, 63, 65, 67, 69, 71, 73, 75, 77, 79, 81, 83, 85, 87, 89,
             91, 93, 95, 97, 99, 101, 103, 105, 107, 109, 111, 113, 115, 117, 119, 121, 123, 125, 500)
  } else {

    fips = fips_list
  })
  # Creates the URL for the API call
  call = paste0(url_stub, "year=", paste(year_list, collapse = ","), "&county=", paste(fips, collapse = ","))

  # Makes the API call and converts the JSON to a data frame
  data = as.data.frame(jsonlite::read_json(call, simplifyVector = TRUE))
  # Checks if the State Total call (0) is used and if so creates the total, otherwise fixes the type and
  # naming for totalPopulation
  suppressWarnings(if (fips_list == 0) {
    data = group_by(data, population_year) %>% summarize(totalJobs = sum(as.numeric(totaljobs))) %>%
      mutate(countyfips = 0) %>% ungroup()%>%select(countyfips, year=population_year, totalJobs)
  } else {
  data = data%>%mutate(totalJobs = as.numeric(totaljobs))%>%select(countyfips, year=population_year, totalJobs)
  })
  # tells the function what to return and changes it from a dplyr tbl object back to a generic data
  # frame
  return(as.data.frame(data))

}
ColoradoDemography/codemogAPI documentation built on May 6, 2019, 12:28 p.m.