Downloads and converts Zillow neighborhood data for the United States.
You define the processing logic, so you can put it into any DB you like.
npm install neighborhood-boundaries
import import from 'neighborhood-boundaries'
import({
// this function is called every time a record is parsed
onBoundary: (doc, cb) => {
cb() // make sure to call the cb
},
// this function is called when all records are parsed and processed
onFinish: (err) => {
}
})