query-091c81199a4d9ba792b348438001a3de
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
- 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 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