-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathSPRL.owl
79 lines (77 loc) · 3.68 KB
/
SPRL.owl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<?xml version="1.0"?>
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:mlgraph="http://ontology.ihmc.us/ML/MLGraph.owl#"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:emr="http://ontology.ihmc.us/ML/SPRL.owl#"
xml:base="http://ontology.ihmc.us/ML/SPRL.owl">
<owl:Ontology rdf:about="">
<owl:imports rdf:resource="http://ontology.ihmc.us/ML/PhraseGraph.owl"/>
<owl:imports rdf:resource="http://ontology.ihmc.us/ML/MLGraph.owl"/>
<rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string">This ontology contains spLanguage concepts.</rdfs:comment>
</owl:Ontology>
<owl:Class rdf:ID="TRAJECTOR">
<rdfs:subClassOf rdf:resource="#phrase"/>
<owl:disjointWith rdf:resource="#NONE_ENTITY"/>
<rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SPRL ontology TRAJECTOR.</rdfs:comment>
</owl:Class>
<owl:Class rdf:ID="LANDMARK">
<rdfs:subClassOf rdf:resource="#phrase"/>
<owl:disjointWith rdf:resource="#NONE_ENTITY"/>
<rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SPRL ontology LANDMARK.</rdfs:comment>
</owl:Class>
<owl:Class rdf:ID="NONE_ENTITY">
<rdfs:subClassOf rdf:resource="#phrase"/>
<owl:disjointWith rdf:resource="#TRAJECTOR"/>
<owl:disjointWith rdf:resource="#LANDMARK"/>
<owl:disjointWith rdf:resource="#SPATIAL_INDICATOR"/>
<rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SPRL ontology NONE_ENTITY.</rdfs:comment>
</owl:Class>
<owl:Class rdf:ID="SPATIAL_INDICATOR">
<rdfs:subClassOf rdf:resource="#phrase"/>
<owl:disjointWith rdf:resource="#NONE_ENTITY"/>
<rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SPRL ontology SPATIAL_INDICATOR.</rdfs:comment>
</owl:Class>
<owl:Class rdf:ID="spatial_triplet">
<rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SPRL ontology spatial_triplet.</rdfs:comment>
</owl:Class>
<owl:ObjectProperty rdf:ID="first">
<rdfs:domain rdf:resource="#spatial_triplet"/>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:ID="second">
<rdfs:domain rdf:resource="#spatial_triplet"/>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:ID="third">
<rdfs:domain rdf:resource="#spatial_triplet"/>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:ID="spatial_triplet-first">
<rdfs:subPropertyOf rdf:resource="#first"/>
<rdfs:domain rdf:resource="#spatial_triplet"/>
<rdfs:range rdf:resource="#LANDMARK"/>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:ID="spatial_triplet-second">
<rdfs:subPropertyOf rdf:resource="#second"/>
<rdfs:domain rdf:resource="#spatial_triplet"/>
<rdfs:range rdf:resource="#TRAJECTOR"/>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:ID="spatial_triplet-third">
<rdfs:subPropertyOf rdf:resource="#third"/>
<rdfs:domain rdf:resource="#spatial_triplet"/>
<rdfs:range rdf:resource="#SPATIAL_INDICATOR"/>
</owl:ObjectProperty>
<owl:Class rdf:ID="region">
<rdfs:subClassOf rdf:resource="#spatial_triplet"/>
<rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SPRL ontology region.</rdfs:comment>
</owl:Class>
<owl:Class rdf:ID="distance">
<rdfs:subClassOf rdf:resource="#spatial_triplet"/>
<rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SPRL ontology distance.</rdfs:comment>
</owl:Class>
<owl:Class rdf:ID="direction">
<rdfs:subClassOf rdf:resource="#spatial_triplet"/>
<owl:disjointWith rdf:resource="#distance"/>
<rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SPRL ontology direction.</rdfs:comment>
</owl:Class>
</rdf:RDF>