@prefix : . @prefix geo: . @prefix foaf: . @prefix owl: . @prefix rdf: . @prefix xml: . @prefix rdfs: . @prefix vcard: . @prefix dcterm: . @prefix vann: . @prefix vs: . @prefix qudt: . @prefix xsd: . @base . rdf:type owl:Ontology ; dcterm:identifier "http://lod.nik.uni-obuda.hu/iloc/iloc-20160409" ; dcterm:isVersionOf "http://lod.nik.uni-obuda.hu/iloc/iloc#" ; dcterm:date "2015-07-01"^^xsd:date ; dcterm:issued "2015-07-01"^^xsd:date ; dcterm:title "Ontology for Indoor Navigation"; dcterm:replaces "http://lod.nik.uni-obuda.hu/iloc/iloc-20151201"; dcterm:description "This ontology provides indoor location and navigation features."@en ; vann:preferredNamespaceUri "http://lod.nik.uni-obuda.hu/iloc/iloc#" ; vann:preferredNamespacePrefix "iloc" ; dcterm:creator , , , ; ; owl:imports , , . ################################################################# # # Object Properties # ################################################################# ### http://lod.nik.uni-obuda.hu/iloc/iloc#belongsToRoom :belongsToRoom rdf:type owl:ObjectProperty ; rdfs:label "belongs to Room"@en ; rdfs:comment "This property states that a Point of Interest belongs to a Room. POIs can belong to multiple rooms: e.g. doors are part of both rooms." ; rdfs:domain :POI ; rdfs:range :Room; vs:term_status "stable"@en ; owl:inverseOf :hasPOI . ### http://lod.nik.uni-obuda.hu/iloc/iloc#connectsPOI :connectsPOI rdf:type owl:ObjectProperty , owl:SymmetricProperty ; rdfs:label "connects to POI"@en ; rdfs:comment "This property is used to describe a direct route between POIs."@en ; rdfs:range :POI ; vs:term_status "stable"@en ; rdfs:domain :POI ; rdfs:subPropertyOf :connectsPOIOneWay . ### http://lod.nik.uni-obuda.hu/iloc/iloc#routeToFromPOI :routeToFromPOI rdf:type owl:ObjectProperty ; rdfs:label "route to and from POI"@en ; rdfs:comment "This property is used to define either one of the POIs of a RouteSection instance."@en ; rdfs:range :POI ; vs:term_status "stable"@en ; rdfs:domain :RouteSection . ### http://lod.nik.uni-obuda.hu/iloc/iloc#routeFromPOI :routeFromPOI rdf:type owl:ObjectProperty ; rdfs:label "route from POI"@en ; rdfs:comment "This property is used to define the start POI of a RouteSection instance."@en ; rdfs:range :POI ; vs:term_status "stable"@en ; rdfs:domain :RouteSection ; rdfs:subPropertyOf :routeToFromPOI . ### http://lod.nik.uni-obuda.hu/iloc/iloc#routeToPOI :routeToPOI rdf:type owl:ObjectProperty ; rdfs:label "route to POI"@en ; rdfs:comment "This property is used to define the target POI of a RouteSection instance."@en ; rdfs:range :POI ; vs:term_status "stable"@en ; rdfs:domain :RouteSection ; rdfs:subPropertyOf :routeToFromPOI . ### http://lod.nik.uni-obuda.hu/iloc/iloc#connectsPOIOneWay :connectsPOIOneWay rdf:type owl:ObjectProperty , owl:AsymmetricProperty ; rdfs:label "connects to POI (one way)"@en ; rdfs:comment "This property is used to describe a direct walkable one-way route between POIs. Only walking from the subject to the object is possible/allowed."@en ; rdfs:range :POI ; vs:term_status "stable"@en ; rdfs:domain :POI . ### http://lod.nik.uni-obuda.hu/iloc/iloc#hasPOI :hasPOI rdf:type owl:ObjectProperty ; rdfs:label "has POI"@en ; rdfs:comment "This property states that there is a Point of Interest in a Room. Multiple rooms can include the same POI: e.g. doors are part of both rooms."@en ; rdfs:range :POI ; rdfs:domain :Room ; vs:term_status "stable"@en ; owl:inverseOf :belongsToRoom . ### http://lod.nik.uni-obuda.hu/iloc/iloc#hasAccess :hasAccess rdf:type owl:ObjectProperty ; rdfs:label "has Access"@en ; rdfs:comment "This property states that a Room, a RouteSection or a POI has a specific feature for someone with specific Access Feature."@en ; rdfs:domain [ rdf:type owl:Class ; owl:unionOf ( :RouteSection :Room :POI ) ] ; rdfs:range :AccessFeature; vs:term_status "stable"@en . ### http://lod.nik.uni-obuda.hu/iloc/iloc#isPartOf :isPartOf rdf:type owl:ObjectProperty ; rdfs:label "is part of"@en ; rdfs:comment "Object property to specify another Location which includes (is broader of) this Location."@en ; rdfs:range :Location ; vs:term_status "stable"@en ; rdfs:domain :Location . ### http://lod.nik.uni-obuda.hu/iloc/iloc#belongsTo :belongsTo rdf:type owl:ObjectProperty ; rdfs:label "belongs to"@en ; rdfs:comment "This property can be used to state that a Room belongs to a specific Organization or Person."@en ; rdfs:range foaf:Agent ; vs:term_status "stable"@en ; rdfs:domain :Room . ### http://lod.nik.uni-obuda.hu/iloc/iloc#defaultRoomOf :defaultRoomOf rdf:type owl:ObjectProperty ; rdfs:label "default Room Of"@en ; rdfs:comment "This property assigns a default Room to an Organization or Person."@en ; rdfs:range :Room ; vs:term_status "stable"@en ; rdfs:domain foaf:Agent . ################################################################# # # Data properties # ################################################################# ### http://lod.nik.uni-obuda.hu/iloc/iloc#distance :distance rdf:type owl:DatatypeProperty ; rdfs:label "distance"@en ; rdfs:comment "The value of distance means the length of a route section in meter."@en ; vs:term_status "stable"@en ; rdfs:isDefinedBy ; rdfs:domain :RouteSection ; rdfs:range xsd:decimal . ### http://lod.nik.uni-obuda.hu/iloc/iloc#stepNumber :stepNumber rdf:type owl:DatatypeProperty ; rdfs:label "step number"@en ; rdfs:comment "The number of steps within a route section."@en ; vs:term_status "stable"@en ; rdfs:isDefinedBy ; rdfs:domain :RouteSection ; rdfs:range xsd:integer . ### http://lod.nik.uni-obuda.hu/iloc/iloc#incline :incline rdf:type owl:DatatypeProperty ; rdfs:label "incline"@en ; rdfs:comment " The value for the practical maximum incline on a steep route section, and not for the average incline between the nodes of the section. The use of this property has usage, if the nodes have direction. The incline is given as percentage values, meaning e.g. incline=15%"@en ; vs:term_status "stable"@en ; rdfs:isDefinedBy ; rdfs:domain :RouteSection ; rdfs:range xsd:decimal . ################################################################# # # Classes # ################################################################# ### http://lod.nik.uni-obuda.hu/iloc/iloc#Building :Building rdf:type owl:Class ; rdfs:label "Building"@en ; rdfs:subClassOf :Location ; vs:term_status "stable"@en ; rdfs:comment "Represents a whole building. It may have an address and spatial coordinates."@en . ### http://lod.nik.uni-obuda.hu/iloc/iloc#BuildingEntrance :BuildingEntrance rdf:type owl:Class ; rdfs:label "Building Entrance"@en ; rdfs:subClassOf :Entrance ; vs:term_status "stable"@en ; rdfs:comment "Represents the entrance where one can enter/leave the building."@en . ### http://lod.nik.uni-obuda.hu/iloc/iloc#BuildingPart :BuildingPart rdf:type owl:Class ; rdfs:label "Building Part"@en ; rdfs:subClassOf :Location ; vs:term_status "stable"@en ; rdfs:comment "Superclass of every part of a building."@en . ### http://lod.nik.uni-obuda.hu/iloc/iloc#Elevator :Elevator rdf:type owl:Class ; rdfs:label "Elevator"@en ; rdfs:subClassOf :VerticalPassage ; vs:term_status "stable"@en ; rdfs:comment "Connects Rooms on different floors."@en . ### http://lod.nik.uni-obuda.hu/iloc/iloc#Entrance :Entrance rdf:type owl:Class ; rdfs:label "Entrance"@en ; rdfs:subClassOf :POI ; vs:term_status "stable"@en ; rdfs:comment "Represents any type of entrance"@en . ### http://lod.nik.uni-obuda.hu/iloc/iloc#Floor :Floor rdf:type owl:Class ; rdfs:label "Floor"@en ; rdfs:subClassOf :BuildingPart ; vs:term_status "stable"@en ; rdfs:comment "It is part of a building. It may consist of Rooms."@en . ### http://lod.nik.uni-obuda.hu/iloc/iloc#Location :Location rdf:type owl:Class ; rdfs:label "Location"@en ; rdfs:subClassOf geo:SpatialThing , vcard:Location ; vs:term_status "stable"@en ; rdfs:comment "Superclass for all location."@en . ### http://lod.nik.uni-obuda.hu/iloc/iloc#POI :POI rdf:type owl:Class ; rdfs:label "Point of Interest"@en ; vs:term_status "stable"@en ; rdfs:subClassOf :Location ; rdfs:comment "An entity with Location. Can be used as part of a route."@en. ### http://lod.nik.uni-obuda.hu/iloc/iloc#Room :Room rdf:type owl:Class ; rdfs:label "Room"@en ; rdfs:subClassOf :BuildingPart ; vs:term_status "stable"@en ; rdfs:comment "Represents any type of room within a building."@en . ### http://lod.nik.uni-obuda.hu/iloc/iloc#RoomEntrance :RoomEntrance rdf:type owl:Class ; rdfs:label "Room Entrance"@en ; rdfs:subClassOf :Entrance ; vs:term_status "stable"@en ; rdfs:comment "Represents the entrance where one can enter/leave the room."@en . ### http://lod.nik.uni-obuda.hu/iloc/iloc#Stairway :Stairway rdf:type owl:Class ; rdfs:label "Stairway"@en ; rdfs:subClassOf :VerticalPassage ; vs:term_status "stable"@en ; rdfs:comment "Connects Rooms on different floors."@en . ### http://lod.nik.uni-obuda.hu/iloc/iloc#VerticalPassage :VerticalPassage rdf:type owl:Class ; rdfs:label "VerticalPassage"@en ; rdfs:subClassOf :Room ; vs:term_status "stable"@en ; rdfs:comment "Connects Rooms on different floors using any method."@en . ### http://lod.nik.uni-obuda.hu/iloc/iloc#AccessFeature :AccessFeature rdf:type owl:Class ; rdfs:label "Access Feature"@en ; vs:term_status "stable"@en ; rdfs:comment "AccessFeature instances represent any disabilities or permissions required to traverse a Route Section or to use a Room or POI. Such Access Feature can be a required employee badge or the ability to use it with a wheelchair."@en . ### http://lod.nik.uni-obuda.hu/iloc/iloc#RouteSection :RouteSection rdf:type owl:Class ; rdfs:label "Route section"@en ; vs:term_status "stable"@en ; rdfs:comment "Route section directly connecting two POIs"@en . ################################################################# # # Individuals # ################################################################# ### http://lod.nik.uni-obuda.hu/iloc/iloc#Wheelchair :Wheelchair rdf:type :AccessFeature , owl:NamedIndividual ; rdfs:label "Wheelchair"@en ; vs:term_status "stable"@en ; rdfs:comment "Provides access for people with a disability being tied to a wheelchair."@en . ### http://lod.nik.uni-obuda.hu/iloc/iloc#EWheelchair :EWheelchair rdf:type :AccessFeature , owl:NamedIndividual ; rdfs:label "Electronic Wheelchair"@en ; vs:term_status "stable"@en ; rdfs:comment "Provides access for people with a disability being tied to an electronic wheelchair."@en . ### http://lod.nik.uni-obuda.hu/iloc/iloc#WheelchairWHelp :WheelchairWHelp rdf:type :AccessFeature , owl:NamedIndividual ; rdfs:label "Wheelchair with Help"@en ; vs:term_status "stable"@en ; rdfs:comment "Provides access for people with a disability being tied to a wheelchair with some additional help."@en . ### http://lod.nik.uni-obuda.hu/iloc/iloc#Stretcher :Stretcher rdf:type :AccessFeature , owl:NamedIndividual ; rdfs:label "Stretcher"@en ; vs:term_status "stable"@en ; rdfs:comment "Provides access for people pushing a stretcher."@en . ### http://lod.nik.uni-obuda.hu/iloc/iloc#RestrictedAccess :RestrictedAccess rdf:type :AccessFeature , owl:NamedIndividual ; rdfs:label "Restricted Access"@en ; vs:term_status "stable"@en ; rdfs:comment "It represents restricted access to part of a building, for example the need for having an employee badge."@en . ### http://lod.nik.uni-obuda.hu/iloc/iloc#Stroller :Stroller rdf:type :AccessFeature , owl:NamedIndividual ; rdfs:label "Stroller"@en ; vs:term_status "stable"@en ; rdfs:comment "Provides access for people with a stroller."@en . ### Generated by the OWL API (version 3.4.2) http://owlapi.sourceforge.net