Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
377 changes: 377 additions & 0 deletions informatiemodel/2.1.1/citygml.owl
Original file line number Diff line number Diff line change
@@ -0,0 +1,377 @@
@prefix : <https://register.geostandaarden.nl/informatiemodel/imgeo-citygml/2.1.1#> .
@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 <https://register.geostandaarden.nl/informatiemodel/imgeo-citygml/2.1.1> .

<https://register.geostandaarden.nl/informatiemodel/imgeo-citygml/2.1.1> rdf:type owl:Ontology ;
owl:versionIRI "https://register.geostandaarden.nl/informatiemodel/imgeo-citygml/2.1.1" ;
owl:versionInfo "2.1.1"^^xsd:string .

#################################################################
# Annotation properties
#################################################################

### http://def.seegrid.csiro.au/isotc211/iso19150/-2/2012/basic#isAbstract
<http://def.seegrid.csiro.au/isotc211/iso19150/-2/2012/basic#isAbstract> rdf:type owl:AnnotationProperty .


### http://www.w3.org/2002/07/owl#versionIRI
owl:versionIRI rdf:type owl:AnnotationProperty .


### http://www.w3.org/2004/02/skos/core#definition
<http://www.w3.org/2004/02/skos/core#definition> rdf:type owl:AnnotationProperty .


### http://www.w3.org/2004/02/skos/core#member
<http://www.w3.org/2004/02/skos/core#member> rdf:type owl:AnnotationProperty .


#################################################################
# Datatypes
#################################################################

### http://www.w3.org/2000/01/rdf-schema#label
rdfs:label rdf:type rdfs:Datatype .


### http://www.w3.org/2001/XMLSchema#date
xsd:date rdf:type rdfs:Datatype .


#################################################################
# Object Properties
#################################################################

### https://register.geostandaarden.nl/informatiemodel/imgeo-citygml/2.1.1#auxiliaryTrafficArea
:auxiliaryTrafficArea rdf:type owl:ObjectProperty .


### https://register.geostandaarden.nl/informatiemodel/imgeo-citygml/2.1.1#class
:class rdf:type owl:ObjectProperty .


### https://register.geostandaarden.nl/informatiemodel/imgeo-citygml/2.1.1#consistsOfBridgePart
:consistsOfBridgePart rdf:type owl:ObjectProperty .


### https://register.geostandaarden.nl/informatiemodel/imgeo-citygml/2.1.1#consistsOfBuildingParts
:consistsOfBuildingParts rdf:type owl:ObjectProperty .


### https://register.geostandaarden.nl/informatiemodel/imgeo-citygml/2.1.1#consistsOfTunnelPart
:consistsOfTunnelPart rdf:type owl:ObjectProperty .


### https://register.geostandaarden.nl/informatiemodel/imgeo-citygml/2.1.1#function
:function rdf:type owl:ObjectProperty .


### https://register.geostandaarden.nl/informatiemodel/imgeo-citygml/2.1.1#outerBridgeConstruction
:outerBridgeConstruction rdf:type owl:ObjectProperty .


### https://register.geostandaarden.nl/informatiemodel/imgeo-citygml/2.1.1#outerBuildingInstallation
:outerBuildingInstallation rdf:type owl:ObjectProperty .


### https://register.geostandaarden.nl/informatiemodel/imgeo-citygml/2.1.1#surfaceMaterial
:surfaceMaterial rdf:type owl:ObjectProperty .


### https://register.geostandaarden.nl/informatiemodel/imgeo-citygml/2.1.1#trafficArea
:trafficArea rdf:type owl:ObjectProperty .


#################################################################
# Data properties
#################################################################

### https://register.geostandaarden.nl/informatiemodel/imgeo-citygml/2.1.1#creationDate
:creationDate rdf:type owl:DatatypeProperty ;
rdfs:range xsd:date .


### https://register.geostandaarden.nl/informatiemodel/imgeo-citygml/2.1.1#terminationDate
:terminationDate rdf:type owl:DatatypeProperty ;
rdfs:range xsd:date .


#################################################################
# Classes
#################################################################

### https://register.geostandaarden.nl/informatiemodel/imgeo-citygml/2.1.1#AuxiliaryTrafficArea
:AuxiliaryTrafficArea rdf:type owl:Class ;
rdfs:subClassOf :_TransportationObject ,
[ rdf:type owl:Restriction ;
owl:onProperty :function ;
owl:allValuesFrom :_AuxiliaryTrafficArea_function
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :surfaceMaterial ;
owl:allValuesFrom :_AuxiliaryTrafficArea_surfaceMaterial
] .


### https://register.geostandaarden.nl/informatiemodel/imgeo-citygml/2.1.1#Bridge
:Bridge rdf:type owl:Class ;
rdfs:subClassOf :_Bridge .


### https://register.geostandaarden.nl/informatiemodel/imgeo-citygml/2.1.1#BridgeConstructionElement
:BridgeConstructionElement rdf:type owl:Class ;
rdfs:subClassOf :_CityObject ,
[ rdf:type owl:Restriction ;
owl:onProperty :function ;
owl:allValuesFrom :_BridgeConstructionElement_function
] .


### https://register.geostandaarden.nl/informatiemodel/imgeo-citygml/2.1.1#BridgePart
:BridgePart rdf:type owl:Class ;
rdfs:subClassOf :_Bridge .


### https://register.geostandaarden.nl/informatiemodel/imgeo-citygml/2.1.1#Building
:Building rdf:type owl:Class ;
rdfs:subClassOf :_Building .


### https://register.geostandaarden.nl/informatiemodel/imgeo-citygml/2.1.1#BuildingInstallation
:BuildingInstallation rdf:type owl:Class ;
rdfs:subClassOf :_Site ,
[ rdf:type owl:Restriction ;
owl:onProperty :function ;
owl:allValuesFrom :_BuildingInstallation_function
] .


### https://register.geostandaarden.nl/informatiemodel/imgeo-citygml/2.1.1#BuildingPart
:BuildingPart rdf:type owl:Class ;
rdfs:subClassOf :_Building .


### https://register.geostandaarden.nl/informatiemodel/imgeo-citygml/2.1.1#CityFurniture
:CityFurniture rdf:type owl:Class ;
rdfs:subClassOf :_CityObject .


### https://register.geostandaarden.nl/informatiemodel/imgeo-citygml/2.1.1#LandUse
:LandUse rdf:type owl:Class ;
rdfs:subClassOf :_CityObject .


### https://register.geostandaarden.nl/informatiemodel/imgeo-citygml/2.1.1#PlantCover
:PlantCover rdf:type owl:Class ;
rdfs:subClassOf :_VegetationObject ,
[ rdf:type owl:Restriction ;
owl:onProperty :class ;
owl:allValuesFrom :_PlantCover_class
] .


### https://register.geostandaarden.nl/informatiemodel/imgeo-citygml/2.1.1#Railway
:Railway rdf:type owl:Class ;
rdfs:subClassOf :TransportationComplex .


### https://register.geostandaarden.nl/informatiemodel/imgeo-citygml/2.1.1#Road
:Road rdf:type owl:Class ;
rdfs:subClassOf :TransportationComplex .


### https://register.geostandaarden.nl/informatiemodel/imgeo-citygml/2.1.1#SolitaryVegetationObject
:SolitaryVegetationObject rdf:type owl:Class ;
rdfs:subClassOf :_VegetationObject ,
[ rdf:type owl:Restriction ;
owl:onProperty :class ;
owl:allValuesFrom :_SolitaryVegetationObject_class
] .


### https://register.geostandaarden.nl/informatiemodel/imgeo-citygml/2.1.1#Square
:Square rdf:type owl:Class ;
rdfs:subClassOf :TransportationComplex .


### https://register.geostandaarden.nl/informatiemodel/imgeo-citygml/2.1.1#Track
:Track rdf:type owl:Class ;
rdfs:subClassOf :TransportationComplex .


### https://register.geostandaarden.nl/informatiemodel/imgeo-citygml/2.1.1#TrafficArea
:TrafficArea rdf:type owl:Class ;
rdfs:subClassOf :_TransportationObject ,
[ rdf:type owl:Restriction ;
owl:onProperty :function ;
owl:allValuesFrom :_TrafficArea_function
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :surfaceMaterial ;
owl:allValuesFrom :_TrafficArea_surfaceMaterial
] .


### https://register.geostandaarden.nl/informatiemodel/imgeo-citygml/2.1.1#TransportationComplex
:TransportationComplex rdf:type owl:Class ;
rdfs:subClassOf :_TransportationObject ,
[ rdf:type owl:Restriction ;
owl:onProperty :auxiliaryTrafficArea ;
owl:allValuesFrom :AuxiliaryTrafficArea
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :function ;
owl:allValuesFrom :_TransportationComplex_function
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :trafficArea ;
owl:allValuesFrom :TrafficArea
] .


### https://register.geostandaarden.nl/informatiemodel/imgeo-citygml/2.1.1#Tunnel
:Tunnel rdf:type owl:Class ;
rdfs:subClassOf :_Tunnel .


### https://register.geostandaarden.nl/informatiemodel/imgeo-citygml/2.1.1#TunnelPart
:TunnelPart rdf:type owl:Class ;
rdfs:subClassOf :_Tunnel .


### https://register.geostandaarden.nl/informatiemodel/imgeo-citygml/2.1.1#WaterBody
:WaterBody rdf:type owl:Class ;
rdfs:subClassOf :_WaterObject ,
[ rdf:type owl:Restriction ;
owl:onProperty :class ;
owl:allValuesFrom :_WaterBody_class
] .


### https://register.geostandaarden.nl/informatiemodel/imgeo-citygml/2.1.1#_AuxiliaryTrafficArea_function
:_AuxiliaryTrafficArea_function rdf:type owl:Class .


### https://register.geostandaarden.nl/informatiemodel/imgeo-citygml/2.1.1#_AuxiliaryTrafficArea_surfaceMaterial
:_AuxiliaryTrafficArea_surfaceMaterial rdf:type owl:Class .


### https://register.geostandaarden.nl/informatiemodel/imgeo-citygml/2.1.1#_Bridge
:_Bridge rdf:type owl:Class ;
rdfs:subClassOf :_Site ,
[ rdf:type owl:Restriction ;
owl:onProperty :consistsOfBridgePart ;
owl:allValuesFrom :BridgePart
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :outerBridgeConstruction ;
owl:allValuesFrom :BridgeConstructionElement
] ;
<http://def.seegrid.csiro.au/isotc211/iso19150/-2/2012/basic#isAbstract> "true"^^xsd:boolean .


### https://register.geostandaarden.nl/informatiemodel/imgeo-citygml/2.1.1#_BridgeConstructionElement_function
:_BridgeConstructionElement_function rdf:type owl:Class .


### https://register.geostandaarden.nl/informatiemodel/imgeo-citygml/2.1.1#_Building
:_Building rdf:type owl:Class ;
rdfs:subClassOf :_Site ,
[ rdf:type owl:Restriction ;
owl:onProperty :consistsOfBuildingParts ;
owl:allValuesFrom :BuildingPart
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :outerBuildingInstallation ;
owl:allValuesFrom :BuildingInstallation
] ;
<http://def.seegrid.csiro.au/isotc211/iso19150/-2/2012/basic#isAbstract> "true"^^xsd:boolean .


### https://register.geostandaarden.nl/informatiemodel/imgeo-citygml/2.1.1#_BuildingInstallation_function
:_BuildingInstallation_function rdf:type owl:Class .


### https://register.geostandaarden.nl/informatiemodel/imgeo-citygml/2.1.1#_CityObject
:_CityObject rdf:type owl:Class ;
owl:disjointUnionOf ( :BridgeConstructionElement
:CityFurniture
:LandUse
:_Site
:_TransportationObject
:_VegetationObject
:_WaterObject
) ;
<http://def.seegrid.csiro.au/isotc211/iso19150/-2/2012/basic#isAbstract> "true"^^xsd:boolean .


### https://register.geostandaarden.nl/informatiemodel/imgeo-citygml/2.1.1#_PlantCover_class
:_PlantCover_class rdf:type owl:Class .


### https://register.geostandaarden.nl/informatiemodel/imgeo-citygml/2.1.1#_Site
:_Site rdf:type owl:Class ;
rdfs:subClassOf :_CityObject ;
<http://def.seegrid.csiro.au/isotc211/iso19150/-2/2012/basic#isAbstract> "true"^^xsd:boolean .


### https://register.geostandaarden.nl/informatiemodel/imgeo-citygml/2.1.1#_SolitaryVegetationObject_class
:_SolitaryVegetationObject_class rdf:type owl:Class .


### https://register.geostandaarden.nl/informatiemodel/imgeo-citygml/2.1.1#_TrafficArea_function
:_TrafficArea_function rdf:type owl:Class .


### https://register.geostandaarden.nl/informatiemodel/imgeo-citygml/2.1.1#_TrafficArea_surfaceMaterial
:_TrafficArea_surfaceMaterial rdf:type owl:Class .


### https://register.geostandaarden.nl/informatiemodel/imgeo-citygml/2.1.1#_TransportationComplex_function
:_TransportationComplex_function rdf:type owl:Class .


### https://register.geostandaarden.nl/informatiemodel/imgeo-citygml/2.1.1#_TransportationObject
:_TransportationObject rdf:type owl:Class ;
rdfs:subClassOf :_CityObject ;
owl:disjointUnionOf ( :AuxiliaryTrafficArea
:TrafficArea
:TransportationComplex
) ;
<http://def.seegrid.csiro.au/isotc211/iso19150/-2/2012/basic#isAbstract> "true"^^xsd:boolean .


### https://register.geostandaarden.nl/informatiemodel/imgeo-citygml/2.1.1#_Tunnel
:_Tunnel rdf:type owl:Class ;
rdfs:subClassOf :_Site ,
[ rdf:type owl:Restriction ;
owl:onProperty :consistsOfTunnelPart ;
owl:allValuesFrom :TunnelPart
] ;
<http://def.seegrid.csiro.au/isotc211/iso19150/-2/2012/basic#isAbstract> "true"^^xsd:boolean .


### https://register.geostandaarden.nl/informatiemodel/imgeo-citygml/2.1.1#_VegetationObject
:_VegetationObject rdf:type owl:Class ;
rdfs:subClassOf :_CityObject ;
owl:disjointUnionOf ( :PlantCover
:SolitaryVegetationObject
) ;
<http://def.seegrid.csiro.au/isotc211/iso19150/-2/2012/basic#isAbstract> "true"^^xsd:boolean .


### https://register.geostandaarden.nl/informatiemodel/imgeo-citygml/2.1.1#_WaterBody_class
:_WaterBody_class rdf:type owl:Class .


### https://register.geostandaarden.nl/informatiemodel/imgeo-citygml/2.1.1#_WaterObject
:_WaterObject rdf:type owl:Class ;
rdfs:subClassOf :_CityObject ;
<http://def.seegrid.csiro.au/isotc211/iso19150/-2/2012/basic#isAbstract> "true"^^xsd:boolean .


### Generated by the OWL API (version 4.5.9.2019-02-01T07:24:44Z) https://github.com/owlcs/owlapi
Loading