mapAppor | R Documentation |
Multipanel map of locations, one map for each group.
mapAppor(MTgroup, ACgroup, sug = sort(unique(c(MTgroup, ACgroup))), MTID, ACID, short = TRUE, MTlon, MTlat, AClon, AClat, rlon = range(MTlon, AClon, na.rm = TRUE), rlat = range(MTlat, AClat, na.rm = TRUE), MTIDcol = NULL, mapcol = "gray", boxcol = "gray", misscol = "brown", misstext = " - No tows", mar = c(0, 0, 2.5, 0))
MTgroup |
Vector, identifying the group membership of the midwater trawl tow
locations to be mapped. The unique values of |
ACgroup |
Vector, identifying the group membership of the acoustic transect locations to be mapped. |
sug |
Vector, identifying the unique groups to which locations may belong,
default sort(unique(c( |
MTID |
Vector, unique identification of each midwater trawl tow,
same length as |
ACID |
Vector, identification of acoustic transects used to apportion each
acoustic transect,
same length as |
short |
Logical scalar, indicating aspect of map area. If TRUE, the default, the mapped area is assumed to be wider (longitudinally) than tall. Used to better arrange multiple maps on a single page. |
MTlon |
Numeric vector, longitudes of midwater trawl tow locations to map,
in decimal degrees, same length as |
MTlat |
Numeric vector, latitudes of midwater trawl tow locations to map,
in decimal degrees, same length as |
AClon |
Numeric vector, longitudes of acoustic transect locations to map,
in decimal degrees, same length as |
AClat |
Numeric vector, latitudes of acoustic transect locations to map,
in decimal degrees, same length as |
rlon |
A numeric vector of length 2, range of longitudes to map,
in decimal degrees, default range( |
rlat |
A numeric vector of length 2, range of latitudes to map,
in decimal degrees, default range( |
MTIDcol |
A scalar, the color used to map the midwater trawl locations,
same length as |
mapcol |
A scalar, the color used to draw the map lines (e.g., lake boundary), default "gray". |
boxcol |
A scalar, the color used to draw the box around the map, default "gray". |
misscol |
A scalar, the color used to label maps with no locations in the given bygroup, default "brown". |
misstext |
A character scalar, the text used to label maps with no locations in the given bygroup, default " - No tows". |
mar |
A numeric vector of length 4, the number of lines of margin c(bottom, left, top, right) around each plotted map plot, default c(0, 0, 2.5, 0). |
mapMulti
## Not run: # acoustic transects agroup <- c("Main", "Bay")[c(1, 1, 1, 1, 2, 2, 2)] aID <- c("A", "B", "B", "B", "C", "C", "D") alon <- -c(83.5, 82.6, 82, 82, 80.6, 80.5, 81.3) alat <- c(45.6, 44.5, 44.6, 44.1, 45.3, 44.8, 45.7) # midwater trawls mgroup <- c("Main", "Bay")[c(1, 1, 2, 2)] mID <- c("A", "B", "C", "D") mlon <- -c(83, 83, 80.4, 81) mlat <- c(45.4, 44.5, 45, 45.5) # illustrate assignment of midwater trawl tows to acoustic transects mapAppor(MTgroup=mgroup, ACgroup=agroup, MTID=mID, ACID=aID, MTlon=mlon, MTlat=mlat, AClon=alon, AClat=alat, rlon=c(-84, -80), rlat=c(43, 46)) ## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.