prevR (version 3.4.1)

create.boundary: Provide national boundaries of a country.

Description

This function uses the data set TMWorldBorders. One or several countries can be selected and will be returned as an object of class sp::SpatialPolygons.

Usage

create.boundary(
  countries = NULL,
  multiple = F,
  proj = "+proj=longlat +datum=WGS84"
)

Arguments

countries

a vector of character string corresponding to the name of the countries you want to extract from the dataset. If NULL, a dialogue box will be appear in order to select the desired country.

multiple

should the dialog box allow multiple selection (unused if countries is specified)?

proj

map projection to use for the result (longitude and latitude in decimal degrees by default).

Value

Object of class sp::SpatialPolygons.

Details

proj could be a character string corresponding to a PROJ.4 projection (see https://proj.org/ for more details) or an object of class sp::CRS.

See Also

TMWorldBorders.

Examples

Run this code
# NOT RUN {
boundary <- create.boundary()
# }
# NOT RUN {
boundary <- create.boundary("Burkina Faso")
boundary <- create.boundary("Burkina Faso",
 proj="+proj=utm +zone=30 +ellps=WGS84 +datum=WGS84 +units=m +no_defs")
boundary <- create.boundary(countries = c("Burkina Faso", "Ghana", "Benin"))
# }
# NOT RUN {
# }

Run the code above in your browser using DataCamp Workspace