Skip to content

Commit

Permalink
USD.owl now uses self-hosted DUL version
Browse files Browse the repository at this point in the history
This fixes an error with the CI, which throws an exception if one of the ontologies imports another that is not self-hosted.
  • Loading branch information
mrnolte committed May 14, 2024
1 parent b21e3d9 commit 02b850b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion owl/USD.owl
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:xformOp="https://ease-crc.org/ont/USD#xformOp:">
<owl:Ontology rdf:about="https://ease-crc.org/ont/USD.owl">
<owl:imports rdf:resource="http://www.ontologydesignpatterns.org/ont/dul/DUL.owl"/>
<owl:imports rdf:resource="http://www.ease-crc.org/ont/DUL.owl"/>
<rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The purpose of the USD ontology is to establish a graph model of the USD language, and to support translation from USD to a KG representation of scene graphs. To this end, the core vocabulary of USD is defined in terms of an upper-level ontology. In addition, a set of re-usable built-in schemata that are used in the USD language to describe prims are defined. In order to fasciliate translation, the ontological model attempts to replicate the structure of USD as closely as possible while in addition entailing semantics of USD entities.</rdfs:comment>
<rdfs:label>USD Ontology</rdfs:label>
<owl:versionInfo rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.1</owl:versionInfo>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ public void run() throws OWLOntologyStorageException {
if (ontologyConfig.format() == null) {
ontology.saveOntology();
} else {
LOGGER.info("Using format {}", ontologyConfig.format());
ontology.saveOntology(ontologyConfig.format());
}
}
Expand Down

0 comments on commit 02b850b

Please sign in to comment.