forked from FacultadInformatica-LinkedData/Curso2016-2017
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcarolbou.ttl
More file actions
13 lines (13 loc) · 694 Bytes
/
Copy pathcarolbou.ttl
File metadata and controls
13 lines (13 loc) · 694 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
@base <http://www.oeg-upm.net/ontologies/class/>
@prefix class: <http://www.ontologies.org/ontologies/class#>
@prefix sensor: <http://www.ontologies.org/ontologies/sensor#>
@prefix measurement: <http://www.ontologies.org/ontologies/measurement#>
@prefix computer: <http://www.ontologies.org/ontologies/computer#>
@prefix user: <http://www.ontologies.org/ontologies/user#>
:Measurement8401 measurement:hasTemperature "29"^^xsd:integer ;
measurement:atTime "2010-06-12T12:00:12"^^xsd:dateTime;
:Sensor029 sensor:hasMeasurement :Measurement8401 ;
:User10A user:hasName "Pedro";
:Computer101 computer:hasOwner :User10A ;
:Class01 class:includes :Sensor029 ;
class:includes :Computer101 ;