ISOImageryObjective
ISOImageryObjective
ISOImageryObjective class
R6Class
object.
Object of R6Class
for modelling an ISO imagery objective
#encoding md <- ISOImageryObjective$new() md$setIdentifier("identifier") md$setPriority("urgent") md$addType("survey") md$addFunction("my_function") evt <- ISOImageryEvent$new() evt$setIdentifier("event_1") evt$setTrigger("manual") evt$setContext("pass") evt$setSequence("instantaneous") evt$setTime(Sys.time()) md$addObjectiveOccurance(evt) extent <- ISOExtent$new() bbox <- ISOGeographicBoundingBox$new(minx = -180, miny = -90, maxx = 180, maxy = 90) extent$addGeographicElement(bbox) time <- ISOTemporalExtent$new() start <- ISOdate(2000, 1, 12, 12, 59, 45) end <- ISOdate(2010, 8, 22, 13, 12, 43) tp <- GMLTimePeriod$new(beginPosition = start, endPosition = end) time$setTimePeriod(tp) extent$addTemporalElement(time) vert <- ISOVerticalExtent$new() vert$setMinimumValue(0) vert$setMaximumValue(19) extent$addVerticalElement(vert) md$addExtent(extent) md$sensingInstrument = NA md$pass = NA xml <- md$encode()
19139 https://schemas.isotc211.org/19115/-2/gmi/1.0/gmi/#element_MI_Objective
19115-3 https://schemas.isotc211.org/19115/-3/mac/2.0/mac/#element_MI_Objective
Emmanuel Blondel emmanuel.blondel1@gmail.com
geometa::geometaLogger
-> geometa::ISOAbstractObject
-> ISOImageryObjective
identifier
: identifier [1..1]: ISOMetaIdentifier
priority
: priority [0..1]: character|ISOLocalisedCharacterString
type
: type [0..*]: ISOImageryObjectiveType
function
: function [0..*]: character|ISOLocalisedCharacterString
extent
: extent [0..*]: ISOExtent
sensingInstrument
: sensingInstrument [0..*]: ISOImageryInstrument
pass
: pass [0..*]: ISOImageryPlatformPass
objectiveOccurance
: objectiveOccurance [1..*]: ISOImageryEvent
new()
Initializes object
ISOImageryObjective$new(xml = NULL)
xml
: object of class XMLInternalNode-class
setIdentifier()
Set identifier
ISOImageryObjective$setIdentifier(identifier)
identifier
: object of class ISOMetaIdentifier or character
setPriority()
Set priority
ISOImageryObjective$setPriority(priority, locales = NULL)
priority
: priority
locales
: list of localized texts. Default is NULL
addType()
Adds type
ISOImageryObjective$addType(type)
type
: object of class ISOImageryObjectiveType or any character
among values returned by `ISOImageryObjectiveType$values()`
TRUE
if added, FALSE
otherwise
delType()
Deletes type
ISOImageryObjective$delType(type)
type
: object of class ISOImageryObjectiveType or any character
among values returned by `ISOImageryObjectiveType$values()`
TRUE
if deleted, FALSE
otherwise
addFunction()
Adds function
ISOImageryObjective$addFunction(fun, locales = NULL)
fun
: fun
locales
: list of localized texts. Default is NULL
TRUE
if added, FALSE
otherwise
delFunction()
Deletes function
ISOImageryObjective$delFunction(fun, locales = NULL)
fun
: fun
locales
: list of localized texts. Default is NULL
TRUE
if deleted, FALSE
otherwise
addExtent()
Adds extent
ISOImageryObjective$addExtent(extent)
extent
: extent, object of class ISOExtent
TRUE
if added, FALSE
otherwise
delExtent()
Deletes extent
ISOImageryObjective$delExtent(extent)
extent
: extent, object of class ISOExtent
TRUE
if deleted, FALSE
otherwise
addSensingInstrument()
Adds sensing instrument
ISOImageryObjective$addSensingInstrument(instrument)
instrument
: object of class ISOImageryInstrument
TRUE
if added, FALSE
otherwise
delSensingInstrument()
Deletes sensing instrument
ISOImageryObjective$delSensingInstrument(instrument)
instrument
: object of class ISOImageryInstrument
TRUE
if deleted, FALSE
otherwise
addPlatformPass()
Adds platform pass
ISOImageryObjective$addPlatformPass(pass)
pass
: object of class ISOImageryPlatformPass
TRUE
if added, FALSE
otherwise
delPlatformPass()
Deletes platform pass
ISOImageryObjective$delPlatformPass(pass)
pass
: object of class ISOImageryPlatformPass
TRUE
if deleted, FALSE
otherwise
addObjectiveOccurance()
Adds objective occurance
ISOImageryObjective$addObjectiveOccurance(event)
event
: object of class ISOImageryEvent
TRUE
if added, FALSE
otherwise
delObjectiveOccurance()
Deletes objective occurance
ISOImageryObjective$delObjectiveOccurance(event)
event
: object of class ISOImageryEvent
TRUE
if deleted, FALSE
otherwise
clone()
The objects of this class are cloneable with this method.
ISOImageryObjective$clone(deep = FALSE)
deep
: Whether to make a deep clone.