query-8cc9defaf3b04a96e64cef0c729fcfe0

rq turtle/ttl

ORCID nach Ländern (Länder der Organisationen)

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX bd: <http://www.bigdata.com/rdf#>
#defaultView:BubbleChart
SELECT ?country ?countryLabel ?number
WHERE {
  #?country rdfs:label ?countryLabel .
  #FILTER LANG(?countryLabel='en')
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en" }
{
SELECT DISTINCT ?country (count(?person) AS ?number)
{
  ?person wdt:P496 ?orcid .
  ?person wdt:P108 ?uni .
  ?uni wdt:P17 ?country .
} GROUP BY ?country
}
}
ORDER BY DESC(?number)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v5("?country"):::projected v6("?number"):::projected v3("?orcid") v2("?person") v4("?uni") c2(["bd:serviceParam"]):::iri c4(["en"]):::literal subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c2 --"wikibase:language"--> c4 end v2 --"wdt:P496"--> v3 v2 --"wdt:P108"--> v4 v4 --"wdt:P17"--> v5 bind1[/"count(?person)"/] v2 --o bind1 bind1 --as--o v6