Skip to content

A list of all US zip codes and their corresponding latitude, longitude, cities, and states, formatted in such a way that allows them to be imported into MongoDB. Credit to The Zip Code Database Project for the data.

License

Notifications You must be signed in to change notification settings

hollinsky/mongo-zips

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 

Repository files navigation

mongo-zips

This is a list of all US zip codes and their corresponding latitude, longitude, cities, and states, formatted in such a way that allows them to be imported into MongoDB. Credit to The Zip Code Database Project for the data.

To use this, you'll basically want to create yourself a collection for the data you'll be putting in, and then copy-paste the whole zips.json file into an insert command on that collection.

I'm no MongoDB master, so there may be an easier way to do this.

The zip code data itself is not mine, nor do I have any way to keep it up to date. It's simply the data that was already available at The Zip Code Database formatted so that it imports into your database. It is provided to you for free, without restriction, as per The Zip Code Database. However, this comes with no guarantees of any kind. If you find a problem with it, you can open an issue or submit a pull request and I can take a look.

Here I've also included a distance function for Javascript, which takes two latitude and longitdue pairs and returns the distance between them in miles.

function distance(lat1, lon1, lat2, lon2)
{
    var calculation = (Math.sin(lat1 * (Math.PI / 180)) *
                       Math.sin(lat2 * (Math.PI / 180)) +
                       Math.cos(lat1 * (Math.PI / 180)) *
                       Math.cos(lat2 * (Math.PI / 180)) *
                       Math.cos((lon1 - lon2) * (Math.PI / 180)));
    var miles = (Math.acos(calculation) / (Math.PI / 180)) * 69.09;
    return miles;
}

I'd love to hear if you use this data in your project! It's certainly not required, I'm just always interested to see the impact of my work. My email is paul@cpcookieman.com.

About

A list of all US zip codes and their corresponding latitude, longitude, cities, and states, formatted in such a way that allows them to be imported into MongoDB. Credit to The Zip Code Database Project for the data.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published