query-c208bac74fb1b921202fd65ee9c93c79
Mike Peel
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?globe ?globeLabel ?count
WHERE
{
{
SELECT ?globe (COUNT(?globecoordinate) AS ?count)
{ ?globecoordinate wikibase:geoGlobe ?globe }
GROUP BY ?globe
} SERVICE wikibase:label { bd:serviceParam wikibase:language "en" }
}
ORDER BY DESC(?count)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v4("?count"):::projected
v3("?globe"):::projected
v2("?globecoordinate")
c3(["bd:serviceParam"]):::iri
c5(["en"]):::literal
v2 --"wikibase:geoGlobe"--> v3
bind1[/"count(?globecoordinate)"/]
v2 --o bind1
bind1 --as--o v4
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c3 --"wikibase:language"--> c5
end