R/descriptor.R

Defines functions descriptor

Documented in descriptor

#' descriptor 
#'
#' descriptor 
#'
#'
#' @inheritParams common_attributes 
#' @param descriptorValue Description of some aspect of the study area. See [descriptorValue()]
#' @param citation A citation for this descriptor. See [citation()]
#' @param name The name of the descriptor system.
#' @param citableClassificationSystem This boolean attribute defines whether this descriptor comes from a citable classification system or not.
#'
#' @return a descriptor list object
#'
#' @export

 descriptor <- function(descriptorValue = NULL,
 citation = NULL,
 name = NULL,
 citableClassificationSystem = NULL){ 
Filter(Negate(is.null),
 list(
descriptorValue = descriptorValue,
citation = citation,
name = name,
citableClassificationSystem = citableClassificationSystem))}
cboettig/build.eml documentation built on May 8, 2019, 8:57 p.m.