Learn R Programming

geometa (version 0.7)

ISOImagerySource: ISOImagerySource

Description

ISOImagerySource

Arguments

Value

Object of R6Class for modelling an ISO imagery source

Format

R6Class object.

Fields

processedLevel

[ISOMetaIdentifier]

resolution

[ISOImageryNominalResolution]

Methods

new(xml)

This method is used to instantiate an ISOImagerySource

setProcessedLevel(processedLevel)

Sets processed level, object of class character or ISOMetaIdentifier

setResolution(resolution)

Set the resolution, object of class ISOImageryNominalResolution

Author

Emmanuel Blondel <emmanuel.blondel1@gmail.com>

References

ISO 19115-2:2009 - Geographic information -- Metadata Part 2: Extensions for imagery and gridded data

Examples

Run this code
   md <- ISOImagerySource$new()
   md$setProcessedLevel("identifier")
   res <- ISOImageryNominalResolution$new()
   d <- ISODistance$new(value = 1, uom = "m", useUomURI = TRUE)
   res$setScanningResolution(d)
   md$setResolution(res)
   
   xml <- md$encode()

Run the code above in your browser using DataLab