Nothing
#' @export
#'
#' @title Return SFDF variable 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 variable Name of dataframe column to be returned.
#' @param countryCodes Vector of ISO 3166-1 alpha-2 country codes.
#' @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 polygons the
#' locations fall into and returns the variable associated with those polygons.
#'
#' If \code{allData = TRUE}, the entire dataframe is returned.
#'
#' @return Vector or dataframe.
#'
# @examples
# library(MazamaSpatialUtils)
#
# longitude <- seq(0, 50)
# latitude <- seq(0, 50)
#
# getVariable(longitude, latitude, "SimpleCountries", "UN_region")
#'
#' @seealso getSpatialData
#'
getVariable <- function(
longitude = NULL,
latitude = NULL,
dataset = NULL,
variable = NULL,
countryCodes = 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)
# Check variable name
if ( !is.null(variable) ) {
if ( !(variable %in% names(SFDF)) ) {
stop(paste0('Dataset ',
dataset,
' does not contain the variable ',
variable),
call. = FALSE)
}
}
# Subset by country before searching
if ( !is.null(countryCodes) )
SFDF <- SFDF[SFDF$countryCode %in% countryCodes,]
# Pull out rows from SFDF based on point-in-polygon search
locationsDF <- getSpatialData(longitude, latitude, SFDF, useBuffering = useBuffering)
# ----- Return results ---------------------------------------------------------
if (allData) {
return(locationsDF)
} else {
return(locationsDF[[variable]])
}
}
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.