R/data.R

# ACS TABLES --------------------------------------------------------------

#' @title A Tibble of ACS Tables
#' @description A `tibble` of the American Community Survey tables that
#'   are used in the Neighborhood Change Typology model.
#' @docType data
#' @format A `tibble` with four (4) rows and three (3) columns.
#'
#'   The object includes the following variables:
#' \describe{
#'
#'   \item{`• NAME`:}{The ACS table's identification number}
#'   \item{`• TOPIC`:}{The topic of the ACS table}
#'   \item{`• UNIVERSE`:}{The universe that the ACS table's count represent
#'     (e.g., households, adults, population living in occupied housing units, etc.)}
#'
#'   }
#'
#' @seealso \code{\link{get_external_data_plan}}
"acs_tables"


# KC BOUNDARY -------------------------------------------------------------

#' @title The Boundary of King County, WA
#' @description A polygon of the boundary of King County, WA.
#' @docType data
#' @format The data is a single record simple feature (class = `sf`) with
#'   one variable and a `MULTIPOLYGON` geometry column.
#'
#'   The object includes the following variables:
#' \describe{
#'
#'   \item{`• NAME`:}{The name of the county}
#'   \item{`• geometry`:}{The simple feature column (geometry type is `MULTIPOLYGON`)}
#'
#'   }
#'
#' @seealso \code{\link{get_external_data_plan}}
"kc_boundary"



# EXTERNAL DATA LIST ------------------------------------------------------

#' @title External Data List
#' @description This is a list of datasets that are included in the package workflow but
#'   are not stored in the \code{data/} directory.
#'
#'   The primary reason that a dataset is included in this list is that it exceeds Github's
#'   50 MB file size limit (see \href{https://help.github.com/articles/conditions-for-large-files/}{here} for details).
#'
#' @docType data
#' @format The data itself is simply a \code{NULL} value.
#'
#'  Its purpose is to provide some documentation of the datasets that are not directly
#'  included in the package.
#'
#'  The following external datasets are accessed by workflows in this package:
#'
#' \describe{
#'
#'   \item{`• waterbodies`:}{Multipolygons of the major waterbodies in King County, WA (\href{https://osf.io/9fp6q/}{osf.io/9fp6q})}
#'   \item{`• census_tracts_2009`:}{King County census tract boundaries (2009) (\href{https://osf.io/5gx8a/}{osf.io/5gx8a}).\cr
#'     Original source: \href{ftp://ftp.census.gov/geo/tiger/TIGER2009/53_WASHINGTON/53033_King_County/tl_2009_53033_tract00.zip}{ftp.census.gov} }
#'   \item{`• census_tracts_2016`:}{King County census tract boundaries (2009) \cr
#'     Downloaded with the \code{\link[tigris]{tigris}} package. }
#'   \item{`• acs_data`:}{A `tibble` of all of the American Community Survey data variables used in this project.\cr
#'     Downloaded with the \code{\link[tidycensus]{tidycensus}} package.}
#'     \item{`• parcel_value`:}{Tax value history for all parcels in King County, WA (\href{https://osf.io/XXX/}{osf.io/XXX})}
#'
#'   }
#'
#' @seealso \code{\link{get_external_data_plan}}
"exteral_datasets_list"
tiernanmartin/NeighborhoodChangeTypology documentation built on May 17, 2019, 1:02 p.m.