query-750224bc4e72b1ddad4343fd192a6829

rq turtle/ttl

Recorrido de las líneas del tranvía de Murcia

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX psv: <http://www.wikidata.org/prop/statement/value/>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX geo: <http://www.opengis.net/ont/geosparql#>
PREFIX bd: <http://www.bigdata.com/rdf#>
#defaultView:Map{"hide":["","?parada_adyacente","?coord1", "?comm2","?coord2","?trazo", "?rgb"],"layer":"?lineaLabel"}
SELECT ?parada ?paradaLabel ?coord1 ?parada_adyacente ?coord2 ?trazo ?linea ?lineaLabel ?rgb WHERE {
  ?parada wdt:P31/wdt:P279* wd:Q2175765 ;
         wdt:P16 wd:Q1854587;
         wdt:P625 ?coord1 ;
         wdt:P81 ?linea;
         wdt:P197 ?parada_adyacente .
  ?linea  wdt:P465 ?rgb.
  ?parada_adyacente wdt:P81 ?linea_adyacente;
         wdt:P625 ?coord2 .
  FILTER (?linea = ?linea_adyacente)
  ?parada p:P625 [psv:P625 [wikibase:geoLongitude ?coord1lon; wikibase:geoLatitude ?coord1lat; ] ] .
  ?parada_adyacente p:P625 [psv:P625 [ wikibase:geoLongitude ?coord2lon; wikibase:geoLatitude ?coord2lat; ] ] .
  BIND(STRDT(CONCAT('LINESTRING (', STR(?coord1lon), ' ', STR(?coord1lat), ',', STR(?coord2lon), ' ', STR(?coord2lat), ')'),geo:wktLiteral) AS ?trazo) .
  SERVICE wikibase:label { bd:serviceParam wikibase:language "es,en,fr". }
}
ORDER BY (?lineaLabel)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v5("?coord1"):::projected v10("?coord1lat") v9("?coord1lon") v8("?coord2"):::projected v12("?coord2lat") v11("?coord2lon") v2("?linea"):::projected v1("?lineaLabel"):::projected v3("?linea_adyacente") v4("?parada"):::projected v6("?parada_adyacente"):::projected v7("?rgb"):::projected v13("?trazo"):::projected a1((" ")) a3((" ")) a2((" ")) a5((" ")) a4((" ")) c3(["wd:Q2175765"]):::iri c17(["es,en,fr"]):::literal c15(["bd:serviceParam"]):::iri c5(["wd:Q1854587"]):::iri f0[["?linea = ?linea_adyacente"]] f0 --> v2 f0 --> v3 v4 --"p:direct/P31"--> a1 a1 --"p:direct/P279"--> c3 v4 --"p:direct/P16"--> c5 v4 --"p:direct/P625"--> v5 v4 --"p:direct/P81"--> v2 v4 --"p:direct/P197"--> v6 v2 --"p:direct/P465"--> v7 v6 --"p:direct/P81"--> v3 v6 --"p:direct/P625"--> v8 a2 --"wikibase:geoLongitude"--> v9 a2 --"wikibase:geoLatitude"--> v10 a3 --"p:statement/value/P625"--> a2 v4 --"p:P625"--> a3 a4 --"wikibase:geoLongitude"--> v11 a4 --"wikibase:geoLatitude"--> v12 a5 --"p:statement/value/P625"--> a4 v6 --"p:P625"--> a5 bind1[/"STRDT(concat('LINESTRING (',str(?coord1lon),' ',str(?coord1lat),',',str(?coord2lon),' ',str(?coord2lat),')'),'geo:wktLiteral')"/] v9 --o bind1 v10 --o bind1 v11 --o bind1 v12 --o bind1 bind1 --as--o v13 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c15 --"wikibase:language"--> c17 end