ISOImageryPlatform
ISOImageryPlatform
ISOImageryPlatform class
R6Class
object.
Object of R6Class
for modelling an ISO imagery platform
md <- ISOImageryPlatform$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$addCitation(ct) md$setIdentifier("identifier") md$setDescription("some description") xml <- md$encode()
19139 https://schemas.isotc211.org/19115/-2/gmi/1.0/gmi/#element_MI_Platform
19115-3 https://schemas.isotc211.org/19115/-3/mac/2.0/mac/#element_MI_Platform
Emmanuel Blondel emmanuel.blondel1@gmail.com
geometa::geometaLogger
-> geometa::ISOAbstractObject
-> ISOImageryPlatform
citation
: citation [0..*]: ISOCitation
identifier
: identifier [1..1]: ISOMetaIdentifier
description
: description [0..1]: character|ISOLocalisedCharacterString
sponsor
: sponsor [0..*]: ISOResponsibleParty
instrument
: instrument [0..*]: ISOImageryInstrument
otherPropertyType
: otherPropertyType [0..1] : ISORecordType (=> ISO 19115-3)
otherProperty
: otherProperty [0..1] : ISORecord (=> ISO 19115-3)
history
: history [0..*] : ISOInstrumentationEventList (=> ISO 19115-3)
new()
Initializes object
ISOImageryPlatform$new(xml = NULL)
xml
: object of class XMLInternalNode-class
addCitation()
Adds citation
ISOImageryPlatform$addCitation(citation)
citation
: object of class ISOCitation
TRUE
if added, FALSE
otherwise
delCitation()
Deletes citation
ISOImageryPlatform$delCitation(citation)
citation
: object of class ISOCitation
TRUE
if deleted, FALSE
otherwise
setIdentifier()
Set identifier
ISOImageryPlatform$setIdentifier(identifier)
identifier
: object of class ISOMetaIdentifier or character
setDescription()
Set description
ISOImageryPlatform$setDescription(description, locales = NULL)
description
: description
locales
: list of localized texts. Default is NULL
addSponsor()
Adds sponsor
ISOImageryPlatform$addSponsor(sponsor)
sponsor
: object of class ISOResponsibleParty
TRUE
if added, FALSE
otherwise
delSponsor()
Deletes sponsor
ISOImageryPlatform$delSponsor(sponsor)
sponsor
: object of class ISOResponsibleParty
TRUE
if deleted, FALSE
otherwise
addInstrument()
Adds instrument
ISOImageryPlatform$addInstrument(instrument)
instrument
: object of class ISOImageryInstrument
TRUE
if added, FALSE
otherwise
delInstrument()
Deletes instrument
ISOImageryPlatform$delInstrument(instrument)
instrument
: object of class ISOImageryInstrument
TRUE
if deleted, FALSE
otherwise
setOtherPropertyType()
setOtherPropertyType
ISOImageryPlatform$setOtherPropertyType(otherPropertyType)
otherPropertyType
: otherPropertyType object of class ISORecordType
setOtherProperty()
setOtherProperty
ISOImageryPlatform$setOtherProperty(otherProperty)
otherProperty
: otherProperty object of class ISORecord
addInstrumentationEventList()
Adds instrumentation event list
ISOImageryPlatform$addInstrumentationEventList(instrumentEventList)
instrumentEventList
: object of class ISOInstrumentationEventList
TRUE
if added, FALSE
otherwise
delInstrumentationEventList()
Adds instrumentation event list
ISOImageryPlatform$delInstrumentationEventList(instrumentEventList)
instrumentEventList
: object of class ISOInstrumentationEventList
TRUE
if deleted, FALSE
otherwise
clone()
The objects of this class are cloneable with this method.
ISOImageryPlatform$clone(deep = FALSE)
deep
: Whether to make a deep clone.