census-boundaries
v2.0.6
Published
Downloads and converts US Census TIGER data representing all boundaries in the United States
Downloads
20
Maintainers
Readme
census-boundaries
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) => {
}
})