module ScientificNameClean::Authorship1

Public Instance Methods

details() click to toggle source
# File lib/biodiversity/parser/scientific_name_clean.rb, line 3748
def details
  val = {:authorship => text_value.strip, :combinationAuthorTeam => b.details[:basionymAuthorTeam], :basionymAuthorTeam => a.details[:basionymAuthorTeam]}
  val[:combinationAuthorTeam].merge!(c.details)
  val
end
pos() click to toggle source
# File lib/biodiversity/parser/scientific_name_clean.rb, line 3744
def pos
  a.pos.merge(b.pos).merge(c.pos)
end
value() click to toggle source
# File lib/biodiversity/parser/scientific_name_clean.rb, line 3740
def value
  a.value + " " + b.value + " " + c.value
end