Current version 2019-07-12 17:35:21 UTC
Title: Taxa of ranks not on AntCat (nothing to do for now)

We have these ranks on AntCat: Family, Subfamily, Tribe, Genus, Subgenus, Species and Subspecies

For name records we also have SubtribeName

I have nothing in particular in mind for these, but I created this issue to collect them for the future.


Looks like subtribes
Randomly found
With name type SubtribeName
-cina
-ina (includes repeats from -cina)
-titi

Protonyms

Protonyms is a different story. For example, we have Dorylida - "Dorylinae as family: Leach, 1815: 147 [Dorylida (family-group name)"


Scripts
  • Taxon.joins(:name).where(names: { type: 'SubtribeName' }).each do |t| puts "* {tax #{t.id}} - #{t.type}" end; nil
  • Taxon.where.not(type: ['Species', 'Subspecies']).where('name_cache LIKE ?', "%cina").each do |t| puts "* {tax #{t.id}} - #{t.type}" end; nil
  • Taxon.where.not(type: ['Species', 'Subspecies']).where('name_cache LIKE ?', "%ina").each do |t| puts "* {tax #{t.id}} - #{t.type}" end; nil
  • Taxon.where.not(type: ['Species', 'Subspecies']).where('name_cache LIKE ?', "%titi").each do |t| puts "* {tax #{t.id}} - #{t.type}" end; nil
Revision history
Compare with... Date User Event
cur prev 17:35 12 July 2019 (about 6 years ago) Fredrik Palmkron
cur prev 00:37 19 May 2019 (about 6 years ago) Fredrik Palmkron update
cur prev 19:25 30 April 2019 (over 6 years ago) Fredrik Palmkron update
cur prev 21:03 12 April 2019 (over 6 years ago) Fredrik Palmkron update
cur prev 16:30 12 April 2019 (over 6 years ago) Fredrik Palmkron update
cur prev 16:15 11 April 2019 (over 6 years ago) Fredrik Palmkron update