ISOCoverageDescription
ISOCoverageDescription
ISOCoverageDescription class
R6Class
object.
Object of R6Class
for modelling an ISOCoverageDescription
#create coverage description md <- ISOCoverageDescription$new() md$setAttributeDescription("test") md$setContentType("modelResult") #adding 3 arbitrary dimensions for(i in 1:3){ band <- ISOBand$new() mn <- ISOMemberName$new(aName = sprintf("name %s",i), attributeType = sprintf("type %s",i)) band$setSequenceIdentifier(mn) band$setDescriptor("descriptor") band$setMaxValue(10) band$setMinValue(1) gml <- GMLBaseUnit$new(id = sprintf("ID%s",i)) gml$setDescriptionReference("someref") gml$setIdentifier("identifier", "codespace") gml$addName("name1", "codespace") gml$addName("name2", "codespace") gml$setQuantityTypeReference("someref") gml$setCatalogSymbol("symbol") gml$setUnitsSystem("somelink") band$setUnits(gml) band$setPeakResponse(9) band$setBitsPerValue(5) band$setToneGradation(100) band$setScaleFactor(1) band$setOffset(4) md$addDimension(band) } xml <- md$encode()
ISO 19139 https://schemas.isotc211.org/19139/-/gmd/1.0/gmd/#element_MD_CoverageDescription
ISO 19115-3 https://schemas.isotc211.org/19115/-3/mrc/1.0/mrc/#element_MD_CoverageDescription
Emmanuel Blondel emmanuel.blondel1@gmail.com
geometa::geometaLogger
-> geometa::ISOAbstractObject
-> geometa::ISOAbstractContentInformation
-> ISOCoverageDescription
attributeDescription
: attributeDescription: ISoRecordType
contentType
: contentType: ISOCoverageContentType
dimension
: dimension: ISORangeDimension
new()
Initializes object
ISOCoverageDescription$new(xml = NULL)
xml
: object of class XMLInternalNode-class
setAttributeDescription()
Set attribute description
ISOCoverageDescription$setAttributeDescription(attributeDescription)
attributeDescription
: attribute description, object of class ISORecordType or character
setContentType()
Set content type
ISOCoverageDescription$setContentType(contentType)
contentType
: contentType, object of class ISOCoverageContentType or character
addDimension()
Adds dimension
ISOCoverageDescription$addDimension(dimension)
dimension
: object of class ISORangeDimension
TRUE
if added, FALSE
otherwise
delDimension()
Deletes dimension
ISOCoverageDescription$delDimension(dimension)
dimension
: object of class ISORangeDimension
TRUE
if deleted, FALSE
otherwise
clone()
The objects of this class are cloneable with this method.
ISOCoverageDescription$clone(deep = FALSE)
deep
: Whether to make a deep clone.