-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.ttl
More file actions
90 lines (59 loc) · 3.47 KB
/
test.ttl
File metadata and controls
90 lines (59 loc) · 3.47 KB
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
80
81
82
83
84
85
86
87
88
89
90
@prefix : <http://www.semanticweb.org/shirly/ontologies/2024/3/untitled-ontology-82#> .
@prefix aik: <http://aiknowspfas.skai.maine.edu/lod/ontology/> .
@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/shirly/ontologies/2024/3/untitled-ontology-82> .
<http://www.semanticweb.org/shirly/ontologies/2024/3/untitled-ontology-82> rdf:type owl:Ontology .
#################################################################
# Object Properties
#################################################################
### http://aiknowspfas.skai.maine.edu/lod/ontology/hasFeatureOfInterest
aik:hasFeatureOfInterest rdf:type owl:ObjectProperty .
### http://aiknowspfas.skai.maine.edu/lod/ontology/hasUltimateFeatureOfInterest
aik:hasUltimateFeatureOfInterest rdf:type owl:ObjectProperty .
### http://aiknowspfas.skai.maine.edu/lod/ontology/hazardType
aik:hazardType rdf:type owl:ObjectProperty .
#################################################################
# Classes
#################################################################
### http://aiknowspfas.skai.maine.edu/lod/ontology/Disaster
aik:Disaster rdf:type owl:Class ;
rdfs:subClassOf [ rdf:type owl:Restriction ;
owl:onProperty aik:hazardType ;
owl:allValuesFrom aik:MH0058
] .
### http://aiknowspfas.skai.maine.edu/lod/ontology/HazardObservation
aik:HazardObservation rdf:type owl:Class .
### http://aiknowspfas.skai.maine.edu/lod/ontology/ImpactObservation
aik:ImpactObservation rdf:type owl:Class ;
rdfs:subClassOf aik:HazardObservation ,
[ rdf:type owl:Restriction ;
owl:onProperty aik:hasUltimateFeatureOfInterest ;
owl:allValuesFrom aik:MH0058
] .
### http://aiknowspfas.skai.maine.edu/lod/ontology/MH0058
aik:MH0058 rdf:type owl:Class .
#################################################################
# Individuals
#################################################################
### http://aiknowspfas.skai.maine.edu/lod/ontology/ImpactObservation
aik:ImpactObservation rdf:type owl:NamedIndividual ;
aik:hasUltimateFeatureOfInterest aik:MH0058 .
### http://aiknowspfas.skai.maine.edu/lod/ontology/MH0058
aik:MH0058 rdf:type owl:NamedIndividual .
### http://aiknowspfas.skai.maine.edu/lod/ontology/hazardObservation.Katrina
aik:hazardObservation.Katrina rdf:type owl:NamedIndividual ,
aik:HazardObservation .
### http://aiknowspfas.skai.maine.edu/lod/ontology/hurricane
aik:hurricane rdf:type owl:NamedIndividual ,
aik:MH0058 .
### http://aiknowspfas.skai.maine.edu/lod/ontology/hurricane.Segment.Katrina
aik:hurricane.Segment.Katrina rdf:type owl:NamedIndividual ,
aik:Disaster .
### http://aiknowspfas.skai.maine.edu/lod/ontology/impactObservation.Katrina
aik:impactObservation.Katrina rdf:type owl:NamedIndividual ,
aik:ImpactObservation .
### Generated by the OWL API (version 4.5.9.2019-02-01T07:24:44Z) https://github.com/owlcs/owlapi