GADMTools (version 3.7-1)

gadm_sp_loadCountries: Load one or more GADM shapefiles (SpatialPolygonsDataFrame)

Description

Load one or more GADM shapefiles as SpatialPolygonsDataFrame from a local path or from a remote repository.

Usage

gadm_sp.loadCountries(fileNames, level = 0, basefile=GADM_BASE,
                         baseurl=GADM_URL, simplify=NULL)

# deprecated gadm_sp.loadCountries(fileNames, level = 0, basefile=GADM_BASE, baseurl=GADM_URL, simplify=NULL)

Arguments

fileNames

Character vector of named regions. An ISO-3166-1 code or a custom name. You don't have to specify the suffix (admX) nor the file extension (.rds).

level

Integer the level of the administrative boundaries (0 is the country, higher values equal finer divisions)

basefile

Character vector the path of the directory where shapefiles are stored. Default is "./GADM"

baseurl

Character vector The url of GADM files. Default is "https://biogeo.ucdavis.edu/data/gadm3.6/Rsp/"

simplify

Numeric Numerical tolerance value to be used by the Douglas-Peuker algorithm. Higher values use less polygon points (and less memory) and lower values use more polygon points (and more memory). We suggest not going higher than 0.025 in order for intra-country boundaries to align.

Value

Object gadm_sp

ISO-3166-1

See : https://en.wikipedia.org/wiki/ISO_3166-1_alpha-3 or take a look on the vignette "GADMTools - ISO 3166-1 alpha-3"

References

----

See Also

gadm_sf.loadCountries

Examples

Run this code
# NOT RUN {
# library(GADMTools)
#
# Belgium = gadm_sp_loadCountries("BEL", level=2, basefile="./")
# plotmap(Belgium)
# }

Run the code above in your browser using DataCamp Workspace