query-6b39af5088b833c6277faac3ff5deae9

rq turtle/ttl

VermontI decided two weeks ago to complete all the National Historic Landmark of Vermont. Here the result:

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#defaultView:Map
SELECT DISTINCT
  ?item
  ?itemLabel
  ?townLabel
  ?coords
  ?image
WHERE { {
    SELECT DISTINCT ?item WHERE {
      ?item wdt:P1435/wdt:P279* wd:Q624232 .
      ?item p:P1435 ?heritage_statement .
    } }
  ?item wdt:P131/wdt:P131* wd:Q16551 .
  ?item wdt:P131 ?town .
  OPTIONAL { ?item wdt:P625 ?coords . }
  OPTIONAL { ?item wdt:P18 ?image . }
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en" . }
}
GROUP BY ?item ?itemLabel ?townLabel ?coords ?image
ORDER BY ?townLabel ?itemLabel

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v6("?coords"):::projected v4("?heritage_statement") v7("?image"):::projected v3("?item"):::projected v2("?itemLabel"):::projected v5("?town") v1("?townLabel"):::projected a1((" ")) a2((" ")) c10(["bd:serviceParam"]):::iri c3(["wd:Q624232"]):::iri c6(["wd:Q16551"]):::iri c12(["en"]):::literal v3 --"p:direct/P1435"--> a1 a1 --"p:direct/P279"--> c3 v3 --"p:P1435"--> v4 v3 --"p:direct/P131"--> a2 a2 --"p:direct/P131"--> c6 v3 --"p:direct/P131"--> v5 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v3 -."p:direct/P625".-> v6 end subgraph optional1["(optional)"] style optional1 fill:#bbf,stroke-dasharray: 5 5; v3 -."p:direct/P18".-> v7 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c10 --"wikibase:language"--> c12 end