Learn R Programming

geometa (version 0.7)

ISOImageryEnvironmentalRecord: ISOImageryEnvironmentalRecord

Description

ISOImageryEnvironmentalRecord

Arguments

Value

Object of R6Class for modelling an ISO imagery environmental record

Format

R6Class object.

Fields

averageAirTemperature

[numeric]

maxRelativeHumidity

[numeric]

maxAltitude

[numeric]

meterologicalConditions

[ISOBaseCharacterString|ISOLocalisedCharacterString]

Methods

new(xml)

This method is used to instantiate an ISOImageryEnvironmentalRecord

setAverageAirTemperature(temperature)

Set the average air temperature

setMaxRelativeHumidity(humidity)

Set the max relative humidity

setMaxAltitude(altitude)

Set the max altitude

setMeterologicalConditions(conditions)

Set the meterological conditions. Locale names can be specified as list with the locales argument.

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 <- ISOImageryEnvironmentalRecord$new()
   md$setAverageAirTemperature(3)
   md$setMaxRelativeHumidity(67)
   md$setMaxAltitude(400)
   md$setMeterologicalConditions("some conditions")
   xml <- md$encode()

Run the code above in your browser using DataLab