query-626420c4128e6dbdc6eab5c6ec4bc999
Carte de lieux de naissance de chats et de chiens
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
SELECT ?item ?itemLabel ?geo ?pict ?birthLabel WHERE {
{ ?item wdt:P31 wd:Q146 .} UNION { ?item wdt:P31 wd:Q144 .}. # Sélectionne chat domestiques et chiens domestiques
?item wdt:P19 ?birth . # Récupère pays de naissance
?birth wdt:P625 ?geo . # Récupère les coordonnées géographiques du pays de naissance
OPTIONAL { ?item wdt:P18 ?pict .}. # Affiche les images si présentes
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
LIMIT 50
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?birth")
v3("?geo"):::projected
v1("?item"):::projected
v4("?pict"):::projected
c2(["wd:Q146"]):::iri
c8(["bd:serviceParam"]):::iri
c10(["#91;AUTO_LANGUAGE#93;,en"]):::literal
c3(["wd:Q144"]):::iri
subgraph union0[" Union "]
subgraph union0l[" "]
style union0l fill:#abf,stroke-dasharray: 3 3;
v1 --"wdt:P31"--> c3
end
subgraph union0r[" "]
style union0r fill:#abf,stroke-dasharray: 3 3;
v1 --"wdt:P31"--> c2
end
union0r <== or ==> union0l
end
v1 --"wdt:P19"--> v2
v2 --"wdt:P625"--> v3
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v1 -."wdt:P18".-> v4
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c8 --"wikibase:language"--> c10
end