NCCOOS Trac Projects: Top | Web | Platforms | Processing | Viz | Sprints | Sandbox | (Wind)

root/q2o/sos_adcp/trunk/sos_adcp/adcpPartialTemplate.xml

Revision 440 (checked in by jfredericks, 13 years ago)

--

Line 
1 <?xml version="1.0" encoding="UTF-8"?>
2 <om:ObservationCollection xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3    xsi:schemaLocation="http://www.opengis.net/om/1.0 http://schemas.opengis.net/om/1.0.0/observation.xsd"
4    xmlns:xlink="http://www.w3.org/1999/xlink"
5    xmlns:om="http://www.opengis.net/om/1.0"
6    xmlns:gml="http://www.opengis.net/gml"
7    xmlns:swe="http://www.opengis.net/swe/1.0.1"
8    gml:id="ADCP_Observation">
9    <!-- Observation name -->
10    <gml:name>Data from ADCP profiler</gml:name>
11    <om:member>
12       <om:Observation>
13          <!-- Observation time -->
14          <om:samplingTime/>
15          <!-- Sensor description (SensorML) -->
16          <om:procedure xlink:href="http://mvcodata.whoi.edu/downloads/sensorML/v1.0/examples/sensors/ADCP_2.2/ADCP_System.xml"/>
17          <om:observedProperty xlink:href="urn:ogc:phenomenon:time:iso8601"/>
18          <om:observedProperty xlink:href="urn:ogc:def:property:latitude"/>
19          <om:observedProperty xlink:href="urn:ogc:def:property:longitude"/>
20          <om:observedProperty xlink:href="urn:Q2O:def:property::depth"/>
21          <!--  Add requested Observed Props here! -->
22          <om:featureOfInterest xlink:href="urn:MVCO:location:MarthasVineyardCoastalObservatory"/>
23          <om:parameter></om:parameter>
24          <!-- Result Structure and Encoding -->
25          <om:result>
26             <swe:DataArray>
27                <swe:elementCount>
28                   <swe:Count>
29                      <swe:value/>
30                   </swe:Count>
31                </swe:elementCount>
32                <swe:elementType name="ADCP mixed observation">
33                   <swe:DataRecord>
34                      <!-- Not grouping these, just package them as one big record -->
35                      <!-- time.lat.lon for all requests -->
36                      <swe:field name="time">
37                         <swe:Time definition="urn:ogc:phenomenon:time:iso8601"/>
38                      </swe:field>
39                      <swe:field name="lat">
40                         <swe:Quantity definition="urn:ogc:def:property:latitude">
41                            <swe:uom code="deg"/>
42                         </swe:Quantity>
43                      </swe:field>
44                      <swe:field name="lon">
45                         <swe:Quantity definition="urn:ogc:def:property:longitude">
46                            <swe:uom code="deg"/>
47                         </swe:Quantity>
48                      </swe:field>
49                      <swe:field name="depth">
50                         <swe:Quantity definition="urn:Q2O:def:property::depth">
51                            <swe:uom code="m"/>
52                         </swe:Quantity>
53                      </swe:field>
54                      <!-- Add requested ObsProps here -->
55                      
56                   </swe:DataRecord>
57                  
58                </swe:elementType>
59                <swe:encoding>
60                   <swe:TextBlock decimalSeparator="." tokenSeparator="," blockSeparator=" "/>
61                </swe:encoding>
62                <!-- Result Values -->
63                <swe:values/>
64             </swe:DataArray>
65          </om:result>
66       </om:Observation>
67    </om:member>
68 </om:ObservationCollection>
Note: See TracBrowser for help on using the browser.