[SPARQL/DBPedia]我可以从结果中捕获德语维基百科 URL 吗?
有人可以帮我找到德语维基百科文章的链接吗?
例如,我对所有德国电影有一个查询:
SELECT ?film
WHERE { ?film skos:subject http://dbpedia.org/resource/Category:German_films }
是否有像 dbpedia:wikipage-de
这样的选项可以向我显示维基百科的德语站点?
所有结果都只有 foaf:page 这样的前缀,内容名为:[http] http://en.wikipedia.org/wiki/*
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我不确定您到底在寻找什么,但如果您想从德语维基百科查找 dbpedia 提取的内容,我认为您需要查看 http://de.dbpedia.org/;例如,http://de.dbpedia.org/page/Sepsidae 对应于德语维基百科英文维基百科上的 http://dbpedia.org/page/Sepsidae 页面。这有帮助吗?
I'm not sure exactly what you are looking for, but if you want to look up dbpedia-extracted content from the German Wikipedia, I think you need to look at http://de.dbpedia.org/; For instance, http://de.dbpedia.org/page/Sepsidae corresponds to the German Wikipedia page of http://dbpedia.org/page/Sepsidae on the English Wikipedia. Does that help?
您不能
在英文 dbpedia 中找不到此信息(只有德语标签和摘要),
您可以使用标签,它通常与文章名称相同。
德语 dbpedia 是另一种选择,或者您可以下载德语转储(从 dbpedia.org)并在您自己的服务器中使用它们
You can't
this information is not available in the english dbpedia (only german label and abstract)
you could use the label, it is usually the same as the article name.
The german dbpedia is another option, or you can download the german dumps (from dbpedia.org) and use them in you own server
你的要求不起作用(至少对我来说)。我必须做:
我想你想做的是这样的:
这样你就可以从德语维基百科获得文章。就像@jimkont所说,这个请求不能在英语dbpedia上运行,你需要获取德语转储。
Your request doesn't work (for me at least). I had to do:
I guess what you would like to do is something like:
so you would get the articles from the German Wikipedia. Like @jimkont said, this request cannot be ran on the English dbpedia, you need to get the German dumps.