query-f6eb6ffc6f6fa4ace84073065a458fa7

rq turtle/ttl

Mapa de edificios de estilo románico en Galicia según distancia en un radio de 150 km desde el centro de Galicia

Use at

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 ?place ?placeLabel ?location WHERE {  
       wd:Q3908 wdt:P625 ?coordenadas_Galicia .

  SERVICE wikibase:around { 
      ?place wdt:P625 ?location . 
      bd:serviceParam wikibase:center ?coordenadas_Galicia . 
      bd:serviceParam wikibase:radius "150" . 
      bd:serviceParam wikibase:distance ?dist.
  } 
  ?place wdt:P149 wd:Q46805 .

SERVICE wikibase:label { bd:serviceParam wikibase:language "es" }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?coordenadas_Galicia") v4("?dist") v3("?location"):::projected v2("?place"):::projected c1(["wd:Q3908"]):::iri c7(["150"]):::literal c13(["es"]):::literal c4(["bd:serviceParam"]):::iri c10(["wd:Q46805"]):::iri c1 --"wdt:P625"--> v1 subgraph s1["http://wikiba.se/ontology#around"] style s1 stroke-width:4px; v2 --"wdt:P625"--> v3 c4 --"wikibase:center"--> v1 c4 --"wikibase:radius"--> c7 c4 --"wikibase:distance"--> v4 end v2 --"wdt:P149"--> c10 subgraph s2["http://wikiba.se/ontology#label"] style s2 stroke-width:4px; c4 --"wikibase:language"--> c13 end