query-79528ff1b5b2cf3e30a164738dddacca

rq turtle/ttl

Squares

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
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
SELECT ?line 
WHERE 
{
   VALUES (?squares) {
                  (wd:Q39562035) # Friedrich-List-Platz
                  (wd:Q19835432) # Beutlerpark
                } 
  BIND(?squares as ?item) .
  ?item  p:P1333 [psv:P1333 [ wikibase:geoLongitude ?lon1; wikibase:geoLatitude ?lat1; ] ] .
  ?item  p:P1334 [psv:P1334 [ wikibase:geoLongitude ?lon2; wikibase:geoLatitude ?lat2; ] ] .
  ?item  p:P1332 [psv:P1332 [ wikibase:geoLongitude ?lon3; wikibase:geoLatitude ?lat3; ] ] .
  ?item  p:P1335 [psv:P1335 [ wikibase:geoLongitude ?lon4; wikibase:geoLatitude ?lat4; ] ] .

  BIND(CONCAT('LINESTRING (', STR(?lon1), ' ', STR(?lat1), ',', STR(?lon2), ' ', STR(?lat2), ',', STR(?lon3), ' ', STR(?lat3), ',', STR(?lon4), ' ', STR(?lat4), ',', STR(?lon1), ' ', STR(?lat1),')') AS ?str) .
  BIND(STRDT(?str, geo:wktLiteral) AS ?line) 
  SERVICE wikibase:label { bd:serviceParam wikibase:language "de". } 
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?item") v4("?lat1") v6("?lat2") v8("?lat3") v10("?lat4") v12("?line"):::projected v3("?lon1") v5("?lon2") v7("?lon3") v9("?lon4") v1("?squares") v11("?str") a2((" ")) a1((" ")) a4((" ")) a3((" ")) a6((" ")) a5((" ")) a8((" ")) a7((" ")) c14(["de"]):::literal c12(["bd:serviceParam"]):::iri bind0[/VALUES ?squares/] bind0-->v1 bind00(["wd:Q39562035"]) bind00 --> bind0 bind01(["wd:Q19835432"]) bind01 --> bind0 bind1[/"?squares"/] v1 --o bind1 bind1 --as--o v2 a1 --"wikibase:geoLongitude"--> v3 a1 --"wikibase:geoLatitude"--> v4 a2 --"p:statement/value/P1333"--> a1 v2 --"p:P1333"--> a2 a3 --"wikibase:geoLongitude"--> v5 a3 --"wikibase:geoLatitude"--> v6 a4 --"p:statement/value/P1334"--> a3 v2 --"p:P1334"--> a4 a5 --"wikibase:geoLongitude"--> v7 a5 --"wikibase:geoLatitude"--> v8 a6 --"p:statement/value/P1332"--> a5 v2 --"p:P1332"--> a6 a7 --"wikibase:geoLongitude"--> v9 a7 --"wikibase:geoLatitude"--> v10 a8 --"p:statement/value/P1335"--> a7 v2 --"p:P1335"--> a8 bind2[/"concat('LINESTRING (',str(?lon1),' ',str(?lat1),',',str(?lon2),' ',str(?lat2),',',str(?lon3),' ',str(?lat3),',',str(?lon4),' ',str(?lat4),',',str(?lon1),' ',str(?lat1),')')"/] v3 --o bind2 v4 --o bind2 v5 --o bind2 v6 --o bind2 v7 --o bind2 v8 --o bind2 v9 --o bind2 v10 --o bind2 bind2 --as--o v11 bind3[/"STRDT(?str,'geo:wktLiteral')"/] v11 --o bind3 bind3 --as--o v12 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c12 --"wikibase:language"--> c14 end