query-5ce0309a4aca17f30d961fa13938c091
Mapa de puentes de todo tipo que atraviesan el TajoUsamos plantilla Map
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 ?cosa ?cosaLabel ?geo
WHERE
{
?cosa wdt:P31*/wdt:P279* wd:Q12280 .
?cosa wdt:P177 wd:Q14294 .
?cosa wdt:P625 ?geo .
SERVICE wikibase:label { bd:serviceParam wikibase:language "es,en". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?cosa"):::projected
v2("?geo"):::projected
a1((" "))
c8(["bd:serviceParam"]):::iri
c10(["es,en"]):::literal
c3(["wd:Q12280"]):::iri
c5(["wd:Q14294"]):::iri
v1 --"wdt:P31"--> a1
a1 --"wdt:P279"--> c3
v1 --"wdt:P177"--> c5
v1 --"wdt:P625"--> v2
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c8 --"wikibase:language"--> c10
end