query-2b5618dcec0a970ad19d994b9e83149b

rq turtle/ttl

Try it! šablona šablonu. Příklad: {{SPARQL}}Zdravím, jak koukám na vaši hlavní stránku, můžete používat

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX bd: <http://www.bigdata.com/rdf#>
#defaultView:Map
SELECT ?item ?itemLabel ?coord ?layer WHERE {
  ?item wdt:P31 wd:Q1362233.
  ?item wdt:P625 ?coord.
  ?item wdt:P17 ?country.
  SERVICE wikibase:label {
    bd:serviceParam wikibase:language "cs". 
    ?country rdfs:label ?countryLabel
  }
  BIND (?countryLabel as ?layer).
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?coord"):::projected v3("?country") v4("?countryLabel") v1("?item"):::projected v5("?layer"):::projected c8(["cs"]):::literal c6(["bd:serviceParam"]):::iri c2(["wd:Q1362233"]):::iri v1 --"wdt:P31"--> c2 v1 --"wdt:P625"--> v2 v1 --"wdt:P17"--> v3 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c6 --"wikibase:language"--> c8 v3 --"rdfs:label"--> v4 end bind0[/"?countryLabel"/] v4 --o bind0 bind0 --as--o v5