<?xml version="1.0" encoding="UTF-8"?>
<sml:PhysicalComponent gml:id="MY_SENSOR"
   xmlns:sml="http://www.opengis.net/sensorml/2.0"
   xmlns:swe="http://www.opengis.net/swe/2.0"
   xmlns:gml="http://www.opengis.net/gml/3.2"
   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xmlns:xlink="http://www.w3.org/1999/xlink"
   xsi:schemaLocation="http://www.opengis.net/sensorml/2.0 http://schemas.opengis.net/sensorML/2.0/sensorML.xsd">
   <!-- ================================================= -->
   <!--                  System Description               -->
   <!-- ================================================= -->
   <gml:description>simple thermometer with time tag</gml:description>
   <gml:identifier codeSpace="uid">urn:meteofrance:stations:76455</gml:identifier>
 
   <!-- metadata deleted for brevity sake -->
 
   <!-- ================================================= -->
   <!--             Observed Property = Output            -->
   <!-- ================================================= -->
   <sml:outputs>
      <sml:OutputList>
         <sml:output name="temp">
            <sml:DataInterface>
 
               <!-- data description -->
               <sml:data>
                  <swe:DataStream>
                     <swe:elementType name="temperatureStream">
                        <swe:DataRecord
                           definition="http://sensorml.com/ont/swe/property/TimeSeries">
                           <swe:label>Temperature Measurement</swe:label>
                           <swe:field name="time">
                              <swe:Time
                                 definition="http://sensorml.com/ont/swe/property/SamplingTime">
                                 <swe:uom
                                    xlink:href="http://www.opengis.net/def/uom/ISO-8601/0/Gregorian"
                                 />
                              </swe:Time>
                           </swe:field>
                           <swe:field name="temperature">
                              <swe:Quantity
                                 definition="http://mmisw.org/ont/cf/parameter/air_temperature">
                                 <swe:uom code="Cel"/>
                              </swe:Quantity>
                           </swe:field>
                        </swe:DataRecord>
                     </swe:elementType>
 
                     <!-- encoding description -->
                     <swe:encoding>
                        <swe:TextEncoding tokenSeparator="," blockSeparator=" "/>
                     </swe:encoding>
                      
                     <!-- reference the values at a RESTful resource -->
                     <!-- e.g. returns latest measurement(s) -->
                     <swe:values xlink:href="http://myServer.com:4563/sensor/02080"/>
 
                  </swe:DataStream>
               </sml:data>
             </sml:DataInterface>
         </sml:output>
      </sml:OutputList>
   </sml:outputs>
   <!-- ================================================= -->
   <!--                  Station Location                 -->
   <!-- ================================================= -->
   <sml:position>
      <gml:Point gml:id="stationLocation" srsName="http://www.opengis.net/def/crs/EPSG/0/4326">
         <gml:coordinates>47.8 88.56</gml:coordinates>
      </gml:Point>
   </sml:position>
</sml:PhysicalComponent>