https://github.com/mdb/phl-pac-complaints
A thin Node.js module for interacting with Philadelphia's Police Advisory Commission Complaints API.
https://github.com/mdb/phl-pac-complaints
Last synced: over 1 year ago
JSON representation
A thin Node.js module for interacting with Philadelphia's Police Advisory Commission Complaints API.
- Host: GitHub
- URL: https://github.com/mdb/phl-pac-complaints
- Owner: mdb
- Created: 2013-02-07T16:43:58.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2013-05-25T13:14:12.000Z (about 13 years ago)
- Last Synced: 2024-04-24T15:45:04.839Z (about 2 years ago)
- Language: JavaScript
- Size: 184 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[](https://travis-ci.org/mdb/phl-pac-complaints)
# phl-pac-complaints
A thin Node.js client for working with Philadelphia's [Police Advisory Commission Complaints API](http://gis.phila.gov/ArcGIS/rest/services/PhilaGov/PAC_Complaints_2009_2012/MapServer).
This is a work in progress.
Learn more about Philadelphia's PAC Complaints data on [OpenDataPhilly](http://opendataphilly.org/opendata/resource/218/philadelphia-police-advisory-commission-complaints).
## Example Usage
var PhlPacComplaints = require('phl_pac_complaints');
var phlPacComplaints = new PhlPacComplaints();
phlPacComplaints.get({where: "ACTION='Reject'"}, function (error, data) {
if (error) return error;
console.log(data);
});