query-afc73dc2915c244521cabe0641ed72a9

rq turtle/ttl

ORCIDs an deutschen Universitäten, auf Größe der Hochschule normiert

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:BubbleChart
SELECT DISTINCT ?uni ?uniLabel (count(?person) AS ?number) ?size
{
  ?person wdt:P496 ?orcid .
  ?person wdt:P108 ?uni .
  ?uni wdt:P17 wd:Q183 .    # nur Deutsche Unis
  ?uni wdt:P2196 ?size .
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],de,en" }
} GROUP BY ?uni ?uniLabel ?size
ORDER BY DESC(?number)

Query found at

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