SPARQL查询出错,原因是我所需属性的结果中存在不正确的地理位置+

2022-03-26 00:00:00 sparql php

我使用php的ARC2库来发出SPARQL查询,我被这个问题卡住了(我不认为这与lib有什么关系)。

此查询在我的应用程序和DBpedia Snorql:

中运行良好
PREFIX dbo:<http://dbpedia.org/ontology/>
PREFIX owl: <http://www.w3.org/2002/07/owl#>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
PREFIX dc: <http://purl.org/dc/elements/1.1/>
PREFIX : <http://dbpedia.org/resource/>
PREFIX dbpedia2: <http://dbpedia.org/property/>
PREFIX dbpedia: <http://dbpedia.org/>
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
PREFIX geo: <http://www.geonames.org/ontology#>

SELECT * WHERE {
?c rdf:type dbo:Country;
foaf:name "someCountryName"@en.
}

另一方面,此查询不起作用:

SELECT * WHERE {
?c rdf:type dbo:Country;
foaf:name "someCountryName"@en;
geo:lat ?lat.
}
注意:使用与上面列出的前缀相同的前缀完成查询。 我只需要了解一个国家的最新情况(&A)。我也可以试试FreeBase,但我真的需要让它在这里工作。第二个查询在Snorql中工作,不明白为什么它不能在我的应用程序中工作? 如有任何帮助,我们将不胜感激!

IrinaM

注意:本文由@推荐答案提供,但由于8小时的限制,本文以a revision的形式进入问题。现在已经很晚了,@IrinaM帖子作为回答的建议还没有付诸实施。以下是包含文本略微编辑的CW答案。

问题中的代码有几个错误。

  1. 第2个查询(没有"工作"的那个)将返回几个结果。如果我用foaf:name "Romania"搜索国家,它会返回"Communist Romania""Wallachian Romania""Romania"等。在这些结果中,只有一个国家会有geo:latgeo:long。 基本上,如果所有结果都不满足必需的属性,则不会返回任何结果。

  2. geo使用的本体错误;应该是<http://www.w3.org/2003/01/geo/wgs84_pos#>

  3. 需要过滤掉其他奇怪的结果,以便只保留所需的唯一结果。在这种情况下,在dbpedia-owl:dissolutionDate的不存在之后进行筛选。 使用FILTER (?name="someCountryName"^^xsd:string)无法精确匹配foaf:name。

以下代码可成功检索给定国家/地区的纬度值和经度值(请注意,在搜索正确的国家/地区时可能需要其他一些过滤器):

//setup prefixes
$prefixes = 'PREFIX dbo:<http://dbpedia.org/ontology/>
PREFIX owl: <http://www.w3.org/2002/07/owl#>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
PREFIX dc: <http://purl.org/dc/elements/1.1/>
PREFIX : <http://dbpedia.org/resource/>
PREFIX dbpedia2: <http://dbpedia.org/property/>
PREFIX dbpedia: <http://dbpedia.org/>
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
PREFIX geo: <http://www.w3.org/2003/01/geo/wgs84_pos#>
';    
//query no. 1 - find out "right" country - hoping for a unique result
$q1 = $prefixes.'SELECT ?c WHERE {
?c rdf:type dbo:Country;
foaf:name "'.$userPreferences->country.'"@en. 
OPTIONAL {?c dbo:dissolutionDate ?x}
FILTER(!bound(?x))}';
//note: $userPreferences->country represents a country entered by the user in an input

//query no. 2 - find out long & lat
$q2 = $prefixes.'SELECT * WHERE {
<'.$countryReturned.'> geo:lat ?lat;
geo:long ?long.
}';
//note: $countryReturned represents the URI of the "unique" country my 1st query
//retrieved, we use it directly.

对于那些热衷于ARC2 PHP库的人来说,下面是如何进行查询的(注意:不要忘记包含ARC2.php文件):

$dbpediaEndpoint = array('remote_store_endpoint' =>'http://dbpedia.org/sparql');
$dbpediaStore = ARC2::getRemoteStore($dbpediaEndpoint);
$rows1 = $dbpediaStore->query($q1,'rows');
var_dump($rows1); //to see quick results

相关文章