Skip to content

Commit

Permalink
us zipcodes
Browse files Browse the repository at this point in the history
  • Loading branch information
jlev committed Feb 10, 2016
1 parent 69637c1 commit 632cf9b
Show file tree
Hide file tree
Showing 42,577 changed files with 42,647 additions and 4 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ Contextual geographic and economic data to display on StoriesOfSolidarity.org
* `make places`
* Zipcode tabulation areas from 2012 [TIGER](http://www2.census.gov/geo/tiger/TIGER2012/ZCTA5/) data, joined to [Census Relationship Files](https://www.census.gov/geo/maps-data/data/relationship.html) and converted to geojson by state with [mapshaper](https://github.com/mbloch/mapshaper), and simplified to [topojson](https://github.com/mbostock/topojson).
* `make zcta/state/topo`
* Zipcode data files from [USZipcodes.org](http://www.unitedstateszipcodes.org/zip-code-database/), converted to individual json files with [python](geography/scripts/split_zipcodes.py) by state as geojson

## Economic

Expand Down
4 changes: 2 additions & 2 deletions geography/scripts/split_places.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import sys
import sys, csv
from constants import STATE_ABBR
from utils import relative_path, load_csv_columns, split_dict_by, write_json

Expand Down Expand Up @@ -32,7 +32,7 @@ def geojson_feature(place):
else:
fn = relative_path("../raw/Gaz_places_national.txt")
try:
gazetteer = load_csv_columns(fn, GAZETTEER_COLUMNS, delimiter='\t')
gazetteer = load_csv_columns(fn, GAZETTEER_COLUMNS, delimiter='\t', quoting=csv.QUOTE_NONE)
except IOError:
print "unable to load", fn
sys.exit(-1)
Expand Down
67 changes: 67 additions & 0 deletions geography/scripts/split_zipcodes.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
import sys, csv
from constants import STATE_ABBR
from utils import relative_path, load_csv_columns, split_dict_by, write_json

# map colum names from csv db to output json
ZIPCODE_COLUMNS = {
'zip': 'zip',
'primary_city': 'city',
'acceptable_cities': 'other_cities',
'state': 'state',
'county': 'county',
'latitude': 'lat',
'longitude': 'lon',
}


def geojson_feature(d):
return {
"type": "Feature",
"id": d['zip'],
"geometry": {
"type": "Point",
"coordinates": [float(d['lon']), float(d['lat'])]
},
"properties": {
"city": d['city'],
"other_cities": d['other_cities'],
"state": d['state'],
"county": d['county'],
}
}


if __name__ == "__main__":
if len(sys.argv) > 1:
fn = sys.argv[1]
else:
fn = relative_path("../raw/zip_code_database.csv")
try:
zipcode_db = load_csv_columns(fn, ZIPCODE_COLUMNS)
except IOError:
print "unable to load", fn
sys.exit(-1)

print "loaded %s zipcodes" % len(zipcode_db)

for (abbr, data) in split_dict_by(zipcode_db, 'state').items():
state_name = STATE_ABBR.get(abbr, '').replace(' ', '_')

geojson_collection = {
"type": "FeatureCollection",
"features": list()
}

for place in data:
geojson_collection['features'].append(geojson_feature(place))

print "writing %d places in %s" % (len(data), state_name)
out_fn = relative_path('../zipcodes/%s.geo.json' % state_name)
write_json(out_fn, geojson_collection)

print "writing %d places in %s" % (len(zipcode_db), 'all')
for z in zipcode_db:
out_fn = relative_path('../zipcodes/all/%s.geo.json' % z['zip'])
data = geojson_feature(z)
write_json(out_fn, data)

6 changes: 4 additions & 2 deletions geography/scripts/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,18 @@ def csv_reader_converter(utf8_data, dialect=csv.excel, **kwargs):
yield [unicode(cell, 'latin-1') for cell in row]


def load_csv_columns(filename, column_names=None, delimiter=','):
def load_csv_columns(filename, column_names=None, delimiter=',', quoting=csv.QUOTE_MINIMAL):
r = []
with open(filename, 'r') as f:
data_file = csv_reader_converter(f, delimiter=delimiter, quoting=csv.QUOTE_NONE)
data_file = csv_reader_converter(f, delimiter=delimiter, quoting=quoting)
headers = next(data_file, None) # parse the headers
columns = {}
for (i, h) in enumerate(headers):
h = h.strip()
if h in column_names or not column_names:
columns[i] = h
print "headers", headers
print "columns", column_names

for line in data_file:
d = {}
Expand Down
1 change: 1 addition & 0 deletions geography/zipcodes/Alabama.geo.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions geography/zipcodes/Alaska.geo.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions geography/zipcodes/Arizona.geo.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions geography/zipcodes/Arkansas.geo.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions geography/zipcodes/California.geo.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions geography/zipcodes/Colorado.geo.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions geography/zipcodes/Connecticut.geo.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions geography/zipcodes/Delaware.geo.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions geography/zipcodes/District_of_Columbia.geo.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions geography/zipcodes/Florida.geo.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions geography/zipcodes/Georgia.geo.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions geography/zipcodes/Hawaii.geo.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions geography/zipcodes/Idaho.geo.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions geography/zipcodes/Illinois.geo.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions geography/zipcodes/Indiana.geo.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions geography/zipcodes/Iowa.geo.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions geography/zipcodes/Kansas.geo.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions geography/zipcodes/Kentucky.geo.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions geography/zipcodes/Louisiana.geo.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions geography/zipcodes/Maine.geo.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions geography/zipcodes/Maryland.geo.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions geography/zipcodes/Massachusetts.geo.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions geography/zipcodes/Michigan.geo.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions geography/zipcodes/Minnesota.geo.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions geography/zipcodes/Mississippi.geo.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions geography/zipcodes/Missouri.geo.json
Diff not rendered.
1 change: 1 addition & 0 deletions geography/zipcodes/Montana.geo.json
Diff not rendered.
1 change: 1 addition & 0 deletions geography/zipcodes/Nebraska.geo.json
Diff not rendered.
1 change: 1 addition & 0 deletions geography/zipcodes/Nevada.geo.json
Diff not rendered.
1 change: 1 addition & 0 deletions geography/zipcodes/New_Hampshire.geo.json
Diff not rendered.
1 change: 1 addition & 0 deletions geography/zipcodes/New_Jersey.geo.json
Diff not rendered.
1 change: 1 addition & 0 deletions geography/zipcodes/New_Mexico.geo.json
Diff not rendered.
1 change: 1 addition & 0 deletions geography/zipcodes/New_York.geo.json
Diff not rendered.
1 change: 1 addition & 0 deletions geography/zipcodes/North_Carolina.geo.json
Diff not rendered.
1 change: 1 addition & 0 deletions geography/zipcodes/North_Dakota.geo.json
Diff not rendered.
1 change: 1 addition & 0 deletions geography/zipcodes/Ohio.geo.json
Diff not rendered.
1 change: 1 addition & 0 deletions geography/zipcodes/Oklahoma.geo.json
Diff not rendered.
1 change: 1 addition & 0 deletions geography/zipcodes/Oregon.geo.json
Diff not rendered.
1 change: 1 addition & 0 deletions geography/zipcodes/Pennsylvania.geo.json
Diff not rendered.
1 change: 1 addition & 0 deletions geography/zipcodes/Puerto_Rico.geo.json
Diff not rendered.
1 change: 1 addition & 0 deletions geography/zipcodes/Rhode_Island.geo.json
Diff not rendered.
1 change: 1 addition & 0 deletions geography/zipcodes/South_Carolina.geo.json
Diff not rendered.
1 change: 1 addition & 0 deletions geography/zipcodes/South_Dakota.geo.json
Diff not rendered.
1 change: 1 addition & 0 deletions geography/zipcodes/Tennessee.geo.json
Diff not rendered.
1 change: 1 addition & 0 deletions geography/zipcodes/Texas.geo.json
Diff not rendered.
1 change: 1 addition & 0 deletions geography/zipcodes/Utah.geo.json
Diff not rendered.
1 change: 1 addition & 0 deletions geography/zipcodes/Vermont.geo.json
Diff not rendered.
1 change: 1 addition & 0 deletions geography/zipcodes/Virginia.geo.json
Diff not rendered.
1 change: 1 addition & 0 deletions geography/zipcodes/Washington.geo.json
Diff not rendered.
1 change: 1 addition & 0 deletions geography/zipcodes/West_Virginia.geo.json
Diff not rendered.
1 change: 1 addition & 0 deletions geography/zipcodes/Wisconsin.geo.json
Diff not rendered.
1 change: 1 addition & 0 deletions geography/zipcodes/Wyoming.geo.json
Diff not rendered.
1 change: 1 addition & 0 deletions geography/zipcodes/all/00544.geo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"geometry": {"type": "Point", "coordinates": [-73.04, 40.81]}, "type": "Feature", "id": "00544", "properties": {"other_cities": "", "city": "Holtsville", "state": "NY", "county": "Suffolk County"}}
1 change: 1 addition & 0 deletions geography/zipcodes/all/00601.geo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"geometry": {"type": "Point", "coordinates": [-66.72, 18.16]}, "type": "Feature", "id": "00601", "properties": {"other_cities": "", "city": "Adjuntas", "state": "PR", "county": "Adjuntas"}}
1 change: 1 addition & 0 deletions geography/zipcodes/all/00602.geo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"geometry": {"type": "Point", "coordinates": [-67.18, 18.38]}, "type": "Feature", "id": "00602", "properties": {"other_cities": "", "city": "Aguada", "state": "PR", "county": ""}}
1 change: 1 addition & 0 deletions geography/zipcodes/all/00603.geo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"geometry": {"type": "Point", "coordinates": [-67.15, 18.43]}, "type": "Feature", "id": "00603", "properties": {"other_cities": "Ramey", "city": "Aguadilla", "state": "PR", "county": "Aguadilla"}}
1 change: 1 addition & 0 deletions geography/zipcodes/all/00604.geo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"geometry": {"type": "Point", "coordinates": [-67.15, 18.43]}, "type": "Feature", "id": "00604", "properties": {"other_cities": "Ramey", "city": "Aguadilla", "state": "PR", "county": ""}}
1 change: 1 addition & 0 deletions geography/zipcodes/all/00605.geo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"geometry": {"type": "Point", "coordinates": [-67.15, 18.43]}, "type": "Feature", "id": "00605", "properties": {"other_cities": "", "city": "Aguadilla", "state": "PR", "county": ""}}
1 change: 1 addition & 0 deletions geography/zipcodes/all/00606.geo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"geometry": {"type": "Point", "coordinates": [-66.98, 18.18]}, "type": "Feature", "id": "00606", "properties": {"other_cities": "", "city": "Maricao", "state": "PR", "county": "Maricao"}}
1 change: 1 addition & 0 deletions geography/zipcodes/all/00610.geo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"geometry": {"type": "Point", "coordinates": [-67.14, 18.28]}, "type": "Feature", "id": "00610", "properties": {"other_cities": "", "city": "Anasco", "state": "PR", "county": ""}}
1 change: 1 addition & 0 deletions geography/zipcodes/all/00611.geo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"geometry": {"type": "Point", "coordinates": [-66.79, 18.28]}, "type": "Feature", "id": "00611", "properties": {"other_cities": "", "city": "Angeles", "state": "PR", "county": ""}}
1 change: 1 addition & 0 deletions geography/zipcodes/all/00612.geo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"geometry": {"type": "Point", "coordinates": [-66.73, 18.45]}, "type": "Feature", "id": "00612", "properties": {"other_cities": "", "city": "Arecibo", "state": "PR", "county": "Arecibo"}}
1 change: 1 addition & 0 deletions geography/zipcodes/all/00613.geo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"geometry": {"type": "Point", "coordinates": [-66.73, 18.45]}, "type": "Feature", "id": "00613", "properties": {"other_cities": "", "city": "Arecibo", "state": "PR", "county": ""}}
1 change: 1 addition & 0 deletions geography/zipcodes/all/00614.geo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"geometry": {"type": "Point", "coordinates": [-66.73, 18.45]}, "type": "Feature", "id": "00614", "properties": {"other_cities": "", "city": "Arecibo", "state": "PR", "county": ""}}
1 change: 1 addition & 0 deletions geography/zipcodes/all/00616.geo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"geometry": {"type": "Point", "coordinates": [-66.66, 18.4]}, "type": "Feature", "id": "00616", "properties": {"other_cities": "", "city": "Bajadero", "state": "PR", "county": "Arecibo"}}
1 change: 1 addition & 0 deletions geography/zipcodes/all/00617.geo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"geometry": {"type": "Point", "coordinates": [-66.53, 18.45]}, "type": "Feature", "id": "00617", "properties": {"other_cities": "", "city": "Barceloneta", "state": "PR", "county": "Barceloneta"}}
1 change: 1 addition & 0 deletions geography/zipcodes/all/00622.geo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"geometry": {"type": "Point", "coordinates": [-67.15, 17.99]}, "type": "Feature", "id": "00622", "properties": {"other_cities": "", "city": "Boqueron", "state": "PR", "county": ""}}
1 change: 1 addition & 0 deletions geography/zipcodes/all/00623.geo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"geometry": {"type": "Point", "coordinates": [-67.14, 18.08]}, "type": "Feature", "id": "00623", "properties": {"other_cities": "", "city": "Cabo Rojo", "state": "PR", "county": ""}}
1 change: 1 addition & 0 deletions geography/zipcodes/all/00624.geo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"geometry": {"type": "Point", "coordinates": [-66.72, 18.06]}, "type": "Feature", "id": "00624", "properties": {"other_cities": "", "city": "Penuelas", "state": "PR", "county": ""}}
1 change: 1 addition & 0 deletions geography/zipcodes/all/00627.geo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"geometry": {"type": "Point", "coordinates": [-66.84, 18.48]}, "type": "Feature", "id": "00627", "properties": {"other_cities": "", "city": "Camuy", "state": "PR", "county": ""}}
1 change: 1 addition & 0 deletions geography/zipcodes/all/00631.geo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"geometry": {"type": "Point", "coordinates": [-66.82, 18.19]}, "type": "Feature", "id": "00631", "properties": {"other_cities": "Adjuntas", "city": "Castaner", "state": "PR", "county": ""}}
1 change: 1 addition & 0 deletions geography/zipcodes/all/00636.geo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"geometry": {"type": "Point", "coordinates": [-67.06, 18.15]}, "type": "Feature", "id": "00636", "properties": {"other_cities": "", "city": "Rosario", "state": "PR", "county": ""}}
1 change: 1 addition & 0 deletions geography/zipcodes/all/00637.geo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"geometry": {"type": "Point", "coordinates": [-66.96, 18.08]}, "type": "Feature", "id": "00637", "properties": {"other_cities": "", "city": "Sabana Grande", "state": "PR", "county": ""}}
1 change: 1 addition & 0 deletions geography/zipcodes/all/00638.geo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"geometry": {"type": "Point", "coordinates": [-66.47, 18.33]}, "type": "Feature", "id": "00638", "properties": {"other_cities": "", "city": "Ciales", "state": "PR", "county": ""}}
1 change: 1 addition & 0 deletions geography/zipcodes/all/00641.geo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"geometry": {"type": "Point", "coordinates": [-66.7, 18.27]}, "type": "Feature", "id": "00641", "properties": {"other_cities": "", "city": "Utuado", "state": "PR", "county": ""}}
1 change: 1 addition & 0 deletions geography/zipcodes/all/00646.geo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"geometry": {"type": "Point", "coordinates": [-66.27, 18.47]}, "type": "Feature", "id": "00646", "properties": {"other_cities": "", "city": "Dorado", "state": "PR", "county": ""}}
1 change: 1 addition & 0 deletions geography/zipcodes/all/00647.geo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"geometry": {"type": "Point", "coordinates": [-66.94, 17.96]}, "type": "Feature", "id": "00647", "properties": {"other_cities": "", "city": "Ensenada", "state": "PR", "county": ""}}
1 change: 1 addition & 0 deletions geography/zipcodes/all/00650.geo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"geometry": {"type": "Point", "coordinates": [-66.56, 18.36]}, "type": "Feature", "id": "00650", "properties": {"other_cities": "", "city": "Florida", "state": "PR", "county": ""}}
1 change: 1 addition & 0 deletions geography/zipcodes/all/00652.geo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"geometry": {"type": "Point", "coordinates": [-66.6, 18.45]}, "type": "Feature", "id": "00652", "properties": {"other_cities": "", "city": "Garrochales", "state": "PR", "county": "Arecibo"}}
1 change: 1 addition & 0 deletions geography/zipcodes/all/00653.geo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"geometry": {"type": "Point", "coordinates": [-66.93, 17.97]}, "type": "Feature", "id": "00653", "properties": {"other_cities": "", "city": "Guanica", "state": "PR", "county": ""}}
1 change: 1 addition & 0 deletions geography/zipcodes/all/00656.geo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"geometry": {"type": "Point", "coordinates": [-66.79, 18.02]}, "type": "Feature", "id": "00656", "properties": {"other_cities": "", "city": "Guayanilla", "state": "PR", "county": ""}}
1 change: 1 addition & 0 deletions geography/zipcodes/all/00659.geo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"geometry": {"type": "Point", "coordinates": [-66.82, 18.48]}, "type": "Feature", "id": "00659", "properties": {"other_cities": "", "city": "Hatillo", "state": "PR", "county": ""}}
1 change: 1 addition & 0 deletions geography/zipcodes/all/00660.geo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"geometry": {"type": "Point", "coordinates": [-67.12, 18.14]}, "type": "Feature", "id": "00660", "properties": {"other_cities": "", "city": "Hormigueros", "state": "PR", "county": ""}}
1 change: 1 addition & 0 deletions geography/zipcodes/all/00662.geo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"geometry": {"type": "Point", "coordinates": [-67.02, 18.5]}, "type": "Feature", "id": "00662", "properties": {"other_cities": "", "city": "Isabela", "state": "PR", "county": ""}}
1 change: 1 addition & 0 deletions geography/zipcodes/all/00664.geo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"geometry": {"type": "Point", "coordinates": [-66.59, 18.22]}, "type": "Feature", "id": "00664", "properties": {"other_cities": "", "city": "Jayuya", "state": "PR", "county": ""}}
1 change: 1 addition & 0 deletions geography/zipcodes/all/00667.geo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"geometry": {"type": "Point", "coordinates": [-67.06, 18.04]}, "type": "Feature", "id": "00667", "properties": {"other_cities": "", "city": "Lajas", "state": "PR", "county": ""}}
1 change: 1 addition & 0 deletions geography/zipcodes/all/00669.geo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"geometry": {"type": "Point", "coordinates": [-66.88, 18.29]}, "type": "Feature", "id": "00669", "properties": {"other_cities": "", "city": "Lares", "state": "PR", "county": ""}}
1 change: 1 addition & 0 deletions geography/zipcodes/all/00670.geo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"geometry": {"type": "Point", "coordinates": [-67.06, 18.27]}, "type": "Feature", "id": "00670", "properties": {"other_cities": "", "city": "Las Marias", "state": "PR", "county": ""}}
1 change: 1 addition & 0 deletions geography/zipcodes/all/00674.geo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"geometry": {"type": "Point", "coordinates": [-66.48, 18.43]}, "type": "Feature", "id": "00674", "properties": {"other_cities": "", "city": "Manati", "state": "PR", "county": ""}}
1 change: 1 addition & 0 deletions geography/zipcodes/all/00676.geo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"geometry": {"type": "Point", "coordinates": [-67.11, 18.39]}, "type": "Feature", "id": "00676", "properties": {"other_cities": "", "city": "Moca", "state": "PR", "county": ""}}
1 change: 1 addition & 0 deletions geography/zipcodes/all/00677.geo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"geometry": {"type": "Point", "coordinates": [-67.25, 18.34]}, "type": "Feature", "id": "00677", "properties": {"other_cities": "", "city": "Rincon", "state": "PR", "county": ""}}
1 change: 1 addition & 0 deletions geography/zipcodes/all/00678.geo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"geometry": {"type": "Point", "coordinates": [-66.93, 18.47]}, "type": "Feature", "id": "00678", "properties": {"other_cities": "", "city": "Quebradillas", "state": "PR", "county": ""}}
1 change: 1 addition & 0 deletions geography/zipcodes/all/00680.geo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"geometry": {"type": "Point", "coordinates": [-67.14, 18.2]}, "type": "Feature", "id": "00680", "properties": {"other_cities": "", "city": "Mayaguez", "state": "PR", "county": ""}}
1 change: 1 addition & 0 deletions geography/zipcodes/all/00681.geo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"geometry": {"type": "Point", "coordinates": [-67.14, 18.2]}, "type": "Feature", "id": "00681", "properties": {"other_cities": "", "city": "Mayaguez", "state": "PR", "county": ""}}
1 change: 1 addition & 0 deletions geography/zipcodes/all/00682.geo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"geometry": {"type": "Point", "coordinates": [-67.14, 18.2]}, "type": "Feature", "id": "00682", "properties": {"other_cities": "", "city": "Mayaguez", "state": "PR", "county": ""}}
1 change: 1 addition & 0 deletions geography/zipcodes/all/00683.geo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"geometry": {"type": "Point", "coordinates": [-67.04, 18.08]}, "type": "Feature", "id": "00683", "properties": {"other_cities": "", "city": "San German", "state": "PR", "county": ""}}
1 change: 1 addition & 0 deletions geography/zipcodes/all/00685.geo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"geometry": {"type": "Point", "coordinates": [-66.99, 18.33]}, "type": "Feature", "id": "00685", "properties": {"other_cities": "", "city": "San Sebastian", "state": "PR", "county": ""}}
1 change: 1 addition & 0 deletions geography/zipcodes/all/00687.geo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"geometry": {"type": "Point", "coordinates": [-66.4, 18.32]}, "type": "Feature", "id": "00687", "properties": {"other_cities": "", "city": "Morovis", "state": "PR", "county": ""}}
1 change: 1 addition & 0 deletions geography/zipcodes/all/00688.geo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"geometry": {"type": "Point", "coordinates": [-66.62, 18.38]}, "type": "Feature", "id": "00688", "properties": {"other_cities": "", "city": "Sabana Hoyos", "state": "PR", "county": ""}}
1 change: 1 addition & 0 deletions geography/zipcodes/all/00690.geo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"geometry": {"type": "Point", "coordinates": [-67.09, 18.49]}, "type": "Feature", "id": "00690", "properties": {"other_cities": "", "city": "San Antonio", "state": "PR", "county": ""}}
1 change: 1 addition & 0 deletions geography/zipcodes/all/00692.geo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"geometry": {"type": "Point", "coordinates": [-66.32, 18.41]}, "type": "Feature", "id": "00692", "properties": {"other_cities": "", "city": "Vega Alta", "state": "PR", "county": ""}}
1 change: 1 addition & 0 deletions geography/zipcodes/all/00693.geo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"geometry": {"type": "Point", "coordinates": [-66.39, 18.44]}, "type": "Feature", "id": "00693", "properties": {"other_cities": "", "city": "Vega Baja", "state": "PR", "county": ""}}
1 change: 1 addition & 0 deletions geography/zipcodes/all/00694.geo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"geometry": {"type": "Point", "coordinates": [-66.39, 18.44]}, "type": "Feature", "id": "00694", "properties": {"other_cities": "", "city": "Vega Baja", "state": "PR", "county": ""}}
1 change: 1 addition & 0 deletions geography/zipcodes/all/00698.geo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"geometry": {"type": "Point", "coordinates": [-66.86, 18.03]}, "type": "Feature", "id": "00698", "properties": {"other_cities": "", "city": "Yauco", "state": "PR", "county": ""}}
1 change: 1 addition & 0 deletions geography/zipcodes/all/00703.geo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"geometry": {"type": "Point", "coordinates": [-66.1, 18.25]}, "type": "Feature", "id": "00703", "properties": {"other_cities": "", "city": "Aguas Buenas", "state": "PR", "county": ""}}
1 change: 1 addition & 0 deletions geography/zipcodes/all/00704.geo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"geometry": {"type": "Point", "coordinates": [-66.22, 17.96]}, "type": "Feature", "id": "00704", "properties": {"other_cities": "", "city": "Aguirre", "state": "PR", "county": ""}}
1 change: 1 addition & 0 deletions geography/zipcodes/all/00705.geo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"geometry": {"type": "Point", "coordinates": [-66.26, 18.14]}, "type": "Feature", "id": "00705", "properties": {"other_cities": "", "city": "Aibonito", "state": "PR", "county": ""}}
1 change: 1 addition & 0 deletions geography/zipcodes/all/00707.geo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"geometry": {"type": "Point", "coordinates": [-65.9, 18.0]}, "type": "Feature", "id": "00707", "properties": {"other_cities": "", "city": "Maunabo", "state": "PR", "county": ""}}
1 change: 1 addition & 0 deletions geography/zipcodes/all/00714.geo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"geometry": {"type": "Point", "coordinates": [-66.06, 17.97]}, "type": "Feature", "id": "00714", "properties": {"other_cities": "", "city": "Arroyo", "state": "PR", "county": ""}}
1 change: 1 addition & 0 deletions geography/zipcodes/all/00715.geo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"geometry": {"type": "Point", "coordinates": [-66.56, 18.0]}, "type": "Feature", "id": "00715", "properties": {"other_cities": "Ponce", "city": "Mercedita", "state": "PR", "county": ""}}
1 change: 1 addition & 0 deletions geography/zipcodes/all/00716.geo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"geometry": {"type": "Point", "coordinates": [-66.6, 17.98]}, "type": "Feature", "id": "00716", "properties": {"other_cities": "Mercedita", "city": "Ponce", "state": "PR", "county": ""}}
1 change: 1 addition & 0 deletions geography/zipcodes/all/00717.geo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"geometry": {"type": "Point", "coordinates": [-66.6, 17.98]}, "type": "Feature", "id": "00717", "properties": {"other_cities": "", "city": "Ponce", "state": "PR", "county": ""}}
1 change: 1 addition & 0 deletions geography/zipcodes/all/00718.geo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"geometry": {"type": "Point", "coordinates": [-65.73, 18.21]}, "type": "Feature", "id": "00718", "properties": {"other_cities": "", "city": "Naguabo", "state": "PR", "county": ""}}
1 change: 1 addition & 0 deletions geography/zipcodes/all/00719.geo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"geometry": {"type": "Point", "coordinates": [-66.24, 18.3]}, "type": "Feature", "id": "00719", "properties": {"other_cities": "", "city": "Naranjito", "state": "PR", "county": ""}}
1 change: 1 addition & 0 deletions geography/zipcodes/all/00720.geo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"geometry": {"type": "Point", "coordinates": [-66.39, 18.22]}, "type": "Feature", "id": "00720", "properties": {"other_cities": "", "city": "Orocovis", "state": "PR", "county": ""}}
1 change: 1 addition & 0 deletions geography/zipcodes/all/00721.geo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"geometry": {"type": "Point", "coordinates": [-65.77, 18.37]}, "type": "Feature", "id": "00721", "properties": {"other_cities": "Rio Grande", "city": "Palmer", "state": "PR", "county": ""}}
1 change: 1 addition & 0 deletions geography/zipcodes/all/00723.geo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"geometry": {"type": "Point", "coordinates": [-66.01, 18.0]}, "type": "Feature", "id": "00723", "properties": {"other_cities": "", "city": "Patillas", "state": "PR", "county": "Patillas"}}
1 change: 1 addition & 0 deletions geography/zipcodes/all/00725.geo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"geometry": {"type": "Point", "coordinates": [-66.03, 18.23]}, "type": "Feature", "id": "00725", "properties": {"other_cities": "", "city": "Caguas", "state": "PR", "county": ""}}
1 change: 1 addition & 0 deletions geography/zipcodes/all/00726.geo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"geometry": {"type": "Point", "coordinates": [-66.03, 18.23]}, "type": "Feature", "id": "00726", "properties": {"other_cities": "", "city": "Caguas", "state": "PR", "county": ""}}
1 change: 1 addition & 0 deletions geography/zipcodes/all/00727.geo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"geometry": {"type": "Point", "coordinates": [-66.03, 18.23]}, "type": "Feature", "id": "00727", "properties": {"other_cities": "", "city": "Caguas", "state": "PR", "county": ""}}
1 change: 1 addition & 0 deletions geography/zipcodes/all/00728.geo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"geometry": {"type": "Point", "coordinates": [-66.6, 17.98]}, "type": "Feature", "id": "00728", "properties": {"other_cities": "", "city": "Ponce", "state": "PR", "county": ""}}
1 change: 1 addition & 0 deletions geography/zipcodes/all/00729.geo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"geometry": {"type": "Point", "coordinates": [-65.9, 18.37]}, "type": "Feature", "id": "00729", "properties": {"other_cities": "", "city": "Canovanas", "state": "PR", "county": "Can\u00c3\u00b3vanas"}}
1 change: 1 addition & 0 deletions geography/zipcodes/all/00730.geo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"geometry": {"type": "Point", "coordinates": [-66.6, 17.98]}, "type": "Feature", "id": "00730", "properties": {"other_cities": "", "city": "Ponce", "state": "PR", "county": ""}}
Loading

0 comments on commit 632cf9b

Please sign in to comment.