query-b319aa033aeeb0677b885c15f8583f85
Selects all human who died in 1948 and shows
their paintings that are part of a collection (with possible coordinates) as well as the possible placement with country and possible image
SELECT ?deathdate ?person ?personLabel ?painting ?paintingLabel ?image ?coll ?collLabel ?collcoord ?collcountryLabel ?placeLabel ?placecountryLabel WHERE { VALUES ?year { 1948 } # add more years like VALUES ?year { 1948 1949 } ?person wdt:P31 wd:Q5. ?person p:P570/psv:P570 [wikibase:timeValue ?tv; wikibase:timePrecision ?tp] . FILTER(year(?tv)=?year)
truncate the display of dates given with year och month precision
BIND(IF(?tp=9,substr(?tv,1,4),IF(?tp=10,substr(str(?tv),1,7),substr(str(?tv),1,10))) AS ?deathdate) ?painting wdt:P170 ?person . ?painting wdt:P195 ?coll . OPTIONAL { ?painting wdt:P18 ?image }
FILTER(!BOUND(?image)) # uncommment this if only paintings without image are wanted
OPTIONAL { ?coll wdt:P625 ?collcoord } OPTIONAL { ?coll wdt:P17 ?collcountry } OPTIONAL { ?coll wdt:P276 ?place . OPTIONAL { ?place wdt:P17 ?placecountry } } SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en,nl,pl,ca". } } ORDER BY ?tv ?personLabel ?paintingLabel
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX psv: <http://www.wikidata.org/prop/statement/value/>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#Selects all human who died in 1948 and shows
#their paintings that are part of a collection (with possible coordinates) as well as the possible placement with country and possible image
SELECT ?deathdate ?person ?personLabel ?painting ?paintingLabel ?image ?coll ?collLabel ?collcoord ?collcountryLabel ?placeLabel ?placecountryLabel WHERE {
VALUES ?year { 1948 } # add more years like VALUES ?year { 1948 1949 }
?person wdt:P31 wd:Q5.
?person p:P570/psv:P570 [wikibase:timeValue ?tv; wikibase:timePrecision ?tp] .
FILTER(year(?tv)=?year)
#truncate the display of dates given with year och month precision
BIND(IF(?tp=9,substr(?tv,1,4),IF(?tp=10,substr(str(?tv),1,7),substr(str(?tv),1,10))) AS ?deathdate)
?painting wdt:P170 ?person .
?painting wdt:P195 ?coll .
OPTIONAL { ?painting wdt:P18 ?image }
# FILTER(!BOUND(?image)) # uncommment this if only paintings without image are wanted
OPTIONAL { ?coll wdt:P625 ?collcoord }
OPTIONAL { ?coll wdt:P17 ?collcountry }
OPTIONAL { ?coll wdt:P276 ?place . OPTIONAL { ?place wdt:P17 ?placecountry } }
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en,nl,pl,ca". }
}
ORDER BY ?tv ?personLabel ?paintingLabel