ISOImageryEnvironmentalRecord

ISOImageryEnvironmentalRecord

Format

R6Class object.

Value

Object of R6Class for modelling an ISO imagery environmental record

Author

Emmanuel Blondel <emmanuel.blondel1@gmail.com>

Super classes

geometa::geometaLogger -> geometa::ISOAbstractObject -> ISOImageryEnvironmentalRecord

Public fields

averageAirTemperature

averageAirTemperature

maxRelativeHumidity

maxRelativeHumidity

maxAltitude

maxAltitude

meterologicalConditions

meterologicalConditions

Methods

Inherited methods


Method new()

Initializes object

Usage

Arguments

xml

object of class XMLInternalNode-class


Method setAverageAirTemperature()

Set average air temperature

Usage

ISOImageryEnvironmentalRecord$setAverageAirTemperature(temperature)

Arguments

temperature

object of class numeric


Method setMaxRelativeHumidity()

Set max relative humidity

Usage

ISOImageryEnvironmentalRecord$setMaxRelativeHumidity(humidity)

Arguments

humidity

object of class numeric


Method setMaxAltitude()

Set max altitude

Usage

ISOImageryEnvironmentalRecord$setMaxAltitude(altitude)

Arguments

altitude

object of class numeric


Method setMeterologicalConditions()

Set meterological conditions

Usage

ISOImageryEnvironmentalRecord$setMeterologicalConditions(
  conditions,
  locales = NULL
)

Arguments

conditions

conditions

locales

list of localized texts. Default is NULL


Method clone()

The objects of this class are cloneable with this method.

Usage

ISOImageryEnvironmentalRecord$clone(deep = FALSE)

Arguments

deep

Whether to make a deep clone.

Examples

   md <- ISOImageryEnvironmentalRecord$new()
   md$setAverageAirTemperature(3)
   md$setMaxRelativeHumidity(67)
   md$setMaxAltitude(400)
   md$setMeterologicalConditions("some conditions")
   xml <- md$encode()
#> [geometa][WARN] Element '{http://www.isotc211.org/2005/gmi}MI_EnvironmentalRecord': No matching global declaration available for the validation root at line 1. 
#> [geometa][WARN] Object 'ISOImageryEnvironmentalRecord' is INVALID according to ISO 19139 XML schemas!