phl-poll-finder

0.0.1 • Public • Published

Build Status

phl-poll-finder

A Node.js module for finding the polling center for a Philadelphia address.

phl-poll-finder is based on Mark Headd's phlfindpolls gist.

The module uses Philadelphia's 311 Mobile Data Service API.

Getting Started

Install phl-poll-finder:

npm install phl-poll-finder

Require and instantiate phl-poll-finder:

var phlPollFinder = require('phl-poll-finder')();

Example Usage

Get latitude and longitude coordinates for a Philadelpia address:

phlPollFinder.findPoll('1500 market street', function (d) {
  console.log(d);

  /* Example response:
    [{
      attributes: {
        WARD_1: 8,
        DIVISION_1: 15,
        POLLING_PL: 'THE PHOENIX APTS',
        ADDRESS: '1600 ARCH STREET',
        PARKING_AC: 'L',
        BUILDING_A: 'M'
      }
    }]
  */
});

Dependents (0)

Package Sidebar

Install

npm i phl-poll-finder

Weekly Downloads

0

Version

0.0.1

License

none

Last publish

Collaborators

  • mdb