query-bdf86fe82f78b1511df5ce296f9b23b7

rq turtle/ttl

Heritage on the Camino de Santiago + Mapa de Elementos patrimoniales en Caminos de Santiago, con imagen, enlace a artículo en WP ES y website.Heritage elements map in Caminos de Santiago, with, image, link to article in WP ES and website.

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX schema: <http://schema.org/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#Heritage on the Camino de Santiago with image and weblink
#Usuario:Galopax/Pintando_mapas_2 (WP-ES)
#User:Galopax/Painting maps (WD)
#added 2021-06-25
#defaultView:Map
SELECT DISTINCT ?a ?aLabel ?coordenadas ?layerLabel ?image ?sitelinkES ?website
 WHERE {
  SERVICE wikibase:label { bd:serviceParam wikibase:language "es,en". }
  ?a (wdt:P361*) wd:Q41150.
  ?a wdt:P625 ?coordenadas. # coordinate-location statement
  ?a wdt:P361 ?ruta.
  ?ruta wdt:P31 wd:Q337912.
  BIND (?ruta AS ?layer )
  OPTIONAL { ?a wdt:P856 ?website. }
  OPTIONAL { ?a wdt:P18  ?image.}
  OPTIONAL { ?sitelinkES schema:isPartOf <https://es.wikipedia.org/>;
  schema:about ?a.
}
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?a"):::projected v2("?coordenadas"):::projected v6("?image"):::projected v4("?layer") v3("?ruta") v7("?sitelinkES"):::projected v5("?website"):::projected c4(["es,en"]):::literal c6(["wd:Q41150"]):::iri c9(["wd:Q337912"]):::iri c2(["bd:serviceParam"]):::iri c13([https://es.wikipedia.org/]):::iri subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c2 --"wikibase:language"--> c4 end v1 --"wdt:P361"--> c6 v1 --"wdt:P625"--> v2 v1 --"wdt:P361"--> v3 v3 --"wdt:P31"--> c9 bind0[/"?ruta"/] v3 --o bind0 bind0 --as--o v4 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v1 -."wdt:P856".-> v5 end subgraph optional1["(optional)"] style optional1 fill:#bbf,stroke-dasharray: 5 5; v1 -."wdt:P18".-> v6 end subgraph optional2["(optional)"] style optional2 fill:#bbf,stroke-dasharray: 5 5; v7 -."schema:isPartOf".-> c13 v7 --"schema:about"--> v1 end