Method: Gbif::Species.name_backbone
- Defined in:
- lib/gbifrb/Species.rb
permalink .name_backbone(name:, rank: nil, kingdom: nil, phylum: nil, clazz: nil, order: nil, family: nil, genus: nil, strict: nil, offset: nil, limit: nil, verbose: nil, options: nil) ⇒ Hash
Search the GBIF taxonomic backbone
48 49 50 51 52 53 54 55 56 57 58 |
# File 'lib/gbifrb/Species.rb', line 48 def self.name_backbone(name:, rank: nil, kingdom: nil, phylum: nil, clazz: nil, order: nil, family: nil, genus: nil, strict: nil, offset: nil, limit: nil, verbose: nil, options: nil) arguments = { name: name, rank: rank, kingdom: kingdom, phylum: phylum, class: clazz, order: order, family: family, genus: genus, strict: strict, offset: offset, limit: limit }.tostrings opts = arguments.delete_if { |k, v| v.nil? } Request.new("species/match", opts, verbose, ).perform end |