Module: GeoConcerns::Extractors::ModsHelper

Included in:
GeoConcerns::ExternalMetadataFileBehavior
Defined in:
app/models/concerns/geo_concerns/extractors/mods_helper.rb

Constant Summary collapse

NS =
{
  'xmlns:mods' => 'http://www.loc.gov/mods/v3'
}.freeze

Instance Method Summary collapse

Instance Method Details

#extract_mods_metadata(doc) ⇒ Object



7
8
9
10
11
12
# File 'app/models/concerns/geo_concerns/extractors/mods_helper.rb', line 7

def (doc)
  {
    title: [doc.at_xpath('//mods:mods/mods:titleInfo/mods:title', NS).text],
    description: [doc.at_xpath('//mods:mods/mods:abstract', NS).text]
  }
end