Sha256: b42a839cf0290b43527a9038826a3beeebeb266297de65e8975e202ee6b7cacb

Contents?: true

Size: 690 Bytes

Versions: 17

Compression:

Stored size: 690 Bytes

Contents

require 'earth/industry/naics_2002'
require 'earth/industry/sic_1987'

Naics2002Sic1987Concordance.class_eval do
  data_miner do
    import "the US Census SIC 1987 to NAICS 2002 concordance",
           :url => 'http://www.census.gov/eos/www/naics/concordances/1987_SIC_to_2002_NAICS.xls',
           :select => proc {|row| row['SIC'].to_i > 0 } do
      key 'row_hash'
      store 'naics_2002_code', :synthesize => proc { |row| "%06d" % row['2002 NAICS'].to_i }
      store 'sic_1987_code',   :synthesize => proc { |row| "%04d" % row['SIC'].to_i }
      store 'sic_note', :synthesize => proc { |row| Naics2002Sic1987Concordance.extract_note row['SIC Title (and note)'] }
    end
  end
end

Version data entries

17 entries across 17 versions & 1 rubygems

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