File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- @prefix ex: <https://example.org/data/> .
21@prefix iop: <https://w3id.org/iadopt/ont/> .
2+ @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
3+ @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
34@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
5+ @prefix ex: <https://example.org/data/> .
46@prefix sosa: <http://www.w3.org/ns/sosa/> .
57@prefix uom: <http://www.ontology-of-units-of-measure.org/resource/om-2/> .
68
79ex:State-of-tube
8- a iop:Variable ;
9- iop:hasProperty iop:State ;
10- iop:hasObjectOfInterest ex:ConnectingPipe ;
11- iop:hasConstraint [
12- a iop:Constraint ;
13- iop:constrains ex:ConnectingPipe ;
14- skos:prefLabel " plastic" ; ] ,
15- [
16- a iop:Constraint ;
17- iop:constrains ex:ConnectingPipe ;
18- skos:prefLabel " 30 cm diameter" ;
19- ] .
10+ a
11+ iop:Variable ;
12+ rdfs:label
13+ " State of connection pipe" ;
14+ rdfs:comment
15+ """ Condition (faulty, cracked, ... ) of pipe connection in plastic with a diametre of 30 cm.""" ;
16+ iop:hasObjectOfInterest
17+ ex:ConnectingPipe ;
18+ iop:hasProperty
19+ <https://www.wikidata.org/wiki/Q813912> ;
20+ iop:hasConstraint
21+ [ a iop:Constraint ;
22+ rdfs:label " plastic" ;
23+ iop:constrains ex:ConnectingPipe ;
24+ ] ,
25+ [ a iop:Constraint ;
26+ rdfs:label " diameter of 30 cm" ;
27+ iop:constrains ex:ConnectingPipe ;
28+ ] .
29+
30+ ex:ConnectingPipe
31+ a
32+ iop:Entity ;
33+ rdfs:label
34+ " Pipe connection" .
35+
36+ <https://www.wikidata.org/wiki/Q813912>
37+ a
38+ iop:Property ;
39+ rdfs:label
40+ " Condition" .
You can’t perform that action at this time.
0 commit comments