a data.frame containing geographic coordinates of species
occurrences, columns must be: Species, Longitude, and Latitude. Geographic
coordinates must be in decimal degrees (WGS84).
show_countries
(logical) if TRUE, ISO 3 country codes will label
country polygons. Default = FALSE.
graphic_device
(logical) if TRUE, a new graphic device is opened
to plot the figure. Default = FALSE.
xlim
(numeric) vector of length = 2 with the limits in longitude for
the plot. The default, NULL, uses the limits of countries with
occurrences.
ylim
(numeric) vector of length = 2 with the limits in latitude for
the plot. The default, NULL, uses the limits of countries with
occurrences.
Value
A simple figure of species occurrences in a geographical context.
Details
Base map of countries of the world is a SpatialPolygonsDataFrame downloaded from
the Natural Earth database (scale = 50).
# NOT RUN {# getting the datadata("occ_f", package = "rangemap")
# simple figure of the species occurrence datarangemap_explore(occurrences = occ_f, show_countries = TRUE)
# }