query-2a6070046a72cc5f1e4f64fa85a884e9

rq turtle/ttl

Night in Portugal

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#>
#Night in Portugal

#defaultView:Map
SELECT DISTINCT ?item ?itemLabel ?coord  ?noctu
WHERE
{
  ?item wdt:P17 wd:Q45 . 
  ?item wdt:P3451 ?noctu .   
 OPTIONAL { ?item wdt:P625 ?coord } .
 OPTIONAL { ?item wdt:P18 ?picture } .

  SERVICE wikibase:label { bd:serviceParam wikibase:language "pt,es,en,ca,gl,eu,fr,de,it" . }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?coord"):::projected v1("?item"):::projected v2("?noctu"):::projected v4("?picture") c7(["bd:serviceParam"]):::iri c9(["pt,es,en,ca,gl,eu,fr,de,it"]):::literal c2(["wd:Q45"]):::iri v1 --"wdt:P17"--> c2 v1 --"wdt:P3451"--> v2 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v1 -."wdt:P625".-> v3 end subgraph optional1["(optional)"] style optional1 fill:#bbf,stroke-dasharray: 5 5; v1 -."wdt:P18".-> v4 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c7 --"wikibase:language"--> c9 end