npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

dc-mar

v0.6.1

Published

Node module for DC Master Address Repository API

Downloads

37

Readme

dc-mar

Description

Node.js module for using the DC Master Address Repository API.

Installation

npm install dc-mar

Usage example

const client = require('dc-mar').createClient();
client.findLocation('1600 Penn')
    .then(function (addresses) {
        const address = addresses[0];
        console.log([
            address.fullAddress(),
            address.smd(),
            address.latitude(),
            address.longitude(),
        ]);
    });

/*
[ '1600 PENNSYLVANIA AVENUE NW',
  '2A01',
  38.89766766,
  -77.03654468 ]
*/

Exports

Client

This is the main class you'll want to use. If you're creating only one, you may want to use the createClient function.

constructor

const client = new Client(options);

The optional options argument is an object with the following properties, which you probably won't want to change from the defaults unless you have unusual needs:

  • request: a function that accepts a URL or an options object containing url and params (URL parameters) and returns a promise that resolves to an object derived from the JSON in the body of the HTTP response. It defaults to the function exported by request-promise-native with a then added to extract the data property from the response. The function should throw on HTTP errors.

  • baseUrl: a string to be used as the base URL for the Master Address Repository API. It defaults to https://citizenatlas.dc.gov/newwebservices/locationverifier.asmx/.

  • minInterval: an integer setting the minimum interval between API requests in milliseconds. It defaults to 3000, which is the interval DC OCTO asks users to adhere to. Use a lower value only if you're doing testing in which you're mocking the HTTP requests so that you're not actually hitting the server.

request(operation, parameters)

A utility method used by the methods for the various API operations. The operation argument is a string, the name of the API operation. The parameters argument is an object, the parameters to be passed to the operation endpoint. You won't need this method unless you want to call a method that doesn't (yet) have its own method defined. The operations called are always the REST versions, which end in 2 (meaning that 2 is appended to the operation name if it's not already there). The request method returns a promise returned by the request function as defined in the options from the constructor.

findLocation(searchString, raw = false)

When given a string representing an address in Washington, DC, returns a promise that resolves to an array of Address objects corresponding to that string. If the optional raw argument is true, the promise instead resolves to the entire object derived from the JSON response, which may be useful for debugging.

findLocationBatch(searchStrings, raw = false)

When given an array of strings representing addresses in Washington, DC, returns a promise that resolves to an array of arrays of Address objects corresponding to those strings, in order. Like findLocation, it has an optional raw argument.

reverseLatLngGeocoding(latitude, longitude, raw = false)

When given latitude and longitude as floats, returns a promise that resolves to an array of Address objects representing the addresses nearest to those coordinates. Like findLocation, it has an optional raw argument.

createClient(options)

A factory function for creating Client objects, so that you can do

const client = require('dc-mar').createClient();

instead of

const Client = require('dc-mar').Client;
const client = new Client();

Address

This is the class of the objects returned by findLocation and findLocationBatch. You probably won't need to use the constructor directly, but it is exported in case it's needed (for instanceof tests, for example). When JSON.stringify() is called on an Address object, it returns a JSON representation of the properties object (which is what was used to create the Address originally).

constructor

const address = new Address(properties);

The properties argument (required) is an object containing the properties described in the MAR data dictionary, plus a ConfidenceLevel property.

properties

An object containing the properties provided in the constructor. These values should mostly be accessed through other methods like .ward() or through .get() if no specific method exists.

anc()

Method to get the advisory neighborhood commission, or ANC (string).

confidenceLevel()

Method to get the confidence level of the search result (integer). Available only for addresses returned by findLocation or findLocationBatch.

distance()

Method to get the distance from the provided coordinates (float). Available only for addresses returned by reverseLatLngGeocoding.

fullAddress()

Method to get the fullAddress (string).

get(propertyName)

Method to get the value of a property. The propertyName argument is a string. The return value is a string or number, depending on the property, or null.

imageUrl()

Method to get the image URL (string).

latitude()

Method to get the latitude (float).

longitude()

Method to get the longitude (float).

policeDistrict()

Method to get the police district (integer);

precinct()

Method to get the voting precinct (integer).

psa()

Method to get the police service area (integer);

quadrant()

Method to get the quadrant (string).

smd()

Method to get the single member district within the ANC (string).

ward()

Method to get the ward (integer).

zip()

Method to get the ZIP code (string).