@beaconave/neighborhood-boundaries

Downloads and converts Zillow neighborhood boundaries as GeoJSON

Usage no npm install needed!

<script type="module">
  import beaconaveNeighborhoodBoundaries from 'https://cdn.skypack.dev/@beaconave/neighborhood-boundaries';
</script>

README

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

  }
})