R/get_ocean_names.R

Defines functions get_ocean_names

Documented in get_ocean_names

#' Get World ocean names
#'
#' @description
#' This function returns the name of World oceans according to the IHO Sea Areas
#' dataset version 3 (Flanders Marine Institute, 2018).
#'
#' @return A `character` vector with World ocean names.
#'
#' @export
#'
#' @references
#' Flanders Marine Institute (2018). IHO Sea Areas, version 3.
#' Available online at: \url{https://www.marineregions.org/}.
#' DOI: \doi{10.14284/323}.
#'
#' @examples
#' # Print the name of World oceans ----
#' get_ocean_names()

get_ocean_names <- function() {
  iho_boundaries$"NAME"
}

Try the forcis package in your browser

Any scripts or data that you put into this service are public.

forcis documentation built on June 8, 2025, 10:37 a.m.