TextTree is a simple format to represent taxonomic trees using indented, plain text. Each row in a TextTree represent a scientific name. Each name can include the authorship and should be given a rank following the name in angular brackets:
Abies alba Mill. [species]
All rank names are case insensitive, but must follow the rank enumeration provided by the GBIF Name Parser.
The indentation level (strictly 2 spaces) and its upper rows represent the classification:
Pinales [order]
Pinaceae Spreng. [family]
Abies [genus]
Abies alba Mill. [species]
Abies balsamea (L.) Mill. [species]
Synonyms are represented as direct, nested children that are prefixed by a *
asterisk.
Pinales [order]
Pinaceae Spreng. [family]
Abies [genus]
Abies alba Mill. [species]
*Pinus picea L.
Abies balsamea (L.) Mill. [species]
*$Pinus balsamea L.
Basionyms can also be marked by prefixing the name with an additional $
dollar symbol as in the Pinus balsamea
example above.
Additional semi structured information can be given as key value pairs in curly brackets. Keys must be all upper case and are delimited with the value by the equality sign. Multiple values can be delimited by a comma. Values should therefore not contain the reserved characters '=' and ','
Abies alba Mill. [genus] {PUB=Miller2019 ENV=terrestrial,marine REF=Döring2021,Banki2022 VERN=de:Traubeneiche,fr:Chêne rouvre,dk:Vintereg,nl:Wintereik}
Comments can be given after each name starting with a #
symbol:
Pinales [order]
Pinaceae Spreng. [family]
Abies [genus]
Abies alba Mill. [species]
*Pinus picea L. [species]
Abies balsamea (L.) Mill. [species]
*$Pinus balsamea L. [species] # this is the basionym of A. balsamea
The Java code provided allows to parse and print text trees. The Tree class offers 2 kind of parsed trees:
- A simple tree which keeps the parsed rank and the name incl authorship as it was given in a single string.
- A parsed tree which uses the GBIF Name Parser to parse each name and provide in addition to the rank and name string also a ParsedName instance.
When parsing badly formatted trees the parser on purpose fails and does not try to read the remaining bits.