1.0.1 • Published 6 years ago

neighborhood-boundaries v1.0.1

Weekly downloads
2
License
MIT
Repository
github
Last release
6 years ago

neighborhood-boundaries NPM version Downloads

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) => {

  }
})