-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgeox-adds.ttl
118 lines (116 loc) · 3.63 KB
/
geox-adds.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
# baseURI: http://linked.data.gov.au/def/geox-adds
# imports: http://linked.data.gov.au/def/geox
# prefix: geox-adds
@prefix geox: <http://linked.data.gov.au/def/geox#> .
@prefix geox-adds: <http://linked.data.gov.au/def/geox-adds#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix qudt: <http://qudt.org/schema/qudt/> .
@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 xsd: <http://www.w3.org/2001/XMLSchema#> .
<http://dbpedia.org/ontology/area>
a owl:ObjectProperty ;
rdfs:label "area" ;
rdfs:range <http://qudt.org/vocab/quantitykind/Area> ;
rdfs:subPropertyOf <http://www.w3.org/ns/sosa/ObservableProperty> ;
.
geox:Resolution
a owl:Class ;
rdfs:label "Resolution" ;
rdfs:subClassOf owl:Thing ;
rdfs:subClassOf [
a owl:Restriction ;
owl:onClass qudt:Unit ;
owl:onProperty qudt:unit ;
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:onDataRange xsd:decimal ;
owl:onProperty qudt:numericValue ;
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
] ;
owl:deprecated true ;
skos:altLabel "Spatial resolution" ;
skos:definition "An object containing a numeric value and the units it is expressed in to communicate a spatial resolution as a linear measurement" ;
.
geox:asGeoJSON
a owl:DatatypeProperty ;
rdfs:domain <http://www.opengis.net/ont/geosparql#Geometry> ;
rdfs:label "asGeoJSON"@en ;
rdfs:range geox:geoJSONLiteral ;
rdfs:subPropertyOf <http://www.opengis.net/ont/geosparql#hasSerialization> ;
skos:definition "The GeoJSON serialization of a geometry"@en ;
.
geox:asGeometryObject
a owl:ObjectProperty ;
rdfs:domain <http://www.opengis.net/ont/geosparql#Geometry> ;
rdfs:label "as Geometry object" ;
owl:deprecated true ;
.
geox:geoJSONLiteral
a rdfs:Datatype ;
rdfs:comment "A GeoJSON serialization of a geometry object."@en ;
rdfs:comment "specialization of rdf:JSON, which is a new literal type proposed for JSON-LD - see https://w3c.github.io/json-ld-syntax/#json-literals" ;
rdfs:label "GeoJSON Literal"@en ;
rdfs:subClassOf rdf:JSON ;
rdfs:subClassOf rdfs:Literal ;
.
geox:hasResolution
rdfs:range [
a owl:Class ;
owl:unionOf (
geox:Resolution
<http://linked.data.gov.au/def/datatype/QuantitativeMeasure>
) ;
] ;
.
<http://linked.data.gov.au/def/geox-adds>
a owl:Ontology ;
owl:imports <http://linked.data.gov.au/def/geox> ;
.
qudt:Quantity
a owl:Class ;
rdfs:subClassOf owl:Thing ;
.
qudt:QuantityKind
a owl:Class ;
rdfs:subClassOf owl:Thing ;
.
qudt:Unit
a owl:Class ;
rdfs:subClassOf owl:Thing ;
.
qudt:numericValue
a owl:DatatypeProperty ;
.
qudt:unit
a owl:ObjectProperty ;
.
<http://qudt.org/vocab/quantitykind/Area>
a qudt:QuantityKind ;
rdfs:label "Area" ;
skos:exactMatch <http://dbpedia.org/resource/Area> ;
skos:historyNote "This class is taken as-is from the QUDT ontology."@en ;
skos:prefLabel "Area" ;
.
<http://qudt.org/vocab/quantitykind/Distance>
a qudt:QuantityKind ;
rdfs:label "Distance" ;
skos:prefLabel "Distance" ;
.
<http://qudt.org/vocab/quantitykind/Length>
a qudt:QuantityKind ;
rdfs:label "Length" ;
skos:exactMatch <http://dbpedia.org/resource/Length> ;
skos:prefLabel "Length" ;
prov:wasInfluencedBy <http://en.wikipedia.org/wiki/Length> ;
.
<http://qudt.org/vocab/quantitykind/Volume>
a qudt:QuantityKind ;
rdfs:label "Volume" ;
skos:exactMatch <http://dbpedia.org/resource/Volume> ;
skos:prefLabel "Volume" ;
.