query-4c39ec280126bef4a56c5824eb0439f0

rq turtle/ttl

Black PMA artists educated within 80 kilometers of Philadelphia

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#>
SELECT DISTINCT 
  ?item ?itemLabel ?itemDescription
  ?p ?pLabel 
  ?coords ?distance
WHERE
{
  wd:Q1345 wdt:P625 ?a0 .
  SERVICE wikibase:around {
      ?p wdt:P625 ?coords .
      bd:serviceParam wikibase:center ?a0 .
      bd:serviceParam wikibase:radius "80" .
      bd:serviceParam wikibase:distance ?distance .      
  }

  ?item wdt:P69 ?p .
  ?item wdt:P31 wd:Q5 .
  ?item wdt:P172 wd:Q49085 .
   ?item wdt:P6379 wd:Q510324.  

  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
ORDER BY ?distance

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?a0") v4("?coords"):::projected v1("?distance"):::projected v5("?item"):::projected v3("?p"):::projected c15(["wd:Q510324"]):::iri c4(["bd:serviceParam"]):::iri c7(["80"]):::literal c11(["wd:Q5"]):::iri c13(["wd:Q49085"]):::iri c18(["#91;AUTO_LANGUAGE#93;,en"]):::literal c1(["wd:Q1345"]):::iri c1 --"wdt:P625"--> v2 subgraph s1["http://wikiba.se/ontology#around"] style s1 stroke-width:4px; v3 --"wdt:P625"--> v4 c4 --"wikibase:center"--> v2 c4 --"wikibase:radius"--> c7 c4 --"wikibase:distance"--> v1 end v5 --"wdt:P69"--> v3 v5 --"wdt:P31"--> c11 v5 --"wdt:P172"--> c13 v5 --"wdt:P6379"--> c15 subgraph s2["http://wikiba.se/ontology#label"] style s2 stroke-width:4px; c4 --"wikibase:language"--> c18 end