query-e2a95755a2d7527f4bfa46ddba79b5d7
Пронаћи руднике који немају координате Приказати на мапи руднике у Француској, Немачкој, Босни и Херцеговини и Србији
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#>
#Mines in France, Germany, Bosnia & Herzegovina and Serbia
#Creates a list of mines in France, Germany, Bosnia & Herzegovina and Serbia with coordinates
#defaultView:Map
SELECT DISTINCT ?rudnik ?rudnikLabel ?coor
WHERE {
VALUES ?country { wd:Q142 wd:Q183 wd:Q225 wd:Q403 }
?rudnik wdt:P31 wd:Q820477 ;
?range ?country;
wdt:P625 ?coor.
SERVICE wikibase:label { bd:serviceParam wikibase:language "sr,[AUTO_LANGUAGE],en". }
} LIMIT 300
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v4("?coor"):::projected
v1("?country")
v3("?range")
v2("?rudnik"):::projected
c2(["wd:Q820477"]):::iri
c5(["bd:serviceParam"]):::iri
c7(["sr,#91;AUTO_LANGUAGE#93;,en"]):::literal
bind0[/VALUES ?country/]
bind0-->v1
bind00(["wd:Q142"])
bind00 --> bind0
bind01(["wd:Q183"])
bind01 --> bind0
bind02(["wd:Q225"])
bind02 --> bind0
bind03(["wd:Q403"])
bind03 --> bind0
v2 --"wdt:P31"--> c2
v2 -->v3--> v1
v2 --"wdt:P625"--> v4
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c5 --"wikibase:language"--> c7
end