neighborhood-boundaries
v1.0.1
Published
Downloads and converts Zillow neighborhood boundaries as GeoJSON
Downloads
7
Maintainers
Readme
neighborhood-boundaries
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.
Install
npm install neighborhood-boundaries
Example
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) => {
}
})