Connect all the ZIP/postal codes in a country in ascending order. The U.S. version is available at zipscribble.us.
All data is coming from geonames, in particular the daily postal code data dumps. The scripts do some work to sort the codes, remove duplicates (several adjacent codes sharing the same location), etc.
The data quality is a bit uneven, with the U.S. data being the best. There are lots of countries for which no data is available at all, and others for which the data looks quite bad.
Additional data sources:
State and county boundaries from the US Census Bureau, converted by Eric Celeste.
There are two scripts that download and process the data to be ready for rendering.
-
download.sh
downloads the files from geonames. It only downloads versions of files that already exist in the directory. To get the process started, usetouch
to create some empty files (US.txt
,CA.txt
,DE.txt
, etc.) and then run download. The files are refreshed every night on geonames, though it's unclear when the data actually changes. -
txt2json.py
is the key script. It parses the CSV data, sorts the ZIP codes, and creates the geoJSON files (zipscribble_XY.json
) as well as thecountryinfo.json
file that lists the bounding boxes and whether the countries have states or not. It has some special constructs to ignore parts of some countries when determining the bounding box, as well as ignoring certain points that cause issues on the map.
- Mapbox
- The GeoJSON format used by the geoJSON layer in Polymaps