Skip to content

TorchlightSoftware/naics-sic-crosswalk

Repository files navigation

NAICS to SIC Crosswalk

NAICS has published a crosswalk PDF relevant for the years 2017-2022. I've translated that to JSON and published it as an NPM module. Pull requests welcome if you notice discrepancies.

Usage

Here's some examples of querying the data using lodash.

import xw from 'naics-sic-crosswalk'
import _ from 'lodash'

console.log(_.find(xw, {naics: '111120'}).sic)
console.log(_.find(xw, {naics: '111120'}).sicDescription)
console.log(_.find(xw, {sic: '0119'}).naics)
console.log(_.find(xw, {sic: '0119'}).naicsDescription)

About

NAICS to SIC conversion table in JSON format.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published