query-156eead27d58546a1581c9f31af511f7
Female authors in the WomenWiters database of the Huygens Institute for the History of the Netherlands (Q2257204) (part of the Royal Netherlands Academy of Arts and Sciences (Q253439)) property to many Dutch street names. Next goal: to make an overview of paintings of the female authors in this database (P138)named after I am making a map of streets of female authors (in this database) that have a street named after them. In order for the street names on this map to be shown correctly I needed to (manually) add the
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 bd: <http://www.bigdata.com/rdf#>
#defaultView:Map
select ?item ?itemLabel ?itemDescription ?WWid ?coord where {
  ?item wdt:P31 wd:Q79007 .
  ?item wdt:P138 ?vernoemd .
  ?item wdt:P625 ?coord .
  ?vernoemd wdt:P2533 ?WWid .
  ?vernoemd wdt:P21 wd:Q6581072 .
  # place of birth = Kingdom of the Netherlands (Q29999)
  { ?vernoemd wdt:P19 wd:Q29999 }
# OR place of birth within Kingdom of the Netherlands.
UNION  { ?vernoemd wdt:P19 ?pob . ?pob wdt:P131* wd:Q29999 }
  SERVICE wikibase:label {
        bd:serviceParam wikibase:language "nl" .
      }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
  v4("?WWid"):::projected 
  v3("?coord"):::projected 
  v1("?item"):::projected 
  v5("?pob")
  v2("?vernoemd")
  c2(["wd:Q79007"]):::iri 
  c7(["wd:Q6581072"]):::iri 
  c9(["wd:Q29999"]):::iri 
  c12(["bd:serviceParam"]):::iri 
  c14(["nl"]):::literal 
  v1 --"wdt:P31"-->  c2
  v1 --"wdt:P138"-->  v2
  v1 --"wdt:P625"-->  v3
  v2 --"wdt:P2533"-->  v4
  v2 --"wdt:P21"-->  c7
  subgraph union0[" Union "]
  subgraph union0l[" "]
    style union0l fill:#abf,stroke-dasharray: 3 3;
    v2 --"wdt:P19"-->  v5
    v5 --"wdt:P131"-->  c9
  end
  subgraph union0r[" "]
    style union0r fill:#abf,stroke-dasharray: 3 3;
    v2 --"wdt:P19"-->  c9
  end
  union0r <== or ==> union0l
  end
  subgraph s1["http://wikiba.se/ontology#label"]
    style s1 stroke-width:4px;
    c12 --"wikibase:language"-->  c14
  end