If the tasking leads to a result, the DescribeResultAccesss-Request can be used to obtain the address, where the result will be stored. This can be any service of the OGC, that is able to provide data, like a Sensor Observation Service (SOS), a Web Feature Service (WFS) oder a Web Map Service (WMS).
Parameter
Mandatory parameters for the request:
- service – set to SPS
- request – set to DescribeResultAccesss
- version – for this SPS-version set to “1.0.0″
- taskID – the unique ID this task is registered with in the SubmitRequestResponse.
- sensorID - the ID the sensor to be tasked
For the DescribeResultAccesss-Request EITHER taskID OR sensorID has to be set.
DescribeResultAccesss with sensorID
<?xml version="1.0" encoding="UTF-8"?> <DescribeResultAccess xmlns="http://www.opengis.net/sps" service="SPS" version="1.0.0"> <sensorID>urn:x-ogc:object:sensor:SENSORID</sensorID> </DescribeResultAccess>
DescribeResultAccesss with taskID
<?xml version="1.0" encoding="UTF-8"?> <DescribeResultAccess xmlns="http://www.opengis.net/sps" service="SPS" version="1.0.0"> <taskID>23</taskID> </DescribeResultAccess>
The service responds with a DescribeResultAccessRequestResponse
Share:
Add comment