query-d3134ac4e3f7e95f61c567bd6562372a

rq turtle/ttl

TODO

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#Map of all the paintings for which we know a location with and have image of with the count per location
#defaultView:Map
SELECT ?locationLabel ?coord (count(*) as ?count)
WHERE
{
    ?painting wdt:P31 wd:Q3305213 .
    ?painting wdt:P276 ?location .
  ?location wdt:P625 ?coord .
            ?painting wdt:P18 ?image 
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en" }      
}
GROUP BY ?locationLabel ?coord

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?coord"):::projected v5("?count") v4("?image") v2("?location") v1("?painting") c2(["wd:Q3305213"]):::iri c7(["bd:serviceParam"]):::iri c9(["en"]):::literal v1 --"wdt:P31"--> c2 v1 --"wdt:P276"--> v2 v2 --"wdt:P625"--> v3 v1 --"wdt:P18"--> v4 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c7 --"wikibase:language"--> c9 end bind1[/"count(*)"/] bind1 --as--o v5