gpt4 book ai didi

SPARQL 查询没有给出 dbpedia 上的所有结果

转载 作者:行者123 更新时间:2023-12-02 11:01:29 24 4
gpt4 key购买 nike

我正在 http://dbpedia.org/snorql/ 中执行此查询:

查询:

PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>        
PREFIX type: <http://dbpedia.org/class/yago/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT ?country_name ?population
WHERE {
?country a type:LandlockedCountries ;
rdfs:label ?country_name ;
prop:populationEstimate ?population .
}

该查询查找所有陆地国家/地区。

我不明白为什么结果中没有一些国家被分类为“/dbpedia.org/class/yago/LandlockedCountries”。例如,巴拉圭 (/dbpedia.org/page/ParaguAy) 已被分类,但不会出现在查询结果集中。有人可以解释一下为什么吗?

最佳答案

遗憾的是,有少数内陆国家/地区至少没有 country_namepopulationEstimate 属性之一的值。这就是为什么它们不会在您的查询中返回的原因。如果您运行以下查询,将显示这些国家/地区(这两个属性设置为OPTIONAL)。

PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>        
PREFIX type: <http://dbpedia.org/class/yago/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT ?country ?country_name ?population
WHERE {
?country a type:LandlockedCountries .
OPTIONAL {?country rdfs:label ?country_name Filter(lang(?country_name) = 'en')} .
OPTIONAL {?country prop:populationEstimate ?population} .
}

run query

为了(稍微)更好的结果,由于某些国家/地区似乎重复且大小写错误(例如 ParaguAyParaguay),以下查询使用 ?country dcterms:subject Category:Landlocked_countries 而不是 yago 类。

run query

关于SPARQL 查询没有给出 dbpedia 上的所有结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16097880/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com