csi

? Look up NAICS (North American Industry Classification System) and SIC (Standard Industrial Classification) codes and how they correlate with one another

  • Owner: leereilly/csi
  • Platform:
  • License:: Other
  • Category::
  • Topic:
  • Like:
    0
      Compare:

Github stars Tracking Chart

Classification of Standard Industry

The North American Industry Classification System (NAICS) is used by business and government to classify business establishments according to type of economic activity (process of production) in Canada, Mexico and the United States. It has largely replaced the older Standard Industrial Classification (SIC) system; however, certain government departments and agencies, such as the U.S. Securities and Exchange Commission (SEC), still use the SIC codes. CSI helps you look those codes up.

Installation

This is a Ruby gem, so you'll need a little Ruby-fu to get it working. If you're not familiar with Ruby, there are CSV and TOML data sets available too that you can load into a spreadsheet, database or parse in your favorite programming language.

For Rubyists:

gem install csi

Or add this to your Gemfile:

gem 'csi', '~> 0.3.3'

For everyone else:

  • All NAICS and SIC codes, classifications, and correlations in TOML
  • NAICS codes and classifications in CSV
  • SIC codes and clasifications in CSV

Usage

You can look up 2-6 digits NAICS codes and 2-4 digit SIC codes. Please note: If you ever cast the String codes to Integers, you're gonna have a bad time. SIC code 011 is 011 as a String and 11 as an Integer. The more you know :dizzy:


naics_record = CSI::naics "928110"
# => <CSI::Record:0x007fb3c5fdbb98]

naics_record.name
# => "National Security"

CSI::naics("336992").name
# => Military Armored Vehicle, Tank, and Tank Component Manufacturing

CSI::naics("611310").name
# => Colleges, Universities, and Professional Schools

CSI::sic("8211").name
# => Elementary and Secondary Schools

CSI::sic("91")
# => "Executive, Legislative, and General Government, except Finance"

You can also lookup correlating SIC codes for NAICS codes and vice-versa!

naics_record = CSI::naics("928110")
# => <CSI::Record:0x007fb3c5fdbb98]

naics_record.name
# => "National Security"

naics_record.correlations
# => "["9711"]"

correlating_sic_record = CSI::sic naics_record.correlations.first
# => <CSI::Record:0x007fd0bd9a4fd0>

correlating_sic_record.name
# => "National Security"

NAICS & SIC Overview

Explaining NAICS and SIC is outside the scope of this README, but you'll find an extremely brief overview below. For more information you can check out the SIC page and NAICS page on Wikipeda.

The larger the coode, the more specific the industry. Here's a NAICS example:

Data Sources

All codes and classifications obtained via http://www.census.gov, so you know it's legit.

Copyright (c) 2013 Lee Reilly. See LICENSE.md for further details.

Many Bothans died to bring you this information.

Overview

Name With Ownerleereilly/csi
Primary LanguageRuby
Program languageRuby (Language Count: 1)
Platform
License:Other
Release Count4
Last Release Namev0.3.3 (Posted on )
First Release Namev0.1.0 (Posted on )
Created At2013-02-16 18:28:35
Pushed At2020-12-23 22:31:14
Last Commit At2015-06-24 10:17:53
Stargazers Count32
Watchers Count4
Fork Count11
Commits Count92
Has Issues Enabled
Issues Count3
Issue Open Count0
Pull Requests Count1
Pull Requests Open Count0
Pull Requests Close Count1
Has Wiki Enabled
Is Archived
Is Fork
Is Locked
Is Mirror
Is Private
To the top