I recently installed graphDB to store my ontology. I want to get access to dbpedia to get information using graphDB with SPARQL query. For example:
SELECT distinct ?airport ?label ?RR
WHERE {
dbpedia:London geo-pos:lat ?latBase ;
geo-pos:long ?longBase .
?airport omgeo:nearby(?latBase ?longBase "50mi");
a dbp-ont:Airport ;
ff:preferredLabel ?label ;
om:hasRDFRank ?RR .
} ORDER BY DESC(?RR)
If I want to execute this query with graphDB what do I need to do?
Do I have to download the rdf file into my db?