ISOGeoreferenceable | R Documentation |
ISOGeoreferenceable
ISOGeoreferenceable
R6Class
object.
Object of R6Class
for modelling an ISO Georeferenceable
geometa::geometaLogger
-> geometa::ISOAbstractObject
-> geometa::ISOSpatialRepresentation
-> geometa::ISOGridSpatialRepresentation
-> ISOGeoreferenceable
controlPointAvailability
controlPointAvailability: logical
orientationParameterAvailability
orientationParameterAvailability : logical
orientationParameterDescription
orientationParameterDescription [0..1] : character
georeferencedParameters
georeferencedParameters : ISORecord
parameterCitation
parameterCitation [0..*] : ISOCitation
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()
geometa::ISOGridSpatialRepresentation$addDimension()
geometa::ISOGridSpatialRepresentation$delDimension()
geometa::ISOGridSpatialRepresentation$setCellGeometry()
geometa::ISOGridSpatialRepresentation$setNumberOfDimensions()
geometa::ISOGridSpatialRepresentation$setTransformationParameterAvailability()
new()
Initializes object
ISOGeoreferenceable$new(xml = NULL)
xml
object of class XMLInternalNode-class
setControlPointAvailability()
Set control point availability
ISOGeoreferenceable$setControlPointAvailability(availability)
availability
object of class logical
setOrientationParameterAvailability()
Set orientation parameter availability
ISOGeoreferenceable$setOrientationParameterAvailability(availability)
availability
object of class logical
setOrientationParameterDescription()
Set orientation parameter description
ISOGeoreferenceable$setOrientationParameterDescription( description, locales = NULL )
description
description
locales
list of localized descriptions. Default is NULL
setGeoreferencedParameters()
Set georeferenced parameters
ISOGeoreferenceable$setGeoreferencedParameters(record)
record
object of class ISORecord
addParameterCitation()
Adds parameter citation
ISOGeoreferenceable$addParameterCitation(citation)
citation
object of class ISOCitation
TRUE
if added, FALSE
otherwise
delParameterCitation()
Deletes parameter citation
ISOGeoreferenceable$delParameterCitation(citation)
citation
object of class ISOCitation
TRUE
if deleted, FALSE
otherwise
clone()
The objects of this class are cloneable with this method.
ISOGeoreferenceable$clone(deep = FALSE)
deep
Whether to make a deep clone.
Emmanuel Blondel <emmanuel.blondel1@gmail.com>
ISO 19115:2003 - Geographic information – Metadata
md <- ISOGeoreferenceable$new()
#inherited methods from ISOGridSpatialRepresentation
md$setNumberOfDimensions(1)
dim1 <- ISODimension$new()
dim1$setName("row")
dim1$setSize(100)
dim1$setResolution(ISOMeasure$new(value=1,uom="m"))
md$addDimension(dim1)
md$setCellGeometry("area")
#parameters
md$setControlPointAvailability(TRUE)
md$setOrientationParameterAvailability(TRUE)
md$setOrientationParameterDescription("description")
md$setGeoreferencedParameters("record")
ct <- ISOCitation$new()
ct$setTitle("citation")
md$addParameterCitation(ct)
xml <- md$encode()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.