ISOTemporalExtent: ISOTemporalExtent

ISOTemporalExtentR Documentation

ISOTemporalExtent

Description

ISOTemporalExtent

ISOTemporalExtent

Format

R6Class object.

Value

Object of R6Class for modelling an ISO TemporalExtent

Super classes

geometa::geometaLogger -> geometa::ISOAbstractObject -> ISOTemporalExtent

Public fields

extent

extent

Methods

Public methods

Inherited methods

Method new()

Initializes object

Usage
ISOTemporalExtent$new(xml = NULL)
Arguments
xml

object of class XMLInternalNode-class


Method setTimeInstant()

Set time instant

Usage
ISOTemporalExtent$setTimeInstant(timeInstant)
Arguments
timeInstant

object of class GMLTimeInstant


Method setTimePeriod()

Set time period

Usage
ISOTemporalExtent$setTimePeriod(timePeriod)
Arguments
timePeriod

object of class GMLTimePeriod


Method clone()

The objects of this class are cloneable with this method.

Usage
ISOTemporalExtent$clone(deep = FALSE)
Arguments
deep

Whether to make a deep clone.

Author(s)

Emmanuel Blondel <emmanuel.blondel1@gmail.com>

References

ISO 19115:2003 - Geographic information – Metadata

Examples

   te <- ISOTemporalExtent$new()
   start <- ISOdate(2000, 1, 12, 12, 59, 45)
   end <- ISOdate(2010, 8, 22, 13, 12, 43)
   tp <- GMLTimePeriod$new(beginPosition = start, endPosition = end)
   te$setTimePeriod(tp)


geometa documentation built on Oct. 29, 2022, 1:06 a.m.