ISOFeatureCatalogueDescription | R Documentation |
ISOFeatureCatalogueDescription
ISOFeatureCatalogueDescription
R6Class
object.
Object of R6Class
for modelling an ISOFeatureCatalogue
geometa::geometaLogger
-> geometa::ISOAbstractObject
-> geometa::ISOContentInformation
-> ISOFeatureCatalogueDescription
complianceCode
complianceCode: logical
language
language [0..*]: character
includedWithDataset
includedWithDataset: logical
featureTypes
featureTypes [0..*]: GenericName #TODO?
featureCatalogueCitation
featureCatalogueCitation [1..*]: ISOCitation
ISOFeatureCatalogueDescription$addFeatureCatalogueCitation()
ISOFeatureCatalogueDescription$delFeatureCatalogueCitation()
geometa::geometaLogger$ERROR()
geometa::geometaLogger$INFO()
geometa::geometaLogger$WARN()
geometa::ISOAbstractObject$addFieldAttrs()
geometa::ISOAbstractObject$addListElement()
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$validate()
geometa::ISOAbstractObject$wrapBaseElement()
new()
Initializes object
ISOFeatureCatalogueDescription$new(xml = NULL)
xml
object of class XMLInternalNode-class
setComplianceCode()
Set compliance code
ISOFeatureCatalogueDescription$setComplianceCode(compliance)
compliance
compliance, object of class logical
addLanguage()
Adds language
ISOFeatureCatalogueDescription$addLanguage(lang)
lang
lang
TRUE
if added, FALSE
otherwise
delLanguage()
Deletes language
ISOFeatureCatalogueDescription$delLanguage(lang)
lang
lang
TRUE
if deleted, FALSE
otherwise
setIncludedWithDataset()
Set included with dataset
ISOFeatureCatalogueDescription$setIncludedWithDataset(include)
include
include, object of class logical
addFeatureCatalogueCitation()
Adds feature catalogue citation
ISOFeatureCatalogueDescription$addFeatureCatalogueCitation( citation, uuid = NULL )
citation,
object of class ISOCitation
uuid
uuid
TRUE
if added, FALSE
otherwise
delFeatureCatalogueCitation()
Deletes feature catalogue citation
ISOFeatureCatalogueDescription$delFeatureCatalogueCitation( citation, uuid = NULL )
citation,
object of class ISOCitation
uuid
uuid
TRUE
if deleted, FALSE
otherwise
clone()
The objects of this class are cloneable with this method.
ISOFeatureCatalogueDescription$clone(deep = FALSE)
deep
Whether to make a deep clone.
Emmanuel Blondel <emmanuel.blondel1@gmail.com>
ISO 19115:2003 - Geographic information – Metadata
md <- ISOFeatureCatalogueDescription$new()
md$setComplianceCode(FALSE)
md$addLanguage("eng")
md$setIncludedWithDataset(FALSE)
cit = ISOCitation$new()
contact = ISOContact$new()
fcLink <- ISOOnlineResource$new()
fcLink$setLinkage("http://somelink/featurecatalogue")
contact$setOnlineResource(fcLink)
rp = ISOResponsibleParty$new()
rp$setContactInfo(contact)
cit$setCitedResponsibleParty(rp)
md$addFeatureCatalogueCitation(cit)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.