-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
- Loading branch information
There are no files selected for viewing
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) | ||
|
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
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"}} |
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"}} |
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": ""}} |
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"}} |
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": ""}} |
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": ""}} |
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"}} |
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": ""}} |
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": ""}} |
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"}} |
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": ""}} |
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": ""}} |
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"}} |
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"}} |
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": ""}} |
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": ""}} |
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": ""}} |
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": ""}} |
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": ""}} |
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": ""}} |
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": ""}} |
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": ""}} |
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": ""}} |
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": ""}} |
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": ""}} |
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": ""}} |
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"}} |
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": ""}} |
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": ""}} |
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": ""}} |
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": ""}} |
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": ""}} |
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": ""}} |
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": ""}} |
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": ""}} |
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": ""}} |
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": ""}} |
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": ""}} |
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": ""}} |
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": ""}} |
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": ""}} |
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": ""}} |
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": ""}} |
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": ""}} |
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": ""}} |
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": ""}} |
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": ""}} |
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": ""}} |
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": ""}} |
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": ""}} |
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": ""}} |
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": ""}} |
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": ""}} |
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": ""}} |
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": ""}} |
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": ""}} |
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": ""}} |
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": ""}} |
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": ""}} |
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": ""}} |
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": ""}} |
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": ""}} |
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": ""}} |
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": ""}} |
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"}} |
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": ""}} |
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": ""}} |
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": ""}} |
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": ""}} |
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"}} |
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": ""}} |