query-938263147f6bec381581e24cd5bc7633

rq turtle/ttl

Map of US National Parks, including official web sites and Twitter accounts

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 ?park ?parkLabel ?coord ?image ?web (URI(CONCAT("https://twitter.com/",?tw)) AS ?twitter) WHERE {
?park wdt:P31 wd:Q5408678; wdt:P625 ?coord; wdt:P18 ?image; wdt:P856 ?web
  OPTIONAL {?park wdt:P2002 ?tw}
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en" }
} ORDER BY ?parkLabel

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?coord"):::projected v4("?image"):::projected v2("?park"):::projected v1("?parkLabel"):::projected v6("?tw"):::projected v7("?twitter") v5("?web"):::projected c8(["bd:serviceParam"]):::iri c10(["#91;AUTO_LANGUAGE#93;,en"]):::literal c2(["wd:Q5408678"]):::iri v2 --"wdt:P31"--> c2 v2 --"wdt:P625"--> v3 v2 --"wdt:P18"--> v4 v2 --"wdt:P856"--> v5 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P2002".-> v6 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c8 --"wikibase:language"--> c10 end bind0[/"concat('https://twitter.com/',?tw)"/] v6 --o bind0 bind0 --as--o v7