Learn R Programming

sos4R (version 0.1-10)

SensorML-class: Classes of the Namespace sml

Description

Classes and construction functions for elements from the OGC specification OpenGIS(R) Sensor Model Language (SensorML) Implementation Specification.

The only class at the moment is "SensorML" which only wraps an "XMLInternalDocument".

Arguments

Objects from the Class

Objects can be created by calls to the construction method in the form SensorML(...).

References

Botts, M., Robin, A. (Eds.), OpenGIS® Sensor Model Language (SensorML) Implementation Specification, OGC® 07-000

Examples

Run this code
showClass("SensorML")

# create a XmlInternalDocument and a SensorML class with it
xml <- xmlParse("<SensorML />")
sml <- SensorML(xml)

# print it
print(sml)

# access the inner document
sml@xml

Run the code above in your browser using DataLab