Sensors » Example

The data are delivered by a Sensor Observation Service.


Service Url

http://swe.brgm.fr/constellation-envision/WS/sos-discovery

Requests

  • GetCapabilities: [Link]
    http://swe.brgm.fr/constellation-envision/WS/sos-discovery?request=GetCapabilities&SERVICE=SOS&Version=1.0.0
  • GetFeatureOfInterest

    Use XML POST request with the following content.

    <GetFeatureOfInterest xmlns="http://www.opengis.net/sos/1.0" version="1.0.0" service="SOS" xsi:schemaLocation="http://www.opengis.net/sos/1.0 http://schemas.opengis.net/sos/1.0.0/sosAll.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <FeatureOfInterestId>station</FeatureOfInterestId>
    <FeatureOfInterestId>station-001</FeatureOfInterestId>
    <FeatureOfInterestId>station-002</FeatureOfInterestId>
    </GetFeatureOfInterest>
  • DescribeSensor

    Use XML POST request with the following content.

    <sos:DescribeSensor xmlns:sos="http://www.opengis.net/sos/1.0" outputFormat="text/xml;subtype=&quot;SensorML/1.0.0&quot;" service="SOS" version="1.0.0">
    <sos:procedure>urn:ogc:object:sensor:BRGM:1</sos:procedure>
    </sos:DescribeSensor>
  • GetObservation

    Use XML POST request with the following content.

    <GetObservation xmlns="http://www.opengis.net/sos/1.0"
    version="1.0.0" service="SOS"
    xmlns:om="http://www.opengis.net/om/1.0"
    xmlns:ogc="http://www.opengis.net/ogc"
    xmlns:sos="http://www.opengis.net/sos/1.0"
    xmlns:gml="http://www.opengis.net/gml"
    xsi:schemaLocation="http://www.opengis.net/sos/1.0 http://schemas.opengis.net/sos/1.0.0/sosGetObservation.xsd"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <offering>offering-allSensor</offering>
    <eventTime>
    <ogc:TM_During xmlns:ogc="http://www.opengis.net/ogc">
    <gml:TimePeriod xmlns:gml="http://www.opengis.net/gml">
    <gml:beginPosition>2010-06-10T00:00:00</gml:beginPosition>
    <gml:endPosition>2010-09-10T00:00:00</gml:endPosition>
    </gml:TimePeriod>
    </ogc:TM_During>
    </eventTime>
    <observedProperty>depth</observedProperty>
    <responseFormat>text/xml; subtype="om/1.0.0"</responseFormat>
    <resultModel />
    <responseMode>inline</responseMode>
    </GetObservation>