I'm trying to query DBPedia for some animal pictures.
The species I'm querying for is Pan_troglodytes. When one visits https://en.wikipedia.org/wiki/Pan_troglodytes in a browser, one gets redirected to https://en.wikipedia.org/wiki/Chimpanzee.
I'd like to query for Pan_troglodytes and get the thumbnail that appears in the Chimpanzee page. But my query returns nothing:
prefix dbpedia: <http://dbpedia.org/resource/>
prefix dbpedia-owl: <http://dbpedia.org/ontology/>
SELECT * WHERE {
dbpedia:Pan_troglodytes
dbpedia-owl:abstract ?abstract;
dbpedia-owl:thumbnail ?thumbnail .
}
Does anyone know how I can get the thumbnail for the page to which one is redirected? Any pointers others can provide would be helpful!