简体   繁体   English

protege 如何添加对另一个本体的引用

[英]protege how to add a reference to another ontology

I am tying to integrate my ontology with another ontologies.我想将我的本体与另一个本体集成。 what i did is importing the ontologies in my protege, that works, but protege lists all the classes, which is normally.我所做的是在我的门徒中导入本体,这是有效的,但门徒列出了所有类,这通常是。 i am looking if there is a way in which i just the reference (uri) of these ontologies and then i can use them from their prefix.我正在寻找是否有一种方法可以让我只引用这些本体的引用(uri),然后我可以从它们的前缀中使用它们。

ofc, i am building my ontology using owl2 ofc,我正在使用 owl2 构建我的本体

i hope you help me我希望你能帮助我

If you want to completely reason and materialise facts based on terms relating to the referenced concept, then you will need to fully import the ontology that the referenced concept belongs.如果您想根据与引用概念相关的术语完全推理和具体化事实,则需要完全导入引用概念所属的本体。

eg given an external ontology with the following statements:例如,给定具有以下语句的外部本体:

ex:Person a owl:Class;
   rdfs:subClassOf ex:Agent.

If you reference this in your without importing:如果您在不导入的情况下引用此内容:

ex2:Doctor a owl:Class;
   rdfs:subClassOf ex:Person.

and make the following statement:并作出以下声明:

ex2:Jack a ex2:Doctor.

an run it through a reasoner, then you will also materialise the following:通过推理器运行它,然后您还将实现以下内容:

ex2:Jack a ex:Person.

But not the following:但不是以下:

ex2:Jack a ex:Agent.

To materialise the latter, you will need to import the ontology with all the statements about ex:Person.要实现后者,您需要导入包含有关 ex:Person 的所有语句的本体。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM