I'm using ARC2 library for php to issue sparql queries, and i got stuck on this issue (I don't think it has something to do with the lib).
This query works just fine - in my app, and in 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.
}
On the other hand, this query doesn't work:
SELECT * WHERE {
?c rdf:type dbo:Country;
foaf:name "someCountryName"@en;
geo:lat ?lat.
}
Note: the query is done using the same prefixes as listed above. I just need to take lat & long of a country. I could also try Freebase, but i really need to make it work here. The 2nd query works in snorql, can't see why it doesn't also work in my app? Any help is much appreciated!
Okay I dug up the answer so I'm posting it in the question description (can't answer my own question within 8h).
Okay I've come to know the error of my ways. I made several mistakes.
1 - the 2nd query (the one that didn't "work") would return several results. If I searched countries with foaf:name "Romania", it would return "Communist Romania", "Wallachian Romania", "Romania" etc. Out of these results, only one would have geo:lat & geo:long.
Basically, when a property I require isn't satisfied by all results, then no results will be returned. (methinks)
2 - I used the wrong ontology for geo, I actually needed <http://www.w3.org/2003/01/geo/wgs84_pos#>
3 - I needed to filter out all the other odd results, to only keep the unique results I wanted -> in this case, filter after inexistence of dbpedia-owl:dissolutionDate worked for me.
I also tried exact matches of foaf:name using FILTER (?name="someCountryName"^^xsd:string) but sadly to no avail.
So, here's the code that retrieves successfully the latitude & longitude values for a given country (beware, some other filters may be needed when searching for the "right" country):
//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.
For those passionate about ARC2 PHP lib, this is how to make the queries (note:don't forget to include the ARC2.php file):
$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
Any correction/addition is appreciated.