forked from CSIRO-enviro-informatics/dpn-ontology
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdpn-dataset.ttl
143 lines (141 loc) · 5.39 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
# baseURI: http://purl.org/dpn/dataset
# imports: http://www.w3.org/2003/01/geo/wgs84_pos
# imports: http://www.w3.org/2006/time
@prefix dc: <http://purl.org/dc/terms/> .
@prefix ds: <http://purl.org/dpn/dataset#> .
@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 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."^^xsd:string ;
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.1> ;
owl:versionInfo "v 0.1 19/02/2014"^^xsd:string ;
skos:changeNote "Additional alignment to OWL-Time added by SJDC - 2016-06-16"^^xsd:string ;
.
ds:BoundingBox
rdf:type owl:Class ;
rdfs:comment "A geospatial bounding box."^^xsd:string ;
rdfs:label "Bounding box"^^xsd:string ;
rdfs:subClassOf <http://www.w3.org/2003/01/geo/wgs84_pos#SpatialThing> ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:onProperty ds:bbBottomRight ;
owl:someValuesFrom <http://www.w3.org/2003/01/geo/wgs84_pos#Point> ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:onProperty ds:bbTopLeft ;
owl:someValuesFrom <http://www.w3.org/2003/01/geo/wgs84_pos#Point> ;
] ;
.
ds:Observation
rdf:type owl:Class ;
rdfs:comment "A description of an observation. In the context of observational data, we have defined observations may relate to a feature, some substance or taxon and/or a quantity kind."^^xsd:string ;
rdfs:label "Observation"^^xsd:string ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:onProperty ds:relatedFeature ;
owl:someValuesFrom rdfs:Resource ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:onProperty ds:relatedQuantityKind ;
owl:someValuesFrom <http://environment.data.gov.au/def/op#ScaledQuantityKind> ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:onProperty ds:relatedSubstanceOrTaxon ;
owl:someValuesFrom <http://environment.data.gov.au/def/op#SubstanceOrTaxon> ;
] ;
.
ds: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."^^xsd:string ;
rdfs:label "Observational Dataset"^^xsd:string ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:allValuesFrom ds:Observation ;
owl:onProperty ds:relatedObservationType ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:onProperty ds:spatial ;
owl:someValuesFrom <http://www.w3.org/2003/01/geo/wgs84_pos#SpatialThing> ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:onProperty ds:temporal ;
owl:someValuesFrom ds:TimeInterval ;
] ;
.
ds:TimeInterval
rdf:type owl:Class ;
rdfs:label "Time interval"^^xsd:string ;
rdfs:subClassOf dc:PeriodOfTime ;
rdfs:subClassOf time:Interval ;
.
ds:bbBottomRight
rdf:type owl:ObjectProperty ;
rdfs:domain <http://www.w3.org/2003/01/geo/wgs84_pos#SpatialThing> ;
rdfs:label "bb bottom right"^^xsd:string ;
rdfs:range <http://www.w3.org/2003/01/geo/wgs84_pos#Point> ;
.
ds:bbTopLeft
rdf:type owl:ObjectProperty ;
rdfs:domain <http://www.w3.org/2003/01/geo/wgs84_pos#SpatialThing> ;
rdfs:label "bb top left"^^xsd:string ;
rdfs:range <http://www.w3.org/2003/01/geo/wgs84_pos#Point> ;
.
ds:end
rdf:type owl:DatatypeProperty ;
rdfs:comment "End date time"^^xsd:string ;
rdfs:label "end"^^xsd:string ;
rdfs:range xsd:dateTime ;
.
ds:relatedFeature
rdf:type owl:ObjectProperty ;
rdfs:comment "related feature of interest"^^xsd:string ;
rdfs:label "related feature"^^xsd:string ;
.
ds:relatedObservationType
rdf:type owl:ObjectProperty ;
rdfs:comment "Related observation type"^^xsd:string ;
rdfs:label "related observation type"^^xsd:string ;
rdfs:range ds:Observation ;
.
ds:relatedQuantityKind
rdf:type owl:ObjectProperty ;
rdfs:comment "related quantity kind"^^xsd:string ;
rdfs:label "related quantity kind"^^xsd:string ;
.
ds:relatedSubstanceOrTaxon
rdf:type owl:ObjectProperty ;
rdfs:label "related substance or taxon"^^xsd:string ;
.
ds:spatial
rdf:type owl:ObjectProperty ;
rdfs:comment "specialisation of the spatial relationship with range restriction applicable for the dataset ontology"^^xsd:string ;
rdfs:label "spatial"^^xsd:string ;
rdfs:range ds:BoundingBox ;
rdfs:subPropertyOf dc:spatial ;
.
ds:start
rdf:type owl:DatatypeProperty ;
rdfs:comment "start date time"^^xsd:string ;
rdfs:label "start"^^xsd:string ;
rdfs:range xsd:dateTime ;
.
ds:temporal
rdf:type owl:ObjectProperty ;
rdfs:comment "temporal property with range restriction to temporal descriptions applicable for the dataset ontology (currently time interval)"^^xsd:string ;
rdfs:label "temporal"^^xsd:string ;
rdfs:range ds:TimeInterval ;
.