Gps2zip

1.0.0 • Public • Published

Gps2zip

Convert GPS latitude longitude pairs to a US zip code.

Quick Start

npm install gps2zip

Usage

var gps = require('gps2zip');
var latitude = 30.2669;
var longitude = 97.7428;
gps.gps2zip(latitude, longitude);
// returns 78701

Unit tests

node tests/basic.js

Accuracy

The output is approximate. The source data is just a list of coordinates, not actual boundaries. The algorithm just finds the minimum euclidean distance between the point in question and the known points. No error checking for points outside the United States.

Related

You can get full street addresses using the Google Maps Reverse Geocoding API: http://code.google.com/apis/maps/documentation/javascript/geocoding.html#ReverseGeocoding

Credit

Zip codes from The Zip Code Database Project http://sourceforge.net/projects/zips/

Package Sidebar

Install

npm i Gps2zip

Weekly Downloads

3

Version

1.0.0

License

none

Last publish

Collaborators

  • nickc