res_sk_map {SWMPrExtension} | R Documentation |
Local Reserve Map With Seasonal Kendall Results
Description
Create a stylized reserve-level map of seasonal kendall results for use with the reserve level reporting template
Usage
res_sk_map(
nerr_site_id,
stations,
sk_result = NULL,
bbox,
shp,
station_labs = TRUE,
lab_loc = NULL,
bg_map = NULL,
zoom = NULL,
maptype = "stamen_toner_lite"
)
Arguments
nerr_site_id |
chr string of the reserve to make, first three characters used by NERRS |
stations |
chr string of the reserve stations to include in the map |
sk_result |
vector of values denoting direction and significance of seasonal kendall results. Result should be |
bbox |
a bounding box associated with the reserve. Should be in the format of c(xmin, ymin, xmax, ymax). |
shp |
sf data frame (preferred) or SpatialPolygons object |
station_labs |
logical, should stations be labeled? Defaults to |
lab_loc |
chr vector of 'R' and 'L', one letter for each station. if no |
bg_map |
a georeferenced |
zoom |
Zoom level for the base map created when |
maptype |
Background map type from Stadia Maps (formerly Stamen) (https://docs.stadiamaps.com/); one of c("stamen_terrain", "stamen_toner", "stamen_toner_lite", "stamen_watercolor", "alidade_smooth", "alidade_smooth_dark", "outdoors", "stamen_terrain_background", "stamen_toner_background", "stamen_terrain_labels", "stamen_terrain_lines", "stamen_toner_labels", "stamen_toner_lines"). |
Details
Creates a stylized, reserve-level base map for displaying seasonal kendall results from sk_seasonal
. The user can specify the reserve and stations to plot. The user can also specify a bounding box. For multi-component reserves, the user should specify a bounding box that highlights the component of interest.
To display seasonal trends, the user must specify c('inc', 'dec', 'insig', 'insuff')
for each station listed in the stations
argument.
Value
returns a ggplot
object.
Author(s)
Julie Padilla, Dave Eslinger
Examples
## A compact reserve
### set plotting parameters
stations <- sampling_stations[(sampling_stations$NERR.Site.ID == 'elk'
& sampling_stations$Status == 'Active'
& sampling_stations$isSWMP == "P"), ]$Station.Code
to_match <- c('wq')
stns <- stations[grep(paste(to_match, collapse = '|'), stations)]
shp_fl <- elk_spatial
bounding_elk <- c(-121.8005, 36.7779, -121.6966, 36.8799)
trnds <- c('inc', 'dec', 'insuff', 'insig')
### Low zoom and default maptype plot (for CRAN testing, not recommended)
# Lower zoom number gives coarser text and fewer features
(x_low <- res_sk_map('elk', stations = stns, sk_result = trnds,
bbox = bounding_elk, shp = shp_fl,
zoom = 10))
### Default zoom and maptype
x_def <- res_sk_map('elk', stations = stns, sk_result = trnds,
bbox = bounding_elk, shp = shp_fl)
### Higher zoom number gives more details, but those may not be visible
x_14 <- res_sk_map('elk', stations = stns, sk_result = trnds,
bbox = bounding_elk, shp = shp_fl,
zoom = 14)
### Different maptypes may be used.
x_terrain <- res_sk_map('elk', stations = stns, sk_result = trnds,
bbox = bounding_elk, shp = shp_fl,
maptype = 'stamen_terrain')
### A multicomponent reserve (showing two different bounding boxes)
# set plotting parameters
stations <- sampling_stations[(sampling_stations$NERR.Site.ID == 'cbm'
& sampling_stations$Status == 'Active'
& sampling_stations$isSWMP == "P"), ]$Station.Code
to_match <- c('wq')
stns <- stations[grep(paste(to_match, collapse = '|'), stations)]
shp_fl <- cbm_spatial
bounding_cbm_1 <- c(-77.393, 38.277, -75.553, 39.741)
bounding_cbm_2 <- c(-76.8, 38.7, -76.62, 38.85)
trnds <- c('inc', 'insuff', 'dec', 'insig')
# plot
y <- res_sk_map('cbm', stations = stns, sk_result = trnds,
bbox = bounding_cbm_1, shp = shp_fl)
z <- res_sk_map('cbm', stations = stns, sk_result = trnds,
bbox = bounding_cbm_2, shp = shp_fl)