Skip to content
This repository has been archived by the owner on Sep 1, 2022. It is now read-only.

Commit

Permalink
Add sos info to docs
Browse files Browse the repository at this point in the history
  • Loading branch information
lesserwhirls committed May 3, 2017
1 parent 6269ac1 commit f5ea582
Show file tree
Hide file tree
Showing 3 changed files with 79 additions and 2 deletions.
53 changes: 51 additions & 2 deletions docs/website/tds/reference/Services.html
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ <h1>TDS Services</h1>
<li><a href="#NCSS">NCSS</a></li>
<li><a href="#cdmremote">CDMRemote</a></li>
<li><a href="#HTTP">HTTP File Download</a></li>
<li><a href="#SOS">OGC SOS</a></li>
</ul>
</li>
</ul>
Expand Down Expand Up @@ -583,7 +584,49 @@ <h3><a name="dataAccessServices">Data Access Services</a></h3>
</ul>
</td>
</tr>

<tr>
<td><a name="SOS">OGC Sensor Observation Service (SOS)</a></td>
<td>
<table width="100%">
<tr>
<th colspan="2">Basic Configuration</th>
</tr>
<tr>
<td>Default&nbsp;Availability</td>
<td>Disabled</td>
</tr>
<tr>
<td>Access Point</td>
<td><code>/thredds/sos/*</code></td>
</tr>
<tr>
<th colspan="2">Catalog Service Configuration<br/>
(exact values <a href="#tdsServiceElemRequirements">required</a>)
</th>
</tr>
<tr>
<td>Service Type</td>
<td><strong>Sensor Observation Service (SOS)</strong></td>
</tr>
<tr>
<td>Service Base URL</td>
<td><strong>/thredds/sos/</strong></td>
</tr>
</table>
</td>
<td>Sensor Observation Service
<ul>
<li>The SOS standard is applicable to use cases in which sensor data
needs to be managed in an interoperable way. For more information,
see the <a href="http://www.opengeospatial.org/standards/sos">OGC</a>
SOS page, or the ncSOS
<a href="https://github.com/asascience-open/ncSOS/wiki">wiki</a>,
maintained by the developers of the ncSOS plugin, Applied Science
Associates.
</li>
</ul>
</td>
</tr>
</table>

<hr width="100%"/>
Expand Down Expand Up @@ -626,6 +669,9 @@ <h4>ncISO</h4>
<pre>&lt;service name="uddc" serviceType="<strong>UDDC</strong>" base="<strong>/thredds/uddc/"</strong>&nbsp;/&gt;</pre>


<h4>SOS</h4>
<pre>&lt;service name="sos" serviceType="<strong>SOS</strong>" base="<strong>/thredds/sos/"</strong>&nbsp;/&gt;</pre>

<h3><a name="compoundExample">Example compound <code>service</code> Element</a></h3>

<pre>
Expand All @@ -641,7 +687,10 @@ <h3><a name="compoundExample">Example compound <code>service</code> Element</a><
&lt;service name=&quot;iso&quot; serviceType=&quot;<strong>ISO</strong>&quot; base=&quot;<strong>/thredds/iso/</strong>&quot;/&gt;
&lt;service name=&quot;ncml&quot; serviceType=&quot;<strong>NCML</strong>&quot; base=&quot;<strong>/thredds/ncml/</strong>&quot;/&gt;
&lt;service name=&quot;uddc&quot; serviceType=&quot;<strong>UDDC</strong>&quot; base=&quot;<strong>/thredds/uddc/</strong>&quot;/&gt;
&lt;/service&gt;

&lt;service name=&quot;sos&quot; serviceType=&quot;<strong>SOS</strong>&quot; base=&quot;<strong>/thredds/sos/</strong>&quot;/&gt;

&lt;/service&gt;
</pre>

<hr width="100%"/>
Expand Down
22 changes: 22 additions & 0 deletions docs/website/tds/reference/ThreddsConfigXMLFile.html
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,8 @@ <h1>TDS Configuration file</h1>
<li><a href="#WMS">WMS</a></li>
<li><a href="#ncss">NetCDF Subset Service</a><br>
<li><a href="#ncISO">ncISO</a><br>
<li><a href="#ncSOS">SOS</a><br>

</li>
</ul>
<li>CDM Configuration
Expand Down Expand Up @@ -377,6 +379,26 @@ <h3><a name="ncISO" id="ncISO">ncISO Service</a></h3>
<p>Each of the <strong>allow</strong> elements above enables the corresponding ncISO service (NCML, UDDC, and ISO).
The ncISO services are described in more detail on the <a href="ncISO.html">ncISO page</a>.
</p>

<h3><a name="SOS" id="ncSOS">SOS Service</a></h3>

<p>By default the ncSOS service is disabled in the TDS. It can be enabled by including the following in the <code>threddsConfig.xml</code> file:</p>

<pre>
&lt;NCSOS&gt;
&lt;allow&gt;true&lt;/allow&gt;
&lt;/NCSOS&gt;
</pre>

<p>The <strong>allow</strong> element enables the SOS service.
For more information,
see the <a href="http://www.opengeospatial.org/standards/sos">OGC</a>
SOS page, or the ncSOS
<a href="https://github.com/asascience-open/ncSOS/wiki">wiki</a>,
maintained by the developers of the ncSOS plugin, Applied Science
Associates.
</p>

<hr>
<h2>CDM configuration</h2>
<h3><a name="FeatureCollections">Feature Collections</a></h3>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -213,6 +213,12 @@
</NCISO>
-->

<!--
<NCSOS>
<allow>false</allow>
</NCSOS>
-->

<!-- CatalogGen service is off by default.
<CatalogGen>
<allow>false</allow>
Expand Down

0 comments on commit f5ea582

Please sign in to comment.