Nothing
#' ISOImageryGeoreferenceable
#'
#' @docType class
#' @importFrom R6 R6Class
#' @export
#' @keywords ISO imagery Georeferenceable
#' @return Object of \code{\link[R6]{R6Class}} for modelling an ISO imagery Georeferenceable
#' @format \code{\link[R6]{R6Class}} object.
#'
#' @references
#' - ISO 19139 \url{https://schemas.isotc211.org/19115/-2/gmi/1.0/gmi/#element_MI_Georeferenceable}
#'
#' - ISO 19115-3 \url{https://schemas.isotc211.org/19115/-3/msr/1.0/msr/#element_MI_Georeferenceable}
#'
#' @author Emmanuel Blondel <emmanuel.blondel1@@gmail.com>
#'
ISOImageryGeoreferenceable <- R6Class("ISOImageryGeoreferenceable",
inherit = ISOGeoreferenceable,
private = list(
xmlElement = "MI_Georeferenceable",
xmlNamespacePrefix = list(
"19139" = "GMI",
"19115-3" = "MSR"
)
),
public = list(
#'@field geolocationInformation geolocationInformation [0..*]: ISOImageryGeolocationInformation
geolocationInformation = list(),
#'@description Initializes object
#'@param xml object of class \link[XML]{XMLInternalNode-class}
initialize = function(xml = NULL){
super$initialize(xml = xml)
},
#'@description Adds geolocation information
#'@param geolocationInfo object of class inheriting \link{ISOImageryAbstractGeolocationInformation}
#'@return \code{TRUE} if added, \code{FALSE} otherwise
addGeolocationInformation = function(geolocationInfo){
if(!inherits(geolocationInfo, "ISOImageryAbstractGeolocationInformation")){
stop("The argument should be an object inheriting 'ISOImageryAbstractGeolocationInformation")
}
return(self$addListElement("geolocationInformation", geolocationInfo))
},
#'@description Deletes geolocation information
#'@param geolocationInfo object of class inheriting \link{ISOImageryAbstractGeolocationInformation}
#'@return \code{TRUE} if deleted, \code{FALSE} otherwise
delGeolocationInformation = function(geolocationInfo){
if(!inherits(geolocationInfo, "ISOImageryAbstractGeolocationInformation")){
stop("The argument should be an object inheriting 'ISOImageryAbstractGeolocationInformation")
}
return(self$delListElement("geolocationInformation", geolocationInfo))
}
)
)
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.