query-5e72ccd320b488108186918b2c3f053b
French départements with OSM relation if avalaible SELECT ?itemLabel ?item ?OSM ?code WHERE { ?item wdt:P31 wd:Q6465 . #French départements ?item wdt:P300 ?code . #with ISO 3166-2 code OPTIONAL { ?item wdt:P402 ?OSM }. #OSM relation if avalaible SERVICE wikibase:label { bd:serviceParam wikibase:language "fr" } }
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#>
#French départements with OSM relation if avalaible
SELECT ?itemLabel ?item ?OSM ?code
WHERE
{
?item wdt:P31 wd:Q6465 . #French départements
?item wdt:P300 ?code . #with ISO 3166-2 code
OPTIONAL { ?item wdt:P402 ?OSM }. #OSM relation if avalaible
SERVICE wikibase:label { bd:serviceParam wikibase:language "fr" }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?OSM"):::projected
v2("?code"):::projected
v1("?item"):::projected
c6(["bd:serviceParam"]):::iri
c2(["wd:Q6465"]):::iri
c8(["fr"]):::literal
v1 --"wdt:P31"--> c2
v1 --"wdt:P300"--> v2
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v1 -."wdt:P402".-> v3
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end