Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
saref4mari
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Model registry
Monitor
Service Desk
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
SAREF
saref4mari
Commits
fa0319eb
Commit
fa0319eb
authored
5 months ago
by
Ivan Spajic
Browse files
Options
Downloads
Patches
Plain Diff
Added an example of a temperature sensor making a measurement.
parent
2984aaa6
No related branches found
No related tags found
1 merge request
!1
Oceanographic Properties with Restrictions for Maritime IoT Devices
Pipeline
#10319
passed with warnings
5 months ago
Stage: test
Stage: deploy
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
examples/s4mari-sensor-example.ttl
+52
-0
52 additions, 0 deletions
examples/s4mari-sensor-example.ttl
with
52 additions
and
0 deletions
examples/s4mari-sensor-example.ttl
0 → 100644
+
52
−
0
View file @
fa0319eb
@prefix
:
<http://www.semanticweb.org/ispa/ontologies/2024/10/s4mari-sensor-example/>
.
@prefix
owl:
<http://www.w3.org/2002/07/owl#>
.
@prefix
rdf:
<http://www.w3.org/1999/02/22-rdf-syntax-ns#>
.
@prefix
xml:
<http://www.w3.org/XML/1998/namespace>
.
@prefix
xsd:
<http://www.w3.org/2001/XMLSchema#>
.
@prefix
rdfs:
<http://www.w3.org/2000/01/rdf-schema#>
.
@base
<http://www.semanticweb.org/ispa/ontologies/2024/10/s4mari-sensor-example/>
.
<http://www.semanticweb.org/ispa/ontologies/2024/10/s4mari-sensor-example>
rdf:
type
owl:
Ontology
;
owl:
versionIRI
<http://www.semanticweb.org/ispa/ontologies/2024/10/s4mari-sensor-example/1.0.0>
;
owl:
imports
<https://saref.etsi.org/saref4mari/v1.1.1/>
.
# Represents a sensor on a mooring rig off-shore from Austevoll, Norway.
### http://www.semanticweb.org/ispa/ontologies/2024/10/s4mari-sensor-example#Austevoll_Temperature_Sensor_1063
:
Austevoll_Temperature_Sensor_1063
rdf:
type
owl:
NamedIndividual
,
<https://saref.etsi.org/core/Sensor>
,
[
rdf:
type
owl:
Restriction
;
owl:
onProperty
<https://saref.etsi.org/core/madeExecution>
;
owl:
hasValue
:
Temperature_Measurement_20241128
]
.
# Represents an observation made by the Austevoll sensor at a specific time.
### http://www.semanticweb.org/ispa/ontologies/2024/10/s4mari-sensor-example#Temperature_Measurement_20241128
:
Temperature_Measurement_20241128
rdf:
type
owl:
NamedIndividual
,
<https://saref.etsi.org/core/Observation>
,
[
rdf:
type
owl:
Restriction
;
owl:
onProperty
<https://saref.etsi.org/core/hasResult>
;
owl:
hasValue
:
Water_Temperature_20241128
]
,
[
rdf:
type
owl:
Restriction
;
owl:
onProperty
<https://saref.etsi.org/core/hasResultTime>
;
owl:
hasValue
"2024-11-28T12:00:00Z"
^^
xsd:
dateTime
]
.
# Represents a specific observation result as part of the observation made by the Austevoll sensor.
# This result indicates a specific value and a specific unit it is measured in.
### http://www.semanticweb.org/ispa/ontologies/2024/10/s4mari-sensor-example#Water_Temperature_20241128
:
Water_Temperature_20241128
rdf:
type
owl:
NamedIndividual
,
[
rdf:
type
owl:
Class
;
owl:
oneOf
(
<https://saref.etsi.org/saref4mari/WaterTemperature>
)
]
,
[
rdf:
type
owl:
Restriction
;
owl:
onProperty
<https://saref.etsi.org/core/isMeasuredIn>
;
owl:
hasValue
<http://qudt.org/vocab/quantitykind/CelsiusTemperature>
]
,
[
rdf:
type
owl:
Restriction
;
owl:
onProperty
<https://saref.etsi.org/core/hasValue>
;
owl:
hasValue
"3.455"
^^
xsd:
double
]
.
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment