census-boundaries

2.0.6 • Public • Published

census-boundaries NPM version Downloads

Downloads and converts US Census TIGER data representing all boundaries in the United States.

You define the processing logic, so you can put it into any DB you like.

By default, this imports the boundaries of every state and incorporated place (~30K boundaries). Takes quite a bit of time depending on your internet speed.

Install

npm install census-boundaries

Example

import census from 'census-boundaries'
 
census({
  // this function is called every time a record is parsed
  onBoundary: (objectType, doc, cb) => {
    cb() // make sure to call the cb
  },
 
  // this function is called when all records are parsed and processed
  onFinish: (err) => {
 
  }
})

Package Sidebar

Install

npm i census-boundaries

Weekly Downloads

1

Version

2.0.6

License

MIT

Unpacked Size

12.3 kB

Total Files

9

Last publish

Collaborators

  • yocontra