Description Usage Arguments Details Objects from the Classes Slots Methods Author(s) References See Also Examples
Temporal query parameters for GetObservation requests.
1 | SosEventTime(temporalOps)
|
temporalOps |
An object of class OgcBinaryTemporalOp-class to be wrapped by the sos:eventTime element. |
Specifies the time period(s) for which observations are requested. This allows a client to request observations from a specific instant, multiple instances or periods of time in the past, present and future. The supported range is listed in the selected offering capabilities. The objects of these classes are used in the GetObservation (paramter in GetObservation).
A typical example in a POST request:
<eventTime>
<ogc:TM_During>
<ogc:PropertyName>om:samplingTime</ogc:PropertyName>
<gml:TimePeriod>
<gml:beginPosition>2006-11-05T17:18:58.000-06:00</gml:beginPosition>
<gml:endPosition>2006-11-05T21:18:59.000-06:00</gml:endPosition>
</gml:TimePeriod>
</ogc:TM_During>
</eventTime>
In GET binding (SosBindings
) the eventTime is simply omitted for getting the latest observation.
It is recommended to use the creation functions as shown in the examples.
Objects can be created by calls to the construction functions of the form SosEventTime(...)
.
temporalOps
:Object of class "OgcBinaryTemporalOp"
for SosEventTime
, the temporal operand to be inserted into the event time, or an object of class "character"
for SosEventTimeLatest
.
signature(obj = "SosEventTime", sos = "SOS")
: Encode the given object as a key-value pair.
signature(obj = "SosEventTime", sos = "SOS")
: Encode the given object as XML.
Daniel Nuest daniel.nuest@uni-muenster.de
See SOS specification, Table 4: “Parameters of GetObservation Request”.
See also SosGetObservation-class
, sosCreateEventTimeList-methods
.
1 2 3 4 5 6 7 8 9 10 11 12 | showClass("SosEventTime")
# create SosEventTime for all times after the given time stamp
timePos <- GmlTimePosition(as.POSIXct("2010-01-01 12:00"))
tOps <- TM_After(time = GmlTimeInstant(timePosition = timePos))
time1 <- SosEventTime(tOps)
# encode it as XML
encodeXML(time1, sos = SOS_Test())
# encode it as KVP
encodeKVP(time1, sos = SOS_Test())
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.