Nothing
#' ISOStandardOrderProcess
#'
#' @docType class
#' @importFrom R6 R6Class
#' @export
#' @keywords ISO StandardOrderProcess
#' @return Object of \code{\link{R6Class}} for modelling an ISO StandardOrderProcess
#' @format \code{\link{R6Class}} object.
#'
#' @examples
#' md <- ISOStandardOrderProcess$new()
#' md$setFees("fees")
#' md$setPlannedAvailableDateTime(ISOdate(2017,7,5,12,0,0))
#' md$setOrderingInstructions("instructions")
#' md$setTurnaround("turnaround")
#' xml <- md$encode()
#'
#' @references
#' ISO 19115:2003 - Geographic information -- Metadata
#'
#' @author Emmanuel Blondel <emmanuel.blondel1@@gmail.com>
#'
ISOStandardOrderProcess <- R6Class("ISOStandardOrderProcess",
inherit = ISOAbstractObject,
private = list(
xmlElement = "MD_StandardOrderProcess",
xmlNamespacePrefix = "GMD"
),
public = list(
#'@field fees fees [0..1]: character
fees = NULL,
#'@field plannedAvailableDateTime plannedAvailableDateTime [0..1]: 'POSIXct/POSIXlt'
plannedAvailableDateTime = NULL,
#'@field orderingInstructions orderingInstructions [0..1]: character
orderingInstructions = NULL,
#'@field turnaround turnaround [0..1]: character
turnaround = NULL,
#'@description Initializes object
#'@param xml object of class \link{XMLInternalNode-class}
initialize = function(xml = NULL){
super$initialize(xml)
},
#'@description Set fees
#'@param fees fees
#'@param locales list of localized texts. Default is \code{NULL}
setFees = function(fees, locales = NULL){
self$fees <- as.character(fees)
if(!is.null(locales)){
self$fees <- self$createLocalisedProperty(fees, locales)
}
},
#'@description Set planned available date time
#'@param dateTime object of class \link{POSIXct}
setPlannedAvailableDateTime = function(dateTime){
if(!all(class(dateTime)==c("POSIXct","POSIXt"))){
stop("The argument value should be of class ('POSIXct','POSIXt')")
}
self$plannedAvailableDateTime <- dateTime
},
#'@description Set ordering instructions
#'@param instructions instructions
#'@param locales list of localized texts. Default is \code{NULL}
setOrderingInstructions = function(instructions, locales = NULL){
self$orderingInstructions <- as.character(instructions)
if(!is.null(locales)){
self$orderingInstructions <- self$createLocalisedProperty(instructions, locales)
}
},
#'@description Set turnaround
#'@param turnaround turnaround
#'@param locales list of localized texts. Default is \code{NULL}
setTurnaround = function(turnaround, locales = NULL){
self$turnaround <- as.character(turnaround)
if(!is.null(locales)){
self$turnaround <- self$createLocalisedProperty(turnaround, locales)
}
}
)
)
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.