DBpedia SPARQL 和谓词连接

发布于 2024-11-13 08:56:31 字数 300 浏览 3 评论 0原文

我在 DBpedia SPARQL 端点上遇到了问题,因为像 rdf:type 标签这样的属性的属性没有存储在端点中。因此,当我运行此查询时:

SELECT * 
WHERE{
  <http://dbpedia.org/ontology/Place> ?predicat ?object .
  OPTIONAL{?predicat rdfs:label ?label}
}

我没有任何 ?label 信息。

如果有人有任何想法来解决这个问题,那将会非常有帮助。

I've got a problem with the DBpedia SPARQL endpoint because the properties of the properties like the label of rdf:type are not stocked in the endpoint. So when I run this query:

SELECT * 
WHERE{
  <http://dbpedia.org/ontology/Place> ?predicat ?object .
  OPTIONAL{?predicat rdfs:label ?label}
}

I've got nothing for ?label.

If someone got any idea to solve this problem it would be very helpful.

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

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

发布评论

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

评论(2

旧人九事 2024-11-20 08:56:31

您无法从 DBpedia 获取真正的标签,因为 SPARQL 端点没有它们。但您可以采用属性 URI 的本地名称。因此,对于 rdfs:subClassOf 你会得到“subClassOf”。那总比什么都没有好。这可以使用 Virtuoso 的(非标准)bif:regexp_replace 函数来完成。

SELECT DISTINCT (bif:regexp_replace(STR(?p), "^.*[/#]", "") AS ?label) WHERE {
   <http://dbpedia.org/ontology/Place> ?p ?o .
}

You can't get the real labels from DBpedia because the SPARQL endpoint doesn't have them. But you can take the local name of the property URI. So, for rdfs:subClassOf you'd get "subClassOf". That's better than nothing. This can be done using Virtuoso's (non-standard) bif:regexp_replace function.

SELECT DISTINCT (bif:regexp_replace(STR(?p), "^.*[/#]", "") AS ?label) WHERE {
   <http://dbpedia.org/ontology/Place> ?p ?o .
}
没有伤那来痛 2024-11-20 08:56:31

我认为没有 SPARQL 解决方案。 Dbpedia 没有您想要的数据,而且我无法在 W3C 上轻松找到该 RDF 的 SPARQL 端点。而且我认为 Virtuoso dbpedia 端点尚不支持联合,即使我们确实找到了 W3C 的 SPARQL 端点。

很高兴在这些观点上被证明是错误的。

I don't think there's a SPARQL solution. Dbpedia doesn't have the data you want, and I couldn't easily find a SPARQL endpoint for that RDF at W3C. And I don't think the Virtuoso dbpedia endpoint supports federation yet, even if we did find a SPARQL endpoint for W3C.

Happy to be proven wrong on any of those points.

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