@prefix : . @prefix owl: . @prefix rdf: . @prefix xml: . @prefix xsd: . @prefix rdfs: . @base . rdf:type owl:Ontology ; owl:versionIRI ; "Jhon Toledo (Ontology Engienering Group - Universidad Politécnica de Madrid)"@en , "Miguel Angel García (Ontology Engienering Group - Universidad Politécnica de Madrid"@en , "Oscar Corcho (Ontology Engineering Group - Universidad Politécnica de Madrid)"@en ; "Ontology for the representation of location elements in the Trias ontology"@en ; "https://w3id.org/mobility/trias/location"@en ; "Creative Commons Attribution 4.0 International (CC BY 4.0)"@en ; "Ontology for the representation of location elements in the Trias ontology"@en ; ; rdfs:label "Ontology for the representation of location elements in the Trias ontology"@en . ################################################################# # Annotation properties ################################################################# ### http://purl.org/dc/elements/1.1/creator rdf:type owl:AnnotationProperty . ### http://purl.org/dc/elements/1.1/date rdf:type owl:AnnotationProperty . ### http://purl.org/dc/elements/1.1/description rdf:type owl:AnnotationProperty . ### http://purl.org/dc/elements/1.1/identifier rdf:type owl:AnnotationProperty . ### http://purl.org/dc/elements/1.1/rights rdf:type owl:AnnotationProperty . ### http://purl.org/dc/elements/1.1/title rdf:type owl:AnnotationProperty . ### http://purl.org/dc/terms/license rdf:type owl:AnnotationProperty . ################################################################# # Data properties ################################################################# ### https://w3id.org/mobility/trias/location#locationName :locationName rdf:type owl:DatatypeProperty ; rdfs:domain :LocationRef ; rdfs:range xsd:string ; rdfs:label "locationName"@en . ################################################################# # Classes ################################################################# ### https://w3id.org/mobility/trias/location#LocationRef :LocationRef rdf:type owl:Class ; rdfs:subClassOf [ rdf:type owl:Restriction ; owl:onProperty :locationName ; owl:minQualifiedCardinality "1"^^xsd:nonNegativeInteger ; owl:onDataRange xsd:string ] ; rdfs:comment "Reference to a stop, address, POI, locality"@en ; rdfs:label "LocationRef"@en . ### https://w3id.org/mobility/trias/utility#GeoPosition rdf:type owl:Class . ################################################################# # Individuals ################################################################# ### https://w3id.org/mobility/trias/location#AddressRef :AddressRef rdf:type owl:NamedIndividual , :LocationRef ; rdfs:comment "Reference to a Stop Point."@en . ### https://w3id.org/mobility/trias/location#GeoPosition :GeoPosition rdf:type owl:NamedIndividual , :LocationRef , . ### https://w3id.org/mobility/trias/location#LocalityRef :LocalityRef rdf:type owl:NamedIndividual , :LocationRef . ### https://w3id.org/mobility/trias/location#PointOfInterestRef :PointOfInterestRef rdf:type owl:NamedIndividual , :LocationRef . ### https://w3id.org/mobility/trias/location#StopPlaceRef :StopPlaceRef rdf:type owl:NamedIndividual , :LocationRef . ### https://w3id.org/mobility/trias/location#StopPointRef :StopPointRef rdf:type owl:NamedIndividual , :LocationRef . ################################################################# # General axioms ################################################################# [ rdf:type owl:AllDifferent ; owl:distinctMembers ( :AddressRef :GeoPosition :LocalityRef :PointOfInterestRef :StopPlaceRef :StopPointRef ) ] . ### Generated by the OWL API (version 5.1.18) https://github.com/owlcs/owlapi/