| ISOSource | R Documentation |
ISOSource
ISOSource
R6Class object.
Object of R6Class for modelling an ISO Source
geometa::geometaLogger -> geometa::ISOAbstractObject -> ISOSource
descriptiondescription [0..1]: character
scaleDenominatorscaleDenominator [0..1]: ISORepresentativeFraction
sourceReferenceSystemsourceReferenceSystem [0..1]: ISOReferenceSystem
sourceCitationsourceCitation [0..1]: ISOCitation
sourceExtentsourceExtent [0..*]: ISOExtent
sourceStepsourceStep [0..*]: ISOProcessStep
geometa::geometaLogger$ERROR()geometa::geometaLogger$INFO()geometa::geometaLogger$WARN()geometa::ISOAbstractObject$addFieldAttrs()geometa::ISOAbstractObject$addListElement()geometa::ISOAbstractObject$checkMetadataStandardCompliance()geometa::ISOAbstractObject$contains()geometa::ISOAbstractObject$createLocalisedProperty()geometa::ISOAbstractObject$decode()geometa::ISOAbstractObject$delListElement()geometa::ISOAbstractObject$encode()geometa::ISOAbstractObject$getClass()geometa::ISOAbstractObject$getClassName()geometa::ISOAbstractObject$getNamespaceDefinition()geometa::ISOAbstractObject$isDocument()geometa::ISOAbstractObject$isFieldInheritedFrom()geometa::ISOAbstractObject$print()geometa::ISOAbstractObject$save()geometa::ISOAbstractObject$setAttr()geometa::ISOAbstractObject$setCodeList()geometa::ISOAbstractObject$setCodeListValue()geometa::ISOAbstractObject$setCodeSpace()geometa::ISOAbstractObject$setHref()geometa::ISOAbstractObject$setId()geometa::ISOAbstractObject$setIsNull()geometa::ISOAbstractObject$setValue()geometa::ISOAbstractObject$stopIfMetadataStandardIsNot()geometa::ISOAbstractObject$validate()geometa::ISOAbstractObject$wrapBaseElement()new()Initializes object
ISOSource$new(xml = NULL)
xmlobject of class XMLInternalNode-class
setDescription()Set description
ISOSource$setDescription(description, locales = NULL)
descriptiondescription
localeslist of localized texts. Default is NULL
setScaleDenominator()Set scale denominator
ISOSource$setScaleDenominator(denominator)
denominatorobject of class ISORepresentativeFraction
setReferenceSystem()Set reference system
ISOSource$setReferenceSystem(referenceSystem)
referenceSystemobject of class ISOReferenceSystem
setCitation()Set citation
ISOSource$setCitation(citation)
citationobject of class ISOCitation
addExtent()Adds extent
ISOSource$addExtent(extent)
extentobject of class ISOExtent
TRUE if added, FALSE otherwise
delExtent()Deletes extent
ISOSource$delExtent(extent)
extentobject of class ISOExtent
TRUE if deleted, FALSE otherwise
addProcessStep()Adds process step
ISOSource$addProcessStep(processStep)
processStepobject of class ISOProcessStep
TRUE if added, FALSE otherwise
delProcessStep()Deletes process step
ISOSource$delProcessStep(processStep)
processStepobject of class ISOProcessStep
TRUE if deleted, FALSE otherwise
clone()The objects of this class are cloneable with this method.
ISOSource$clone(deep = FALSE)
deepWhether to make a deep clone.
Emmanuel Blondel <emmanuel.blondel1@gmail.com>
- ISO 19139 https://schemas.isotc211.org/19139/-/gmd/1.0/gmd/#element_LI_Source
- ISO 19115-3 https://schemas.isotc211.org/19115/-3/mrl/2.0/mrl/#element_LI_Source
src <- ISOSource$new()
src$setDescription("description")
src$setScaleDenominator(1L)
rs <- ISOReferenceSystem$new()
rsId <- ISOReferenceIdentifier$new(code = "4326", codeSpace = "EPSG")
rs$setReferenceSystemIdentifier(rsId)
src$setReferenceSystem(rs)
cit <- ISOCitation$new()
cit$setTitle("sometitle") #and more citation properties...
src$setCitation(cit)
extent <- ISOExtent$new()
bbox <- ISOGeographicBoundingBox$new(minx = -180, miny = -90, maxx = 180, maxy = 90)
extent$setGeographicElement(bbox)
src$addExtent(extent)
xml <- src$encode()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.