query-3277ae3688b1f1431e078dfde09cbd38
arbres remarquables de France
SELECT ?communeLabel ?itemLabel ?item ?coordonnees WHERE {
?item wdt:P31 wd:Q811534. # nature de l'élément (P31)
?item wdt:P131 ?commune. # localisation administrative (P131)
?commune wdt:P17 wd:Q142. # pays : France
?item wdt:P625 ?coordonnees.
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
ORDER BY ?communeLabel ?itemLabel
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#>
# arbres remarquables de France
SELECT ?communeLabel ?itemLabel ?item ?coordonnees WHERE {
?item wdt:P31 wd:Q811534. # nature de l'élément (P31)
?item wdt:P131 ?commune. # localisation administrative (P131)
?commune wdt:P17 wd:Q142. # pays : France
?item wdt:P625 ?coordonnees.
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
ORDER BY ?communeLabel ?itemLabel
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v4("?commune")
v1("?communeLabel"):::projected
v5("?coordonnees"):::projected
v3("?item"):::projected
v2("?itemLabel"):::projected
c2(["wd:Q811534"]):::iri
c8(["bd:serviceParam"]):::iri
c10(["#91;AUTO_LANGUAGE#93;,en"]):::literal
c5(["wd:Q142"]):::iri
v3 --"wdt:P31"--> c2
v3 --"wdt:P131"--> v4
v4 --"wdt:P17"--> c5
v3 --"wdt:P625"--> v5
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c8 --"wikibase:language"--> c10
end