query-dc245b895bd351e708c19aec93a3be58

rq turtle/ttl

Birthplaces of painters in the Rijksmuseum collection (based on query by Jane Darnell)

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#>
#defaultView:Map
SELECT DISTINCT ?painter ?painterLabel ?birthplaceLabel ?geoloc where {
      ?painting wdt:P31/wdt:P279* wd:Q3305213 ;  # any painting (or type of painting)
       wdt:P195 wd:Q190804 ;  # in collection Rijksmuseum
       wdt:P170 ?painter . # get painter
      ?painter wdt:P19 ?birthplace . # get painter's birthplace
      ?birthplace wdt:P625 ?geoloc . #latitude and longitude
  SERVICE wikibase:label {
       bd:serviceParam wikibase:language "[AUTO_LANGUAGE],mul,en,fr,es"
    }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?birthplace") v4("?geoloc"):::projected v2("?painter"):::projected v1("?painting") a1((" ")) c3(["wd:Q3305213"]):::iri c10(["bd:serviceParam"]):::iri c5(["wd:Q190804"]):::iri c12(["#91;AUTO_LANGUAGE#93;,mul,en,fr,es"]):::literal v1 --"wdt:P31"--> a1 a1 --"wdt:P279"--> c3 v1 --"wdt:P195"--> c5 v1 --"wdt:P170"--> v2 v2 --"wdt:P19"--> v3 v3 --"wdt:P625"--> v4 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c10 --"wikibase:language"--> c12 end