Skip to content

Commit

Permalink
Initial version of ontology
Browse files Browse the repository at this point in the history
  • Loading branch information
Miguel2617 committed Oct 27, 2023
1 parent 26b152e commit 58925b0
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions eu-regulation-2020-1058.owl
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
@prefix : <http://www.semanticweb.org/vieira/ontologies/2023/9/untitled-ontology-66#> .
@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 <http://www.hsu-ifa.de/ontologies/eu-regulation2020-1058> .

<http://www.hsu-ifa.de/ontologies/eu-regulation2020-1058> rdf:type owl:Ontology ;
owl:versionIRI <http://www.hsu-ifa.de/ontologies/eu-regulation2020-1058/1.0.0> ;
owl:imports <http://w3id.org/hsu-aut/eu-regulation2019-945/1.1.0> ;
rdfs:comment "An ontology for Commission Delegated Regulation (EU) 2020/1058 of 27 April 2020 amending Delegated Regulation (EU) 2019/945 as regards the introduction of two new unmanned aircraft systems classes.. See https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=celex%3A32020R1058 for access to the law." ;
rdfs:isDefinedBy "https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=celex%3A32020R1058" .

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

### http://www.hsu-ifa.de/ontologies/eu-regulation2020-1058#C5
:C5 rdf:type owl:Class ;
rdfs:subClassOf <http://w3id.org/hsu-aut/eu-regulation2019-945#UAS> ,
[ rdf:type owl:Restriction ;
owl:onProperty <http://w3id.org/hsu-aut/eu-regulation2019-945#hasMaxNominalVoltage> ;
owl:someValuesFrom xsd:double
] ;
rdfs:label "Class C5 UAS" .


### http://www.hsu-ifa.de/ontologies/eu-regulation2020-1058#C6
:C6 rdf:type owl:Class ;
rdfs:subClassOf <http://w3id.org/hsu-aut/eu-regulation2019-945#UAS> ,
[ rdf:type owl:Restriction ;
owl:onProperty <http://w3id.org/hsu-aut/eu-regulation2019-945#hasMaxSpeed> ;
owl:someValuesFrom xsd:double
] ;
rdfs:label "Class C6 UAS" .


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

0 comments on commit 58925b0

Please sign in to comment.