query-ad782ea164c5fd625516a6bb96001495
Datos de poblaciĆ³n y ubicaciĆ³n de ciudades de Australia
Use at
- https://query.wikidata.org/sparql
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 ?ciudad ?ciudadLabel ?coordenadas (AVG(?pob) as ?poblacion)
WHERE {
?ciudad wdt:P31/wdt:P279* wd:Q515 ;
wdt:P131* wd:Q408 ;
wdt:P625 ?coordenadas ;
wdt:P1082 ?pob .
SERVICE wikibase:label
{ bd:serviceParam wikibase:language "es,en". }
} GROUP BY ?ciudad ?ciudadLabel ?coordenadas
Query found at
- https://www.wikidata.org/wiki/User:Japastorsanchez/WebDatos2022-2023
- https://www.wikidata.org/wiki/User:Japastorsanchez/webdatos-2023-2024/seminario-sparql
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?ciudad"):::projected
v2("?coordenadas"):::projected
v3("?pob"):::projected
v4("?poblacion")
a1((" "))
c9(["bd:serviceParam"]):::iri
c11(["es,en"]):::literal
c3(["wd:Q515"]):::iri
c5(["wd:Q408"]):::iri
v1 --"wdt:P31"--> a1
a1 --"wdt:P279"--> c3
v1 --"wdt:P131"--> c5
v1 --"wdt:P625"--> v2
v1 --"wdt:P1082"--> v3
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c9 --"wikibase:language"--> c11
end
bind1[/"average(?pob)"/]
v3 --o bind1
bind1 --as--o v4