An interactive function that will print on a map the nearest country name to a user mouse click. The user can specify nothing and the function will use a map from the package. Alternatively the user can specifiy a data frame or SpatialPolygonsDataFrame in which case they need to define the column containing the country names (nameCountryColumn) and optionally a 2nd attribute column to print (nameColumnToPlot).
identifyCountries(
dF = "",
nameCountryColumn = "NAME",
nameX = "LON",
nameY = "LAT",
nameColumnToPlot = "",
plotSelected = FALSE,
...
)
a vector of the indices of the countries selected
data frame or SpatialPolygonsDataFrame
name of column containing country names to be printed on the map (could also be set to any other attribute the user wants to query)
name of column containing the X variable (longitude), not needed if dF is a SpatialPolygonsDataFrame
name of column containing the Y variable (lattitude), not needed if dF is a SpatialPolygonsDataFrame
name of an attribute column in the data frame the value of which will be appended to the country name when it is printed
if set to TRUE a blue outline will be printed around the countries selected when the selection process is finished
other parameters that can be passed to identify()
andy south
Uses the identify() function, which waits for the user to click on the map, and stops when the user right clicks and selects 'stop'.
It uses country centroids, and will give a warning if one is too far away (default value of 0.25 inches).
identify() labelCountries
#mapCountryData()
#identifyCountries()
#identifyCountries(nameColumnToPlot = "POP_EST", plotSelected = TRUE)
Run the code above in your browser using DataLab