Skip to content

Commit

Permalink
Merge branch 'gh-pages' of github.com:w3c/sdw into gh-pages
Browse files Browse the repository at this point in the history
  • Loading branch information
Ted Guild committed Sep 15, 2020
2 parents 2eabe6d + 5c4200d commit a6b30e6
Show file tree
Hide file tree
Showing 8 changed files with 80 additions and 54 deletions.
20 changes: 18 additions & 2 deletions index.html
Expand Up @@ -205,7 +205,7 @@ <h2>
<h2>
Meetings
</h2>
<p>The group holds a regular teleconference every four weeks on Thursdays 13:00-14:00 UTC. </p>
<p>The group holds a regular teleconference every four weeks on Thursdays 13:00-14:00 UTC. See the <a href="http://www.w3.org/2020/sdw.ics">Calendar invite with call coordinates</a>.</p>
<table>
<thead>
<tr>
Expand All @@ -222,12 +222,28 @@ <h2>
<td><a
href="https://www.w3.org/2020/09/OGC-Gotomeeting.txt">OGC
GotoMeeting Teleconference details</a></td></tr>
<tr>
<td>20 August 2020<br/>13:00 - 14:00 UTC</td>
<td>Teleconference (<a href="http://www.w3.org/2020/sdw.ics">WebEx details</a>)</td>
<td>
<a href="https://lists.w3.org/Archives/Public/public-sdwig/2020Aug/0004.html">Agenda</a><br/>
<a class="todo" href="https://www.w3.org/2020/08/20-sdw-minutes.html">Minutes</a>
</td>
</tr>
<tr>
<td>23 July 2020<br/>13:00 - 14:00 UTC</td>
<td>Teleconference (<a href="http://www.w3.org/2020/sdw.ics">WebEx details</a>)</td>
<td>
<a href="https://lists.w3.org/Archives/Public/public-sdwig/2020Jul/0047.html">Agenda</a><br/>
<a href="https://www.w3.org/2020/07/23-sdw-minutes.html">Minutes</a>
</td>
</tr>
<tr>
<td>25 June 2020<br/>13:00 - 14:00 UTC</td>
<td>Teleconference (<a href="https://teams.microsoft.com/l/meetup-join/19%3ameeting_MmVkMmQyN2QtMWRiOC00ZDRlLWIzZjAtNDQ1OWRjYzc4MzRk%40thread.v2/0?context=%7b%22Tid%22%3a%22e5823331-ca32-4bae-a7f8-1e630643bf6c%22%2c%22Oid%22%3a%222f859a7f-80bc-4754-98a7-9b3662e81b8f%22%7d">Virtual meeting details</a>)</td>
<td>
<a href="https://lists.w3.org/Archives/Public/public-sdwig/2020Jun/0011.html">Agenda</a><br/>
<a class="todo">Minutes</a>
<a href="https://www.w3.org/2020/06/25-sdw-minutes.html">Minutes</a>
</td>
</tr>
<tr>
Expand Down
Binary file not shown.
72 changes: 36 additions & 36 deletions ssn/rdf/documentation_examples/sosa-core_examples.ttl
@@ -1,75 +1,75 @@
# baseURI: http://www.w3.org/ns/sosa/examples
# imports: http://www.w3.org/ns/sosa

@prefix examples: <http://www.w3.org/ns/sosa/examples#> .
@prefix ex: <http://www.w3.org/ns/sosa/examples#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sosa-core: <http://www.w3.org/ns/sosa#> .
@prefix sosa: <http://www.w3.org/ns/sosa#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

<http://www.w3.org/ns/sosa/examples>
rdf:type owl:Ontology ;
owl:imports <http://www.w3.org/ns/sosa> ;
.
<http://www.w3.org/ns/sosa/examples#4830EH_UCSB>
rdf:type sosa-core:Sample ;
rdf:type sosa:Sample ;
rdfs:comment "Instead of measuring temperature at every single office, we select room 4830 Ellison Hall, UCSB as a sample and thereby assume that the temperature observed there is a good proxy for the temperatures in other offices."^^xsd:string ;
rdfs:label "4830 Ellison Hall"^^xsd:string ;
sosa-core:isSampleOf examples:UCSB ;
sosa:isSampleOf ex:UCSB ;
.
examples:RoomTemperature
rdf:type sosa-core:Procedure ;
rdfs:comment "How is this linked to platform & sensor?--> It s not explicitly linked (see also the comment for examples:TempObservation1) One could add a back-pointing relation to the observation here but in reality one would not do so as this would crate millions of triples as part of each procedure, thereby cluttering a procedure repository. This is/can be handled via UNION queries in SPARQL pr simply an inverse property (path) in your query."^^xsd:string ;
ex:RoomTemperature
rdf:type sosa:Procedure ;
rdfs:comment "How is this linked to platform & sensor?--> It s not explicitly linked (see also the comment for ex:TempObservation1) One could add a back-pointing relation to the observation here but in reality one would not do so as this would crate millions of triples as part of each procedure, thereby cluttering a procedure repository. This is/can be handled via UNION queries in SPARQL pr simply an inverse property (path) in your query."^^xsd:string ;
rdfs:comment "This is a procedure for measuring room temperatures. To ensure a meaningful interpretation of results and interoperability, all room temperature observations need to follow the same procedure. (1) The sensor should be put at least 1m above ground. (2) The sensor should be shielded from direct sun light and circulating air, e.g., via an open window. Other heat sources such as computers should be avoided as well. (3) The sensor should not be moved during observations. (4) Room temperature observations are only comparable if they were taken during comparable outside conditions and with closed windows and doors. (5)...."^^xsd:string ;
.
examples:SamsungGalaxyS4_23
rdf:type sosa-core:Platform ;
ex:SamsungGalaxyS4_23
rdf:type sosa:Platform ;
rdfs:comment "A Samsung Galaxy S4 smartphone that carries multiple sensors. The S4 remains popular as it contains more sensors than later editions. For example, it can sense temperature."^^xsd:string ;
rdfs:label "Samsung Galaxy S4"^^xsd:string ;
sosa-core:hosts examples:TempSensorS4_23 ;
sosa:hosts ex:TempSensorS4_23 ;
.
examples:TempObservation1
rdf:type sosa-core:Observation ;
ex:TempObservation1
rdf:type sosa:Observation ;
rdfs:comment "A temperature observation created using the SamsungGalaxyS4_23."^^xsd:string ;
rdfs:comment "Not yet linked through to the platform or sensor. ---> (kj). Yes, this will be 'linked' via SPARQL queries and possible via future axioms outside of SOSA-core. There is no need to habve explicit relations between anything and everything. Also, keep in mind that this is all under the OWA."^^xsd:string ;
rdfs:label "Temperature observation 1."^^xsd:string ;
sosa-core:madeBySensor examples:TempSensorS4_23;
sosa-core:hasFeatureOfInterest <http://www.w3.org/ns/sosa/examples#4830EH_UCSB> ;
sosa-core:hasResult examples:TempObservationResult1 ;
sosa-core:resultTime "2016-08-10T08:30:00"^^xsd:dateTime ;
sosa-core:usedProcedure examples:RoomTemperature ;
sosa:madeBySensor ex:TempSensorS4_23;
sosa:hasFeatureOfInterest <http://www.w3.org/ns/sosa/examples#4830EH_UCSB> ;
sosa:hasResult ex:TempObservationResult1 ;
sosa:resultTime "2016-08-10T08:30:00"^^xsd:dateTime ;
sosa:usedProcedure ex:RoomTemperature ;
.
examples:TempSensorS4_23
rdf:type sosa-core:Sensor ;
ex:TempSensorS4_23
rdf:type sosa:Sensor ;
rdfs:label "The temperature sensor mounted on the S4 platform with the ID 23."^^xsd:string ;
sosa-core:hostedBy examples:SamsungGalaxyS4_23 ;
sosa:hostedBy ex:SamsungGalaxyS4_23 ;
.
examples:TempObservationResult1
rdf:type sosa-core:Result ;
ex:TempObservationResult1
rdf:type sosa:Result ;
rdfs:comment "The observed temperature for observation 1."^^xsd:string ;
rdfs:label "Result of temperature observation 1."^^xsd:string ;
sosa-core:hasValue "23.8"^^xsd:double ;
sosa:hasValue "23.8"^^xsd:double ;
.
examples:TempObservation2
rdf:type sosa-core:Observation ;
ex:TempObservation2
rdf:type sosa:Observation ;
rdfs:comment "A temperature observation created using the SamsungGalaxyS4_23."^^xsd:string ;
rdfs:label "Temperature observation 2. We usue this here to demonstrate that all room temperature observations use the same procedure."^^xsd:string ;
sosa-core:madeBySensor examples:TempSensorS4_23;
sosa-core:hasFeatureOfInterest <http://www.w3.org/ns/sosa/examples#4830EH_UCSB> ;
sosa-core:hasResult examples:TempObservationResult2 ;
sosa-core:resultTime "2016-08-10T09:33:00"^^xsd:dateTime ;
sosa-core:usedProcedure examples:RoomTemperature ;
sosa:madeBySensor ex:TempSensorS4_23;
sosa:hasFeatureOfInterest ex:4830EH_UCSB ;
sosa:hasResult [ rdf:value 23.8 ] ;
sosa:resultTime "2016-08-10T09:33:00"^^xsd:dateTime ;
sosa:usedProcedure ex:RoomTemperature ;
.
examples:TempObservationResult2
rdf:type sosa-core:Result ;
ex:TempObservationResult2
rdf:type sosa:Result ;
rdfs:comment "The observed temperature for observation 2."^^xsd:string ;
rdfs:label "Result of temperature observation 2."^^xsd:string ;
sosa-core:hasValue "24.3"^^xsd:double ;
sosa:hasValue "24.3"^^xsd:double ;
.
examples:UCSB
rdf:type sosa-core:FeatureOfInterest ;
sosa-core:hasSample examples:4830EH_UCSB ;
ex:UCSB
rdf:type sosa:FeatureOfInterest ;
sosa:hasSample ex:4830EH_UCSB ;
rdfs:comment "In our example we would like to study the average room temperature of offices at UCSB. Hence, UCSB is the feature of interest. We will only observe the temperature at some offices that will act as samples."^^xsd:string ;
rdfs:label "University of California, Santa Barbara"^^xsd:string ;
.
14 changes: 10 additions & 4 deletions time-aggregates/config.js
Expand Up @@ -12,11 +12,17 @@ var respecConfig = {
companyURL: "https://www.csiro.au/",
w3cid: 1796
},{
name: "Adam Shepherd",
orcid: "0000-0003-4486-9448"
name: "Adam Shepherd",
orcid: "0000-0003-4486-9448" ,
company: "WHOI" ,
url: "https://directory.whoi.edu/profile/ashepherd/" ,
companyURL: "https://www.whoi.edu/"
},{
name: "Charles Vardeman II",
orcid: "0000-0003-4091-6059"
name: "Charles Vardeman II",
orcid: "0000-0003-4091-6059" ,
company: "Notre Dame" ,
url: "https://crc.nd.edu/about/people/charles-vardeman/" ,
companyURL: "https://crc.nd.edu/"
}
],
otherLinks: [
Expand Down
2 changes: 1 addition & 1 deletion time-aggregates/index.html
Expand Up @@ -15,7 +15,7 @@
<section id="abstract">
<p>OWL-Time [[owl-time]] is an ontology for temporal entities and relations between them.
OWL-Time defines simple temporal entities (intervals and instants).
This note adds one new class <code>time:TemporalAggregate</code> and two properties <code>time:hasPart</code> and its inverse <code>time:isPartof</code> to allow for the description of arbitrary aggregates of temporal entities.
This note adds one new class <code>time:TemporalAggregate</code> and two properties <code>time:hasPart</code> and its inverse <code>time:isPartOf</code> to allow for the description of arbitrary aggregates of temporal entities.
</p>
<p style="text-align: center;">The namespace for OWL-Time terms is <code>http://www.w3.org/2006/time#</code></p>
<p style="text-align: center;">The suggested prefix for the OWL-Time namespace is <code>time</code></p>
Expand Down
7 changes: 4 additions & 3 deletions time-entity-relations/config.js
Expand Up @@ -12,9 +12,10 @@ var respecConfig = {
companyURL: "https://www.csiro.au/",
w3cid: 1796
},{
name: "Chris Little",
company: "Met Office",
companyURL: "http://www.metoffice.gov.uk/"
name: "Chris Little",
company: "Met Office",
companyURL: "http://www.metoffice.gov.uk/",
orcid: "0000-0002-1442-3712"
}
],
otherLinks: [
Expand Down
2 changes: 1 addition & 1 deletion time-entity-relations/index.html
Expand Up @@ -423,7 +423,7 @@ <h4 id="time:notDisjoint">not disjoint time entity</h4>

<section id="examples">
<h2>Examples</h2>
<p>Jack's wedding concides with Abby's birthday in 2020.</p>
<p>Jack's wedding coincides with Abby's birthday in 2020.</p>
<aside id="ex-jack" class="example">
<pre class="nohighlight turtle">
ex:JackWeddingDay time:equals ex:AbbyBirthday2020 .
Expand Down
17 changes: 10 additions & 7 deletions time/config.js
Expand Up @@ -10,18 +10,21 @@ var respecConfig = {
// crEnd: "3000-01-01",
editors: [
{
name: "Simon Cox",
company: "CSIRO",
name: "Simon Cox",
orcid: "0000-0002-3884-3420",
company: "CSIRO",
url: "http://people.csiro.au/Simon-Cox",
companyURL: "https://www.csiro.au/",
w3cid: 1796
},{
name: "Chris Little",
company: "Met Office",
companyURL: "http://www.metoffice.gov.uk/"
},{
name: "Chris Little",
company: "Met Office",
companyURL: "http://www.metoffice.gov.uk/",
orcid: "0000-0002-1442-3712"
}],
otherLinks: [
{
key: "Contributors",
key: "Editors of 2006 Working Draft",
data: [
{
value: "Jerry R. Hobbs"
Expand Down

0 comments on commit a6b30e6

Please sign in to comment.