query-091c81199a4d9ba792b348438001a3de

rq turtle/ttl

List of scientific/botanical Latin names as mentioned in the Flora Batava SELECT DISTINCT ?scientificNameInFB ?dutchTrivialNameInFB ?scientificNameModern ?dutchTrivialNameModern ?plate ?plateLabel ?plateImage WHERE { wd:Q117860156 wdt:P527 ?volume. ?volume wdt:P527 ?plate. OPTIONAL{?plate wdt:P18 ?plateImage.}

?plate wdt:P1476 ?scientificNameInFB. FILTER(lang(?scientificNameInFB)='la') ?plate wdt:P1476 ?dutchTrivialNameInFB. FILTER(lang(?dutchTrivialNameInFB)='nl') ?plate wdt:P180 ?plantDecpicted. ?plantDecpicted rdfs:label ?scientificNameModern . FILTER(lang(?scientificNameModern)='la') ?plantDecpicted rdfs:label?dutchTrivialNameModern . FILTER(lang(?dutchTrivialNameModern)='nl')

SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],nl". } } ORDER BY ?scientificNameInFB

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#>
#List of scientific/botanical Latin names as mentioned in the Flora Batava
SELECT DISTINCT 
?scientificNameInFB ?dutchTrivialNameInFB ?scientificNameModern ?dutchTrivialNameModern
?plate ?plateLabel ?plateImage
WHERE 
{
  wd:Q117860156 wdt:P527 ?volume.
  ?volume wdt:P527 ?plate.
  OPTIONAL{?plate wdt:P18 ?plateImage.}

  ?plate wdt:P1476 ?scientificNameInFB. FILTER(lang(?scientificNameInFB)='la')
  ?plate wdt:P1476 ?dutchTrivialNameInFB. FILTER(lang(?dutchTrivialNameInFB)='nl')
  ?plate wdt:P180 ?plantDecpicted.
  ?plantDecpicted rdfs:label ?scientificNameModern . FILTER(lang(?scientificNameModern)='la')
  ?plantDecpicted rdfs:label?dutchTrivialNameModern . FILTER(lang(?dutchTrivialNameModern)='nl')

  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],nl". } 
}
ORDER BY ?scientificNameInFB

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v4("?dutchTrivialNameInFB"):::projected v2("?dutchTrivialNameModern"):::projected v8("?plantDecpicted") v6("?plate"):::projected v7("?plateImage"):::projected v1("?scientificNameInFB"):::projected v3("?scientificNameModern"):::projected v5("?volume") c10(["bd:serviceParam"]):::iri c3(["wd:Q117860156"]):::iri c12(["#91;AUTO_LANGUAGE#93;,nl"]):::literal f0[["?dutchTrivialNameModern = 'nl'"]] f0 --> v2 f1[["?scientificNameModern = 'la'"]] f1 --> v3 f2[["?dutchTrivialNameInFB = 'nl'"]] f2 --> v4 f3[["?scientificNameInFB = 'la'"]] f3 --> v1 c3 --"wdt:P527"--> v5 v5 --"wdt:P527"--> v6 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v6 -."wdt:P18".-> v7 end v6 --"wdt:P1476"--> v1 v6 --"wdt:P1476"--> v4 v6 --"wdt:P180"--> v8 v8 --"rdfs:label"--> v3 v8 --"rdfs:label"--> v2 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c10 --"wikibase:language"--> c12 end