ISOImageryBand
ISOImageryBand
ISOImageryBand class
R6Class
object.
Object of R6Class
for modelling an ISO imagery band
#create band range dimension md <- ISOImageryBand$new() md$setSequenceIdentifier(ISOMemberName$new(aName = "name", attributeType = "type")) md$setDescriptor("descriptor") md$setMaxValue(10) md$setMinValue(1) gml <- GMLBaseUnit$new(id = "ID") gml$setDescriptionReference("someref") gml$setIdentifier("identifier", "codespace") gml$addName("name1", "codespace") gml$addName("name2", "codespace") gml$setQuantityTypeReference("someref") gml$setCatalogSymbol("symbol") gml$setUnitsSystem("somelink") md$setUnits(gml) md$setPeakResponse(9) md$setBitsPerValue(5) md$setToneGradation(100) md$setScaleFactor(1) md$setOffset(4) md$setBandBoundaryDefinition("fiftyPercent") md$setNominalSpatialResolution(14.5) md$setTransferFunctionType("linear") md$setTransmittedPolarisation("horizontal") md$setDetectedPolarisation("horizontal") xml <- md$encode()
ISO 19139 https://schemas.isotc211.org/19115/-2/gmi/1.0/gmi/#element_MI_Band
ISO 19115-3 https://schemas.isotc211.org/19115/-3/mrc/1.0/mrc/#element_MI_Band
Emmanuel Blondel emmanuel.blondel1@gmail.com
geometa::geometaLogger
-> geometa::ISOAbstractObject
-> geometa::ISORangeDimension
-> geometa::ISOBand
-> ISOImageryBand
bandBoundaryDefinition
: bandBoundaryDefinition [0..1]: ISOImageryBandDefinition
nominalSpatialResolution
: nominalSpatialResolution [0..1] ISOBaseReal
transferFunctionType
: transferFunctionType [0..1]: ISOImageryTransferFunctionType
transmittedPolarisation
: transmittedPolarisation [0..1]: ISOImageryPolarisationOrientation
detectedPolarisation
: detectedPolarisation [0..1]: ISOImageryPolarisationOrientation
new()
Initializes object
ISOImageryBand$new(xml = NULL)
xml
: object of class XMLInternalNode-class
setBandBoundaryDefinition()
Set band boundary definition
ISOImageryBand$setBandBoundaryDefinition(definition)
definition
: object of class ISOImageryBandDefinition or character
among values returned by `ISOImageryBandDefinition$values()`
setNominalSpatialResolution()
Set nominal spatial resolution
ISOImageryBand$setNominalSpatialResolution(resolution)
resolution
: object of class numeric
setTransferFunctionType()
Set transfer function type
ISOImageryBand$setTransferFunctionType(functionType)
functionType
: object of class ISOImageryTransferFunctionType or any character
from values returned by `ISOImageryTransferFunctionType$values()`
setTransmittedPolarisation()
Set transmitted polarisation
ISOImageryBand$setTransmittedPolarisation(polarisation)
polarisation
: object of class ISOImageryPolarisationOrientation or any character
from values returned by `ISOImageryPolarisationOrientation$values()`
setDetectedPolarisation()
Set detected polarisation
ISOImageryBand$setDetectedPolarisation(polarisation)
polarisation
: object of class ISOImageryPolarisationOrientation or any character
from values returned by `ISOImageryPolarisationOrientation$values()`
clone()
The objects of this class are cloneable with this method.
ISOImageryBand$clone(deep = FALSE)
deep
: Whether to make a deep clone.