-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathdpn-dataset.ttl
145 lines (143 loc) · 5.08 KB
/
dpn-dataset.ttl
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
# baseURI: http://purl.org/dpn/dataset
# imports: http://www.w3.org/2003/01/geo/wgs84_pos
# imports: http://www.w3.org/2006/time
# prefix: dpnd
@prefix dc: <http://purl.org/dc/terms/> .
@prefix dpnd: <http://purl.org/dpn/dataset#> .
@prefix puv: <https://w3id.org/env/puv#> .
@prefix j.0: <http://purl.org/dc/elements/1.1/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix time: <http://www.w3.org/2006/time#> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
<http://purl.org/dpn/dataset>
rdf:type owl:Ontology ;
rdfs:comment "This ontology is being developed by CSIRO (originally under the eReefs project) for describing datasets, such as observational datasets. It imports the observable properties ontology which allows description of feature, substance or taxon, and quantity kinds." ;
owl:imports <http://www.w3.org/2003/01/geo/wgs84_pos> ;
owl:imports <http://www.w3.org/2006/time> ;
owl:versionIRI <http://purl.org/dpn/dataset/v0.7.2> ;
owl:versionInfo "v 0.7.2 19/12/2017" ;
skos:changeNote "Additional alignment to OWL-Time added by SJDC - 2016-06-16" ;
.
dpnd:BoundingBox
rdf:type owl:Class ;
rdfs:comment "A geospatial bounding box." ;
rdfs:label "Bounding box" ;
rdfs:subClassOf <http://www.w3.org/2003/01/geo/wgs84_pos#SpatialThing> ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:onProperty dpnd:bbBottomRight ;
owl:someValuesFrom <http://www.w3.org/2003/01/geo/wgs84_pos#Point> ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:onProperty dpnd:bbTopLeft ;
owl:someValuesFrom <http://www.w3.org/2003/01/geo/wgs84_pos#Point> ;
] ;
.
dpnd:Observation
rdf:type owl:Class ;
rdfs:comment "A description of an observation. In the context of observational data, we have defined observations which have related properties, matrices and objects of interest." ;
rdfs:label "Observation" ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:onProperty puv:ofProperty ;
owl:someValuesFrom puv:Property ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:onProperty puv:inMatrix ;
owl:someValuesFrom puv:Matrix
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:onProperty puv:hasObjectOfInterest ;
owl:someValuesFrom puv:Entity ;
] ;
.
dpnd:ObservationalDataset
rdf:type owl:Class ;
rdfs:comment "Dataset in this context is defined as observational data relating to some observations. We have defined this also as optionally having spatial and/or temporal properties." ;
rdfs:label "Observational Dataset" ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:allValuesFrom dpnd:Observation ;
owl:onProperty dpnd:relatedObservationType ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:onProperty dpnd:spatial ;
owl:someValuesFrom <http://www.w3.org/2003/01/geo/wgs84_pos#SpatialThing> ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:onProperty dpnd:temporal ;
owl:someValuesFrom dpnd:TimeInterval ;
] ;
.
dpnd:TimeInterval
rdf:type owl:Class ;
rdfs:label "Time interval" ;
rdfs:subClassOf dc:PeriodOfTime ;
rdfs:subClassOf time:Interval ;
.
dpnd:bbBottomRight
rdf:type owl:ObjectProperty ;
rdfs:domain <http://www.w3.org/2003/01/geo/wgs84_pos#SpatialThing> ;
rdfs:label "bb bottom right" ;
rdfs:range <http://www.w3.org/2003/01/geo/wgs84_pos#Point> ;
.
dpnd:bbTopLeft
rdf:type owl:ObjectProperty ;
rdfs:domain <http://www.w3.org/2003/01/geo/wgs84_pos#SpatialThing> ;
rdfs:label "bb top left" ;
rdfs:range <http://www.w3.org/2003/01/geo/wgs84_pos#Point> ;
.
dpnd:end
rdf:type owl:DatatypeProperty ;
rdfs:comment "End date time" ;
rdfs:label "end" ;
rdfs:range xsd:dateTime ;
.
dpnd:relatedFeature
rdf:type owl:ObjectProperty ;
rdfs:comment "related feature of interest" ;
rdfs:label "related feature" ;
.
dpnd:relatedObservationType
rdf:type owl:ObjectProperty ;
rdfs:comment "Related observation type" ;
rdfs:label "related observation type" ;
rdfs:range dpnd:Observation ;
.
dpnd:relatedQuantityKind
rdf:type owl:ObjectProperty ;
rdfs:comment "related quantity kind" ;
rdfs:label "related quantity kind" ;
.
dpnd:relatedSubstanceOrTaxon
rdf:type owl:ObjectProperty ;
rdfs:label "related substance or taxon" ;
.
dpnd:spatial
rdf:type owl:ObjectProperty ;
rdfs:comment "specialisation of the spatial relationship with range restriction applicable for the dataset ontology" ;
rdfs:label "spatial" ;
rdfs:range dpnd:BoundingBox ;
rdfs:subPropertyOf dc:spatial ;
.
dpnd:start
rdf:type owl:DatatypeProperty ;
rdfs:comment "start date time" ;
rdfs:label "start" ;
rdfs:range xsd:dateTime ;
.
dpnd:temporal
rdf:type owl:ObjectProperty ;
rdfs:comment "temporal property with range restriction to temporal descriptions applicable for the dataset ontology (currently time interval)" ;
rdfs:label "temporal" ;
rdfs:range dpnd:TimeInterval ;
.