-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
26b152e
commit 58925b0
Showing
1 changed file
with
39 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |