diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000..5008ddf Binary files /dev/null and b/.DS_Store differ diff --git a/TSOAlignment.ttl b/TSOAlignment.ttl new file mode 100644 index 0000000..ddc386e --- /dev/null +++ b/TSOAlignment.ttl @@ -0,0 +1,36 @@ +@prefix dc: . +@prefix owl: . +@prefix rdf: . +@prefix xsd: . +@prefix rdfs: . + +@prefix tso: . +@prefix bot: . + +@base . + +dc:creator rdf:type owl:AnnotationProperty . +dc:description rdf:type owl:AnnotationProperty . +dc:issued rdf:type owl:AnnotationProperty . +dc:license rdf:type owl:AnnotationProperty . +dc:modified rdf:type owl:AnnotationProperty . +dc:title rdf:type owl:AnnotationProperty . + + rdf:type owl:Ontology ; + owl:versionIRI ; + owl:imports bot: , + tso: ; + dc:creator "Dominik Schlütter" , + "Nicolas Pauen" ; + dc:description "This ontology defines correspondences with the BOT ontology. Alignment holds for BOT v0.3.2 and TSO v0.2.0." ; + dc:issued "2021-02-22T15:00:00"^^xsd:dateTime ; + dc:license ; + dc:modified "2021-05-30T15:00:00"^^xsd:dateTime ; + dc:title "TSO to BOT alignment"@en ; + owl:versionInfo "v0.2.0" . + +tso:contains rdfs:subPropertyOf bot:hasElement . +tso:hasSubSystem rdfs:subPropertyOf bot:hasSubElement . + +bot:Zone owl:equivalentClass tso:Zone . +tso:Component rdfs:subClassOf bot:Element .