I started teaching myself SPARQL yesterday, and I'm practicing against dbpedia. I'm trying to retrieve a list of all footballers who have played in two clubs near to the specified destinations (i.e. Swansea and Oxford). I have the following query, which works but is very slow:
SELECT ?player ?team ?team2
WHERE
{
:Swansea geo:geometry ?point1_1 .
?team dbpedia-owl:ground ?ground .
?ground geo:geometry ?point1_2 .
FILTER (bif:st_distance( ?point1_1, ?point1_2) < 5)
?player dbpedia2:clubs ?team .
:Oxford geo:geometry ?point2_1 .
?team2 dbpedia-owl:ground ?ground2 .
?ground2 geo:geometry ?point2_2 .
FILTER (bif:st_distance( ?point2_1, ?point2_2) < 5)
?player dbpedia2:clubs ?team2 .
}
My problem is that the query often times-out when run on dbpedia's query page (see http://tinyurl.com/d9pkluq). Is there any way to optimise this query? If I enter more towns, or specify a larger radius to search, I would still want it to run without timing-out in dbpedia's query page.
Thanks for any help you can provide!