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

root/q2o/sos_adcp/trunk/sos_adcp/RangeSeriesTest.xml

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

--

Line 
1 <?xml version="1.0" encoding="UTF-8"?>
2 <SensorML xmlns="http://www.opengis.net/sensorML/1.0"
3     xmlns:swe="http://www.opengis.net/swe/1.0" xmlns:gml="http://www.opengis.net/gml"
4     xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
5     xsi:schemaLocation="http://www.opengis.net/sensorML/1.0 http://schemas.opengis.net/sensorML/1.0.0/sensorML.xsd"
6     version="1.0">
7     <member xlink:role="urn:x-ogc:def:sensor:OGC:processModel">
8         <ProcessChain gml:id="RangeSeriesTest">
9             <gml:description>Checking for values in a time series and flagging them as bad if they fall outside the min/max parameters</gml:description>
10             <gml:name>RangeSeriesTest</gml:name>
11             <classification>
12                 <ClassifierList>
13                     <classifier name="processType">
14                         <Term definition="http://mmisw.org/ont/mvco/process">
15                             <value>http://mmisw.org/ont/mvco/process/rangeSeriesTest</value>
16                         </Term>
17                     </classifier>
18                 </ClassifierList>
19             </classification>
20             <inputs>
21                 <InputList>
22                     <input name="inputTimeSeries">
23                         <swe:DataArray>
24                             <swe:elementCount>
25                                 <swe:Count>
26                                     <swe:value>2400</swe:value>
27                                 </swe:Count>
28                             </swe:elementCount>
29                             <swe:elementType name="TimeSeries">
30                                 <swe:Quantity definition="urn:_:Q2O:timeSeries"/>
31                             </swe:elementType>
32                         </swe:DataArray>                           
33                     </input>
34                 </InputList>
35             </inputs>
36            
37             <outputs>
38                 <OutputList>
39                     <output name="outputTimeSeries">
40                         <swe:DataArray>
41                             <swe:elementCount>
42                                 <swe:Count>
43                                     <swe:value>2400</swe:value>
44                                 </swe:Count>
45                             </swe:elementCount>
46                             <swe:elementType name="TimeSeries">
47                                 <swe:Quantity definition="urn:_:Q2O:timeSeries"/>
48                             </swe:elementType>
49                         </swe:DataArray>
50                     </output>
51                     <output name="percentGood">
52                         <swe:Quantity definition="http://mmisw.org/ont/q2o/parameter/percentageOfPoints"></swe:Quantity>
53                     </output>
54                 </OutputList>
55             </outputs>
56
57             <parameters>
58                 <ParameterList>
59                     <parameter name="minimum">
60                         <swe:Quantity definition="http://mmisw.org/ont/q2o/parameter/minimum"/>
61                     </parameter>
62                     <parameter name="maximum">
63                         <swe:Quantity definition="http://mmisw.org/ont/q2o/parameter/maximum"/>
64                     </parameter>
65                 </ParameterList>
66             </parameters>
67
68             <components>
69                 <ComponentList>
70                     <component name="RangeTest" xlink:href="http://mvcodata.whoi.edu/downloads/sensorML/v1.0/examples/sensors/ADCP_2.2/RangeTest.xml"/>
71                 </ComponentList>
72             </components>
73            
74             <connections>
75                 <ConnectionList>
76                     <connection>
77                         <Link>
78                             <source ref="this/parameters/minimum"/>
79                             <destination ref="RangeTest/parameters/minimum"/>
80                         </Link>
81                     </connection>
82                     <connection>
83                         <Link>
84                             <source ref="this/parameters/maximum"/>
85                             <destination ref="RangeTest/parameters/maximum"/>
86                         </Link>
87                     </connection>
88                 </ConnectionList>
89             </connections>
90         </ProcessChain>
91     </member>
92 </SensorML>
Note: See TracBrowser for help on using the browser.