本体类似于周期表,用于集成搜索

发布于 2024-11-01 14:57:05 字数 219 浏览 0 评论 0原文

我正在开发一个查询PeriodicTable本体的应用程序。是否有其他类似的本体可以用它来查询?基本上,我正在寻找可以使用周期表本体进行查询并提取有意义的数据的本体。周期表本体包含周期表中的所有元素及其名称、符号和原子序数。

I am developing an application that queries PeriodicTable ontology. Is there some other ontology similar to this that can be queried with it? Basically, I am in search of ontology that can I query with the PeriodicTable ontology and extract meaningful data. PeriodicTable ontology contains all the elements of periodic table with their name, symbol, and atomic number.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

蓝礼 2024-11-08 14:57:05

当然,您可以查询 dbpedia 的 SPARQL 端点 http://dbpedia.org/sparql

例如...

select * where { <http://dbpedia.org/resource/Hydrogen> ?p ?o}

也来自 OpenCYC,请参阅:

http://sw.opencyc.org/2008/06/10/concept/en/Hydrogen

以及来自 http://sameAs.org 您还可以获得给定元素的等效链接数据 URI。请参阅...

http ://sameas.org/html?uri=http%3A%2F%2Fdbpedia.org%2Fresource%2FHydrogen&x=0&y=0

对于综合搜索http://sameas.org是非常有价值的资源。您可以使用其 Restful API 来查找引用同一周期性元素的 URI,然后通过 HTTP 解析每个 URI 以获取 RDF 数据。

如何使用curl获取所有周期元素

以下命令将从dbpedia下载氢的RDF文档:

curl -L -H "Accept: application/rdf+xml" http://dbpedia.org/resource/Hydrogen

如果您有所有元素的名称,您可以尝试解析所有元素并将其放入当地的一家商店。

Sure you can query dbpedia's SPARQL endpoint http://dbpedia.org/sparql

For example ...

select * where { <http://dbpedia.org/resource/Hydrogen> ?p ?o}

Also from OpenCYC, see:

http://sw.opencyc.org/2008/06/10/concept/en/Hydrogen

And from http://sameAs.org you can also get equivalent Linked Data URIs for a given element. See ...

http://sameas.org/html?uri=http%3A%2F%2Fdbpedia.org%2Fresource%2FHydrogen&x=0&y=0

For an integrated search http://sameas.org is a very valuable resource. You can use its restful API for finding URIs that refer to the same Periodic element, then HTTP resolve each of those to get the RDF data.

how to get all the periodic element with curl

The following command will download the RDF document for Hydrogen from dbpedia:

curl -L -H "Accept: application/rdf+xml" http://dbpedia.org/resource/Hydrogen

If you have the names of all the elements you can try to resolve all of them and put then in a local store.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文