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.
npm install census-boundaries
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) => {
}
})