query-22bc82c57124b3c080871e9ac8d739c4

rq turtle/ttl

Map of sites where an individual has led archaeological fieldwork

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 ?layer ?geo WHERE { 
  ?item wdt:P4345 wd:Q1032387; #The archaeologist in question
        wdt:P625 ?geo ;
        wdt:P31 ?type .
    FILTER (  ?type !=wd:Q839954 ). #filter archaeological sites from appearing in the layer
    SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". 
                            ?type rdfs:label ?layer . 
                            ?item rdfs:label ?itemLabel
}
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?geo"):::projected v2("?item"):::projected v5("?itemLabel"):::projected v4("?layer"):::projected v1("?type") c7(["bd:serviceParam"]):::iri c9(["#91;AUTO_LANGUAGE#93;,en"]):::literal c3(["wd:Q1032387"]):::iri f0[["?type != 'wd:Q839954'"]] f0 --> v1 v2 --"wdt:P4345"--> c3 v2 --"wdt:P625"--> v3 v2 --"wdt:P31"--> v1 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c7 --"wikibase:language"--> c9 v1 --"rdfs:label"--> v4 v2 --"rdfs:label"--> v5 end