isAvailable_pr: Check whether PR points are available for a given location
Description
isAvailable_pr checks whether the MAP database contains PR points for the specified country/location.
Usage
isAvailable_pr(sourcedata = "pr points", country = NULL, ISO = NULL,
continent = NULL, full_results = FALSE)
Arguments
sourcedata
by default this is "pr points", highlighting the dataset to be searched
country
string containing name of desired country, e.g. c("Country1", "Country2", ...) (use one of country OR ISO OR continent, not combined)
ISO
string containing ISO3 code for desired country, e.g. c("XXX", "YYY", ...) (use one of country OR ISO OR continent, not combined)
continent
string containing name of continent for desired data, e.g. c("Continent1", "Continent2", ...)(use one of country OR ISO OR continent, not combined)
full_results
By default this is FALSE meaning the function only gives a message outlining whether specified country is available, if full_results == TRUE, the function returns a named list outlining data availability.
Value
isAvailable_pr returns a named list of input locations with information regarding data availability.
if full_results == TRUE, a named list is returned with the following elements:
location - specified input locations
is_available- 1 or 0; indicating whether data is available for this location
possible_match- agrep-matched country names indicating potential mispellings of countries where is_available == 0; NA if data is available for this location.