ISOImageryPlatform

ISOImageryPlatform

Format

R6Class object.

Value

Object of R6Class for modelling an ISO imagery platform

Author

Emmanuel Blondel <emmanuel.blondel1@gmail.com>

Super classes

geometa::geometaLogger -> geometa::ISOAbstractObject -> ISOImageryPlatform

Public fields

citation

citation [0..*]: ISOCitation

identifier

identifier [1..1]: ISOMetaIdentifier

description

description [0..1]: character|ISOLocalisedCharacterString

sponsor

sponsor [0..*]: ISOResponsibleParty

instrument

instrument [0..*]: ISOImageryInstrument

Methods

Inherited methods


Method new()

Initializes object

Usage

ISOImageryPlatform$new(xml = NULL)

Arguments

xml

object of class XMLInternalNode-class


Method addCitation()

Adds citation

Usage

ISOImageryPlatform$addCitation(citation)

Arguments

citation

object of class ISOCitation

Returns

TRUE if added, FALSE otherwise


Method delCitation()

Deletes citation

Usage

ISOImageryPlatform$delCitation(citation)

Arguments

citation

object of class ISOCitation

Returns

TRUE if deleted, FALSE otherwise


Method setIdentifier()

Set identifier

Usage

ISOImageryPlatform$setIdentifier(identifier)

Arguments

identifier

object of class ISOMetaIdentifier or character


Method setDescription()

Set description

Usage

ISOImageryPlatform$setDescription(description, locales = NULL)

Arguments

description

description

locales

list of localized texts. Default is NULL


Method addSponsor()

Adds sponsor

Usage

ISOImageryPlatform$addSponsor(sponsor)

Arguments

sponsor

object of class ISOResponsibleParty

Returns

TRUE if added, FALSE otherwise


Method delSponsor()

Deletes sponsor

Usage

ISOImageryPlatform$delSponsor(sponsor)

Arguments

sponsor

object of class ISOResponsibleParty

Returns

TRUE if deleted, FALSE otherwise


Method addInstrument()

Adds instrument

Usage

ISOImageryPlatform$addInstrument(instrument)

Arguments

instrument

object of class ISOImageryInstrument

Returns

TRUE if added, FALSE otherwise


Method delInstrument()

Deletes instrument

Usage

ISOImageryPlatform$delInstrument(instrument)

Arguments

instrument

object of class ISOImageryInstrument

Returns

TRUE if deleted, FALSE otherwise


Method clone()

The objects of this class are cloneable with this method.

Usage

ISOImageryPlatform$clone(deep = FALSE)

Arguments

deep

Whether to make a deep clone.

Examples

   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"))
#> [1] TRUE
   ct$addPresentationForm("mapDigital")
#> [1] TRUE
   ct$addCitedResponsibleParty(rp1)
#> [1] TRUE
   md$addCitation(ct)
#> [1] TRUE
   
   md$setIdentifier("identifier")
   md$setDescription("some description")
   
   xml <- md$encode()
#> [geometa][WARN] Element '{http://www.isotc211.org/2005/gmi}MI_Platform': No matching global declaration available for the validation root at line 1. 
#> [geometa][WARN] Object 'ISOImageryPlatform' is INVALID according to ISO 19139 XML schemas!