-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgeofabric-hyfeatures.ttl
48 lines (40 loc) · 1.99 KB
/
geofabric-hyfeatures.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
# baseURI: https://linked.data.gov.au/def/geofabric-hyfeatures
# imports: https://linked.data.gov.au/def/geofabric
@prefix dct: <http://purl.org/dc/terms/> .
@prefix geo: <http://www.opengis.net/ont/geosparql#> .
@prefix geofab: <https://linked.data.gov.au/def/geofabric/> .
@prefix hyf: <https://www.opengis.net/def/appschema/hy_features/hyf/> .
@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 xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
<https://linked.data.gov.au/def/geofabric/hyfeatures>
a owl:Ontology ;
dct:contributor <https://orcid.org/0000-0002-8742-7730> ;
dct:created "2019-11-15"^^xsd:date ;
dct:creator <https://orcid.org/0000-0002-3884-3420> ;
dct:modified "2022-04-26"^^xsd:date ;
dct:publisher <https://linked.data.gov.au/org/csiro> ;
dct:publisher <https://linked.data.gov.au/org/csiro> ;
skos:prefLabel "Geofabric-HY-Features mapping"@en ;
rdfs:seeAlso <http://www.bom.gov.au/water/geofabric/documents/v2_1/AHGF_GDB_ProductRelationships_V2_1_release.pdf> ;
rdfs:seeAlso "http://github.com/CSIRO-enviro-informatics/geofabric-ont/"@en ;
owl:imports <https://linked.data.gov.au/def/geofabric> ;
.
geofab:ContractedCatchment rdfs:subClassOf hyf:HY_Catchment .
geofab:DrainageDivision rdfs:subClassOf hyf:HY_CatchmentAggregate .
geofab:ReportingRegion rdfs:subClassOf hyf:HY_CatchmentAggregate .
geofab:RiverRegion rdfs:subClassOf hyf:HY_CatchmentAggregate .
hyf:HY_Catchment
a owl:Class ;
skos:definition "The HY Features Ontology's generic class for a catchment"@en ;
skos:prefLabel "Catchment" ;
rdfs:subClassOf geo:Feature ;
.
hyf:HY_CatchmentAggregate
a owl:Class ;
skos:definition "The HY Features Ontology's generic class for an aggregation of catchments"@en ;
skos:prefLabel "Catchment Aggregate" ;
rdfs:subClassOf geo:FeatureCollection ;
.