-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathModelPlan.html
More file actions
98 lines (95 loc) · 5.3 KB
/
Copy pathModelPlan.html
File metadata and controls
98 lines (95 loc) · 5.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<h3>Planning executions and collections</h3>
<p>
Assets (Systems or Platforms) may be deployed with the intention of making Executions (Actuations, Observations, or
Sampling) at some future time.
Collections of Samples or Executions can be described ahead of their completion, to indicate the intention
to make collections with the given properties at a future date.
Patterns that may be used in this way are described here.
</p>
<section id="ModelPlan-Deployment">
<h4>Planned System Deployment</h4>
<p>
A specific <a>sosa:System</a> (<a>sosa:Actuator</a>, <a>sosa:Sensor</a>, <a>sosa:Sampler</a>) can be planned to
be attached to a
<a>sosa:Platform</a> as part of a <a>sosa:Deployment</a> during a nominated time interval.
</p>
<p>
For example, <a href="#Fig-PlannedDeployment"></a> describes the deployment of a specific <a>sosa:Sampler</a>
(`ex:SA56`) on a specified <a>sosa:Platform</a> (`ex:LOIRE_A_JARGEAU_WQ_Station`) on the Loire River between
2026 and 2028.
This Sampler implements a nominated <a>sosa:SamplingProcedure</a>.
It may be associated with a potential set of Samples, packaged in an empty <a>sosa:SampleCollection</a>
(`ex:SC-LaJ1`).
</p>
<p>
The resulting SampleCollection has no members prior to the deployment, but can be characterized prospectively in
terms of
the SamplingProcedure and Platform (station) used.
</p>
<figure id="Fig-PlannedDeployment">
<embed alt="Planned deployment of a sampler system" src="./images/PlannedDeployment.svg" style="width:90%" />
<figcaption>
Deployment of a Sampler.
`ex:SC-LaJ1` denotes the set of Samples that will be the result of this deployment.
<br>
<em><a href="#Class-diagram">Explanation of the notation used in class diagrams</a></em>.
</figcaption>
</figure>
<pre class="example turtle" data-include="./rdf/examples/PlannedDeployment.ttl" data-include-format="text"></pre>
</section>
<section id="ModelPlan-Collections">
<h4>Planned Collection using generic system</h4>
<p>
More generically, a Collection (i.e., <a>sosa:ActuationCollection</a>, <a>sosa:ObservationCollection</a>,
<a>sosa:SamplingCollection</a>, or <a>sosa:SampleCollection</a>) can be described which is made by a potential
deployment.
In this case the actual system is only specified in terms of the Procedure implemented.
</p>
<p>
For example, <a href="#Fig-PlannedSampleCollection"></a> describes a potential set of samples (`ex:SC-LaJ2`) of
the Loire River, packaged in a <a>sosa:SampleCollection</a>, collected from a specified <a>sosa:Platform</a>,
using a given <a>sosa:SamplingProcedure</a> (`ex:Sp-A56`).
The actual <a>sosa:Sampler</a> is not specified, only that it must implement the nominated SamplingProcedure,
and be deployed at the nominated station.
</p>
<figure id="Fig-PlannedSampleCollection">
<embed alt="Planned sample collection" src="./images/PlannedSampleCollection.svg" style="width:90%" />
<figcaption>
A planned SampleCollection.
`_:b1` is a "blank node" denoting some Sampler that implements `ex:Sp-A56` and is deployed on
`ex:LOIRE_A_JARGEAU_WQ_Station`.
<br>
<em><a href="#Class-diagram">Explanation of the notation used in class diagrams</a></em>.
</figcaption>
</figure>
<pre class="example turtle" data-include="./rdf/examples/PlannedSampleCollection.ttl" data-include-format="text"></pre>
<p>
Then <a href="#Fig-PlannedObservationCollection"></a> describes a potential set of observations of <em>pH</em>
(`ex:ObsColpH`),
packaged in a <a>sosa:ObservationCollection</a>, whose (proximate) feature of interest is the set of Samples
described above (`ex:SC-LaJ2`).
Each member of the <a>sosa:ObservationCollection</a> must be consistent with the
<a href="#SOSAObservationCollection">requirements for membership of an ObservationCollection</a>.
It must use the nominated <a>sosa:ObservingProcedure</a> (`ex:pH-A56`),
and its <a>sosa:hasFeatureOfInterest</a> must be a member of the set of Samples (`ex:SC-LaJ2`),
from the same Platform (`ex:LOIRE_A_JARGEAU_WQ_Station`).
Again, the actual System (<a>sosa:Sensor</a>) is not specified, only that it must implement the nominated
ObservingProcedure.
</p>
<p>
It is not specified that the observations are made at any particular time or place, so might be
<em>ex-situ</em>.
</p>
<figure id="Fig-PlannedObservationCollection">
<embed alt="Planned observation collection" src="./images/PlannedObservationCollection.svg" style="width:90%" />
<figcaption>
A planned ObservationCollection.
`_:b3` is a "blank node" denoting a <a>sosa:Sensor</a> that is implied by the presence of the
<a>sosa:usedProcedure</a> value.
<br>
<em><a href="#Class-diagram">Explanation of the notation used in class diagrams</a></em>.
</figcaption>
</figure>
<pre class="example turtle" data-include="./rdf/examples/PlannedObservationCollection.ttl"
data-include-format="text"></pre>
</section>