query-46e3cd923f2641b7f61df9c78dd71ad7
Just a collection of queries for my personal use.
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#>
#defaultView:Map
# Candidate PH human settlements to convert to barangays
SELECT ?brgy ?brgyLabel ?coord WHERE {
?brgy wdt:P31 wd:Q486972 ;
wdt:P17 wd:Q928 ;
wdt:P625 ?coord .
SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?brgy"):::projected
v2("?coord"):::projected
c2(["wd:Q486972"]):::iri
c7(["bd:serviceParam"]):::iri
c9(["en"]):::literal
c4(["wd:Q928"]):::iri
v1 --"wdt:P31"--> c2
v1 --"wdt:P17"--> c4
v1 --"wdt:P625"--> v2
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end