#' Example Beach Attribute Polygons
#'
#' Sample beach attribute polygons for package examples. The beach attribute
#' polygons highlight the foreshore area around each geomorphically distinct
#' beach section. It is up to the user to define what constitutes a unique beach
#' section. Each beach section should be characterized with field attributes
#' columns for the foreshore slope (slope) as rise over run, the berm width (W),
#' berm height (B) and dune height (D) in meters, the sediment grain size in
#' millimeters (sediment) and the beach value per meter squared in dollars (V).
#' Note that this dataset has been reduced and simplified from
#' the original version and should only be used for demonstration purposes.
#'
#' @docType data
#'
#' @usage data(BeachAttributes)
#'
#' @format A simple feature collection of eelgrass polygons.
#' \describe{
#' \item{slope}{the foreshore slope (slope) as rise over run.}
#' \item{W}{Numeric, the berm width in meters (W).}
#' \item{B}{Numeric, berm height in meters (B).}
#' \item{D}{Numeric, dune height (D) in meters.}
#' \item{sediment}{Numeric, the sediment grain size in
#' millimeters (sediment).}
#' \item{V}{Numeric, the beach value per meter squared in dollars (V).}
#' }
#'
#'
#' @format A simple features polygon layer of class \code{"sf"}; and
#' \code{"data.frame"};.
#'
#' @keywords datasets
#'
#' @examples
#' \donttest{
#' require(sf)
#' data(BeachAttributes)
#' head(BeachAttributes)
#' # Dune Height
#' plot(BeachAttributes["D"], main="Dune Height in meters")
#' }
"BeachAttributes"
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.