With the DescribeResultAccessRequestResponse the SPS the address of the service where the result of a task will be stored.
parameters < / h3 >
Mandatory parameters for this answer :
- service - A combined element that describes the type and the URL of the OGC service, the result will be stored. The element contains the following elements:
- Service Type - Specifies the type of service to (SOS , WFS ...) < / li >
- ServiceURL - The URL of the service li>
- request - optional. However it should contain a request for the case that the ServiceURL gives no direct access to the data. Li>
- Service Type - Specifies the type of service to (SOS , WFS ...) < / li >
- ServiceURL - The URL of the service li>
- request - optional. However it should contain a request for the case that the ServiceURL gives no direct access to the data. Li>
Example of a DescribeResultAccessRequestResponse
<?xml version="1.0" encoding="UTF-8"?> <DescribeResultAccessRequestResponse xmlns="http://www.opengis.net/sps"> <service> <ServiceType>SOS</ServiceType> <ServiceURL>http://www.example.org/SOS?REQUEST=GetObservation&SERVICE=SOS&VERSION=1.0.0&OFFERING=SPSOfferingName&OBSERVEDPROPERTY=PropertyName&PROCEDURE=SensorID&RESPONSEFORMAT="text/xml;subtype="om/1.0.0""</ServiceURL> </service> </DescribeResultAccessRequestResponse>
Example of a DescribeResultAccessRequestResponse with request parameter:
<?xml version="1.0" encoding="UTF-8"?> <DescribeResultAccessRequestResponse xmlns="http://www.opengis.net/sps"> <service> <ServiceType>SOS</ServiceType> <ServiceURL>http://www.example.org/SOS</ServiceURL> <request> <GetObservation xmlns="http://www.opengis.net/sos/1.0" xmlns:ows="http://www.opengis.net/ows/1.1" xmlns:gml="http://www.opengis.net/gml" xmlns:ogc="http://www.opengis.net/ogc" xmlns:om="http://www.opengis.net/om/1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.opengis.net/sos/1.0 http://schemas.opengis.net/sos/1.0.0/sosGetObservation.xsd" service="SOS" version="1.0.0"> <offering>SPSOfferingName</offering> <observedProperty>PropertyName</observedProperty> <procedure>SensorID</procedure> <responseFormat>text/xml;subtype="om/1.0.0"</responseFormat> </GetObservation> </request> </service> </DescribeResultAccessRequestResponse>
Share:
Add comment