Nothing
#' @keywords locator
#' @export
#'
#' @title Return country ISO codes at specified locations
#'
#' @param longitude Vector of longitudes in decimal degrees East.
#' @param latitude Vector of latitudes in decimal degrees North.
#' @param datasetName Name of spatial dataset to use.
#' @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 country polygons the
#' locations fall into and returns the country code strings for those polygons.
#'
#' Specification of \code{countryCodes} limits spatial searching to the
#' specified countries and greatly improves performance.
#'
#' If \code{allData = TRUE}, additional data is returned.
#'
#' @return Vector of ISO-3166-1 alpha-2 country codes.
#'
#' @examples
#' library(MazamaSpatialUtils)
#'
#' longitude <- seq(0, 50)
#' latitude <- seq(0, 50)
#'
#' getCountryCode(longitude, latitude)
#'
#' @references http://www.naturalearthdata.com/downloads/10m-cultural-vectors/
#' @seealso SimpleCountries
#' @seealso getSpatialData
#'
getCountryCode <- function(
longitude = NULL,
latitude = NULL,
datasetName = "SimpleCountriesEEZ",
countryCodes = NULL,
allData = FALSE,
useBuffering = FALSE
) {
# ----- Validate parameters --------------------------------------------------
MazamaCoreUtils::stopIfNull(longitude)
MazamaCoreUtils::stopIfNull(latitude)
MazamaCoreUtils::stopIfNull(datasetName)
MazamaCoreUtils::stopIfNull(allData)
MazamaCoreUtils::stopIfNull(useBuffering)
MazamaCoreUtils::validateLonsLats(longitude, latitude, na.rm = TRUE)
# ----- Load datset ----------------------------------------------------------
if ( datasetName == "SimpleCountriesEEZ" ) {
SFDF <- MazamaSpatialUtils::SimpleCountriesEEZ
} else if ( datasetName == "SimpleCountries" ) {
SFDF <- MazamaSpatialUtils::SimpleCountries
} else {
# Check existence of dataset
if ( !exists(datasetName) ) {
stop("Missing dataset. Please loadSpatialData(\"", datasetName, "\")",
call. = FALSE)
}
SFDF <- get(datasetName)
}
# ----- Get the data ---------------------------------------------------------
# Subset by country before searching
if ( !is.null(countryCodes) )
SFDF <- SFDF[SFDF$countryCode %in% countryCodes,]
locationsDF <- getSpatialData(longitude, latitude, SFDF, useBuffering = useBuffering)
if (allData) {
return(locationsDF)
} else {
countryCode <- locationsDF$countryCode
return(countryCode)
}
}
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.