Function for creating round Southern Ocean maps with inbuild base layers.
SOmap2(
bathy_legend = TRUE,
land = TRUE,
ice = TRUE,
ccamlr = FALSE,
ccamlr_labels = FALSE,
ssru = FALSE,
ssru_labels = FALSE,
ssmu = FALSE,
ssmu_labels = FALSE,
rb = FALSE,
rb_labels = FALSE,
sprfmorb = FALSE,
border = TRUE,
trim = -45,
graticules = FALSE,
eez = FALSE,
eez_labels = FALSE,
mpa = FALSE,
mpa_labels = FALSE,
domains = FALSE,
domains_labels = FALSE,
iwc = FALSE,
iwc_labels = FALSE,
straight = FALSE,
fronts = FALSE,
fronts_col = c("hotpink", "orchid", "plum"),
land_col = "black",
ice_col = "black",
rb_col = 3,
sprfmo_col = "grey50",
ccamlr_col = 2,
ssru_col = "grey50",
ssmu_col = "grey70",
eez_col = "maroon",
mpa_col = "yellow",
border_col = c("white", "black"),
graticules_col = "grey70",
iwc_col = "blue",
domains_col = "magenta"
)
logical: if TRUE
, insert the bathymetry legend.
logical: if TRUE
, plot the coastline.
logical: if TRUE
, plot ice features (ice shelves, glacier tongues, and similar).
logical: if TRUE
, insert the CCAMLR area boundaries.
logical: if TRUE
, add labels for the CCAMLR areas.
logical: if TRUE
, insert the CCAMLR small scale research unit boundaries.
logical: if TRUE
, add labels for the CCAMLR small scale research units.
logical: if TRUE
, insert the CCAMLR small scale management unit boundaries.
logical: if TRUE
, add labels for the CCAMLR small scale management units.
logical: if TRUE
, insert the CCAMLR research block boundaries.
logical: if TRUE
, add labels for the CCAMLR research blocks.
logical: if TRUE
, insert the SPRFMO toothfish research block boundaries.
logical: if TRUE
, insert longitude border.
numeric: latitude to trim the map to. Set this to -10 for effectively no trim.
logical: if TRUE
, insert a graticule grid.
logical: if TRUE
, insert Exclusive Economic Zones.
logical: if TRUE
, add labels for the Exclusive Economic Zones.
logical: if TRUE
, insert CCAMLR Marine Protected Areas.
logical: if TRUE
, add labels for the CCAMLR Marine Protected Areas.
logical: if TRUE
, insert CCAMLR Marine Protected Areas planning domains.
logical: if TRUE
, add labels for the CCAMLR Marine Protected Area planning domains.
logical: if TRUE
, insert International Whaling Commission boundaries.
logical: if TRUE
, add labels for the International Whaling Commission areas.
logical: if TRUE
, leave a blank space on the side for a straight legend.
logical or string: if TRUE
or "Orsi", plot Orsi et al., (1995) ocean fronts: Subantarctic Front, Polar Front, Southern Antarctic Circumpolar Current Front. If "Park" plot the Park & Durand (2019) fronts; Northern boundary, Subantarctic Front, Polar Front, Southern Antarctic Circumpolar Current Front and Southern Boundary.
character: colours to use for fronts.
character: colour to use for coastline.
character: colour to use for ice features.
character: colour for CCAMLR research blocks.
character: colour for SPRFMO toothfish research blocks
character: colour for CCAMLR boundaries
character: colour for CCAMLR small scale research units.
character: colour for CCAMLR small scale management units.
character: colour for Exclusive Economic Zone boundaries.
character: colour for CCAMLR Marine Protected Areas.
character: colours for longitude border.
character: colour for graticule grid.
character: colour for IWC boundaries.
character: colour for the CCAMLR planning domains boundaries.
An object of class "SOmap", which represents a polar-stereographic map of the southern hemisphere, with the chosen management layers added. Printing or plotting this object will cause it to be displayed in the current graphics device.
if (FALSE) { # \dontrun{
SOmap2(ccamlr = TRUE, mpa = TRUE, trim = -45)
} # }