Nothing
#' ISOImageryGeometryType
#'
#' @docType class
#' @importFrom R6 R6Class
#' @export
#' @keywords ISO imagery geometry type
#' @return Object of \code{\link{R6Class}} for modelling an ISO Imagery geometry type
#' @format \code{\link{R6Class}} object.
#'
#' @examples
#' #possible values
#' values <- ISOImageryGeometryType$values(labels = TRUE)
#'
#' #some def
#' point <- ISOImageryGeometryType$new(value = "point")
#'
#' @references
#' ISO 19115-2:2009 - Geographic information -- Metadata Part 2: Extensions for imagery and gridded data
#'
#' @author Emmanuel Blondel <emmanuel.blondel1@@gmail.com>
#'
ISOImageryGeometryType <- R6Class("ISOImageryGeometryType",
inherit = ISOCodeListValue,
private = list(
xmlElement = "MI_GeometryTypeCode",
xmlNamespacePrefix = "GMI"
),
public = list(
#'@description Initializes object
#'@param xml object of class \link{XMLInternalNode-class}
#'@param value value
#'@param description description
initialize = function(xml = NULL, value, description = NULL){
super$initialize(xml = xml, id = private$xmlElement, value = value, description = description,
addCodeSpaceAttr = FALSE)
}
)
)
ISOImageryGeometryType$values <- function(labels = FALSE){
return(ISOCodeListValue$values(ISOImageryGeometryType, labels))
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.