query-fadaf1cf89a1f20b7ebade4bd90a6c9b
2a. Emergency departments within 5km SELECT DISTINCT ?item ?itemLabel ?itemDescription ?geo WHERE { #is or instance of Hospital ?item wdt:P31/wdt:P279* wd:Q16917; #get geo information wdt:P625 ?geo ; #with emergency department wdt:P527 wd:Q1295316. SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } SERVICE wikibase:around { ?place wdt:P625 ?location. bd:serviceParam wikibase:center "[AUTO_COORDINATES]" . bd:serviceParam wikibase:radius "5" . bd:serviceParam wikibase:distance ?dist. } }
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#>
# 2a. Emergency departments within 5km
SELECT DISTINCT ?item ?itemLabel ?itemDescription ?geo
WHERE {
#is or instance of Hospital
?item wdt:P31/wdt:P279* wd:Q16917;
#get geo information
wdt:P625 ?geo ;
#with emergency department
wdt:P527 wd:Q1295316.
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
SERVICE wikibase:around {
?place wdt:P625 ?location.
bd:serviceParam wikibase:center "[AUTO_COORDINATES]" .
bd:serviceParam wikibase:radius "5" .
bd:serviceParam wikibase:distance ?dist.
}
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v5("?dist")
v2("?geo"):::projected
v1("?item"):::projected
v4("?location")
v3("?place")
a1((" "))
c6(["wd:Q1295316"]):::iri
c8(["bd:serviceParam"]):::iri
c15(["5"]):::literal
c3(["wd:Q16917"]):::iri
c10(["#91;AUTO_LANGUAGE#93;,en"]):::literal
c13(["#91;AUTO_COORDINATES#93;"]):::literal
v1 --"wdt:P31"--> a1
a1 --"wdt:P279"--> c3
v1 --"wdt:P625"--> v2
v1 --"wdt:P527"--> c6
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c8 --"wikibase:language"--> c10
end
subgraph s2["http://wikiba.se/ontology#around"]
style s2 stroke-width:4px;
v3 --"wdt:P625"--> v4
c8 --"wikibase:center"--> c13
c8 --"wikibase:radius"--> c15
c8 --"wikibase:distance"--> v5
end