Nothing
#' @keywords locator
#' @export
#'
#' @title Return US county name at specified locations
#'
#' @param longitude Vector of longitudes in decimal degrees East.
#' @param latitude Vector of latitudes in decimal degrees North.
#' @param dataset Name of spatial dataset to use.
#' @param stateCodes Vector of US state codes used to limit the search.
#' @param allData Logical specifying whether a full dataframe should be returned.
#' @param useBuffering Logical flag specifying the use of location buffering to
#' find the nearest polygon if no target polygon is found.
#'
#' @description Uses spatial comparison to determine which county polygons the
#' locations fall into and returns the county name strings for those polygons.
#'
#' Specification of \code{stateCodes} limits spatial searching to the specified
#' states and greatly improves performance.
#'
#' If \code{allData = TRUE}, additional data is returned.
#'
#' @return Vector of English language county names.
#'
#' @examples
#' \dontrun{
#' library(MazamaSpatialUtils)
#' setSpatialDataDir("~/Data/Spatial_0.8")
#'
#' loadSpatialData("USCensusCounties")
#'
#' longitude <- seq(-140, -90)
#' latitude <- seq(20, 70)
#' getUSCounty(longitude, latitude)
#' }
#'
#' @references http://www.naturalearthdata.com/downloads/10m-cultural-vectors/
#' @seealso getSpatialData
#'
getUSCounty <- function(
longitude = NULL,
latitude = NULL,
dataset = 'USCensusCounties',
stateCodes = NULL,
allData = FALSE,
useBuffering = FALSE
) {
# ----- Validate parameters --------------------------------------------------
MazamaCoreUtils::stopIfNull(longitude)
MazamaCoreUtils::stopIfNull(latitude)
MazamaCoreUtils::stopIfNull(dataset)
MazamaCoreUtils::stopIfNull(allData)
MazamaCoreUtils::stopIfNull(useBuffering)
# Check existence of dataset
if ( !exists(dataset) ) {
stop("Missing dataset. Please loadSpatialData(\"", dataset, "\")",
call. = FALSE)
}
MazamaCoreUtils::validateLonsLats(longitude, latitude, na.rm = TRUE)
# ----- Get the data ---------------------------------------------------------
SFDF <- get(dataset)
# Subset by state before searching
if (!is.null(stateCodes)) SFDF <- SFDF[SFDF$stateCode %in% stateCodes,]
locationsDF <- getSpatialData(longitude, latitude, SFDF, useBuffering = useBuffering)
if (allData) {
return(locationsDF)
} else {
name <- locationsDF$countyName
return(name)
}
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.