Sha256: 11cb9d1cd8bd6a9515122191559a9d9c9db6efd4a9d25fbe917c523e9505ed28

Contents?: true

Size: 734 Bytes

Versions: 17

Compression:

Stored size: 734 Bytes

Contents

require 'earth/industry/naics_2002'
require 'earth/industry/naics_2007'

Naics2002Naics2007Concordance.class_eval do
  data_miner do
    import "the US Census NAICS 2002 to NAICS 2007 concordance",
           :url => 'http://www.census.gov/eos/www/naics/concordances/2002_to_2007_NAICS.xls',
           :skip => 3,
           :headers => %w{ 2002_code 2002_title 2007_code 2007_title } do
      key 'row_hash'
      store 'naics_2002_code', :synthesize => proc { |row| "%06d" % row['2002_code'].to_i }
      store 'naics_2007_code', :synthesize => proc { |row| "%06d" % row['2007_code'].to_i }
      store 'naics_2002_note', :synthesize => proc { |row| Naics2002Naics2007Concordance.extract_note row['2002_title'] }
    end
  end
end

Version data entries

17 entries across 17 versions & 1 rubygems

Version Path
earth-1.2.1 lib/earth/industry/naics_2002_naics_2007_concordance/data_miner.rb
earth-1.1.2 lib/earth/industry/naics_2002_naics_2007_concordance/data_miner.rb
earth-1.1.1 lib/earth/industry/naics_2002_naics_2007_concordance/data_miner.rb
earth-1.1.0 lib/earth/industry/naics_2002_naics_2007_concordance/data_miner.rb
earth-1.0.3 lib/earth/industry/naics_2002_naics_2007_concordance/data_miner.rb
earth-1.0.2 lib/earth/industry/naics_2002_naics_2007_concordance/data_miner.rb
earth-1.0.1 lib/earth/industry/naics_2002_naics_2007_concordance/data_miner.rb
earth-1.0.0 lib/earth/industry/naics_2002_naics_2007_concordance/data_miner.rb
earth-0.12.4 lib/earth/industry/naics_2002_naics_2007_concordance/data_miner.rb
earth-0.12.3 lib/earth/industry/naics_2002_naics_2007_concordance/data_miner.rb
earth-0.12.2 lib/earth/industry/naics_2002_naics_2007_concordance/data_miner.rb
earth-0.12.1 lib/earth/industry/naics_2002_naics_2007_concordance/data_miner.rb
earth-0.12.0 lib/earth/industry/naics_2002_naics_2007_concordance/data_miner.rb
earth-0.11.20 lib/earth/industry/naics_2002_naics_2007_concordance/data_miner.rb
earth-0.11.19 lib/earth/industry/naics_2002_naics_2007_concordance/data_miner.rb
earth-0.11.18 lib/earth/industry/naics_2002_naics_2007_concordance/data_miner.rb
earth-0.11.17 lib/earth/industry/naics_2002_naics_2007_concordance/data_miner.rb