ISOImageryProcessing
ISOImageryProcessing
ISOImageryProcessing class
R6Class
object.
Object of R6Class
for modelling an ISO imagery processing
md <- ISOImageryProcessing$new() #add citation rp1 <- ISOResponsibleParty$new() rp1$setIndividualName("someone1") rp1$setOrganisationName("somewhere1") rp1$setPositionName("someposition1") rp1$setRole("pointOfContact") contact1 <- ISOContact$new() phone1 <- ISOTelephone$new() phone1$setVoice("myphonenumber1") phone1$setFacsimile("myfacsimile1") contact1$setPhone(phone1) address1 <- ISOAddress$new() address1$setDeliveryPoint("theaddress1") address1$setCity("thecity1") address1$setPostalCode("111") address1$setCountry("France") address1$setEmail("someone1@theorg.org") contact1$setAddress(address1) res <- ISOOnlineResource$new() res$setLinkage("http://www.somewhereovertheweb.org") res$setName("somename") contact1$setOnlineResource(res) rp1$setContactInfo(contact1) #citation ct <- ISOCitation$new() ct$setTitle("sometitle") d <- ISODate$new() d$setDate(ISOdate(2015, 1, 1, 1)) d$setDateType("publication") ct$addDate(d) ct$setEdition("1.0") ct$setEditionDate(ISOdate(2015,1,1)) ct$addIdentifier(ISOMetaIdentifier$new(code = "identifier")) ct$addPresentationForm("mapDigital") ct$addCitedResponsibleParty(rp1) md$setIdentifier("identifier") md$setProcedureDescription("some description") md$addSoftwareReference(ct) md$addDocumentation(ct) md$setRunTimeParameters("params") xml <- md$encode()
ISO 19139 https://schemas.isotc211.org/19115/-2/gmi/1.0/gmi/#element_LE_Processing
ISO 19115-3 https://schemas.isotc211.org/19115/-3/mrl/2.0/mrl/#element_LE_Processing
Emmanuel Blondel emmanuel.blondel1@gmail.com
geometa::geometaLogger
-> geometa::ISOAbstractObject
-> ISOImageryProcessing
identifier
: identifier [1..1]: ISOMetaIdentifier
softwareReference
: softwareReference [0.1]: ISOCitation
procedureDescription
: procedureDescription [0..1]: character|ISOLocalisedCharacterString
documentation
: documentation [0..*]: ISOCitation
runTimeParameters
: runTimeParameters [0..1]: character
algorithm
: algorithm [0..*]: ISOImageryAlgorithm
new()
Initializes object
ISOImageryProcessing$new(xml = NULL)
xml
: object of class XMLInternalNode-class
setIdentifier()
Set identifier
ISOImageryProcessing$setIdentifier(identifier)
identifier
: object of class ISOMetaIdentifier or character
addSoftwareReference()
Adds software reference
ISOImageryProcessing$addSoftwareReference(softwareReference)
softwareReference
: object of class ISOCitation
TRUE
if added, FALSE
otherwise
delSoftwareReference()
Deletes software reference
ISOImageryProcessing$delSoftwareReference(softwareReference)
softwareReference
: object of class ISOCitation
TRUE
if deleted, FALSE
otherwise
setProcedureDescription()
Set procedure description
ISOImageryProcessing$setProcedureDescription(
procedureDescription,
locales = NULL
)
procedureDescription
: procedure description
locales
: list of localized texts. Default is NULL
addDocumentation()
Adds documentation
ISOImageryProcessing$addDocumentation(documentation)
documentation
: object of class ISOCitation
TRUE
if added, FALSE
otherwise
delDocumentation()
Deletes documentation
ISOImageryProcessing$delDocumentation(documentation)
documentation
: object of class ISOCitation
TRUE
if deleted, FALSE
otherwise
setRunTimeParameters()
Set runtime parameters
ISOImageryProcessing$setRunTimeParameters(params)
params
: parameters
addAlgorithm()
Adds algorithm
ISOImageryProcessing$addAlgorithm(algorithm)
algorithm
: object of class ISOImageryAlgorithm
TRUE
if added, FALSE
otherwise
delAlgorithm()
Deletes algorithm
ISOImageryProcessing$delAlgorithm(algorithm)
algorithm
: object of class ISOImageryAlgorithm
TRUE
if deleted, FALSE
otherwise
clone()
The objects of this class are cloneable with this method.
ISOImageryProcessing$clone(deep = FALSE)
deep
: Whether to make a deep clone.