query-cd9f846596cb20a473e0469b7d56da96

rq turtle/ttl

Carte des musées par nombre d'œuvres (en centaines)Minute :

Use at

PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
SELECT * WHERE {
  BIND(ROUND(?compte / 100 ) AS ?layer)
  {
    SELECT ?musee ?coord (COUNT(?q) AS ?compte) WHERE {
      ?q wdt:P195 ?musee.
      ?musee wdt:P17 wd:Q142;
        wdt:P625 ?coord.
    }
    GROUP BY ?musee ?coord
  }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v5("?compte"):::projected v4("?coord"):::projected v1("?layer"):::projected v3("?musee"):::projected v2("?q") c3(["wd:Q142"]):::iri bind0[/"numeric-round(?compte / '100^^xsd:integer')"/] v5 --o bind0 bind0 --as--o v1 v2 --"wdt:P195"--> v3 v3 --"wdt:P17"--> c3 v3 --"wdt:P625"--> v4 bind2[/"count(?q)"/] v2 --o bind2 bind2 --as--o v5