Module: ScientificNameClean::MultinomialName1
- Defined in:
- lib/biodiversity/parser/scientific_name_clean.rb
Instance Method Summary collapse
Instance Method Details
#canonical ⇒ Object
700 701 702 |
# File 'lib/biodiversity/parser/scientific_name_clean.rb', line 700 def canonical a.canonical + " " + b.canonical + " " + c.canonical + " " + d.canonical end |
#details ⇒ Object
712 713 714 |
# File 'lib/biodiversity/parser/scientific_name_clean.rb', line 712 def details a.details.merge(b.details).merge(c.details).merge(d.details) end |
#hybrid ⇒ Object
708 709 710 |
# File 'lib/biodiversity/parser/scientific_name_clean.rb', line 708 def hybrid c.hybrid rescue false end |
#pos ⇒ Object
704 705 706 |
# File 'lib/biodiversity/parser/scientific_name_clean.rb', line 704 def pos a.pos.merge(b.pos).merge(c.pos).merge(d.pos) end |
#value ⇒ Object
696 697 698 |
# File 'lib/biodiversity/parser/scientific_name_clean.rb', line 696 def value a.value + " " + b.value + " " + c.value + " " + d.value end |