| ISOFeatureCatalogueDescription | R Documentation |
ISOFeatureCatalogueDescription
ISOFeatureCatalogueDescription
R6Class object.
Object of R6Class for modelling an ISOFeatureCatalogue
geometa::geometaLogger -> geometa::ISOAbstractObject -> geometa::ISOAbstractContentInformation -> ISOFeatureCatalogueDescription
complianceCodecomplianceCode: logical
languagelanguage [0..*]: character
localelocale [0..*]: ISOLocale
includedWithDatasetincludedWithDataset: logical
featureTypesfeatureTypes [0..*]: GenericName #TODO?
featureCatalogueCitationfeatureCatalogueCitation [1..*]: ISOCitation
ISOFeatureCatalogueDescription$addFeatureCatalogueCitation()
ISOFeatureCatalogueDescription$delFeatureCatalogueCitation()
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
ISOFeatureCatalogueDescription$new(xml = NULL)
xmlobject of class XMLInternalNode-class
setComplianceCode()Set compliance code
ISOFeatureCatalogueDescription$setComplianceCode(compliance)
compliancecompliance, object of class logical
addLanguage()Adds language
ISOFeatureCatalogueDescription$addLanguage(lang)
langlang
TRUE if added, FALSE otherwise
delLanguage()Deletes language
ISOFeatureCatalogueDescription$delLanguage(lang)
langlang
TRUE if deleted, FALSE otherwise
addLocale()Adds locale
ISOFeatureCatalogueDescription$addLocale(locale)
localeobject of class ISOLocale
TRUE if added, FALSE otherwise
delLocale()Deletes locale
ISOFeatureCatalogueDescription$delLocale(locale)
localeobject of class ISOLocale
TRUE if deleted, FALSE otherwise
setIncludedWithDataset()Set included with dataset
ISOFeatureCatalogueDescription$setIncludedWithDataset(include)
includeinclude, object of class logical
addFeatureCatalogueCitation()Adds feature catalogue citation
ISOFeatureCatalogueDescription$addFeatureCatalogueCitation( citation, uuid = NULL )
citation, object of class ISOCitation
uuiduuid
TRUE if added, FALSE otherwise
delFeatureCatalogueCitation()Deletes feature catalogue citation
ISOFeatureCatalogueDescription$delFeatureCatalogueCitation( citation, uuid = NULL )
citation, object of class ISOCitation
uuiduuid
TRUE if deleted, FALSE otherwise
clone()The objects of this class are cloneable with this method.
ISOFeatureCatalogueDescription$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_MD_FeatureCatalogueDescription
- ISO 19115-3 https://schemas.isotc211.org/19115/-3/mrc/1.0/mrc/#element_MD_FeatureCatalogueDescription
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$addCitedResponsibleParty(rp)
md$addFeatureCatalogueCitation(cit)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.