-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Taxon name #3
Comments
scientificName: The full scientific name, with authorship and date information if known. When forming part of a dwc:Identification, this should be the name in lowest level taxonomic rank that can be determined. This term should not contain identification qualifications, which should instead be supplied in the dwc:identificationQualifier term. This seems to be true for species, subspecies and varietis, but not for rank genus. |
The Taxon.tsv is missing a filed containing the uninomial name for taxa above rank genus. This may be fixed by using a different export format |
The ColIDP Format has the following columns in the NameUsage.tsv file:
|
It might also be possible to "hack" uninomial names: PREFIX dwc: <http://rs.tdwg.org/dwc/terms/>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
CONSTRUCT {
?taxon dwc:scientificName ?scientificName ;
dwc:scientificNameAuthorship ?author ;
dwc:rank ?rank ;
?rankIri ?uninomen .
} WHERE {
BIND(<https://www.catalogueoflife.org/data/taxon/87BXZ> as ?taxon)
?taxon dwc:scientificName ?scientificName ;
dwc:scientificNameAuthorship ?author ;
dwc:rank ?rank .
BIND(IRI(CONCAT("http://rs.tdwg.org/dwc/terms/", ?rank)) as ?rankIri)
BIND(STRBEFORE(?scientificName, CONCAT(" ", ?author)) as ?uninomen)
} But this seems rather fragile. @retog opinions? |
Only species have a property with their name without parents and authority.
Only species have a property with their name without parents and authority.
Should find a description of all fields in CSV;
dwc:taxonID
dwc:parentNameUsageID
dwc:acceptedNameUsageID
dwc:originalNameUsageID
dwc:scientificNameID
dwc:datasetID
dwc:taxonomicStatus
dwc:taxonRank
dwc:scientificName
dwc:scientificNameAuthorship
col:notho
dwc:genericName
dwc:infragenericEpithet
dwc:specificEpithet
dwc:infraspecificEpithet
dwc:cultivarEpithet
dwc:nameAccordingTo
dwc:namePublishedIn
dwc:nomenclaturalCode
dwc:nomenclaturalStatus
dwc:taxonRemarks
dcterms:references
The text was updated successfully, but these errors were encountered: