From 6756d83dc31f237f33864d82d380961a6eb1a3e8 Mon Sep 17 00:00:00 2001 From: Dylan Murray Date: Thu, 13 Jul 2017 14:12:22 -0400 Subject: [PATCH] Updated all APB examples to list dependencies in their metadata --- Dockerfile | 30 + README.md | 18 + apb.yml | 37 + playbooks/deprovision.yml | 28 + playbooks/provision.yml | 9 + roles/provision-pyzip-demo-db-apb/README | 41 + .../defaults/main.yml | 9 + .../files/airports.ddl | 16 + .../files/airports.sql | 181 +++ .../files/parkcoord.sql | 569 +++++++ .../files/zipcodes.ddl | 17 + .../files/zipcodes.sql | 1444 +++++++++++++++++ .../tasks/main.yml | 122 ++ 13 files changed, 2521 insertions(+) create mode 100644 Dockerfile create mode 100755 README.md create mode 100644 apb.yml create mode 100644 playbooks/deprovision.yml create mode 100644 playbooks/provision.yml create mode 100644 roles/provision-pyzip-demo-db-apb/README create mode 100644 roles/provision-pyzip-demo-db-apb/defaults/main.yml create mode 100644 roles/provision-pyzip-demo-db-apb/files/airports.ddl create mode 100644 roles/provision-pyzip-demo-db-apb/files/airports.sql create mode 100644 roles/provision-pyzip-demo-db-apb/files/parkcoord.sql create mode 100644 roles/provision-pyzip-demo-db-apb/files/zipcodes.ddl create mode 100644 roles/provision-pyzip-demo-db-apb/files/zipcodes.sql create mode 100644 roles/provision-pyzip-demo-db-apb/tasks/main.yml diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..7f1df1e --- /dev/null +++ b/Dockerfile @@ -0,0 +1,30 @@ +FROM ansibleplaybookbundle/apb-base +# MAINTAINER {{ $MAINTAINER }} + +LABEL "com.redhat.apb.version"="0.1.0" +LABEL "com.redhat.apb.spec"=\ +"aWQ6IDY0Mjk3ZTg4LTY1N2MtNDZhYi1iYjUwLTJhZjdmODRlNWVjNgpuYW1lOiBweXppcC1kZW1v\ +LWRiLWFwYgppbWFnZTogYW5zaWJsZXBsYXlib29rYnVuZGxlL3B5emlwLWRlbW8tZGItYXBiCmRl\ +c2NyaXB0aW9uOiBQeXRob24gWmlwIERlbW8gRGF0YWJhc2UgQVBCIEltcGxlbWVudGF0aW9uCmJp\ +bmRhYmxlOiBUcnVlCmFzeW5jOiBvcHRpb25hbAptZXRhZGF0YToKICBkaXNwbGF5TmFtZTogUHl6\ +aXAgRGVtbyBEYXRhYmFzZSAoQVBCKQogIGxvbmdEZXNjcmlwdGlvbjogQSBkYXRhYmFzZSB3aXRo\ +IEdJUyBzdXBwb3J0IGFuZCBzZWVkZWQgZGF0YSBmb3IgYSBkZW1vbnN0cmF0aW9uIHB5dGhvbiB3\ +ZWJhcHAsIGh0dHBzOi8vZ2l0aHViLmNvbS9mdXNvci9weS16aXAtZGVtbwogIGltYWdlVXJsOiAK\ +ICBkb2N1bWVudGF0aW9uVXJsOiBodHRwczovL2dpdGh1Yi5jb20vZnVzb3IvYXBiLWV4YW1wbGVz\ +L3RyZWUvbWFzdGVyL3B5emlwLWRlbW8tZGItYXBiCiAgZGVwZW5kZW5jaWVzOgogICAgLSBkb2Nr\ +ZXIuaW8vZmFiaWFudmYvcG9zdGdyZXNxbDpwb3N0Z2lzCiAgICAKcGFyYW1ldGVyczoKICAtIGRh\ +dGFiYXNlX25hbWU6CiAgICAgIGRlZmF1bHQ6IGFkbWluCiAgICAgIHR5cGU6IHN0cmluZwogICAg\ +ICB0aXRsZTogRGF0YWJhc2UgTmFtZQogICAgICAKICAtIGRhdGFiYXNlX3Bhc3N3b3JkOgogICAg\ +ICBkZWZhdWx0OiBhZG1pbgogICAgICB0eXBlOiBzdHJpbmcKICAgICAgZGVzY3JpcHRpb246IEEg\ +cmFuZG9tIGFscGhhbnVtZXJpYyBzdHJpbmcgaWYgbGVmdCBibGFuawogICAgICB0aXRsZTogRGF0\ +YWJhc2UgUGFzc3dvcmQKICAgICAgCiAgLSBkYXRhYmFzZV91c2VyOgogICAgICBkZWZhdWx0OiBh\ +ZG1pbgogICAgICB0aXRsZTogRGF0YWJhc2UgVXNlcgogICAgICB0eXBlOiBzdHJpbmcKICAgICAg\ +bWF4bGVuZ3RoOiA2MwogICAgICAKICAKcmVxdWlyZWQ6CiAgLSBkYXRhYmFzZV9uYW1lCiAgLSBk\ +YXRhYmFzZV91c2VyCiAg" + +COPY roles /opt/ansible/roles +COPY playbooks /opt/apb/actions + +RUN yum install -y postgresql && yum clean all + +USER apb diff --git a/README.md b/README.md new file mode 100755 index 0000000..c6db16a --- /dev/null +++ b/README.md @@ -0,0 +1,18 @@ +# pyzip-demo-db-apb +A Demo Database APB for the [Python Zipcode App](https://github.com/fusor/py-zip-demo) + +## What it does +Deploys a demo database container with seeded [data](./roles/provision-pyzip-demo-db-apb/files/) + +## Parameters +Name | Default Value | Required | Description +---|---|---|--- +database_name | admin | Yes | database name +database_user | admin | Yes | database username +database_password | admin | No | database password + +## Environment Variables +Name | Default Value | Description +---|---|--- +NAMESPACE | pyzip-demo-db-apb | Namespace to deploy the cluster in +DBSERVICE_NAME | dbservice | Service name for database diff --git a/apb.yml b/apb.yml new file mode 100644 index 0000000..6b0d646 --- /dev/null +++ b/apb.yml @@ -0,0 +1,37 @@ +id: 64297e88-657c-46ab-bb50-2af7f84e5ec6 +name: pyzip-demo-db-apb +image: ansibleplaybookbundle/pyzip-demo-db-apb +description: Python Zip Demo Database APB Implementation +bindable: True +async: optional +metadata: + displayName: Pyzip Demo Database (APB) + longDescription: A database with GIS support and seeded data for a demonstration python webapp, https://github.com/fusor/py-zip-demo + imageUrl: + documentationUrl: https://github.com/fusor/apb-examples/tree/master/pyzip-demo-db-apb + dependencies: + - docker.io/fabianvf/postgresql:postgis + +parameters: + - database_name: + default: admin + type: string + title: Database Name + + - database_password: + default: admin + type: string + description: A random alphanumeric string if left blank + title: Database Password + + - database_user: + default: admin + title: Database User + type: string + maxlength: 63 + + +required: + - database_name + - database_user + \ No newline at end of file diff --git a/playbooks/deprovision.yml b/playbooks/deprovision.yml new file mode 100644 index 0000000..d5d47cb --- /dev/null +++ b/playbooks/deprovision.yml @@ -0,0 +1,28 @@ +- name: Deprovision pyzip-demo-db-apb from openshift + hosts: localhost + gather_facts: false + connection: local + post_tasks: + - k8s_v1_persistent_volume_claim: + name: postgresql + namespace: '{{ namespace }}' + state: absent + - openshift_v1_deployment_config: + name: postgresql + namespace: '{{ namespace }}' + replicas: 0 + state: absent + - k8s_v1_service: + name: '{{ postgresql_service_name }}' + namespace: '{{ namespace }}' + state: absent + - openshift_v1_image_stream: + name: postgresql + namespace: '{{ namespace }}' + state: absent + roles: + - role: ansible.kubernetes-modules + install_python_requirements: no + vars: + namespace: '{{ namespace }}' + postgresql_service_name: '{{ postgresql_service_name }}' diff --git a/playbooks/provision.yml b/playbooks/provision.yml new file mode 100644 index 0000000..0a5ab42 --- /dev/null +++ b/playbooks/provision.yml @@ -0,0 +1,9 @@ +- name: Deploy pyzip-demo-db-apb to openshift + hosts: localhost + gather_facts: false + connection: local + roles: + - role: ansible.kubernetes-modules + install_python_requirements: no + - role: provision-pyzip-demo-db-apb + playbook_debug: false diff --git a/roles/provision-pyzip-demo-db-apb/README b/roles/provision-pyzip-demo-db-apb/README new file mode 100644 index 0000000..0531570 --- /dev/null +++ b/roles/provision-pyzip-demo-db-apb/README @@ -0,0 +1,41 @@ +Provision PyZip-Demo-DB-APB +=== + +Automates the deployment of Python pyzip-demo-db-apb to Openshift. + + +Requirements +------------ + +Any pre-requisites that may not be covered by Ansible itself or the role should be mentioned here. For instance, if the role uses the EC2 module, it may be a good idea to mention in this section that the boto package is required. + +Role Variables +-------------- + +A description of the settable variables for this role should go here, including any variables that are in defaults/main.yml, vars/main.yml, and any variables that can/should be set via parameters to the role. Any variables that are read from other roles and/or the global scope (ie. hostvars, group vars, etc.) should be mentioned here as well. + +Dependencies +------------ + +A list of other roles hosted on Galaxy should go here, plus any details in regards to parameters that may need to be set for other roles, or variables that are used from other roles. + +Example Playbook +---------------- + +Running provision-pyzip-demo-db-apb is easy! Here's a sample playbook: + + - hosts: localhost + gather_facts: no + connection: local + roles: + - { role: provision-pyzip-demo-db-apb } + +License +------- + +BSD + +Author Information +------------------ + +An optional section for the role authors to include contact information, or a website (HTML is not allowed). diff --git a/roles/provision-pyzip-demo-db-apb/defaults/main.yml b/roles/provision-pyzip-demo-db-apb/defaults/main.yml new file mode 100644 index 0000000..a604044 --- /dev/null +++ b/roles/provision-pyzip-demo-db-apb/defaults/main.yml @@ -0,0 +1,9 @@ +--- +# defaults for provision-pyzip-demo-db-apb + +playbook_debug: no +namespace: "{{ lookup('env','NAMESPACE') | default('pyzip-demo-apb', true) }}" +dbservice_name: "{{ lookup('env','DBSERVICE_NAME') | default('dbservice', true) }}" +database_name: "{{ lookup('env','POSTGRESQL_DATABASE') | default('admin', true) }}" +database_password: "{{ lookup('env','POSTGRESQL_PASSWORD') | default('admin', true) }}" +database_user: "{{ lookup('env','POSTGRESQL_USER') | default('admin', true) }}" diff --git a/roles/provision-pyzip-demo-db-apb/files/airports.ddl b/roles/provision-pyzip-demo-db-apb/files/airports.ddl new file mode 100644 index 0000000..5d17c20 --- /dev/null +++ b/roles/provision-pyzip-demo-db-apb/files/airports.ddl @@ -0,0 +1,16 @@ +CREATE TABLE airports +( + name character varying(256), + code character varying(256) NOT NULL, + passengers int, + the_geom geometry(Geometry,4326), + CONSTRAINT airports_pk PRIMARY KEY (code ) +) +WITH ( + OIDS=FALSE +); + +CREATE INDEX geom_index_airports + ON airports + USING gist + (the_geom ); diff --git a/roles/provision-pyzip-demo-db-apb/files/airports.sql b/roles/provision-pyzip-demo-db-apb/files/airports.sql new file mode 100644 index 0000000..3671f4c --- /dev/null +++ b/roles/provision-pyzip-demo-db-apb/files/airports.sql @@ -0,0 +1,181 @@ +INSERT into airports ( name, code, passengers, the_geom) VALUES ('MELBOURNE INTERNATIONAL AIRPORT','MLB',180441, ST_GeomFromText('POINT(-80.645257 28.102753)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('HENRY E ROHLSEN AIRPORT','STX',187211, ST_GeomFromText('POINT(-64.801722 17.701556)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('CHARLOTTESVILLE-ALBEMARLE AIRPORT','CHO',197776, ST_GeomFromText('POINT(-78.452861 38.138639)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('MONTGOMERY REGIONAL (DANNELLY FIELD) AIRPORT','MGM',194540, ST_GeomFromText('POINT(-86.393972 32.300639)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('AUGUSTA REGIONAL AT BUSH FIELD','AGS',246587, ST_GeomFromText('POINT(-81.9645 33.369944)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('BISMARCK MUNICIPAL AIRPORT','BIS',196285, ST_GeomFromText('POINT(-100.74575 46.772722)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('PHOENIX-MESA GATEWAY AIRPORT','IWA',417862, ST_GeomFromText('POINT(-111.655472 33.307833)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('FAYETTEVILLE REGIONAL/GRANNIS FIELD','FAY',258986, ST_GeomFromText('POINT(-78.880278 34.991222)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('TRI-CITIES REGIONAL AIRPORT','TRI',202114, ST_GeomFromText('POINT(-82.407417 36.475222)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('MONTEREY PENINSULA AIRPORT','MRY',190527, ST_GeomFromText('POINT(-121.842944 36.587)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('LAFAYETTE REGIONAL AIRPORT','LFT',220211, ST_GeomFromText('POINT(-91.987611 30.20525)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('GRAND JUNCTION REGIONAL AIRPORT','GJT',219358, ST_GeomFromText('POINT(-108.526735 39.122413)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('EAGLE COUNTY REGIONAL AIRPORT','EGE',201010, ST_GeomFromText('POINT(-106.915935 39.642761)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('ASPEN-PITKIN COUNTY/SARDY FIELD','ASE',222755, ST_GeomFromText('POINT(-106.868861 39.223167)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('WILKES-BARRE/SCRANTON INTERNATIONAL AIRPORT','AVP',213422, ST_GeomFromText('POINT(-75.723389 41.338472)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('KEY WEST INTERNATIONAL AIRPORT','EYW',287359, ST_GeomFromText('POINT(-81.759556 24.556111)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('ROBERT GRAY ARMY AIRFIELD','GRK',243861, ST_GeomFromText('POINT(-97.828917 31.06725)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('ROBERTS FIELD AIRPORT','RDM',226400, ST_GeomFromText('POINT(-121.149972 44.254056)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('RAFAEL HERNANDEZ AIRPORT','BQN',241976, ST_GeomFromText('POINT(-67.129444 18.494861)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('TRI-CITIES AIRPORT','PSC',312915, ST_GeomFromText('POINT(-119.119028 46.264694)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('YEAGER AIRPORT','CRW',264818, ST_GeomFromText('POINT(-81.593194 38.373139)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('NANTUCKET MEMORIAL AIRPORT','ACK',201390, ST_GeomFromText('POINT(-70.060306 41.253111)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('OUTAGAMIE COUNTY REGIONAL AIRPORT','ATW',272471, ST_GeomFromText('POINT(-88.519083 44.258083)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('CENTRAL ILLINOIS REGIONAL AIRPORT AT BLOOMINGTON-NORMAL AIRPORT','BMI',274677, ST_GeomFromText('POINT(-88.915917 40.477111)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('RAPID CITY REGIONAL AIRPORT','RAP',284126, ST_GeomFromText('POINT(-103.057361 44.045333)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('BELLINGHAM INTERNATIONAL AIRPORT','BLI',398368, ST_GeomFromText('POINT(-122.537528 48.792694)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('GREATER PEORIA REGIONAL AIRPORT','PIA',249595, ST_GeomFromText('POINT(-89.693258 40.664201)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('ASHEVILLE REGIONAL AIRPORT','AVL',371226, ST_GeomFromText('POINT(-82.541806 35.436194)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('FORT WAYNE INTERNATIONAL AIRPORT','FWA',273056, ST_GeomFromText('POINT(-85.195167 40.978472)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('DAYTONA BEACH INTERNATIONAL AIRPORT','DAB',246627, ST_GeomFromText('POINT(-81.058056 29.179917)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('SHREVEPORT REGIONAL AIRPORT','SHV',237945, ST_GeomFromText('POINT(-93.825611 32.446611)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('MOBILE REGIONAL AIRPORT','MOB',277232, ST_GeomFromText('POINT(-88.242833 30.691417)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('ROGUE VALLEY INTERNATIONAL - MEDFORD AIRPORT','MFR',310824, ST_GeomFromText('POINT(-122.8735 42.374222)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('MISSOULA INTERNATIONAL AIRPORT','MSO',289875, ST_GeomFromText('POINT(-114.090556 46.916306)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('GRAND CANYON NATIONAL PARK AIRPORT','GCN',318622, ST_GeomFromText('POINT(-112.146972 35.952361)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('LOVELL FIELD AIRPORT','CHA',292830, ST_GeomFromText('POINT(-85.203556 35.035194)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('JACKSON HOLE AIRPORT','JAC',288325, ST_GeomFromText('POINT(-110.73775 43.607333)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('ROANOKE REGIONAL/WOODRUM FIELD AIRPORT','ROA',316478, ST_GeomFromText('POINT(-79.975417 37.325472)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('HECTOR INTERNATIONAL AIRPORT','FAR',365963, ST_GeomFromText('POINT(-96.815764 46.92065)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('GALLATIN FIELD AIRPORT','BZN',364521, ST_GeomFromText('POINT(-111.152022 45.77757)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('BANGOR INTERNATIONAL AIRPORT','BGR',416328, ST_GeomFromText('POINT(-68.828139 44.807444)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('SOUTH BEND REGIONAL AIRPORT','SBN',317096, ST_GeomFromText('POINT(-86.317333 41.708222)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('MAHLON SWEET FIELD AIRPORT','EUG',369397, ST_GeomFromText('POINT(-123.211972 44.124583)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('ST PETERSBURG-CLEARWATER INTERNATIONAL AIRPORT','PIE',384394, ST_GeomFromText('POINT(-82.687417 27.91)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('JOE FOSS FIELD AIRPORT','FSD',355939, ST_GeomFromText('POINT(-96.741914 43.582013)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('MC ALLEN MILLER INTERNATIONAL AIRPORT','MFE',344302, ST_GeomFromText('POINT(-98.238611 26.175833)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('EGLIN AIR FORCE BASE','VPS',348979, ST_GeomFromText('POINT(-86.526044 30.483219)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('JUNEAU INTERNATIONAL AIRPORT','JNU',344057, ST_GeomFromText('POINT(-134.576278 58.354972)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('SPRINGFIELD-BRANSON NATIONAL AIRPORT','SGF',381172, ST_GeomFromText('POINT(-93.388639 37.245667)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('CORPUS CHRISTI INTERNATIONAL AIRPORT','CRP',339193, ST_GeomFromText('POINT(-97.501222 27.770361)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('LEHIGH VALLEY INTERNATIONAL AIRPORT','ABE',414427, ST_GeomFromText('POINT(-75.440401 40.652363)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('STEWART INTERNATIONAL AIRPORT','SWF',201684, ST_GeomFromText('POINT(-74.104833 41.504111)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('TALLAHASSEE REGIONAL AIRPORT','TLH',325097, ST_GeomFromText('POINT(-84.350333 30.396528)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('WILMINGTON INTERNATIONAL AIRPORT','ILM',408058, ST_GeomFromText('POINT(-77.902558 34.270603)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('AUSTIN STRAUBEL INTERNATIONAL AIRPORT','GRB',349733, ST_GeomFromText('POINT(-88.129722 44.484639)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('SANTA BARBARA MUNICIPAL AIRPORT','SBA',382894, ST_GeomFromText('POINT(-119.8415 34.426194)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('BATON ROUGE METROPOLITAN, RYAN FIELD','BTR',382687, ST_GeomFromText('POINT(-91.149877 30.532906)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('VALLEY INTERNATIONAL AIRPORT','HRL',373438, ST_GeomFromText('POINT(-97.654389 26.2285)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('BILLINGS LOGAN INTERNATIONAL AIRPORT','BIL',388329, ST_GeomFromText('POINT(-108.542889 45.807667)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('RICK HUSBAND AMARILLO INTERNATIONAL AIRPORT','AMA',394593, ST_GeomFromText('POINT(-101.705917 35.219361)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('FAIRBANKS INTERNATIONAL AIRPORT','FAI',435392, ST_GeomFromText('POINT(-147.856448 64.81511)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('QUAD CITY INTERNATIONAL AIRPORT','MLI',477086, ST_GeomFromText('POINT(-90.50752 41.448286)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('GULFPORT-BILOXI INTERNATIONAL AIRPORT','GPT',461072, ST_GeomFromText('POINT(-89.070097 30.407269)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('MIDLAND INTERNATIONAL AIRPORT','MAF',445043, ST_GeomFromText('POINT(-102.201914 31.942528)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('BLUE GRASS AIRPORT','LEX',539492, ST_GeomFromText('POINT(-84.605889 38.0365)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('THE EASTERN IOWA AIRPORT','CID',462670, ST_GeomFromText('POINT(-91.710799 41.884689)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('NEWPORT NEWS/WILLIAMSBURG INTERNATIONAL AIRPORT','PHF',519906, ST_GeomFromText('POINT(-76.492972 37.131889)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('BISHOP INTERNATIONAL AIRPORT','FNT',497649, ST_GeomFromText('POINT(-83.743667 42.965417)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('ATLANTIC CITY INTERNATIONAL AIRPORT','ACY',669470, ST_GeomFromText('POINT(-74.577167 39.457583)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('NORTHWEST ARKANSAS REGIONAL AIRPORT','XNA',549195, ST_GeomFromText('POINT(-94.306811 36.281869)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('LUBBOCK PRESTON SMITH INTERNATIONAL AIRPORT','LBB',508858, ST_GeomFromText('POINT(-101.822778 33.663639)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('COLUMBIA METROPOLITAN AIRPORT','CAE',486879, ST_GeomFromText('POINT(-81.119528 33.938833)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('CYRIL E KING AIRPORT','STT',606137, ST_GeomFromText('POINT(-64.973361 18.337306)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('FRESNO YOSEMITE INTERNATIONAL AIRPORT','FAT',569879, ST_GeomFromText('POINT(-119.718139 36.776194)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('HUNTSVILLE INTERNATIONAL AIRPORT-CARL T JONES FIELD','HSV',606127, ST_GeomFromText('POINT(-86.775056 34.637194)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('HARRISBURG INTERNATIONAL AIRPORT','MDT',664968, ST_GeomFromText('POINT(-76.763404 40.193495)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('HILO INTERNATIONAL AIRPORT','ITO',611782, ST_GeomFromText('POINT(-155.04847 19.720263)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('JACKSON-EVERS INTERNATIONAL AIRPORT','JAN',618373, ST_GeomFromText('POINT(-90.075889 32.311167)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('GREENVILLE SPARTANBURG INTERNATIONAL AIRPORT','GSP',642512, ST_GeomFromText('POINT(-82.218861 34.895667)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('MYRTLE BEACH INTERNATIONAL AIRPORT','MYR',782737, ST_GeomFromText('POINT(-78.928333 33.67975)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('AKRON-CANTON REGIONAL AIRPORT','CAK',771107, ST_GeomFromText('POINT(-81.442194 40.916083)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('DANE COUNTY REGIONAL-TRUAX FIELD','MSN',766953, ST_GeomFromText('POINT(-89.337514 43.139858)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('BURLINGTON INTERNATIONAL AIRPORT','BTV',640790, ST_GeomFromText('POINT(-73.153278 44.471861)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('SARASOTA/BRADENTON INTERNATIONAL AIRPORT','SRQ',670992, ST_GeomFromText('POINT(-82.554389 27.395444)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('PENSACOLA REGIONAL AIRPORT','PNS',729748, ST_GeomFromText('POINT(-87.186612 30.473426)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('PALM SPRINGS INTERNATIONAL AIRPORT','PSP',751068, ST_GeomFromText('POINT(-116.506694 33.829667)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('WICHITA MID-CONTINENT AIRPORT','ICT',751601, ST_GeomFromText('POINT(-97.433056 37.649944)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('MC GHEE TYSON AIRPORT','TYS',804917, ST_GeomFromText('POINT(-83.994028 35.810972)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('PORTLAND INTERNATIONAL AIRPORT','PWM',851566, ST_GeomFromText('POINT(-70.309278 43.646167)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('GERALD R. FORD INTERNATIONAL AIRPORT','GRR',1089002, ST_GeomFromText('POINT(-85.522806 42.880833)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('WESTCHESTER COUNTY AIRPORT','HPN',999831, ST_GeomFromText('POINT(-73.707556 41.066944)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('DES MOINES INTERNATIONAL AIRPORT','DSM',898840, ST_GeomFromText('POINT(-93.663083 41.533972)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('ORLANDO SANFORD INTERNATIONAL AIRPORT','SFB',553892, ST_GeomFromText('POINT(-81.235522 28.776701)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('SAVANNAH/HILTON HEAD INTERNATIONAL AIRPORT','SAV',798194, ST_GeomFromText('POINT(-81.202139 32.127583)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('CITY OF COLORADO SPRINGS MUNICIPAL AIRPORT','COS',877367, ST_GeomFromText('POINT(-104.700778 38.805806)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('LONG ISLAND MAC ARTHUR AIRPORT','ISP',858741, ST_GeomFromText('POINT(-73.100222 40.79525)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('PIEDMONT TRIAD INTERNATIONAL AIRPORT','GSO',855073, ST_GeomFromText('POINT(-79.941123 36.101326)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('SYRACUSE HANCOCK INTERNATIONAL AIRPORT','SYR',1024505, ST_GeomFromText('POINT(-76.106311 43.111187)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('CHARLESTON AIR FORCE BASE/INTERNATIONAL AIRPORT','CHS',1013418, ST_GeomFromText('POINT(-80.040528 32.898639)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('ADAMS FIELD AIRPORT','LIT',1097403, ST_GeomFromText('POINT(-92.224306 34.729444)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('LIHUE AIRPORT','LIH',1175203, ST_GeomFromText('POINT(-159.338958 21.975983)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('KONA INTERNATIONAL AT KEAHOLE AIRPORT','KOA',1276343, ST_GeomFromText('POINT(-156.045631 19.738766)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('GREATER ROCHESTER INTERNATIONAL AIRPORT','ROC',1263965, ST_GeomFromText('POINT(-77.672389 43.118861)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('ALBANY INTERNATIONAL AIRPORT','ALB',1250282, ST_GeomFromText('POINT(-73.801972 42.749111)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('LONG BEACH /DAUGHERTY FIELD/ AIRPORT','LGB',1451404, ST_GeomFromText('POINT(-118.151611 33.817722)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('JAMES M COX DAYTON INTERNATIONAL AIRPORT','DAY',1248787, ST_GeomFromText('POINT(-84.21941 39.902251)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('BOISE AIR TERMINAL','BOI',1406750, ST_GeomFromText('POINT(-116.222861 43.564361)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('TULSA INTERNATIONAL AIRPORT','TUL',1382895, ST_GeomFromText('POINT(-95.888111 36.198389)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('EL PASO INTERNATIONAL AIRPORT','ELP',1509093, ST_GeomFromText('POINT(-106.377556 31.80725)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('BIRMINGHAM-SHUTTLESWORTH INTERNATIONAL AIRPORT','BHM',1443215, ST_GeomFromText('POINT(-86.752306 33.563889)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('SPOKANE INTERNATIONAL AIRPORT','GEG',1545115, ST_GeomFromText('POINT(-117.533833 47.619861)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('RICHMOND INTERNATIONAL AIRPORT','RIC',1651131, ST_GeomFromText('POINT(-77.319667 37.505167)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('NORFOLK INTERNATIONAL AIRPORT','ORF',1663294, ST_GeomFromText('POINT(-76.201222 36.894611)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('MANCHESTER AIRPORT','MHT',1391797, ST_GeomFromText('POINT(-71.435739 42.932804)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('WILL ROGERS WORLD AIRPORT','OKC',1710993, ST_GeomFromText('POINT(-97.600734 35.393088)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('LOUISVILLE INTERNATIONAL-STANDIFORD FIELD','SDF',1651037, ST_GeomFromText('POINT(-85.736499 38.174086)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('TUCSON INTERNATIONAL AIRPORT','TUS',1844228, ST_GeomFromText('POINT(-110.941028 32.116083)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('EPPLEY AIRFIELD','OMA',2097958, ST_GeomFromText('POINT(-95.894056 41.303167)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('RENO/TAHOE INTERNATIONAL AIRPORT','RNO',1857488, ST_GeomFromText('POINT(-119.768111 39.499111)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('THEODORE FRANCIS GREEN STATE AIRPORT','PVD',1951566, ST_GeomFromText('POINT(-71.428221 41.723999)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('TED STEVENS ANCHORAGE INTERNATIONAL AIRPORT','ANC',2342310, ST_GeomFromText('POINT(-149.996361 61.174361)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('BOB HOPE AIRPORT','BUR',2239804, ST_GeomFromText('POINT(-118.358667 34.200667)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('KAHULUI AIRPORT','OGG',2587214, ST_GeomFromText('POINT(-156.430458 20.89865)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('BUFFALO NIAGARA INTERNATIONAL AIRPORT','BUF',2602968, ST_GeomFromText('POINT(-78.732167 42.940525)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('JACKSONVILLE INTERNATIONAL AIRPORT','JAX',2755719, ST_GeomFromText('POINT(-81.687861 30.494056)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('ONTARIO INTERNATIONAL AIRPORT','ONT',2380881, ST_GeomFromText('POINT(-117.601194 34.056)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('BRADLEY INTERNATIONAL AIRPORT','BDL',2640155, ST_GeomFromText('POINT(-72.683222 41.938889)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('ALBUQUERQUE INTERNATIONAL SUNPORT AIRPORT','ABQ',2828420, ST_GeomFromText('POINT(-106.609194 35.040194)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('PALM BEACH INTERNATIONAL AIRPORT','PBI',2958416, ST_GeomFromText('POINT(-80.095589 26.683161)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('PORT COLUMBUS INTERNATIONAL AIRPORT','CMH',3145962, ST_GeomFromText('POINT(-82.891889 39.997972)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('SOUTHWEST FLORIDA INTERNATIONAL AIRPORT','RSW',3714157, ST_GeomFromText('POINT(-81.755167 26.536167)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('GENERAL MITCHELL INTERNATIONAL AIRPORT','MKE',4760170, ST_GeomFromText('POINT(-87.89673 42.947211)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('LOUIS ARMSTRONG NEW ORLEANS INTERNATIONAL AIRPORT','MSY',4088889, ST_GeomFromText('POINT(-90.258028 29.993389)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('SAN ANTONIO INTERNATIONAL AIRPORT','SAT',3916320, ST_GeomFromText('POINT(-98.469778 29.533694)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('DALLAS LOVE FIELD AIRPORT','DAL',3783407, ST_GeomFromText('POINT(-96.851778 32.847111)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('INDIANAPOLIS INTERNATIONAL AIRPORT','IND',3728698, ST_GeomFromText('POINT(-86.294661 39.717299)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('WILLIAM P HOBBY AIRPORT','HOU',4357835, ST_GeomFromText('POINT(-95.278889 29.645419)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('AUSTIN-BERGSTROM INTERNATIONAL AIRPORT','AUS',4201136, ST_GeomFromText('POINT(-97.669889 30.194528)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('PITTSBURGH INTERNATIONAL AIRPORT','PIT',3996656, ST_GeomFromText('POINT(-80.232861 40.491472)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('JOHN WAYNE AIRPORT-ORANGE COUNTY AIRPORT','SNA',4278623, ST_GeomFromText('POINT(-117.868222 33.675667)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('LUIS MUNOZ MARIN INTERNATIONAL AIRPORT','SJU',4243475, ST_GeomFromText('POINT(-66.001833 18.439417)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('NAVAL AIR STATIONHVILLE INTERNATIONAL AIRPORT','BNA',4432527, ST_GeomFromText('POINT(-86.678194 36.124472)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('NORMAN Y. MINETA SAN JOSE INTERNATIONAL AIRPORT','SJC',4056167, ST_GeomFromText('POINT(-121.929111 37.362667)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('RALEIGH-DURHAM INTERNATIONAL AIRPORT','RDU',4465736, ST_GeomFromText('POINT(-78.787472 35.877639)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('SACRAMENTO INTERNATIONAL AIRPORT','SMF',4424279, ST_GeomFromText('POINT(-121.590778 38.695417)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('MEMPHIS INTERNATIONAL AIRPORT','MEM',4930935, ST_GeomFromText('POINT(-89.976667 35.042417)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('KANSAS CITY INTERNATIONAL AIRPORT','MCI',4946173, ST_GeomFromText('POINT(-94.713906 39.297605)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('CLEVELAND-HOPKINS INTERNATIONAL AIRPORT','CLE',4591097, ST_GeomFromText('POINT(-81.85498 41.409417)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('METROPOLITAN OAKLAND INTERNATIONAL AIRPORT','OAK',4673417, ST_GeomFromText('POINT(-122.220722 37.721278)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('CINCINNATI/NORTHERN KENTUCKY INTERNATIONAL AIRPORT','CVG',3906826, ST_GeomFromText('POINT(-84.667822 39.048837)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('LAMBERT-ST LOUIS INTERNATIONAL AIRPORT','STL',6044760, ST_GeomFromText('POINT(-90.370029 38.748697)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('PORTLAND INTERNATIONAL AIRPORT','PDX',6582227, ST_GeomFromText('POINT(-122.597481 45.58853)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('CHICAGO MIDWAY INTERNATIONAL AIRPORT','MDW',8518957, ST_GeomFromText('POINT(-87.752417 41.785972)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('RONALD REAGAN WASHINGTON NATIONAL AIRPORT','DCA',8736804, ST_GeomFromText('POINT(-77.037722 38.852083)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('TAMPA INTERNATIONAL AIRPORT','TPA',8137222, ST_GeomFromText('POINT(-82.53325 27.975472)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('SAN DIEGO INTERNATIONAL AIRPORT','SAN',8430509, ST_GeomFromText('POINT(-117.189667 32.733556)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('HONOLULU INTERNATIONAL AIRPORT','HNL',8740077, ST_GeomFromText('POINT(-157.922429 21.318681)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('SALT LAKE CITY INTERNATIONAL AIRPORT','SLC',9910493, ST_GeomFromText('POINT(-111.977773 40.788388)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('BALTIMORE/WASHINGTON INTERNATIONAL THURGOOD MARSHAL AIRPORT','BWI',10848633, ST_GeomFromText('POINT(-76.668333 39.175361)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('FORT LAUDERDALE/HOLLYWOOD INTERNATIONAL AIRPORT','FLL',10829810, ST_GeomFromText('POINT(-80.15275 26.072583)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('WASHINGTON DULLES INTERNATIONAL AIRPORT','IAD',11276481, ST_GeomFromText('POINT(-77.459944 38.947444)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('LA GUARDIA AIRPORT','LGA',12001501, ST_GeomFromText('POINT(-73.872611 40.77725)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('GENERAL EDWARD LAWRENCE LOGAN INTERNATIONAL AIRPORT','BOS',13561814, ST_GeomFromText('POINT(-71.006417 42.362972)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('PHILADELPHIA INTERNATIONAL AIRPORT','PHL',14951254, ST_GeomFromText('POINT(-75.240866 39.872249)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('SEATTLE-TACOMA INTERNATIONAL AIRPORT','SEA',15406243, ST_GeomFromText('POINT(-122.311778 47.449889)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('MINNEAPOLIS-ST PAUL INTERNATIONAL/WOLD-CHAMBERLAIN AIRPORT','MSP',15512487, ST_GeomFromText('POINT(-93.221766 44.881957)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('MIAMI INTERNATIONAL AIRPORT','MIA',17017654, ST_GeomFromText('POINT(-80.290116 25.795365)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('DETROIT METROPOLITAN WAYNE COUNTY AIRPORT','DTW',15643890, ST_GeomFromText('POINT(-83.353389 42.212444)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('CHARLOTTE/DOUGLAS INTERNATIONAL AIRPORT','CLT',18629181, ST_GeomFromText('POINT(-80.949069 35.213741)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('ORLANDO INTERNATIONAL AIRPORT','MCO',17017491, ST_GeomFromText('POINT(-81.308993 28.429394)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('NEWARK LIBERTY INTERNATIONAL AIRPORT','EWR',16571754, ST_GeomFromText('POINT(-74.168667 40.6925)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('SAN FRANCISCO INTERNATIONAL AIRPORT','SFO',19359003, ST_GeomFromText('POINT(-122.374889 37.618972)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('PHOENIX SKY HARBOR INTERNATIONAL AIRPORT','PHX',18907171, ST_GeomFromText('POINT(-112.011583 33.434278)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('GEORGE BUSH INTERCONTINENTAL/HOUSTON AIRPORT','IAH',19528631, ST_GeomFromText('POINT(-95.341442 29.984434)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('MC CARRAN INTERNATIONAL AIRPORT','LAS',18996738, ST_GeomFromText('POINT(-115.15225 36.080056)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('JOHN F KENNEDY INTERNATIONAL AIRPORT','JFK',22934047, ST_GeomFromText('POINT(-73.778926 40.639751)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('DENVER INTERNATIONAL AIRPORT','DEN',25241962, ST_GeomFromText('POINT(-104.673177 39.861656)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('DALLAS/FORT WORTH INTERNATIONAL AIRPORT','DFW',27100656, ST_GeomFromText('POINT(-97.037996 32.896828)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('LOS ANGELES INTERNATIONAL AIRPORT','LAX',28857755, ST_GeomFromText('POINT(-118.407161 33.942522)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('CHICAGO O''HARE INTERNATIONAL AIRPORT','ORD',32171831, ST_GeomFromText('POINT(-87.906667 41.980917)', 4326)); +INSERT into airports ( name, code, passengers, the_geom) VALUES ('HARTSFIELD - JACKSON ATLANTA INTERNATIONAL AIRPORT','ATL',43130585, ST_GeomFromText('POINT(-84.428066 33.63672)', 4326)); diff --git a/roles/provision-pyzip-demo-db-apb/files/parkcoord.sql b/roles/provision-pyzip-demo-db-apb/files/parkcoord.sql new file mode 100644 index 0000000..5b7ba1e --- /dev/null +++ b/roles/provision-pyzip-demo-db-apb/files/parkcoord.sql @@ -0,0 +1,569 @@ +CREATE EXTENSION POSTGIS; + +CREATE TABLE parkpoints +( + parkid serial NOT NULL, + name character varying(256), + the_geom geometry(Geometry,4326), + CONSTRAINT parkpoints_pk PRIMARY KEY (parkid ) +) +WITH ( + OIDS=FALSE +); + +CREATE INDEX geom_index_parkpoints + ON parkpoints + USING gist + (the_geom ); + + + + +Insert into parkpoints (name, the_geom) VALUES ('Abraham Lincoln Birthplace National Historical Park', ST_GeomFromText('POINT(-85.7302 37.5332)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Abraham Lincoln National Cemetery', ST_GeomFromText('POINT(-88.12595 41.3896)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Acadia National Park', ST_GeomFromText('POINT(-68.04902 44.454)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Adams National Historical Park', ST_GeomFromText('POINT(-71.01119 42.25639)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Admiralty Island National Monument', ST_GeomFromText('POINT(-134.16105 57.61806)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('African American Civil War Memorial', ST_GeomFromText('POINT(-77.02569 38.91639)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('African Burial Ground National Monument', ST_GeomFromText('POINT(-73.99364 40.71367)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Agate Fossil Beds National Monument', ST_GeomFromText('POINT(-103.75492 42.42428)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Agua Fria National Monument', ST_GeomFromText('POINT(-112.07633 34.15417)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('AIDS Memorial Grove', ST_GeomFromText('POINT(-122.46122 37.77)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Ala Kahakai National Historic Trail', ST_GeomFromText('POINT(-155.68106 18.91111)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Alagnak River', ST_GeomFromText('POINT(-156.79582 59.01063)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Aleutian World War II National Historic Area', ST_GeomFromText('POINT(-166.52692 53.88889)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Alibates Flint Quarries National Monument', ST_GeomFromText('POINT(-101.66722 35.57139)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Allegheny Portage Railroad', ST_GeomFromText('POINT(-78.5401 40.45417)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('American Memorial Park', ST_GeomFromText('POINT(145.71691 15.2181)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Amistad National Recreation Area', ST_GeomFromText('POINT(-101.04972 29.43667)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Anacostia Park', ST_GeomFromText('POINT(-76.89998 38.8)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Andersonville National Cemetery', ST_GeomFromText('POINT(-84.13093 32.20358)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Andersonville National Historic Site', ST_GeomFromText('POINT(-84.12686 32.19759)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Andrew Johnson National Cemetery', ST_GeomFromText('POINT(-82.83763 36.15527)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Andrew Johnson National Historic Site', ST_GeomFromText('POINT(-82.83482 36.15833)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Aniakchak National Monument and Preserve', ST_GeomFromText('POINT(-158.14972 56.9)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Antietam National Battlefield', ST_GeomFromText('POINT(-77.73945 39.4803)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Antietam National Cemetery', ST_GeomFromText('POINT(-77.73904 39.47914)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Apostle Islands National Lakeshore', ST_GeomFromText('POINT(-90.66402 46.96528)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Appomattox Court House National Historical Park', ST_GeomFromText('POINT(-78.80083 37.37845)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Arches National Park', ST_GeomFromText('POINT(-109.56462 38.77)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Arkansas Post National Memorial', ST_GeomFromText('POINT(-91.34347 34.02361)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Arlington House The Robert E. Lee Memorial', ST_GeomFromText('POINT(-77.07389 38.88275)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Arlington National Cemetery', ST_GeomFromText('POINT(-77.07122 38.87657)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Assateague Island National Seashore', ST_GeomFromText('POINT(-75.20818 38.08332)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Aulavik National Park', ST_GeomFromText('POINT(-119.74092 74.02249)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Auyuittuq National Park', ST_GeomFromText('POINT(-65.01638 67.88333)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Aztec Ruins National Monument', ST_GeomFromText('POINT(-107.99782 36.83583)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Badlands National Park', ST_GeomFromText('POINT(-102.43392 43.6504)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Bandelier National Monument', ST_GeomFromText('POINT(-106.32082 35.77888)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Banff National Park', ST_GeomFromText('POINT(-115.54962 51.16666)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Battleground National Cemetery', ST_GeomFromText('POINT(-73.96286 40.81333)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Benjamin Franklin National Memorial', ST_GeomFromText('POINT(-75.17286 39.95832)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Bent''s Old Fort National Historic Site', ST_GeomFromText('POINT(-103.42502 38.04045)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Bering Land Bridge National Preserve', ST_GeomFromText('POINT(-164.80842 66.05595)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Big Bend National Park', ST_GeomFromText('POINT(-103.06042 29.81874)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Big Cypress National Preserve', ST_GeomFromText('POINT(-81.0337 25.85889)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Big Hole National Battlefield', ST_GeomFromText('POINT(-113.64332 45.6375)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Big South Fork National River and Recreation Area', ST_GeomFromText('POINT(-84.69835 36.4865)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Big Thicket National Preserve', ST_GeomFromText('POINT(-94.41082 30.27567)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Bighorn Canyon National Recreation Area', ST_GeomFromText('POINT(-108.13032 45.19444)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Biscayne National Park', ST_GeomFromText('POINT(-80.26162 25.442)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Black Canyon of the Gunnison National Park', ST_GeomFromText('POINT(-107.72792 38.58491)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Blue Ridge Parkway', ST_GeomFromText('POINT(-80.93578 36.51861)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Bluestone National Scenic River', ST_GeomFromText('POINT(-80.99901 37.54167)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Booker T. Washington National Monument', ST_GeomFromText('POINT(-79.76564 37.12333)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Boston African American National Historic Site', ST_GeomFromText('POINT(-71.06454 42.36)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Boston Harbor Islands National Recreation Area', ST_GeomFromText('POINT(-70.94565 42.31861)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Boston National Historical Park', ST_GeomFromText('POINT(-71.05617 42.36)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Brices Cross Roads National Battlefield Site', ST_GeomFromText('POINT(-88.7284 34.50672)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Brown v. Board of Education National Historic Site', ST_GeomFromText('POINT(-95.67621 39.03806)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Bruce Peninsula National Park', ST_GeomFromText('POINT(-81.61388 45.23888)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Bryce Canyon National Park', ST_GeomFromText('POINT(-112.19632 37.5548)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Buck Island Reef National Monument', ST_GeomFromText('POINT(-64.61897 17.78694)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Buffalo National River', ST_GeomFromText('POINT(-92.42606 36.17806)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Cabrillo National Monument', ST_GeomFromText('POINT(-117.24202 32.67352)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('California Coastal National Monument', ST_GeomFromText('POINT(-122.17994 36.89)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Canaveral National Seashore', ST_GeomFromText('POINT(-80.77679 28.7675)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Cane River Creole National Historical Park', ST_GeomFromText('POINT(-93.00343 31.66684)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Canyon de Chelly National Monument', ST_GeomFromText('POINT(-109.46912 36.1336)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Canyonlands National Park', ST_GeomFromText('POINT(-109.88072 38.261)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Canyons of the Ancients National Monument', ST_GeomFromText('POINT(-108.99994 37.37)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Cape Breton Highlands National Park', ST_GeomFromText('POINT(-60.8111 46.81611)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Cape Cod National Seashore', ST_GeomFromText('POINT(-70.20513 42.07389)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Cape Hatteras National Seashore', ST_GeomFromText('POINT(-75.51123 35.30361)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Cape Henry Memorial', ST_GeomFromText('POINT(-76.00819 36.92806)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Cape Krusenstern National Monument', ST_GeomFromText('POINT(-163.50002 67.41333)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Cape Lookout National Seashore', ST_GeomFromText('POINT(-76.53624 34.60528)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Capitol Reef National Park', ST_GeomFromText('POINT(-111.23862 38.27617)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Captain John Smith Chesapeake National Historic Trail', ST_GeomFromText('POINT(-75.99995 38)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Capulin Volcano National Monument', ST_GeomFromText('POINT(-103.96972 36.78222)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Carl Sandburg Home National Historic Site', ST_GeomFromText('POINT(-82.45149 35.26778)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Carlsbad Caverns National Park', ST_GeomFromText('POINT(-104.40902 32.1648)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Carrizo Plain', ST_GeomFromText('POINT(-119.74994 35.16)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Carter G. Woodson Home National Historic Site', ST_GeomFromText('POINT(-77.02399 38.90999)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Casa Grande Ruins National Monument', ST_GeomFromText('POINT(-111.53162 32.99517)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Cascade-Siskiyou National Monument', ST_GeomFromText('POINT(-122.46105 42.07778)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Castillo de San Marcos National Monument', ST_GeomFromText('POINT(-81.31153 29.89775)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Castle Clinton National Monument', ST_GeomFromText('POINT(-74.01674 40.7036)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Catoctin Mountain Park', ST_GeomFromText('POINT(-77.46665 39.64833)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Cedar Breaks National Monument', ST_GeomFromText('POINT(-112.84612 37.64519)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Cedar Creek and Belle Grove National Historical Park', ST_GeomFromText('POINT(-78.30063 39.16749)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Chaco Culture National Historical Park', ST_GeomFromText('POINT(-107.95862 36.05833)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Chalmette National Cemetery', ST_GeomFromText('POINT(-89.98648 29.94417)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Chamizal National Memorial', ST_GeomFromText('POINT(-106.45402 31.76778)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Channel Islands National Park', ST_GeomFromText('POINT(-119.74212 34.0394)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Charles Pinckney National Historic Site', ST_GeomFromText('POINT(-79.82454 32.84611)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Chattahoochee River National Recreation Area', ST_GeomFromText('POINT(-84.32454 33.98722)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Chesapeake and Ohio Canal National Historical Park', ST_GeomFromText('POINT(-77.05744 38.89972)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Chicago Portage National Historic Site', ST_GeomFromText('POINT(-87.80676 41.80556)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Chickamauga and Chattanooga National Military Park', ST_GeomFromText('POINT(-85.25984 34.94)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Chickasaw National Recreation Area', ST_GeomFromText('POINT(-96.97204 34.50056)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Chimney Rock National Historic Site', ST_GeomFromText('POINT(-103.34792 41.70368)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Chiricahua National Monument', ST_GeomFromText('POINT(-109.34802 32.01778)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Christiansted National Historic Site', ST_GeomFromText('POINT(-64.70204 17.74693)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('City of Rocks National Reserve', ST_GeomFromText('POINT(-113.70366 42.07727)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Clara Barton National Historic Site', ST_GeomFromText('POINT(-77.14065 38.96694)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Colonial National Historical Park', ST_GeomFromText('POINT(-76.5084 37.21926)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Colonial Parkway', ST_GeomFromText('POINT(-76.71576 37.21557)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Colorado National Monument', ST_GeomFromText('POINT(-108.68582 39.04249)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Congaree National Park', ST_GeomFromText('POINT(-80.78308 33.78333)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Coronado National Memorial', ST_GeomFromText('POINT(-110.25602 31.3455)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Cowpens National Battlefield', ST_GeomFromText('POINT(-81.8179 35.13667)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Crater Lake National Park', ST_GeomFromText('POINT(-122.10872 42.943)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Craters of the Moon National Monument and Preserve', ST_GeomFromText('POINT(-113.51642 43.41667)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Cumberland Gap National Historical Park', ST_GeomFromText('POINT(-83.68703 36.60417)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Cumberland Island National Seashore', ST_GeomFromText('POINT(-81.44985 30.83333)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Curecanti National Recreation Area', ST_GeomFromText('POINT(-107.32672 38.45472)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Custer National Cemetery', ST_GeomFromText('POINT(-107.43165 45.56953)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Cuyahoga Valley National Park', ST_GeomFromText('POINT(-81.55677 41.20906)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('David Berger National Memorial', ST_GeomFromText('POINT(-81.49236 41.47472)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Dayton Aviation Heritage National Historical Park', ST_GeomFromText('POINT(-84.0887 39.79472)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('De Soto National Memorial', ST_GeomFromText('POINT(-82.64429 27.52389)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Death Valley National Park', ST_GeomFromText('POINT(-117.09872 36.524)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Delaware Water Gap National Recreation Area', ST_GeomFromText('POINT(-75.01726 41.08232)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Delaware Water Gap National Recreation Area', ST_GeomFromText('POINT(-75.00416 41.08996)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Delaware Water Gap National Recreation Area', ST_GeomFromText('POINT(-74.89562 41.14625)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Delaware Water Gap National Recreation Area', ST_GeomFromText('POINT(-74.80594 41.30989)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Delaware Water Gap National Recreation Area Boat Launch', ST_GeomFromText('POINT(-74.98472 41.10718)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Delaware Water Gap NRA Store & Campground', ST_GeomFromText('POINT(-74.87387 41.21144)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Denali National Park', ST_GeomFromText('POINT(-149.98632 63.54357)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Denali National Park and Preserve', ST_GeomFromText('POINT(-150.49972 63.33333)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Devils Postpile National Monument', ST_GeomFromText('POINT(-119.08412 37.62444)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Devils Tower National Monument', ST_GeomFromText('POINT(-104.71502 44.59028)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Dinosaur National Monument', ST_GeomFromText('POINT(-108.98302 40.53333)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Dry Tortugas National Park', ST_GeomFromText('POINT(-81.7859 24.6384)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('East Potomac Park', ST_GeomFromText('POINT(-77.0259 38.87)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Ebey''s Landing National Historical Reserve', ST_GeomFromText('POINT(-122.68951 48.21341)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Edgar Allan Poe National Historic Site', ST_GeomFromText('POINT(-75.15011 39.96167)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Effigy Mounds National Monument', ST_GeomFromText('POINT(-91.18537 43.08861)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Eisenhower National Historic Site', ST_GeomFromText('POINT(-77.26316 39.79332)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('El Malpais National Monument', ST_GeomFromText('POINT(-107.95752 34.87635)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('El Morro National Monument', ST_GeomFromText('POINT(-108.35302 35.03833)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Eleanor Roosevelt National Historic Site', ST_GeomFromText('POINT(-73.93511 41.78582)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Elk Island National Park', ST_GeomFromText('POINT(-112.87042 53.59277)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Ellis Island National Monument', ST_GeomFromText('POINT(-74.03937 40.69956)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Eugene O''Neill National Historic Site', ST_GeomFromText('POINT(-122.02942 37.82444)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Everglades National Park', ST_GeomFromText('POINT(-80.79976 25.36)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Father Marquette National Memorial', ST_GeomFromText('POINT(-84.71708 45.85167)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Federal Hall', ST_GeomFromText('POINT(-74.01014 40.70722)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Fire Island National Seashore', ST_GeomFromText('POINT(-72.98263 40.69639)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('First Ladies National Historic Site', ST_GeomFromText('POINT(-81.37511 40.79667)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Flight 93 National Memorial', ST_GeomFromText('POINT(-78.9076 40.05615)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Florissant Fossil Beds National Monument', ST_GeomFromText('POINT(-105.26744 38.91806)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Ford''s Theatre National Historic Site', ST_GeomFromText('POINT(-77.02563 38.89667)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Forillon National Park', ST_GeomFromText('POINT(-64.29027 48.82388)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Fort Bowie National Historic Site', ST_GeomFromText('POINT(-109.43542 32.14611)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Fort Caroline National Memorial', ST_GeomFromText('POINT(-81.50042 30.38694)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Fort Davis National Historic Site', ST_GeomFromText('POINT(-103.92562 30.59583)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Fort Donelson National Battlefield', ST_GeomFromText('POINT(-87.85736 36.48438)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Fort Donelson National Cemetery', ST_GeomFromText('POINT(-87.84766 36.48525)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Fort Dupont Park', ST_GeomFromText('POINT(-76.94947 38.8766)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Fort Foote Park', ST_GeomFromText('POINT(-77.02778 38.7667)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Fort Frederica National Monument', ST_GeomFromText('POINT(-81.39313 31.22389)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Fort Laramie National Historic Site', ST_GeomFromText('POINT(-104.53562 42.20917)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Fort Larned National Historic Site', ST_GeomFromText('POINT(-99.2265 38.15667)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Fort Matanzas National Monument', ST_GeomFromText('POINT(-81.23898 29.71528)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Fort McHenry National Monument and Historic Shrine', ST_GeomFromText('POINT(-76.57981 39.26306)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Fort Necessity National Battlefield', ST_GeomFromText('POINT(-79.59956 39.81667)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Fort Point National Historic Site', ST_GeomFromText('POINT(-122.47692 37.81056)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Fort Pulaski National Monument', ST_GeomFromText('POINT(-80.89008 32.02722)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Fort Raleigh National Historic Site', ST_GeomFromText('POINT(-75.70872 35.93833)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Fort Scott National Historic Site', ST_GeomFromText('POINT(-94.70455 37.84389)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Fort Smith National Historic Site', ST_GeomFromText('POINT(-94.42261 35.34333)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Fort Stanwix National Monument', ST_GeomFromText('POINT(-75.45506 43.21056)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Fort Sumter National Monument', ST_GeomFromText('POINT(-79.87453 32.75222)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Fort Union National Monument', ST_GeomFromText('POINT(-105.01802 35.90722)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Fort Union Trading Post National Historic Site', ST_GeomFromText('POINT(-104.04032 47.99944)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Fort Vancouver National Historic Site', ST_GeomFromText('POINT(-122.65792 45.6254)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Fort Washington National Park', ST_GeomFromText('POINT(-77.03304 38.71083)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Fossil Butte National Monument', ST_GeomFromText('POINT(-110.76762 41.85875)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Franklin Delano Roosevelt Memorial', ST_GeomFromText('POINT(-77.0443 38.88389)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Frederick Douglass National Historic Site', ST_GeomFromText('POINT(-76.98511 38.86333)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Frederick Law Olmsted National Historic Site', ST_GeomFromText('POINT(-71.13205 42.325)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Fredericksburg and Spotsylvania National Military Park', ST_GeomFromText('POINT(-77.46901 38.29305)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Fredericksburg National Cemetery', ST_GeomFromText('POINT(-77.46884 38.29307)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Friendship Hill National Historic Site', ST_GeomFromText('POINT(-79.92899 39.77778)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Fundy National Park', ST_GeomFromText('POINT(-64.9536 45.59527)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Gates of the Arctic National Park and Preserve', ST_GeomFromText('POINT(-153.29972 67.78333)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Gateway National Recreation Area - Breezy Point', ST_GeomFromText('POINT(-73.92607 40.5565)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Gateway National Recreation Area - Floyd Bennett Field', ST_GeomFromText('POINT(-73.89082 40.591)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Gateway National Recreation Area - Fort Hancock', ST_GeomFromText('POINT(-74.00259 40.46389)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Gateway National Recreation Area - Fort Tilden', ST_GeomFromText('POINT(-73.89093 40.56389)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Gateway National Recreation Area - Fort Wadsworth', ST_GeomFromText('POINT(-74.06232 40.60833)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Gateway National Recreation Area - Great Kills Park', ST_GeomFromText('POINT(-74.12715 40.55542)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Gateway National Recreation Area - Jacob Riis Park', ST_GeomFromText('POINT(-73.87395 40.56702)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Gateway National Recreation Area - Jamaica Bay', ST_GeomFromText('POINT(-73.84231 40.61778)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Gateway National Recreation Area - Miller Field', ST_GeomFromText('POINT(-74.09538 40.56416)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Gateway National Recreation Area - Sandy Hook', ST_GeomFromText('POINT(-73.99506 40.45288)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Gauley River National Recreation Area', ST_GeomFromText('POINT(-80.88982 38.22)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('General Grant National Memorial', ST_GeomFromText('POINT(-73.96285 40.81333)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('George Mason Memorial', ST_GeomFromText('POINT(-77.03903 38.87944)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('George Rogers Clark National Historical Park', ST_GeomFromText('POINT(-87.5354 38.67919)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('George Washington Birthplace National Monument', ST_GeomFromText('POINT(-76.93036 38.18611)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('George Washington Carver National Monument', ST_GeomFromText('POINT(-94.354 36.98636)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('George Washington Memorial Parkway', ST_GeomFromText('POINT(-77.10217 38.91111)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Georgian Bay Islands National Park', ST_GeomFromText('POINT(-79.87444 44.87777)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Gettysburg National Cemetery', ST_GeomFromText('POINT(-77.23124 39.82027)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Gettysburg National Military Park', ST_GeomFromText('POINT(-77.24615 39.81206)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Giant Sequoia National Monument', ST_GeomFromText('POINT(-118.50438 36.04)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Gila Cliff Dwellings National Monument', ST_GeomFromText('POINT(-108.27192 33.22722)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Glacier Bay National Park', ST_GeomFromText('POINT(-135.75552 58.41543)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Glacier Bay National Park and Preserve', ST_GeomFromText('POINT(-136.99996 58.5)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Glacier National Park', ST_GeomFromText('POINT(-113.77572 48.692)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Glen Canyon National Recreation Area', ST_GeomFromText('POINT(-111.48672 36.9936)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Gloria Dei (Old Swedes'') Church', ST_GeomFromText('POINT(-75.14342 39.93444)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Golden Gate National Recreation Area', ST_GeomFromText('POINT(-122.46652 37.78333)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Golden Gate National Recreation Area-Alcatraz Island', ST_GeomFromText('POINT(-122.42322 37.82667)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Golden Gate National Recreation Area-Presidio', ST_GeomFromText('POINT(-122.46572 37.79806)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Golden Spike National Historic Site', ST_GeomFromText('POINT(-112.54722 41.62048)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Governors Island National Monument', ST_GeomFromText('POINT(-74.01589 40.69139)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Grand Canyon', ST_GeomFromText('POINT(-112.13722 36.05749)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Grand Canyon - North Rim', ST_GeomFromText('POINT(-113.19712 36)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Grand Canyon - South Rim National Park', ST_GeomFromText('POINT(-112.11732 36.06501)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Grand Canyon National Park', ST_GeomFromText('POINT(-112.13745 36.0575)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Grand Canyon West Airport', ST_GeomFromText('POINT(-113.81612 35.99038)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Grand Canyon-Parashant National Monument', ST_GeomFromText('POINT(-113.69972 36.4)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Grand Portage National Monument', ST_GeomFromText('POINT(-89.74898 47.98528)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Grand Staircase-Escalante National Monument', ST_GeomFromText('POINT(-111.68327 37.4)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Grand Teton National Park', ST_GeomFromText('POINT(-110.78822 43.7403)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Grant-Kohrs Ranch National Historic Site', ST_GeomFromText('POINT(-112.73922 46.40833)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Grasslands National Park', ST_GeomFromText('POINT(-107.42542 49.17694)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Great Basin National Park', ST_GeomFromText('POINT(-114.26082 38.93873)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Great Egg Harbor Scenic and Recreational River', ST_GeomFromText('POINT(-74.64957 39.30417)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Great Sand Dunes National Park', ST_GeomFromText('POINT(-105.54172 37.7539)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Great Sand Dunes National Park and Preserve', ST_GeomFromText('POINT(-105.51182 37.73287)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Great Smoky Mountains National Park', ST_GeomFromText('POINT(-83.16773 35.72715)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Greenbelt Park', ST_GeomFromText('POINT(-76.89831 38.98917)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Gros Morne National Park', ST_GeomFromText('POINT(-57.78305 49.5)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Guadalupe Mountains National Park', ST_GeomFromText('POINT(-104.85962 31.916)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Guilford Courthouse National Military Park', ST_GeomFromText('POINT(-79.84623 36.13139)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Gulf Islands National Park Reserve', ST_GeomFromText('POINT(-123.44732 48.85055)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Gulf Islands National Seashore', ST_GeomFromText('POINT(-86.96735 30.36444)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Gwaii Haanas Park Reserve and Haida Heritage Site', ST_GeomFromText('POINT(-131.47072 52.38916)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Hagerman Fossil Beds National Monument', ST_GeomFromText('POINT(-114.94502 42.79028)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Haleakala National Park', ST_GeomFromText('POINT(-156.21002 20.71062)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Hamilton Grange National Memorial', ST_GeomFromText('POINT(-73.94815 40.82238)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Hampton National Historic Site', ST_GeomFromText('POINT(-76.58734 39.41611)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Hanford Reach National Monument', ST_GeomFromText('POINT(-119.51661 46.58333)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Harmony Hall Fort Washington Maryland', ST_GeomFromText('POINT(-77.00304 38.74583)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Harpers Ferry National Historical Park', ST_GeomFromText('POINT(-77.72952 39.32278)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Harry S. Truman National Historic Site', ST_GeomFromText('POINT(-94.53209 38.90211)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Hawaii Volcanoes National Park', ST_GeomFromText('POINT(-155.29962 19.39999)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Herbert Hoover National Historic Site', ST_GeomFromText('POINT(-91.3479 41.66861)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Historic Camden Revolutionary War Site', ST_GeomFromText('POINT(-80.60317 34.23389)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Historic Jamestowne', ST_GeomFromText('POINT(-76.77873 37.20971)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Hohokam Pima National Monument', ST_GeomFromText('POINT(-111.92642 33.15444)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Home of Franklin D. Roosevelt National Historic Site', ST_GeomFromText('POINT(-73.93539 41.76721)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Homestead National Monument of America', ST_GeomFromText('POINT(-96.82172 40.28525)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Honokohau National Historical Park', ST_GeomFromText('POINT(-156.02172 19.6787)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Hopewell Culture National Historical Park', ST_GeomFromText('POINT(-83.0062 39.37583)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Hopewell Furnace National Historic Site', ST_GeomFromText('POINT(-75.7754 40.19861)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Horseshoe Bend National Military Park', ST_GeomFromText('POINT(-85.73817 32.97083)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Hot Springs National Park', ST_GeomFromText('POINT(-92.95843 34.52684)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Hovenweep National Monument', ST_GeomFromText('POINT(-109.07702 37.38388)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Hubbell Trading Post National Historic Site', ST_GeomFromText('POINT(-109.59312 35.72556)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Independence Hall', ST_GeomFromText('POINT(-75.1498 39.94889)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Independence National Historical Park', ST_GeomFromText('POINT(-75.14787 39.94778)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Indiana Dunes National Lakeshore', ST_GeomFromText('POINT(-87.10791 41.64806)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('International Peace Garden', ST_GeomFromText('POINT(-100.06432 48.99098)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Inupiat Heritage Center', ST_GeomFromText('POINT(-156.75331 71.29861)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Ironwood Forest National Monument', ST_GeomFromText('POINT(-111.56673 32.45896)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Isle Royale National Park', ST_GeomFromText('POINT(-88.89144 47.9624)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Ivvavik National Park', ST_GeomFromText('POINT(-139.52462 69.51972)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('James A. Garfield National Historic Site', ST_GeomFromText('POINT(-81.34706 41.66222)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Jasper National Park', ST_GeomFromText('POINT(-118.08182 52.87305)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Jean Lafitte National Historical Park and Preserve', ST_GeomFromText('POINT(-89.99398 29.9425)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Jefferson National Expansion Memorial', ST_GeomFromText('POINT(-90.18483 38.6246)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Jewel Cave National Monument', ST_GeomFromText('POINT(-103.82912 43.72944)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Jimmy Carter National Historic Site', ST_GeomFromText('POINT(-84.39984 32.03389)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('John D. Rockefeller Jr. Memorial Parkway', ST_GeomFromText('POINT(-110.69273 44.10472)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('John Day Fossil Beds National Monument', ST_GeomFromText('POINT(-119.63412 44.54987)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('John Ericsson National Memorial', ST_GeomFromText('POINT(-77.05014 38.88667)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('John Fitzgerald Kennedy National Historic Site', ST_GeomFromText('POINT(-71.12428 42.34583)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('John Muir National Historic Site', ST_GeomFromText('POINT(-122.13302 37.99131)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Johnstown Flood National Memorial', ST_GeomFromText('POINT(-78.77847 40.34556)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Joshua Tree National Park', ST_GeomFromText('POINT(-115.82762 33.843)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Kalaupapa Leprosy Settlement and National Historical Park', ST_GeomFromText('POINT(-156.95972 21.17778)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Kasha-Katuwe Tent Rocks National Monument', ST_GeomFromText('POINT(-106.41912 35.6736)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Kate Mullany National Historic Site', ST_GeomFromText('POINT(-73.68163 42.7399)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Katmai National Park', ST_GeomFromText('POINT(-154.88652 58.58305)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Katmai National Park and Preserve', ST_GeomFromText('POINT(-154.99972 58.5)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Kejimkujik National Park', ST_GeomFromText('POINT(-65.21805 44.39916)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Kenai Fjords National Park', ST_GeomFromText('POINT(-149.64982 59.91666)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Kenilworth Park and Aquatic Gardens', ST_GeomFromText('POINT(-76.94771 38.90833)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Kennesaw Mountain National Battlefield Park', ST_GeomFromText('POINT(-84.5779 33.98306)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Keweenaw National Historical Park', ST_GeomFromText('POINT(-88.4537 47.24667)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Kings Canyon National Park', ST_GeomFromText('POINT(-118.64062 36.81199)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Kings Mountain National Military Park', ST_GeomFromText('POINT(-81.38928 35.13778)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Klondike Gold Rush National Historical Park', ST_GeomFromText('POINT(-135.31162 59.45639)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Kluane National Park and Reserve', ST_GeomFromText('POINT(-137.50982 60.75305)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Knife River Indian Villages National Historic Site', ST_GeomFromText('POINT(-101.38562 47.35417)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Kobuk Valley National Park', ST_GeomFromText('POINT(-159.13662 67.34408)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Kootenay National Park', ST_GeomFromText('POINT(-116.04872 50.88305)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Korean War Veterans Memorial', ST_GeomFromText('POINT(-77.047 38.88778)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Kouchibouguac National Park', ST_GeomFromText('POINT(-64.96666 46.84972)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('La Mauricie National Park', ST_GeomFromText('POINT(-72.85583 46.80805)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Lake Chelan National Recreation Area', ST_GeomFromText('POINT(-120.67802 48.32194)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Lake Clark National Park', ST_GeomFromText('POINT(-154.32362 60.19943)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Lake Clark National Park and Preserve', ST_GeomFromText('POINT(-153.41642 60.96667)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Lake Mead National Recreation Area', ST_GeomFromText('POINT(-113.69972 36.4)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Lake Mead National Recreation Area', ST_GeomFromText('POINT(-114.79642 36.00972)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Lake Meredith National Recreation Area', ST_GeomFromText('POINT(-101.55252 35.71472)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Lake Roosevelt National Recreation Area', ST_GeomFromText('POINT(-118.98032 47.95611)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Lassen Volcanic National Park', ST_GeomFromText('POINT(-121.41452 40.48297)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Lava Beds National Monument', ST_GeomFromText('POINT(-121.50802 41.71389)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Lewis and Clark National and State Historical Parks', ST_GeomFromText('POINT(-123.87722 46.13361)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Lewis and Clark National Historic Trail', ST_GeomFromText('POINT(-108.00939 46.00361)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Liberty Memorial', ST_GeomFromText('POINT(-94.58606 39.08044)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Lincoln Boyhood National Memorial', ST_GeomFromText('POINT(-86.9968 38.11833)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Lincoln Home National Historic Site', ST_GeomFromText('POINT(-89.64484 39.79722)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Lincoln Memorial', ST_GeomFromText('POINT(-77.04992 38.8893)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Little Bighorn Battlefield National Monument', ST_GeomFromText('POINT(-107.42722 45.57028)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Little River Canyon National Preserve', ST_GeomFromText('POINT(-85.59536 34.44056)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Little Rock Central High School National Historic Site', ST_GeomFromText('POINT(-92.29845 34.73666)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Longfellow National Historic Site', ST_GeomFromText('POINT(-71.12623 42.37667)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Lowell National Historical Park', ST_GeomFromText('POINT(-71.31008 42.64667)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Lower East Side Tenement National Historic Site', ST_GeomFromText('POINT(-73.98997 40.7185)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Lyndon B. Johnson National Historical Park', ST_GeomFromText('POINT(-98.62398 30.24083)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Lyndon Baines Johnson Memorial Grove on the Potomac', ST_GeomFromText('POINT(-77.05125 38.87861)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Maggie L. Walker National Historic Site', ST_GeomFromText('POINT(-77.4379 37.54778)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Mammoth Cave National Park', ST_GeomFromText('POINT(-86.11403 37.1841)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Manassas National Battlefield Park', ST_GeomFromText('POINT(-77.52151 38.81277)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Manzanar National Historic Site', ST_GeomFromText('POINT(-118.15422 36.72833)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Marianas Trench Marine National Monument', ST_GeomFromText('POINT(145 20)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Marsh-Billings-Rockefeller National Historical Park', ST_GeomFromText('POINT(-72.52917 43.63125)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Martin Luther King Jr National Memorial', ST_GeomFromText('POINT(-77.045124 38.885926)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Martin Luther King Jr. National Historic Site', ST_GeomFromText('POINT(-84.37211 33.755)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Martin Van Buren National Historic Site', ST_GeomFromText('POINT(-73.70405 42.36971)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Mary McLeod Bethune Council House National Historic Site', ST_GeomFromText('POINT(-77.03012 38.90778)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Meridian Hill Park', ST_GeomFromText('POINT(-77.03559 38.92124)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Mesa Verde National Park', ST_GeomFromText('POINT(-108.50862 37.3192)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Middle Delaware National Scenic River', ST_GeomFromText('POINT(-74.89984 41.15)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Mingan Archipelago National Park Reserve', ST_GeomFromText('POINT(-63.57638 50.25472)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Minidoka National Historic Site', ST_GeomFromText('POINT(-114.23202 42.63694)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Minute Man National Historical Park', ST_GeomFromText('POINT(-71.29842 42.45306)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Minuteman Missile National Historic Site', ST_GeomFromText('POINT(-102.16032 43.93111)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Missouri National Recreational River', ST_GeomFromText('POINT(-97.39263 42.8625)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Misty Fiords National Monument', ST_GeomFromText('POINT(-130.60716 55.62167)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Mojave National Preserve', ST_GeomFromText('POINT(-115.71642 34.88333)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Monocacy National Battlefield', ST_GeomFromText('POINT(-77.39192 39.37115)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Montezuma Castle National Monument', ST_GeomFromText('POINT(-111.83972 34.61305)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Moores Creek National Battlefield', ST_GeomFromText('POINT(-78.10928 34.45806)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Morristown National Historical Park', ST_GeomFromText('POINT(-74.52842 40.76694)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Mount Rainier National Park', ST_GeomFromText('POINT(-121.74982 46.85)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Mount Revelstoke National Park', ST_GeomFromText('POINT(-118.06512 51.08583)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Mount Rushmore National Memorial', ST_GeomFromText('POINT(-103.45952 43.87895)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Mount St. Helens National Volcanic Monument', ST_GeomFromText('POINT(-122.18422 46.23317)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Muir Woods National Monument', ST_GeomFromText('POINT(-122.58362 37.89889)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Nahanni National Park Reserve', ST_GeomFromText('POINT(-123.59962 61.08333)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Natchez National Historical Park', ST_GeomFromText('POINT(-91.38287 31.54333)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Natchez Trace Trail', ST_GeomFromText('POINT(-88.08826 34.66772)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('National Constitution Center', ST_GeomFromText('POINT(-75.14876 39.95341)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('National Japanese Am. Memorial To Patriotism During WW II', ST_GeomFromText('POINT(-77.01034 38.89452)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('National Mall', ST_GeomFromText('POINT(-77.02339 38.89)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('National Park of American Samoa', ST_GeomFromText('POINT(-170.68512 -14.25708)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('National World War II Memorial', ST_GeomFromText('POINT(-77.04029 38.8894)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Natural Bridges National Monument', ST_GeomFromText('POINT(-110.01342 37.60138)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Navajo National Monument', ST_GeomFromText('POINT(-110.53442 36.68417)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('New Bedford Whaling National Historical Park', ST_GeomFromText('POINT(-70.92314 41.63556)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('New Jersey Pinelands National Reserve', ST_GeomFromText('POINT(-74.74985 39.75)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('New Orleans Jazz National Historical Park', ST_GeomFromText('POINT(-90.06784 29.96306)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('New River Gorge National River', ST_GeomFromText('POINT(-81.08152 37.96083)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Newberry National Volcanic Monument', ST_GeomFromText('POINT(-121.25188 43.69417)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Nez Perce National Historical Park', ST_GeomFromText('POINT(-116.35912 46.14194)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Nicodemus National Historic Site', ST_GeomFromText('POINT(-99.61734 39.39083)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Ninety Six National Historic Site', ST_GeomFromText('POINT(-82.02428 34.14694)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Niobrara National Scenic River', ST_GeomFromText('POINT(-100.31642 42.88333)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Noatak National Preserve', ST_GeomFromText('POINT(-161.19972 68)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('North Cascades National Park', ST_GeomFromText('POINT(-121.18952 48.70643)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Ocmulgee National Monument', ST_GeomFromText('POINT(-83.60814 32.83667)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Oklahoma City National Memorial', ST_GeomFromText('POINT(-97.51708 35.47278)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Old Post Office Pavilion', ST_GeomFromText('POINT(-77.02788 38.89398)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Old Stone House', ST_GeomFromText('POINT(-77.06054 38.90556)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Olympic National Park', ST_GeomFromText('POINT(-123.52162 47.799)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Oregon Caves National Monument', ST_GeomFromText('POINT(-123.40692 42.09806)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Organ Pipe Cactus National Park', ST_GeomFromText('POINT(-112.85752 32.04444)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Oxon Cove Park and Oxon Hill Farm', ST_GeomFromText('POINT(-78.31665 37.08806)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Ozark National Scenic Riverways', ST_GeomFromText('POINT(-91.27615 37.1907)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Pacific Rim National Park Reserve', ST_GeomFromText('POINT(-124.76872 48.63611)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Padre Island National Seashore', ST_GeomFromText('POINT(-97.36846 26.98444)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Palo Alto Battlefield National Historical Park', ST_GeomFromText('POINT(-97.48037 26.02139)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Papah?naumoku?kea Marine National Monument', ST_GeomFromText('POINT(-171.73327 25.7)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Pea Ridge National Military Park', ST_GeomFromText('POINT(-94.03401 36.45444)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Pecos National Historical Park', ST_GeomFromText('POINT(-105.68912 35.54999)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Peirce Mill', ST_GeomFromText('POINT(-77.05192 38.94028)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Pennsylvania Avenue National Historic Site', ST_GeomFromText('POINT(-77.02373 38.89361)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Perry''s Victory and International Peace Memorial', ST_GeomFromText('POINT(-82.81124 41.65417)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Petersburg National Battlefield', ST_GeomFromText('POINT(-77.36123 37.21944)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Petrified Forest National Park', ST_GeomFromText('POINT(-109.78332 35.06274)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Petroglyph National Monument', ST_GeomFromText('POINT(-106.76162 35.13583)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Pictured Rocks National Lakeshore', ST_GeomFromText('POINT(-86.31235 46.56222)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Pinnacles National Monument', ST_GeomFromText('POINT(-121.16662 36.48693)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Pipe Spring National Monument', ST_GeomFromText('POINT(-112.73692 36.86193)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Pipestone National Monument', ST_GeomFromText('POINT(-96.32481 44.01333)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Piscataway Park', ST_GeomFromText('POINT(-77.09276 38.67861)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Point Pelee National Park', ST_GeomFromText('POINT(-82.51749 41.96416)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Point Reyes National Seashore', ST_GeomFromText('POINT(-122.88502 38.06)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Pompeys Pillar National Monument', ST_GeomFromText('POINT(-108.00577 45.99528)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Poplar Grove National Cemetery', ST_GeomFromText('POINT(-77.42845 37.16028)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Port Chicago Naval Magazine National Memorial', ST_GeomFromText('POINT(-122.02952 38.05749)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Poverty Point National Monument', ST_GeomFromText('POINT(-91.40763 32.63904)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Prehistoric Trackways National Monument', ST_GeomFromText('POINT(-106.89972 32.35)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('President Lincoln''s Cottage at the Soldiers'' Home', ST_GeomFromText('POINT(-77.01161 38.94167)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('President''s Park (White House)', ST_GeomFromText('POINT(-77.03674 38.89417)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Prince Albert National Park', ST_GeomFromText('POINT(-106.23322 53.99583)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Prince Edward Island National Park', ST_GeomFromText('POINT(-63.07472 46.41666)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Prince William Forest Park', ST_GeomFromText('POINT(-77.3797 38.58528)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Pu''uhonua o Honaunau National Historical Park', ST_GeomFromText('POINT(-155.91002 19.42194)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Pu''ukohola Heiau National Historic Site', ST_GeomFromText('POINT(-155.81972 20.02667)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Pukaskwa National Park', ST_GeomFromText('POINT(-85.9161 48.03361)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Quttinirpaaq National Park', ST_GeomFromText('POINT(-68.4211 81.56388)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Rainbow Bridge National Monument', ST_GeomFromText('POINT(-110.96382 37.07721)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Red Hill Patrick Henry National Memorial', ST_GeomFromText('POINT(-78.89792 37.03222)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Redwood National Park', ST_GeomFromText('POINT(-123.94482 41.4771)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Richmond National Battlefield Park', ST_GeomFromText('POINT(-77.37345 37.42917)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Riding Mountain National Park', ST_GeomFromText('POINT(-100.03572 50.86388)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('River Raisin National Battlefield Park', ST_GeomFromText('POINT(-83.37817 41.91361)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Rock Creek and Potomac Parkway', ST_GeomFromText('POINT(-77.05439 38.91306)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Rock Creek Park', ST_GeomFromText('POINT(-77.04498 38.9575)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Rocky Mountain National Park', ST_GeomFromText('POINT(-105.68962 40.414)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Roger Williams National Memorial', ST_GeomFromText('POINT(-71.41075 41.83038)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Roosevelt Campobello International Park', ST_GeomFromText('POINT(-66.95915 44.87583)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Rose Atoll Marine National Monument', ST_GeomFromText('POINT(-168.14994 -14.50994)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Ross Lake National Recreation Area', ST_GeomFromText('POINT(-121.24502 48.67306)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Russell Cave National Monument', ST_GeomFromText('POINT(-85.80314 34.97417)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Sagamore Hill National Historic Site', ST_GeomFromText('POINT(-73.49734 40.88556)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Saguaro National Park', ST_GeomFromText('POINT(-111.13052 32.2432)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Saint Croix Island International Historic Site', ST_GeomFromText('POINT(-67.13317 45.12833)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Saint Croix National Scenic Riverway', ST_GeomFromText('POINT(-92.65735 45.38917)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Saint Paul''s Church National Historic Site', ST_GeomFromText('POINT(-73.82566 40.89278)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Saint-Gaudens National Historic Site', ST_GeomFromText('POINT(-72.36848 43.4959)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Salem Maritime National Historic Site', ST_GeomFromText('POINT(-70.88706 42.52056)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Salinas Pueblo Missions National Monument', ST_GeomFromText('POINT(-106.09002 34.25972)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Salt River Bay National Historical Park', ST_GeomFromText('POINT(-64.7587 17.77889)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('San Antonio Missions National Historical Park', ST_GeomFromText('POINT(-98.48008 29.36167)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('San Francisco Maritime National Historical Park', ST_GeomFromText('POINT(-122.42332 37.80639)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('San Juan Island National Historical Park', ST_GeomFromText('POINT(-122.98532 48.45583)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('San Juan National Historic Site', ST_GeomFromText('POINT(-66.11012 18.4675)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Sand Creek Massacre National Historic Site', ST_GeomFromText('POINT(-102.52832 38.54083)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Santa Monica Mountains National Recreation Area', ST_GeomFromText('POINT(-118.60222 34.10389)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Santa Rosa and San Jacinto Mountains National Monument', ST_GeomFromText('POINT(-116.7055 33.80083)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Saratoga National Historical Park', ST_GeomFromText('POINT(-73.63728 42.99889)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Saugus Iron Works National Historic Site', ST_GeomFromText('POINT(-71.00873 42.46778)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Scotts Bluff National Monument', ST_GeomFromText('POINT(-103.70052 41.83556)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Sequoia National Park', ST_GeomFromText('POINT(-118.72242 36.36444)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Sewall-Belmont House National Historic Site', ST_GeomFromText('POINT(-77.00344 38.89194)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Shenandoah National Park', ST_GeomFromText('POINT(-78.30072 38.72)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Shiloh National Cemetery', ST_GeomFromText('POINT(-88.32007 35.15041)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Shiloh National Military Park', ST_GeomFromText('POINT(-88.32981 35.15188)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Sirmilik National Park', ST_GeomFromText('POINT(-78.43416 72.34054)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Sitka National Historical Park', ST_GeomFromText('POINT(-135.31362 57.04694)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Sleeping Bear Dunes National Lakeshore', ST_GeomFromText('POINT(-86.02013 44.91306)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Sonoran Desert National Monument', ST_GeomFromText('POINT(-112.45494 33.00167)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Springfield Armory National Historic Site', ST_GeomFromText('POINT(-72.58151 42.10806)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('St. Lawrence Islands National Park', ST_GeomFromText('POINT(-75.87276 44.41444)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Star-Spangled Banner National Historic Trail', ST_GeomFromText('POINT(-76.57995 39.26306)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Statue Of Liberty National Monument', ST_GeomFromText('POINT(-74.04477 40.68968)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Steamtown National Historic Site', ST_GeomFromText('POINT(-75.67116 41.40733)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Stones River National Battlefield', ST_GeomFromText('POINT(-86.43639 35.87629)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Stones River National Cemetery', ST_GeomFromText('POINT(-86.436 35.87639)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Suitland Parkway', ST_GeomFromText('POINT(-76.96801 38.84694)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Sunset Crater Volcano National Monument', ST_GeomFromText('POINT(-111.50042 35.36558)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Tallgrass Prairie National Preserve', ST_GeomFromText('POINT(-96.55869 38.43278)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Terra Nova National Park', ST_GeomFromText('POINT(-53.99583 48.51194)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Thaddeus Kosciuszko National Memorial', ST_GeomFromText('POINT(-75.14732 39.94333)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Theodore Roosevelt Birthplace National Historic Site', ST_GeomFromText('POINT(-73.98956 40.73889)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Theodore Roosevelt Inaugural National Historic Site', ST_GeomFromText('POINT(-78.87226 42.90148)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Theodore Roosevelt Island', ST_GeomFromText('POINT(-77.06402 38.89721)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Theodore Roosevelt National Park', ST_GeomFromText('POINT(-103.24872 47.3352)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Thomas Cole National Historic Site', ST_GeomFromText('POINT(-73.86178 42.22583)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Thomas Edison National Historical Park', ST_GeomFromText('POINT(-74.23759 40.78694)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Thomas Jefferson Memorial', ST_GeomFromText('POINT(-77.03647 38.88139)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Thomas Stone National Historic Site', ST_GeomFromText('POINT(-77.03595 38.53139)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Timpanogos Cave National Monument', ST_GeomFromText('POINT(-111.70912 40.44056)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Tomb of the Unknowns', ST_GeomFromText('POINT(-77.07206 38.87638)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Tonto National Monument', ST_GeomFromText('POINT(-111.09412 33.65694)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Torngat Mountains National Park Reserve', ST_GeomFromText('POINT(-63.10027 58.67222)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Touro Synagogue National Historic Site', ST_GeomFromText('POINT(-71.31178 41.48944)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Tuktut Nogait National Park', ST_GeomFromText('POINT(-123.01622 69.28333)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Tumac-cori National Historical Park', ST_GeomFromText('POINT(-111.05052 31.5675)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Tupelo National Battlefield', ST_GeomFromText('POINT(-88.73706 34.25528)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Tuskegee Airmen National Historic Site', ST_GeomFromText('POINT(-85.67984 32.45722)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Tuskegee Institute National Historic Site', ST_GeomFromText('POINT(-85.70762 32.43028)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Tuzigoot National Monument', ST_GeomFromText('POINT(-112.02572 34.77085)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('U.S. Air Force Memorial', ST_GeomFromText('POINT(-77.06606 38.86865)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Ukkusiksalik National Park', ST_GeomFromText('POINT(-87.30527 65.34166)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Ulysses S. Grant National Historic Site', ST_GeomFromText('POINT(-90.35178 38.55111)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('United States Marine Corps War Memorial', ST_GeomFromText('POINT(-77.06946 38.89047)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('United States Navy Memorial', ST_GeomFromText('POINT(-77.02286 38.89417)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Upper Missouri River Breaks National Monument', ST_GeomFromText('POINT(-109.02133 47.78333)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('USS Arizona Memorial', ST_GeomFromText('POINT(-157.94972 21.365)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('USS Utah Memorial', ST_GeomFromText('POINT(-157.96244 21.36889)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Valley Forge National Historical Park', ST_GeomFromText('POINT(-75.43869 40.09693)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Vanderbilt Mansion National Historic Site', ST_GeomFromText('POINT(-73.94174 41.79611)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Vermilion Cliffs National Monument', ST_GeomFromText('POINT(-111.74105 36.80639)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Vicksburg National Cemetery', ST_GeomFromText('POINT(-90.84959 32.34886)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Vicksburg National Military Park', ST_GeomFromText('POINT(-90.84963 32.34879)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Vietnam Veterans Memorial', ST_GeomFromText('POINT(-77.04756 38.8911)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Vietnam Women''s Memorial', ST_GeomFromText('POINT(-77.04679 38.8904)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Virgin Islands Coral Reef National Monument', ST_GeomFromText('POINT(-64.72675 18.30611)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Virgin Islands National Park', ST_GeomFromText('POINT(-64.73323 18.33333)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Voyageurs National Park', ST_GeomFromText('POINT(-93.01663 48.0996)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Vuntut National Park', ST_GeomFromText('POINT(-140.04712 68.30694)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Walnut Canyon National Monument', ST_GeomFromText('POINT(-111.50942 35.17167)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Wapusk National Park', ST_GeomFromText('POINT(-92.66999 57.24638)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('War in the Pacific National Historical Park', ST_GeomFromText('POINT(144.66694 13.3)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Washington Monument', ST_GeomFromText('POINT(-77.03504 38.88947)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Washita Battlefield National Historic Site', ST_GeomFromText('POINT(-99.70012 36.6175)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Waterton Lakes National Park', ST_GeomFromText('POINT(-113.91482 49.04583)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Weir Farm National Historic Site', ST_GeomFromText('POINT(-73.45455 41.25806)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('West Potomac Park', ST_GeomFromText('POINT(-77.0469 38.886)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Whiskeytown-Shasta-Trinity National Recreation Area', ST_GeomFromText('POINT(-122.94172 40.73528)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('White House', ST_GeomFromText('POINT(-77.03634 38.89767)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('White Sands National Monument', ST_GeomFromText('POINT(-106.17142 32.77971)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Whitman Mission National Historic Site', ST_GeomFromText('POINT(-118.46112 46.04)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('William Howard Taft National Historic Site', ST_GeomFromText('POINT(-84.50845 39.11972)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('William J Clinton Birthplace Home National Historic Site', ST_GeomFromText('POINT(-93.5964 33.66717)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Wilson''s Creek National Battlefield', ST_GeomFromText('POINT(-93.41984 37.11556)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Wind Cave National Park', ST_GeomFromText('POINT(-103.43302 43.5909)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Wolf Trap National Park for the Performing Arts', ST_GeomFromText('POINT(-77.26184 38.93694)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Women''s Rights National Historical Park', ST_GeomFromText('POINT(-76.8012 42.91083)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Wood Buffalo National Park', ST_GeomFromText('POINT(-112.98592 59.39083)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('World War II Home Front National Historical Park', ST_GeomFromText('POINT(-122.36442 37.90619)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Wrangell-St. Elias National Park', ST_GeomFromText('POINT(-143.21622 61.24284)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Wrangell-St. Elias National Park and Preserve', ST_GeomFromText('POINT(-141.99972 61)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Wright Brothers National Memorial', ST_GeomFromText('POINT(-75.66792 36.01417)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Wupatki National Monument', ST_GeomFromText('POINT(-111.38662 35.56556)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('WW II Valor in the Pacific National Monument Atka Island', ST_GeomFromText('POINT(-174.44522 52.13806)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('WW II Valor in the Pacific National Monument Attu Island', ST_GeomFromText('POINT(172.90944 52.9025)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('WW II Valor in the Pacific National Monument Ford Island', ST_GeomFromText('POINT(-157.96022 21.36389)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('WW II Valor in the Pacific National Monument Kiska', ST_GeomFromText('POINT(177.46 51.96417)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('WW II Valor in the Pacific Tule Lake Relocation Center', ST_GeomFromText('POINT(-121.37466 41.88944)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Yellowstone National Park', ST_GeomFromText('POINT(-110.61342 44.79573)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Yoho National Park', ST_GeomFromText('POINT(-116.48622 51.39527)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Yorktown National Cemetery', ST_GeomFromText('POINT(-76.50624 37.22493)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Yosemite National Park', ST_GeomFromText('POINT(-119.69432 37.6379)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Yucca House National Monument', ST_GeomFromText('POINT(-108.68612 37.25027)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Yukon-Charley Rivers National Preserve', ST_GeomFromText('POINT(-142.79972 65)', 4326)); +Insert into parkpoints (name, the_geom) VALUES ('Zion National Park', ST_GeomFromText('POINT(-112.68142 37.22299)', 4326)); + diff --git a/roles/provision-pyzip-demo-db-apb/files/zipcodes.ddl b/roles/provision-pyzip-demo-db-apb/files/zipcodes.ddl new file mode 100644 index 0000000..0c4d7e0 --- /dev/null +++ b/roles/provision-pyzip-demo-db-apb/files/zipcodes.ddl @@ -0,0 +1,17 @@ +CREATE TABLE zipcodes +( + zipcode CHARACTER(5) NOT NULL, + city character varying(256), + state character varying(256), + count INTEGER, + the_geom geometry(Geometry,4326), + CONSTRAINT zipcodes_pk PRIMARY KEY (zipcode ) +) +WITH ( + OIDS=FALSE +); + +CREATE INDEX geom_index_zipcodes + ON zipcodes + USING gist + (the_geom ); diff --git a/roles/provision-pyzip-demo-db-apb/files/zipcodes.sql b/roles/provision-pyzip-demo-db-apb/files/zipcodes.sql new file mode 100644 index 0000000..c44019d --- /dev/null +++ b/roles/provision-pyzip-demo-db-apb/files/zipcodes.sql @@ -0,0 +1,1444 @@ +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('07677', 'WOODCLIFF LAKE','NJ',1,ST_GeomFromText('POINT(-74.05 41.02)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('07981', 'WHIPPANY','NJ',1,ST_GeomFromText('POINT(-74.41 40.82)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('08889', 'WHITEHOUSE STATION','NJ',1,ST_GeomFromText('POINT(-74.76 40.6)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('10001', 'NEW YORK','NY',3,ST_GeomFromText('POINT(-73.99 40.71)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('10002', 'NEW YORK','NY',2,ST_GeomFromText('POINT(-73.99 40.71)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('10003', 'NEW YORK','NY',3,ST_GeomFromText('POINT(-73.99 40.71)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('10004', 'NEW YORK','NY',1,ST_GeomFromText('POINT(-73.99 40.71)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('10005', 'NEW YORK','NY',3,ST_GeomFromText('POINT(-73.99 40.71)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('10006', 'NEW YORK','NY',2,ST_GeomFromText('POINT(-73.99 40.71)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('10010', 'NEW YORK','NY',1,ST_GeomFromText('POINT(-73.99 40.71)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('10011', 'NEW YORK','NY',5,ST_GeomFromText('POINT(-73.99 40.71)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('10012', 'NEW YORK','NY',1,ST_GeomFromText('POINT(-73.99 40.71)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('10016', 'NEW YORK','NY',1,ST_GeomFromText('POINT(-73.99 40.71)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('10017', 'NEW YORK','NY',2,ST_GeomFromText('POINT(-73.99 40.71)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('10019', 'NEW YORK','NY',1,ST_GeomFromText('POINT(-73.99 40.71)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('10020', 'NEW YORK','NY',1,ST_GeomFromText('POINT(-73.99 40.71)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('10022', 'NEW YORK','NY',5,ST_GeomFromText('POINT(-73.99 40.71)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('10023', 'NEW YORK','NY',4,ST_GeomFromText('POINT(-73.99 40.71)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('10025', 'NEW YORK','NY',1,ST_GeomFromText('POINT(-73.99 40.71)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('02445', 'BROOKLINE','MA',1,ST_GeomFromText('POINT(-71.14 42.32)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('02420', 'LEXINGTON','MA',4,ST_GeomFromText('POINT(-71.23 42.44)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('02421', 'LEXINGTON','MA',13,ST_GeomFromText('POINT(-71.23 42.44)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('02458', 'NEWTON','MA',1,ST_GeomFromText('POINT(-71.2 42.33)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('02459', 'NEWTON CENTER','MA',3,ST_GeomFromText('POINT(-71.19 42.31)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('02464', 'NEWTON UPPER FALLS','MA',1,ST_GeomFromText('POINT(-71.22 42.31)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('02467', 'CHESTNUT HILL','MA',1,ST_GeomFromText('POINT(-71.16 42.31)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('02451', 'WALTHAM','MA',13,ST_GeomFromText('POINT(-71.24 42.38)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('02472', 'WATERTOWN','MA',1,ST_GeomFromText('POINT(-71.17 42.36)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('02482', 'WELLESLEY','MA',1,ST_GeomFromText('POINT(-71.28 42.3)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('02184', 'BRAINTREE','MA',1,ST_GeomFromText('POINT(-71.0 42.2)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('02171', 'QUINCY','MA',2,ST_GeomFromText('POINT(-71.0 42.26)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('02190', 'SOUTH WEYMOUTH','MA',1,ST_GeomFromText('POINT(-70.94 42.2)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('01718', 'VILLAGE OF NAGOG WOODS','MA',2,ST_GeomFromText('POINT(-71.41 42.51)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('01719', 'BOXBOROUGH','MA',3,ST_GeomFromText('POINT(-71.5 42.5)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('01720', 'ACTON','MA',8,ST_GeomFromText('POINT(-71.46 42.48)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('02474', 'ARLINGTON','MA',2,ST_GeomFromText('POINT(-71.16 42.41)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('02476', 'ARLINGTON','MA',1,ST_GeomFromText('POINT(-71.16 42.41)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('02151', 'REVERE','MA',1,ST_GeomFromText('POINT(-70.99 42.41)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('02155', 'MEDFORD','MA',2,ST_GeomFromText('POINT(-71.1 42.42)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('02143', 'SOMERVILLE','MA',1,ST_GeomFromText('POINT(-71.1 42.39)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('02144', 'SOMERVILLE','MA',1,ST_GeomFromText('POINT(-71.1 42.39)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('02145', 'SOMERVILLE','MA',4,ST_GeomFromText('POINT(-71.1 42.39)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('01913', 'AMESBURY','MA',1,ST_GeomFromText('POINT(-70.92 42.85)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('01810', 'ANDOVER','MA',8,ST_GeomFromText('POINT(-71.14 42.65)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('01432', 'AYER','MA',2,ST_GeomFromText('POINT(-71.58 42.56)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('01730', 'BEDFORD','MA',3,ST_GeomFromText('POINT(-71.26 42.48)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('02019', 'BELLINGHAM','MA',2,ST_GeomFromText('POINT(-71.47 42.09)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('01821', 'BILLERICA','MA',5,ST_GeomFromText('POINT(-71.26 42.55)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('01740', 'BOLTON','MA',2,ST_GeomFromText('POINT(-71.6 42.43)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('02109', 'BOSTON','MA',3,ST_GeomFromText('POINT(-71.06 42.35)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('02110', 'BOSTON','MA',3,ST_GeomFromText('POINT(-71.06 42.35)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('02111', 'BOSTON','MA',1,ST_GeomFromText('POINT(-71.06 42.35)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('02114', 'BOSTON','MA',1,ST_GeomFromText('POINT(-71.06 42.35)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('02115', 'BOSTON','MA',1,ST_GeomFromText('POINT(-71.06 42.35)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('02116', 'BOSTON','MA',7,ST_GeomFromText('POINT(-71.06 42.35)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('02119', 'ROXBURY','MA',2,ST_GeomFromText('POINT(-71.06 42.35)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('02125', 'DORCHESTER','MA',1,ST_GeomFromText('POINT(-71.06 42.35)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('02127', 'BOSTON','MA',4,ST_GeomFromText('POINT(-71.06 42.35)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('02128', 'BOSTON','MA',1,ST_GeomFromText('POINT(-71.06 42.35)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('02129', 'CHARLESTOWN','MA',2,ST_GeomFromText('POINT(-71.06 42.38)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('02132', 'WEST ROXBURY','MA',1,ST_GeomFromText('POINT(-71.16 42.28)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('02134', 'ALLSTON','MA',1,ST_GeomFromText('POINT(-71.13 42.35)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('02135', 'BRIGHTON','MA',1,ST_GeomFromText('POINT(-71.15 42.35)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('02199', 'BOSTON','MA',1,ST_GeomFromText('POINT(-71.06 42.35)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('02210', 'BOSTON','MA',2,ST_GeomFromText('POINT(-71.06 42.35)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('02215', 'BOSTON','MA',5,ST_GeomFromText('POINT(-71.06 42.35)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('02324', 'BRIDGEWATER','MA',1,ST_GeomFromText('POINT(-70.97 41.98)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('02325', 'BRIDGEWATER','MA',1,ST_GeomFromText('POINT(-70.97 41.98)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('01803', 'BURLINGTON','MA',11,ST_GeomFromText('POINT(-71.2 42.5)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('01922', 'BYFIELD','MA',1,ST_GeomFromText('POINT(-70.93 42.75)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('02138', 'CAMBRIDGE','MA',3,ST_GeomFromText('POINT(-71.11 42.37)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('02139', 'CAMBRIDGE','MA',5,ST_GeomFromText('POINT(-71.11 42.37)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('02140', 'CAMBRIDGE','MA',6,ST_GeomFromText('POINT(-71.11 42.37)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('02142', 'CAMBRIDGE','MA',8,ST_GeomFromText('POINT(-71.11 42.37)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('02021', 'CANTON','MA',2,ST_GeomFromText('POINT(-71.13 42.15)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('01741', 'CARLISLE','MA',3,ST_GeomFromText('POINT(-71.35 42.53)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('02632', 'CENTERVILLE','MA',1,ST_GeomFromText('POINT(-70.34 41.66)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('01824', 'CHELMSFORD','MA',1,ST_GeomFromText('POINT(-71.36 42.59)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('01510', 'CLINTON','MA',1,ST_GeomFromText('POINT(-71.68 42.41)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('01742', 'CONCORD','MA',1,ST_GeomFromText('POINT(-71.35 42.45)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('01923', 'DANVERS','MA',1,ST_GeomFromText('POINT(-70.95 42.57)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('01701', 'FRAMINGHAM','MA',5,ST_GeomFromText('POINT(-71.43 42.3)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('02038', 'FRANKLIN','MA',2,ST_GeomFromText('POINT(-71.38 42.08)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('01519', 'GRAFTON','MA',1,ST_GeomFromText('POINT(-71.68 42.2)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('01450', 'GROTON','MA',2,ST_GeomFromText('POINT(-71.57 42.6)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('02043', 'HINGHAM','MA',1,ST_GeomFromText('POINT(-70.88 42.23)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('01746', 'HOLLISTON','MA',1,ST_GeomFromText('POINT(-71.43 42.2)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('01748', 'HOPKINTON','MA',3,ST_GeomFromText('POINT(-71.52 42.22)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('01845', 'NORTH ANDOVER','MA',2,ST_GeomFromText('POINT(-71.11 42.7)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('01460', 'LITTLETON','MA',4,ST_GeomFromText('POINT(-71.47 42.53)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('01462', 'LUNENBURG','MA',1,ST_GeomFromText('POINT(-71.72 42.59)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('01907', 'SWAMPSCOTT','MA',1,ST_GeomFromText('POINT(-70.89 42.46)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('01752', 'MARLBOROUGH','MA',5,ST_GeomFromText('POINT(-71.54 42.34)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('01754', 'MAYNARD','MA',1,ST_GeomFromText('POINT(-71.45 42.42)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('02052', 'MEDFIELD','MA',1,ST_GeomFromText('POINT(-71.3 42.18)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('02053', 'MEDWAY','MA',1,ST_GeomFromText('POINT(-71.4 42.13)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('01756', 'MENDON','MA',1,ST_GeomFromText('POINT(-71.55 42.1)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('02346', 'MIDDLEBORO','MA',1,ST_GeomFromText('POINT(-70.9 41.86)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('01757', 'MILFORD','MA',1,ST_GeomFromText('POINT(-71.51 42.14)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('01760', 'NATICK','MA',2,ST_GeomFromText('POINT(-71.35 42.28)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('01950', 'NEWBURYPORT','MA',2,ST_GeomFromText('POINT(-70.88 42.81)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('01862', 'NORTH BILLERICA','MA',1,ST_GeomFromText('POINT(-71.29 42.57)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('01532', 'NORTHBOROUGH','MA',1,ST_GeomFromText('POINT(-71.64 42.31)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('01863', 'NORTH CHELMSFORD','MA',1,ST_GeomFromText('POINT(-71.39 42.63)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('02062', 'NORWOOD','MA',1,ST_GeomFromText('POINT(-71.19 42.18)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('01463', 'PEPPERELL','MA',1,ST_GeomFromText('POINT(-71.58 42.66)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('02360', 'PLYMOUTH','MA',1,ST_GeomFromText('POINT(-70.66 41.95)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('02368', 'RANDOLPH','MA',1,ST_GeomFromText('POINT(-71.05 42.17)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('01867', 'READING','MA',1,ST_GeomFromText('POINT(-71.1 42.53)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('01770', 'SHERBORN','MA',1,ST_GeomFromText('POINT(-71.36 42.23)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('01545', 'SHREWSBURY','MA',1,ST_GeomFromText('POINT(-71.71 42.3)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('01772', 'SOUTHBOROUGH','MA',2,ST_GeomFromText('POINT(-71.51 42.3)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('01562', 'SPENCER','MA',1,ST_GeomFromText('POINT(-71.99 42.24)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('02072', 'STOUGHTON','MA',1,ST_GeomFromText('POINT(-71.1 42.11)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('01566', 'STURBRIDGE','MA',1,ST_GeomFromText('POINT(-72.06 42.09)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('01590', 'SUTTON','MA',1,ST_GeomFromText('POINT(-71.76 42.15)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('01876', 'TEWKSBURY','MA',1,ST_GeomFromText('POINT(-71.23 42.61)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('01469', 'TOWNSEND','MA',1,ST_GeomFromText('POINT(-71.7 42.66)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('01569', 'UXBRIDGE','MA',1,ST_GeomFromText('POINT(-71.6 42.08)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('01880', 'WAKEFIELD','MA',1,ST_GeomFromText('POINT(-71.06 42.5)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('01778', 'WAYLAND','MA',1,ST_GeomFromText('POINT(-71.36 42.36)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('01581', 'WESTBOROUGH','MA',6,ST_GeomFromText('POINT(-71.61 42.26)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('02379', 'WEST BRIDGEWATER','MA',1,ST_GeomFromText('POINT(-71.0 42.01)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('01886', 'WESTFORD','MA',59,ST_GeomFromText('POINT(-71.43 42.58)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('01887', 'WILMINGTON','MA',1,ST_GeomFromText('POINT(-71.16 42.55)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('01890', 'WINCHESTER','MA',1,ST_GeomFromText('POINT(-71.14 42.45)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('01801', 'WOBURN','MA',2,ST_GeomFromText('POINT(-71.15 42.48)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('01602', 'WORCESTER','MA',1,ST_GeomFromText('POINT(-71.8 42.26)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('01604', 'WORCESTER','MA',1,ST_GeomFromText('POINT(-71.8 42.26)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('01606', 'WORCESTER','MA',1,ST_GeomFromText('POINT(-71.8 42.26)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('04122', 'PORTLAND','ME',1,ST_GeomFromText('POINT(-70.25 43.66)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('04074', 'SCARBOROUGH','ME',1,ST_GeomFromText('POINT(-70.33 43.59)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('03033', 'BROOKLINE','NH',1,ST_GeomFromText('POINT(-71.66 42.73)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('03301', 'CONCORD','NH',1,ST_GeomFromText('POINT(-71.56 43.23)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('03038', 'DERRY','NH',1,ST_GeomFromText('POINT(-71.28 42.89)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('03833', 'EXETER','NH',1,ST_GeomFromText('POINT(-70.94 42.97)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('03049', 'HOLLIS','NH',1,ST_GeomFromText('POINT(-71.58 42.73)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('03051', 'HUDSON','NH',2,ST_GeomFromText('POINT(-71.43 42.76)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('03052', 'LITCHFIELD','NH',1,ST_GeomFromText('POINT(-71.46 42.83)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('03053', 'LONDONDERRY','NH',1,ST_GeomFromText('POINT(-71.36 42.85)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('03104', 'MANCHESTER','NH',1,ST_GeomFromText('POINT(-71.45 42.99)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('03106', 'HOOKSETT','NH',1,ST_GeomFromText('POINT(-71.45 43.09)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('03110', 'BEDFORD','NH',3,ST_GeomFromText('POINT(-71.5 42.95)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('03054', 'MERRIMACK','NH',9,ST_GeomFromText('POINT(-71.48 42.86)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('03057', 'MONT VERNON','NH',1,ST_GeomFromText('POINT(-71.66 42.9)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('03060', 'NASHUA','NH',1,ST_GeomFromText('POINT(-71.49 42.74)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('03062', 'NASHUA','NH',4,ST_GeomFromText('POINT(-71.49 42.74)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('03063', 'NASHUA','NH',1,ST_GeomFromText('POINT(-71.49 42.74)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('03290', 'NOTTINGHAM','NH',1,ST_GeomFromText('POINT(-71.1 43.11)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('03458', 'PETERBOROUGH','NH',1,ST_GeomFromText('POINT(-71.96 42.87)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('03865', 'PLAISTOW','NH',2,ST_GeomFromText('POINT(-71.09 42.83)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('03801', 'PORTSMOUTH','NH',1,ST_GeomFromText('POINT(-70.78 43.05)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('03870', 'RYE','NH',1,ST_GeomFromText('POINT(-70.77 43.01)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('03079', 'SALEM','NH',1,ST_GeomFromText('POINT(-71.2 42.78)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('03275', 'SUNCOOK','NH',1,ST_GeomFromText('POINT(-71.45 43.13)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('05446', 'COLCHESTER','VT',1,ST_GeomFromText('POINT(-73.15 44.53)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('05452', 'ESSEX JUNCTION','VT',1,ST_GeomFromText('POINT(-73.11 44.49)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('05461', 'HINESBURG','VT',1,ST_GeomFromText('POINT(-73.12 44.33)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('06330', 'BALTIC','CT',1,ST_GeomFromText('POINT(-72.07 41.64)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('06002', 'BLOOMFIELD','CT',4,ST_GeomFromText('POINT(-72.73 41.81)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('06611', 'TRUMBULL','CT',2,ST_GeomFromText('POINT(-73.2 41.25)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('06010', 'BRISTOL','CT',1,ST_GeomFromText('POINT(-72.94 41.68)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('06088', 'EAST WINDSOR','CT',1,ST_GeomFromText('POINT(-72.6 41.85)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('06029', 'ELLINGTON','CT',1,ST_GeomFromText('POINT(-72.46 41.9)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('06825', 'FAIRFIELD','CT',2,ST_GeomFromText('POINT(-73.28 41.13)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('06335', 'GALES FERRY','CT',1,ST_GeomFromText('POINT(-72.09 41.46)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('06033', 'GLASTONBURY','CT',1,ST_GeomFromText('POINT(-72.6 41.7)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('06340', 'GROTON','CT',2,ST_GeomFromText('POINT(-72.07 41.32)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('06105', 'HARTFORD','CT',2,ST_GeomFromText('POINT(-72.68 41.76)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('06108', 'EAST HARTFORD','CT',1,ST_GeomFromText('POINT(-72.61 41.76)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('06115', 'HARTFORD','CT',1,ST_GeomFromText('POINT(-72.68 41.76)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('06117', 'WEST HARTFORD','CT',3,ST_GeomFromText('POINT(-72.74 41.75)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('06119', 'WEST HARTFORD','CT',1,ST_GeomFromText('POINT(-72.74 41.75)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('06155', 'HARTFORD','CT',2,ST_GeomFromText('POINT(-72.68 41.76)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('06156', 'HARTFORD','CT',3,ST_GeomFromText('POINT(-72.68 41.76)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('06183', 'HARTFORD','CT',3,ST_GeomFromText('POINT(-72.68 41.76)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('06040', 'MANCHESTER','CT',2,ST_GeomFromText('POINT(-72.51 41.78)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('06042', 'MANCHESTER','CT',1,ST_GeomFromText('POINT(-72.53 41.79)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('06450', 'MERIDEN','CT',1,ST_GeomFromText('POINT(-72.79 41.53)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('06762', 'MIDDLEBURY','CT',1,ST_GeomFromText('POINT(-73.12 41.52)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('06457', 'MIDDLETOWN','CT',1,ST_GeomFromText('POINT(-72.65 41.54)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('06460', 'MILFORD','CT',1,ST_GeomFromText('POINT(-73.06 41.22)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('06354', 'MOOSUP','CT',1,ST_GeomFromText('POINT(-71.87 41.71)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('06057', 'NEW HARTFORD','CT',1,ST_GeomFromText('POINT(-72.97 41.87)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('06512', 'EAST HAVEN','CT',1,ST_GeomFromText('POINT(-72.86 41.29)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('06515', 'NEW HAVEN','CT',1,ST_GeomFromText('POINT(-72.92 41.31)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('06060', 'NORTH GRANBY','CT',1,ST_GeomFromText('POINT(-72.84 42.01)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('06851', 'NORWALK','CT',6,ST_GeomFromText('POINT(-73.42 41.09)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('06063', 'BARKHAMSTED','CT',1,ST_GeomFromText('POINT(-72.97 41.93)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('06877', 'RIDGEFIELD','CT',2,ST_GeomFromText('POINT(-73.49 41.27)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('06067', 'ROCKY HILL','CT',1,ST_GeomFromText('POINT(-72.63 41.66)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('06488', 'SOUTHBURY','CT',1,ST_GeomFromText('POINT(-73.22 41.48)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('06902', 'STAMFORD','CT',2,ST_GeomFromText('POINT(-73.55 41.09)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('06903', 'STAMFORD','CT',1,ST_GeomFromText('POINT(-73.55 41.09)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('06078', 'SUFFIELD','CT',1,ST_GeomFromText('POINT(-72.65 41.98)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('06084', 'TOLLAND','CT',1,ST_GeomFromText('POINT(-72.15 41.98)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('06085', 'UNIONVILLE','CT',1,ST_GeomFromText('POINT(-72.88 41.75)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('06095', 'WINDSOR','CT',3,ST_GeomFromText('POINT(-72.65 41.85)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('01007', 'BELCHERTOWN','MA',1,ST_GeomFromText('POINT(-72.4 42.27)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('01010', 'BRIMFIELD','MA',1,ST_GeomFromText('POINT(-72.2 42.11)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('01030', 'FEEDING HILLS','MA',1,ST_GeomFromText('POINT(-72.67 42.06)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('01040', 'HOLYOKE','MA',1,ST_GeomFromText('POINT(-72.64 42.21)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('01238', 'LEE','MA',1,ST_GeomFromText('POINT(-73.25 42.3)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('02760', 'NORTH ATTLEBORO','MA',2,ST_GeomFromText('POINT(-71.33 41.97)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('01068', 'OAKHAM','MA',1,ST_GeomFromText('POINT(-72.05 42.35)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('02770', 'ROCHESTER','MA',1,ST_GeomFromText('POINT(-70.81 41.73)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('02771', 'SEEKONK','MA',1,ST_GeomFromText('POINT(-71.33 41.81)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('01111', 'SPRINGFIELD','MA',2,ST_GeomFromText('POINT(-72.53 42.11)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('01119', 'SPRINGFIELD','MA',1,ST_GeomFromText('POINT(-72.53 42.11)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('02780', 'TAUNTON','MA',1,ST_GeomFromText('POINT(-71.09 41.9)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('02815', 'CLAYVILLE','RI',1,ST_GeomFromText('POINT(-71.66 41.77)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('02817', 'WEST GREENWICH','RI',7,ST_GeomFromText('POINT(-71.65 41.63)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('02842', 'MIDDLETOWN','RI',2,ST_GeomFromText('POINT(-71.27 41.51)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('02865', 'LINCOLN','RI',1,ST_GeomFromText('POINT(-71.45 41.91)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('02903', 'PROVIDENCE','RI',1,ST_GeomFromText('POINT(-71.41 41.82)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('02905', 'PROVIDENCE','RI',1,ST_GeomFromText('POINT(-71.41 41.82)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('02910', 'CRANSTON','RI',1,ST_GeomFromText('POINT(-71.48 41.76)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('02912', 'PROVIDENCE','RI',1,ST_GeomFromText('POINT(-71.41 41.82)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('02920', 'CRANSTON','RI',2,ST_GeomFromText('POINT(-71.48 41.76)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('02886', 'WARWICK','RI',1,ST_GeomFromText('POINT(-71.42 41.7)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('02888', 'WARWICK','RI',2,ST_GeomFromText('POINT(-71.42 41.7)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('02895', 'WOONSOCKET','RI',3,ST_GeomFromText('POINT(-71.5 41.99)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('07002', 'BAYONNE','NJ',1,ST_GeomFromText('POINT(-74.11 40.66)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('07921', 'BEDMINSTER','NJ',1,ST_GeomFromText('POINT(-74.67 40.65)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('07003', 'BLOOMFIELD','NJ',1,ST_GeomFromText('POINT(-74.18 40.81)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('08805', 'BOUND BROOK','NJ',1,ST_GeomFromText('POINT(-74.53 40.56)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('08807', 'BRIDGEWATER','NJ',3,ST_GeomFromText('POINT(-74.62 40.59)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('08809', 'CLINTON','NJ',1,ST_GeomFromText('POINT(-74.91 40.63)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('07801', 'DOVER','NJ',2,ST_GeomFromText('POINT(-74.55 40.88)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('08816', 'EAST BRUNSWICK','NJ',2,ST_GeomFromText('POINT(-74.41 40.42)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('08817', 'EDISON','NJ',1,ST_GeomFromText('POINT(-74.36 40.52)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('08820', 'EDISON','NJ',2,ST_GeomFromText('POINT(-74.36 40.52)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('08837', 'EDISON','NJ',1,ST_GeomFromText('POINT(-74.36 40.52)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('07632', 'ENGLEWOOD CLIFFS','NJ',1,ST_GeomFromText('POINT(-73.94 40.88)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('07410', 'FAIR LAWN','NJ',1,ST_GeomFromText('POINT(-74.11 40.93)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('08822', 'FLEMINGTON','NJ',1,ST_GeomFromText('POINT(-74.86 40.5)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('07932', 'FLORHAM PARK','NJ',1,ST_GeomFromText('POINT(-74.39 40.77)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('07417', 'FRANKLIN LAKES','NJ',2,ST_GeomFromText('POINT(-74.2 41.0)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('07418', 'GLENWOOD','NJ',1,ST_GeomFromText('POINT(-74.48 41.24)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('08827', 'HAMPTON','NJ',1,ST_GeomFromText('POINT(-74.96 40.7)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('08844', 'HILLSBOROUGH','NJ',2,ST_GeomFromText('POINT(-74.62 40.47)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('07030', 'HOBOKEN','NJ',2,ST_GeomFromText('POINT(-74.02 40.74)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('08830', 'ISELIN','NJ',1,ST_GeomFromText('POINT(-74.31 40.57)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('07302', 'JERSEY CITY','NJ',13,ST_GeomFromText('POINT(-74.06 40.71)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('07306', 'JERSEY CITY','NJ',1,ST_GeomFromText('POINT(-74.06 40.71)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('07310', 'JERSEY CITY','NJ',3,ST_GeomFromText('POINT(-74.06 40.71)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('07311', 'JERSEY CITY','NJ',2,ST_GeomFromText('POINT(-74.06 40.71)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('08824', 'KENDALL PARK','NJ',1,ST_GeomFromText('POINT(-74.56 40.41)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('07039', 'LIVINGSTON','NJ',3,ST_GeomFromText('POINT(-74.32 40.78)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('07853', 'LONG VALLEY','NJ',1,ST_GeomFromText('POINT(-74.76 40.78)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('07430', 'MAHWAH','NJ',5,ST_GeomFromText('POINT(-74.18 41.08)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('08836', 'MARTINSVILLE','NJ',1,ST_GeomFromText('POINT(-74.56 40.6)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('08852', 'MONMOUTH JUNCTION','NJ',1,ST_GeomFromText('POINT(-74.54 40.38)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('07950', 'MORRIS PLAINS','NJ',1,ST_GeomFromText('POINT(-74.48 40.83)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('07960', 'MORRISTOWN','NJ',1,ST_GeomFromText('POINT(-74.47 40.79)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('08902', 'NORTH BRUNSWICK','NJ',1,ST_GeomFromText('POINT(-74.48 40.45)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('08857', 'OLD BRIDGE','NJ',1,ST_GeomFromText('POINT(-74.33 40.39)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('07054', 'PARSIPPANY','NJ',1,ST_GeomFromText('POINT(-74.4 40.85)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('08854', 'PISCATAWAY','NJ',2,ST_GeomFromText('POINT(-74.45 40.51)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('07059', 'WARREN','NJ',2,ST_GeomFromText('POINT(-74.51 40.63)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('07452', 'GLEN ROCK','NJ',1,ST_GeomFromText('POINT(-74.12 40.95)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('07661', 'RIVER EDGE','NJ',1,ST_GeomFromText('POINT(-74.04 40.92)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('07068', 'ROSELAND','NJ',4,ST_GeomFromText('POINT(-74.3 40.82)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('07458', 'SADDLE RIVER','NJ',1,ST_GeomFromText('POINT(-74.09 41.02)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('07078', 'SHORT HILLS','NJ',1,ST_GeomFromText('POINT(-74.33 40.74)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('08875', 'SOMERSET','NJ',1,ST_GeomFromText('POINT(-74.48 40.49)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('08876', 'SOMERVILLE','NJ',3,ST_GeomFromText('POINT(-74.61 40.57)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('07666', 'TEANECK','NJ',2,ST_GeomFromText('POINT(-74.01 40.88)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('07470', 'WAYNE','NJ',1,ST_GeomFromText('POINT(-74.24 40.94)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('07090', 'WESTFIELD','NJ',1,ST_GeomFromText('POINT(-74.34 40.65)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('10036', 'NEW YORK','NY',3,ST_GeomFromText('POINT(-73.99 40.71)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('10038', 'NEW YORK','NY',1,ST_GeomFromText('POINT(-73.99 40.71)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('10041', 'NEW YORK','NY',1,ST_GeomFromText('POINT(-73.99 40.71)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('10045', 'NEW YORK','NY',2,ST_GeomFromText('POINT(-73.99 40.71)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('10065', 'NEW YORK','NY',1,ST_GeomFromText('POINT(-73.96 40.76)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('10118', 'NEW YORK','NY',2,ST_GeomFromText('POINT(-73.99 40.71)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('10281', 'NEW YORK','NY',2,ST_GeomFromText('POINT(-73.99 40.71)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('10927', 'HAVERSTRAW','NY',1,ST_GeomFromText('POINT(-73.95 41.18)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('10962', 'ORANGEBURG','NY',1,ST_GeomFromText('POINT(-73.94 41.05)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('12566', 'PINE BUSH','NY',1,ST_GeomFromText('POINT(-74.29 41.6)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('10570', 'PLEASANTVILLE','NY',1,ST_GeomFromText('POINT(-73.78 41.13)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('10583', 'SCARSDALE','NY',2,ST_GeomFromText('POINT(-73.77 40.98)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('11215', 'BROOKLYN','NY',1,ST_GeomFromText('POINT(-73.94 40.64)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('11218', 'BROOKLYN','NY',1,ST_GeomFromText('POINT(-73.94 40.64)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('11229', 'BROOKLYN','NY',1,ST_GeomFromText('POINT(-73.94 40.64)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('11231', 'BROOKLYN','NY',1,ST_GeomFromText('POINT(-73.94 40.64)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('11232', 'BROOKLYN','NY',1,ST_GeomFromText('POINT(-73.94 40.64)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('11235', 'BROOKLYN','NY',1,ST_GeomFromText('POINT(-73.94 40.64)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('11249', 'BROOKLYN','NY',1,ST_GeomFromText('POINT(-73.94 40.64)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('11362', 'LITTLE NECK','NY',1,ST_GeomFromText('POINT(-73.74 40.76)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('11363', 'LITTLE NECK','NY',1,ST_GeomFromText('POINT(-73.74 40.76)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('11364', 'OAKLAND GARDENS','NY',1,ST_GeomFromText('POINT(-73.75 40.74)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('11375', 'FOREST HILLS','NY',1,ST_GeomFromText('POINT(-73.84 40.72)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('11020', 'GREAT NECK','NY',1,ST_GeomFromText('POINT(-73.73 40.8)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('11426', 'BELLEROSE','NY',1,ST_GeomFromText('POINT(-73.71 40.72)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('11101', 'LONG ISLAND CITY','NY',1,ST_GeomFromText('POINT(-73.93 40.74)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('11749', 'ISLANDIA','NY',1,ST_GeomFromText('POINT(-73.17 40.8)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('11801', 'HICKSVILLE','NY',1,ST_GeomFromText('POINT(-73.52 40.76)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('11743', 'HUNTINGTON','NY',1,ST_GeomFromText('POINT(-73.4 40.87)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('11746', 'HUNTINGTON STATION','NY',1,ST_GeomFromText('POINT(-73.4 40.84)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('11563', 'LYNBROOK','NY',1,ST_GeomFromText('POINT(-73.67 40.65)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('11787', 'SMITHTOWN','NY',1,ST_GeomFromText('POINT(-73.21 40.85)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('11973', 'UPTON','NY',2,ST_GeomFromText('POINT(-72.87 40.86)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('12020', 'BALLSTON SPA','NY',1,ST_GeomFromText('POINT(-73.85 43.0)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('13035', 'CAZENOVIA','NY',1,ST_GeomFromText('POINT(-75.85 42.92)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('13039', 'CICERO','NY',1,ST_GeomFromText('POINT(-76.11 43.17)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('13116', 'MINOA','NY',1,ST_GeomFromText('POINT(-76.0 43.07)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('13827', 'OWEGO','NY',1,ST_GeomFromText('POINT(-76.26 42.1)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('13441', 'ROME','NY',8,ST_GeomFromText('POINT(-75.47 43.21)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('12866', 'SARATOGA SPRINGS','NY',1,ST_GeomFromText('POINT(-73.77 43.06)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('12309', 'SCHENECTADY','NY',1,ST_GeomFromText('POINT(-73.92 42.8)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('13206', 'SYRACUSE','NY',1,ST_GeomFromText('POINT(-76.14 43.04)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('12180', 'TROY','NY',3,ST_GeomFromText('POINT(-73.67 42.73)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('12182', 'TROY','NY',1,ST_GeomFromText('POINT(-73.67 42.73)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('19901', 'DOVER','DE',1,ST_GeomFromText('POINT(-75.51 39.15)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('19702', 'NEWARK','DE',1,ST_GeomFromText('POINT(-75.75 39.67)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('19970', 'OCEAN VIEW','DE',1,ST_GeomFromText('POINT(-75.09 38.54)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('19801', 'WILMINGTON','DE',2,ST_GeomFromText('POINT(-75.53 39.73)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('08009', 'BERLIN','NJ',1,ST_GeomFromText('POINT(-74.93 39.79)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('08108', 'COLLINGSWOOD','NJ',1,ST_GeomFromText('POINT(-75.07 39.91)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('08003', 'CHERRY HILL','NJ',2,ST_GeomFromText('POINT(-74.99 39.9)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('08034', 'CHERRY HILL','NJ',1,ST_GeomFromText('POINT(-74.99 39.9)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('07724', 'EATONTOWN','NJ',1,ST_GeomFromText('POINT(-74.05 40.29)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('07728', 'FREEHOLD','NJ',1,ST_GeomFromText('POINT(-74.27 40.25)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('08053', 'MARLTON','NJ',1,ST_GeomFromText('POINT(-74.92 39.9)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('08056', 'MICKLETON','NJ',1,ST_GeomFromText('POINT(-75.25 39.78)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('08057', 'MOORESTOWN','NJ',1,ST_GeomFromText('POINT(-74.94 39.97)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('07751', 'MORGANVILLE','NJ',2,ST_GeomFromText('POINT(-74.25 40.36)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('08060', 'MOUNT HOLLY','NJ',1,ST_GeomFromText('POINT(-74.78 39.99)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('08054', 'MOUNT LAUREL','NJ',4,ST_GeomFromText('POINT(-74.9 39.94)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('08534', 'PENNINGTON','NJ',2,ST_GeomFromText('POINT(-74.79 40.32)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('08540', 'PRINCETON','NJ',2,ST_GeomFromText('POINT(-74.65 40.35)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('08550', 'PRINCETON JUNCTION','NJ',1,ST_GeomFromText('POINT(-74.62 40.32)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('08628', 'TRENTON','NJ',1,ST_GeomFromText('POINT(-74.76 40.22)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('08691', 'TRENTON','NJ',1,ST_GeomFromText('POINT(-74.76 40.22)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('08094', 'WILLIAMSTOWN','NJ',1,ST_GeomFromText('POINT(-74.98 39.68)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('14226', 'BUFFALO','NY',2,ST_GeomFromText('POINT(-78.85 42.88)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('14228', 'BUFFALO','NY',2,ST_GeomFromText('POINT(-78.85 42.88)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('14260', 'BUFFALO','NY',1,ST_GeomFromText('POINT(-78.85 42.88)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('14068', 'GETZVILLE','NY',1,ST_GeomFromText('POINT(-78.75 43.02)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('14086', 'LANCASTER','NY',1,ST_GeomFromText('POINT(-78.66 42.9)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('14609', 'ROCHESTER','NY',1,ST_GeomFromText('POINT(-77.61 43.16)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('14623', 'ROCHESTER','NY',4,ST_GeomFromText('POINT(-77.61 43.16)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('14624', 'ROCHESTER','NY',3,ST_GeomFromText('POINT(-77.61 43.16)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('14647', 'ROCHESTER','NY',1,ST_GeomFromText('POINT(-77.61 43.16)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('14580', 'WEBSTER','NY',2,ST_GeomFromText('POINT(-77.42 43.21)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('14586', 'WEST HENRIETTA','NY',1,ST_GeomFromText('POINT(-77.69 43.03)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('15102', 'BETHEL PARK','PA',1,ST_GeomFromText('POINT(-80.03 40.32)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('15627', 'DERRY','PA',1,ST_GeomFromText('POINT(-79.3 40.33)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('15044', 'GIBSONIA','PA',1,ST_GeomFromText('POINT(-79.94 40.63)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('15057', 'MC DONALD','PA',1,ST_GeomFromText('POINT(-80.23 40.37)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('16066', 'CRANBERRY TWP','PA',3,ST_GeomFromText('POINT(-80.1 40.71)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('15205', 'PITTSBURGH','PA',1,ST_GeomFromText('POINT(-79.97 40.43)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('15213', 'PITTSBURGH','PA',1,ST_GeomFromText('POINT(-79.97 40.43)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('15222', 'PITTSBURGH','PA',2,ST_GeomFromText('POINT(-79.97 40.43)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('15224', 'PITTSBURGH','PA',1,ST_GeomFromText('POINT(-79.97 40.43)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('15237', 'PITTSBURGH','PA',1,ST_GeomFromText('POINT(-79.97 40.43)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('15480', 'SMOCK','PA',1,ST_GeomFromText('POINT(-79.75 39.99)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('16802', 'UNIVERSITY PARK','PA',2,ST_GeomFromText('POINT(-77.85 40.8)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('16803', 'STATE COLLEGE','PA',1,ST_GeomFromText('POINT(-77.85 40.79)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('18210', 'ALBRIGHTSVILLE','PA',1,ST_GeomFromText('POINT(-75.61 40.96)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('18017', 'BETHLEHEM','PA',1,ST_GeomFromText('POINT(-75.36 40.62)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('18330', 'EFFORT','PA',1,ST_GeomFromText('POINT(-75.45 40.96)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('17327', 'GLEN ROCK','PA',1,ST_GeomFromText('POINT(-76.73 39.79)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('17603', 'LANCASTER','PA',1,ST_GeomFromText('POINT(-76.3 40.04)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('18062', 'MACUNGIE','PA',1,ST_GeomFromText('POINT(-75.55 40.51)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('17050', 'MECHANICSBURG','PA',1,ST_GeomFromText('POINT(-77.02 40.24)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('17078', 'PALMYRA','PA',1,ST_GeomFromText('POINT(-76.59 40.3)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('17964', 'PITMAN','PA',1,ST_GeomFromText('POINT(-76.51 40.7)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('18077', 'RIEGELSVILLE','PA',1,ST_GeomFromText('POINT(-75.19 40.59)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('17402', 'YORK','PA',1,ST_GeomFromText('POINT(-76.73 39.96)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('17370', 'YORK HAVEN','PA',1,ST_GeomFromText('POINT(-76.71 40.11)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('19002', 'AMBLER','PA',1,ST_GeomFromText('POINT(-75.22 40.15)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('19020', 'BENSALEM','PA',1,ST_GeomFromText('POINT(-74.93 40.1)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('19008', 'BROOMALL','PA',2,ST_GeomFromText('POINT(-75.35 39.96)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('19425', 'CHESTER SPRINGS','PA',1,ST_GeomFromText('POINT(-75.64 40.1)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('19320', 'COATESVILLE','PA',1,ST_GeomFromText('POINT(-75.81 39.98)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('19428', 'CONSHOHOCKEN','PA',1,ST_GeomFromText('POINT(-75.3 40.07)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('19335', 'DOWNINGTOWN','PA',1,ST_GeomFromText('POINT(-75.7 40.0)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('19030', 'FAIRLESS HILLS','PA',1,ST_GeomFromText('POINT(-74.85 40.17)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('19342', 'GLEN MILLS','PA',1,ST_GeomFromText('POINT(-75.5 39.89)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('19047', 'LANGHORNE','PA',2,ST_GeomFromText('POINT(-74.91 40.17)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('19352', 'LINCOLN UNIVERSITY','PA',1,ST_GeomFromText('POINT(-75.88 39.78)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('19403', 'NORRISTOWN','PA',1,ST_GeomFromText('POINT(-75.33 40.12)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('19406', 'KING OF PRUSSIA','PA',2,ST_GeomFromText('POINT(-75.38 40.09)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('19103', 'PHILADELPHIA','PA',1,ST_GeomFromText('POINT(-75.16 39.95)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('19104', 'PHILADELPHIA','PA',2,ST_GeomFromText('POINT(-75.16 39.95)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('19107', 'PHILADELPHIA','PA',1,ST_GeomFromText('POINT(-75.16 39.95)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('19147', 'PHILADELPHIA','PA',1,ST_GeomFromText('POINT(-75.16 39.95)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('19192', 'PHILADELPHIA','PA',3,ST_GeomFromText('POINT(-75.16 39.95)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('19460', 'PHOENIXVILLE','PA',1,ST_GeomFromText('POINT(-75.51 40.13)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('19482', 'VALLEY FORGE','PA',1,ST_GeomFromText('POINT(-75.47 40.09)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('18974', 'WARMINSTER','PA',1,ST_GeomFromText('POINT(-75.07 40.21)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('19087', 'WAYNE','PA',1,ST_GeomFromText('POINT(-75.4 40.06)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('19382', 'WEST CHESTER','PA',1,ST_GeomFromText('POINT(-75.6 39.95)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('24578', 'NATURAL BRIDGE','VA',1,ST_GeomFromText('POINT(-79.55 37.63)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('25414', 'CHARLES TOWN','WV',1,ST_GeomFromText('POINT(-77.85 39.28)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('26306', 'CLARKSBURG','WV',2,ST_GeomFromText('POINT(-80.33 39.28)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('30720', 'DALTON','GA',1,ST_GeomFromText('POINT(-84.97 34.76)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('30725', 'FLINTSTONE','GA',1,ST_GeomFromText('POINT(-85.35 34.92)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('37027', 'BRENTWOOD','TN',2,ST_GeomFromText('POINT(-86.78 35.99)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('37402', 'CHATTANOOGA','TN',4,ST_GeomFromText('POINT(-85.25 35.06)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('37405', 'CHATTANOOGA','TN',2,ST_GeomFromText('POINT(-85.25 35.06)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('37312', 'CLEVELAND','TN',1,ST_GeomFromText('POINT(-84.86 35.17)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('38017', 'COLLIERVILLE','TN',6,ST_GeomFromText('POINT(-89.67 35.05)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('37067', 'FRANKLIN','TN',4,ST_GeomFromText('POINT(-86.84 35.92)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('37075', 'HENDERSONVILLE','TN',1,ST_GeomFromText('POINT(-86.6 36.29)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('37076', 'HERMITAGE','TN',1,ST_GeomFromText('POINT(-86.58 36.13)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('37902', 'KNOXVILLE','TN',1,ST_GeomFromText('POINT(-83.94 35.97)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('37920', 'KNOXVILLE','TN',1,ST_GeomFromText('POINT(-83.94 35.97)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('37932', 'KNOXVILLE','TN',2,ST_GeomFromText('POINT(-83.94 35.97)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('37996', 'KNOXVILLE','TN',1,ST_GeomFromText('POINT(-83.94 35.97)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('37772', 'LENOIR CITY','TN',1,ST_GeomFromText('POINT(-84.27 35.8)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('37350', 'LOOKOUT MOUNTAIN','TN',1,ST_GeomFromText('POINT(-85.35 34.99)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('38105', 'MEMPHIS','TN',1,ST_GeomFromText('POINT(-90.0 35.1)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('38117', 'MEMPHIS','TN',1,ST_GeomFromText('POINT(-90.0 35.1)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('38120', 'MEMPHIS','TN',2,ST_GeomFromText('POINT(-90.0 35.1)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('37813', 'MORRISTOWN','TN',1,ST_GeomFromText('POINT(-83.29 36.21)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('37129', 'MURFREESBORO','TN',1,ST_GeomFromText('POINT(-86.39 35.85)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('37209', 'NASHVILLE','TN',1,ST_GeomFromText('POINT(-86.78 36.17)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('37214', 'NASHVILLE','TN',1,ST_GeomFromText('POINT(-86.78 36.17)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('37217', 'NASHVILLE','TN',4,ST_GeomFromText('POINT(-86.78 36.17)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('40514', 'LEXINGTON','KY',1,ST_GeomFromText('POINT(-84.45 38.04)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('40201', 'LOUISVILLE','KY',1,ST_GeomFromText('POINT(-85.74 38.22)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('40213', 'LOUISVILLE','KY',2,ST_GeomFromText('POINT(-85.74 38.22)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('40222', 'LOUISVILLE','KY',1,ST_GeomFromText('POINT(-85.74 38.22)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('40229', 'LOUISVILLE','KY',1,ST_GeomFromText('POINT(-85.74 38.22)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('40299', 'LOUISVILLE','KY',1,ST_GeomFromText('POINT(-85.74 38.22)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('42301', 'OWENSBORO','KY',1,ST_GeomFromText('POINT(-87.11 37.75)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('42303', 'OWENSBORO','KY',1,ST_GeomFromText('POINT(-87.11 37.75)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('44313', 'AKRON','OH',1,ST_GeomFromText('POINT(-81.52 41.08)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('44321', 'AKRON','OH',1,ST_GeomFromText('POINT(-81.52 41.08)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('44113', 'CLEVELAND','OH',1,ST_GeomFromText('POINT(-81.67 41.47)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('44120', 'CLEVELAND','OH',1,ST_GeomFromText('POINT(-81.67 41.47)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('44144', 'CLEVELAND','OH',2,ST_GeomFromText('POINT(-81.67 41.47)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('44224', 'STOW','OH',1,ST_GeomFromText('POINT(-81.43 41.17)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('44242', 'KENT','OH',1,ST_GeomFromText('POINT(-81.36 41.14)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('44054', 'SHEFFIELD LAKE','OH',1,ST_GeomFromText('POINT(-82.09 41.48)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('44281', 'WADSWORTH','OH',2,ST_GeomFromText('POINT(-81.73 41.02)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('47025', 'LAWRENCEBURG','IN',1,ST_GeomFromText('POINT(-84.86 39.1)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('41011', 'COVINGTON','KY',1,ST_GeomFromText('POINT(-84.5 39.08)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('43110', 'CANAL WINCHESTER','OH',1,ST_GeomFromText('POINT(-82.82 39.84)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('45229', 'CINCINNATI','OH',1,ST_GeomFromText('POINT(-84.51 39.09)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('45241', 'CINCINNATI','OH',1,ST_GeomFromText('POINT(-84.51 39.09)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('45249', 'CINCINNATI','OH',2,ST_GeomFromText('POINT(-84.51 39.09)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('43214', 'COLUMBUS','OH',1,ST_GeomFromText('POINT(-82.98 39.98)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('43215', 'COLUMBUS','OH',1,ST_GeomFromText('POINT(-82.98 39.98)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('43221', 'COLUMBUS','OH',1,ST_GeomFromText('POINT(-82.98 39.98)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('43222', 'COLUMBUS','OH',1,ST_GeomFromText('POINT(-82.98 39.98)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('43240', 'COLUMBUS','OH',2,ST_GeomFromText('POINT(-82.98 39.98)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('45429', 'DAYTON','OH',1,ST_GeomFromText('POINT(-84.19 39.77)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('45440', 'DAYTON','OH',1,ST_GeomFromText('POINT(-84.19 39.77)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('43017', 'DUBLIN','OH',3,ST_GeomFromText('POINT(-83.13 40.11)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('45014', 'FAIRFIELD','OH',1,ST_GeomFromText('POINT(-84.54 39.33)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('43130', 'LANCASTER','OH',1,ST_GeomFromText('POINT(-82.59 39.72)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('45039', 'MAINEVILLE','OH',1,ST_GeomFromText('POINT(-84.22 39.31)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('43040', 'MARYSVILLE','OH',1,ST_GeomFromText('POINT(-83.37 40.23)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('43081', 'WESTERVILLE','OH',1,ST_GeomFromText('POINT(-82.91 40.12)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('43082', 'WESTERVILLE','OH',1,ST_GeomFromText('POINT(-82.91 40.12)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('45385', 'XENIA','OH',1,ST_GeomFromText('POINT(-83.94 39.68)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('50011', 'AMES','IA',1,ST_GeomFromText('POINT(-93.62 42.02)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('52405', 'CEDAR RAPIDS','IA',1,ST_GeomFromText('POINT(-91.66 41.97)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('50309', 'DES MOINES','IA',1,ST_GeomFromText('POINT(-93.61 41.57)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('50392', 'DES MOINES','IA',1,ST_GeomFromText('POINT(-93.61 41.57)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('50131', 'JOHNSTON','IA',3,ST_GeomFromText('POINT(-93.7 41.68)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('55912', 'AUSTIN','MN',2,ST_GeomFromText('POINT(-92.97 43.67)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('55313', 'BUFFALO','MN',1,ST_GeomFromText('POINT(-93.86 45.17)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('55317', 'CHANHASSEN','MN',1,ST_GeomFromText('POINT(-93.55 44.85)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('55305', 'HOPKINS','MN',1,ST_GeomFromText('POINT(-93.4 44.92)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('55343', 'HOPKINS','MN',1,ST_GeomFromText('POINT(-93.4 44.92)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('55344', 'EDEN PRAIRIE','MN',1,ST_GeomFromText('POINT(-93.45 44.84)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('55345', 'MINNETONKA','MN',1,ST_GeomFromText('POINT(-93.46 44.93)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('56345', 'LITTLE FALLS','MN',1,ST_GeomFromText('POINT(-94.36 45.97)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('55401', 'MINNEAPOLIS','MN',1,ST_GeomFromText('POINT(-93.26 44.96)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('55402', 'MINNEAPOLIS','MN',1,ST_GeomFromText('POINT(-93.26 44.96)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('55407', 'MINNEAPOLIS','MN',1,ST_GeomFromText('POINT(-93.26 44.96)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('55410', 'MINNEAPOLIS','MN',1,ST_GeomFromText('POINT(-93.26 44.96)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('55411', 'MINNEAPOLIS','MN',1,ST_GeomFromText('POINT(-93.26 44.96)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('55414', 'MINNEAPOLIS','MN',1,ST_GeomFromText('POINT(-93.26 44.96)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('55416', 'MINNEAPOLIS','MN',1,ST_GeomFromText('POINT(-93.26 44.96)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('55419', 'MINNEAPOLIS','MN',1,ST_GeomFromText('POINT(-93.26 44.96)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('55426', 'MINNEAPOLIS','MN',2,ST_GeomFromText('POINT(-93.26 44.96)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('55431', 'MINNEAPOLIS','MN',1,ST_GeomFromText('POINT(-93.26 44.96)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('55436', 'MINNEAPOLIS','MN',1,ST_GeomFromText('POINT(-93.26 44.96)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('55438', 'MINNEAPOLIS','MN',1,ST_GeomFromText('POINT(-93.26 44.96)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('55442', 'MINNEAPOLIS','MN',2,ST_GeomFromText('POINT(-93.26 44.96)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('55445', 'MINNEAPOLIS','MN',1,ST_GeomFromText('POINT(-93.26 44.96)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('55369', 'OSSEO','MN',2,ST_GeomFromText('POINT(-93.39 45.11)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('55964', 'PLAINVIEW','MN',1,ST_GeomFromText('POINT(-92.16 44.16)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('55372', 'PRIOR LAKE','MN',1,ST_GeomFromText('POINT(-93.43 44.72)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('55901', 'ROCHESTER','MN',1,ST_GeomFromText('POINT(-92.47 44.01)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('55116', 'SAINT PAUL','MN',1,ST_GeomFromText('POINT(-93.1 44.94)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('55123', 'SAINT PAUL','MN',1,ST_GeomFromText('POINT(-93.1 44.94)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('55126', 'SAINT PAUL','MN',1,ST_GeomFromText('POINT(-93.1 44.94)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('55127', 'SAINT PAUL','MN',1,ST_GeomFromText('POINT(-93.1 44.94)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('55129', 'SAINT PAUL','MN',2,ST_GeomFromText('POINT(-93.1 44.94)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('55144', 'SAINT PAUL','MN',1,ST_GeomFromText('POINT(-93.1 44.94)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('55337', 'BURNSVILLE','MN',1,ST_GeomFromText('POINT(-93.27 44.76)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('55378', 'SAVAGE','MN',1,ST_GeomFromText('POINT(-93.35 44.75)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('55379', 'SHAKOPEE','MN',1,ST_GeomFromText('POINT(-93.47 44.77)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('55077', 'INVER GROVE HEIGHTS','MN',1,ST_GeomFromText('POINT(-93.05 44.82)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('55987', 'WINONA','MN',3,ST_GeomFromText('POINT(-91.65 44.04)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('54011', 'ELLSWORTH','WI',1,ST_GeomFromText('POINT(-92.47 44.73)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('54017', 'NEW RICHMOND','WI',1,ST_GeomFromText('POINT(-92.53 45.12)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('57186', 'SIOUX FALLS','SD',1,ST_GeomFromText('POINT(-96.7 43.55)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('66061', 'OLATHE','KS',1,ST_GeomFromText('POINT(-94.81 38.88)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('66062', 'OLATHE','KS',1,ST_GeomFromText('POINT(-94.81 38.88)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('66202', 'MISSION','KS',1,ST_GeomFromText('POINT(-94.68 38.9)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('66203', 'SHAWNEE','KS',1,ST_GeomFromText('POINT(-94.68 38.9)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('66211', 'LEAWOOD','KS',1,ST_GeomFromText('POINT(-94.68 38.9)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('66215', 'LENEXA','KS',1,ST_GeomFromText('POINT(-94.68 38.9)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('66218', 'SHAWNEE','KS',1,ST_GeomFromText('POINT(-94.68 38.9)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('66221', 'OVERLAND PARK','KS',1,ST_GeomFromText('POINT(-94.68 38.9)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('66224', 'OVERLAND PARK','KS',1,ST_GeomFromText('POINT(-94.68 38.9)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('66226', 'SHAWNEE','KS',1,ST_GeomFromText('POINT(-94.68 38.9)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('64640', 'GALLATIN','MO',1,ST_GeomFromText('POINT(-93.96 39.91)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('64102', 'KANSAS CITY','MO',1,ST_GeomFromText('POINT(-94.58 39.09)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('64105', 'KANSAS CITY','MO',10,ST_GeomFromText('POINT(-94.58 39.09)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('64114', 'KANSAS CITY','MO',2,ST_GeomFromText('POINT(-94.58 39.09)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('64116', 'KANSAS CITY','MO',1,ST_GeomFromText('POINT(-94.58 39.09)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('64117', 'KANSAS CITY','MO',2,ST_GeomFromText('POINT(-94.58 39.09)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('64118', 'KANSAS CITY','MO',1,ST_GeomFromText('POINT(-94.58 39.09)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('64130', 'KANSAS CITY','MO',1,ST_GeomFromText('POINT(-94.58 39.09)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('64133', 'KANSAS CITY','MO',1,ST_GeomFromText('POINT(-94.58 39.09)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('64198', 'KANSAS CITY','MO',1,ST_GeomFromText('POINT(-94.58 39.09)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('66502', 'MANHATTAN','KS',1,ST_GeomFromText('POINT(-96.59 39.19)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('66507', 'MAPLE HILL','KS',1,ST_GeomFromText('POINT(-96.02 39.08)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('67230', 'WICHITA','KS',1,ST_GeomFromText('POINT(-97.34 37.68)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('68022', 'ELKHORN','NE',1,ST_GeomFromText('POINT(-96.23 41.28)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('68114', 'OMAHA','NE',1,ST_GeomFromText('POINT(-96.01 41.26)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('68154', 'OMAHA','NE',1,ST_GeomFromText('POINT(-96.01 41.26)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('80513', 'BERTHOUD','CO',1,ST_GeomFromText('POINT(-105.08 40.3)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('80302', 'BOULDER','CO',2,ST_GeomFromText('POINT(-105.25 40.02)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('80304', 'BOULDER','CO',2,ST_GeomFromText('POINT(-105.25 40.02)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('80305', 'BOULDER','CO',1,ST_GeomFromText('POINT(-105.25 40.02)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('80023', 'BROOMFIELD','CO',1,ST_GeomFromText('POINT(-105.02 39.96)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('80905', 'COLORADO SPRINGS','CO',1,ST_GeomFromText('POINT(-104.76 38.86)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('80906', 'COLORADO SPRINGS','CO',2,ST_GeomFromText('POINT(-104.76 38.86)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('80908', 'COLORADO SPRINGS','CO',2,ST_GeomFromText('POINT(-104.76 38.86)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('80919', 'COLORADO SPRINGS','CO',2,ST_GeomFromText('POINT(-104.76 38.86)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('80433', 'CONIFER','CO',1,ST_GeomFromText('POINT(-105.3 39.52)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('80202', 'DENVER','CO',2,ST_GeomFromText('POINT(-104.87 39.76)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('80203', 'DENVER','CO',1,ST_GeomFromText('POINT(-104.87 39.76)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('80205', 'DENVER','CO',1,ST_GeomFromText('POINT(-104.87 39.76)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('80210', 'DENVER','CO',1,ST_GeomFromText('POINT(-104.87 39.76)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('80211', 'DENVER','CO',1,ST_GeomFromText('POINT(-104.87 39.76)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('80222', 'DENVER','CO',2,ST_GeomFromText('POINT(-104.87 39.76)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('80111', 'ENGLEWOOD','CO',2,ST_GeomFromText('POINT(-104.99 39.64)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('80112', 'ENGLEWOOD','CO',1,ST_GeomFromText('POINT(-104.99 39.64)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('80516', 'ERIE','CO',1,ST_GeomFromText('POINT(-105.04 40.02)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('80524', 'FORT COLLINS','CO',1,ST_GeomFromText('POINT(-105.06 40.55)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('80526', 'FORT COLLINS','CO',1,ST_GeomFromText('POINT(-105.06 40.55)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('80528', 'FORT COLLINS','CO',1,ST_GeomFromText('POINT(-105.06 40.55)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('80401', 'GOLDEN','CO',1,ST_GeomFromText('POINT(-105.21 39.73)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('80126', 'LITTLETON','CO',2,ST_GeomFromText('POINT(-105.01 39.59)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('80129', 'LITTLETON','CO',1,ST_GeomFromText('POINT(-105.0 39.54)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('80130', 'LITTLETON','CO',1,ST_GeomFromText('POINT(-104.93 39.54)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('80503', 'LONGMONT','CO',2,ST_GeomFromText('POINT(-105.11 40.17)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('80504', 'LONGMONT','CO',1,ST_GeomFromText('POINT(-105.11 40.17)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('80027', 'LOUISVILLE','CO',3,ST_GeomFromText('POINT(-105.14 39.96)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('80132', 'MONUMENT','CO',2,ST_GeomFromText('POINT(-104.85 39.07)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('80134', 'PARKER','CO',1,ST_GeomFromText('POINT(-104.76 39.5)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('80138', 'PARKER','CO',1,ST_GeomFromText('POINT(-104.76 39.5)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('80031', 'WESTMINSTER','CO',1,ST_GeomFromText('POINT(-105.05 39.88)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('83707', 'BOISE','ID',1,ST_GeomFromText('POINT(-116.16 43.66)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('83201', 'POCATELLO','ID',3,ST_GeomFromText('POINT(-112.39 42.9)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('84003', 'AMERICAN FORK','UT',1,ST_GeomFromText('POINT(-111.78 40.39)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('84715', 'BICKNELL','UT',1,ST_GeomFromText('POINT(-111.55 38.33)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('84043', 'LEHI','UT',3,ST_GeomFromText('POINT(-111.96 40.32)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('84057', 'OREM','UT',1,ST_GeomFromText('POINT(-111.71 40.31)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('84602', 'PROVO','UT',2,ST_GeomFromText('POINT(-111.69 40.22)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('84065', 'RIVERTON','UT',1,ST_GeomFromText('POINT(-112.0 40.47)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('84095', 'SOUTH JORDAN','UT',1,ST_GeomFromText('POINT(-111.96 40.55)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('84096', 'HERRIMAN','UT',1,ST_GeomFromText('POINT(-112.07 40.48)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('84653', 'SALEM','UT',1,ST_GeomFromText('POINT(-111.64 40.02)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('84101', 'SALT LAKE CITY','UT',1,ST_GeomFromText('POINT(-111.9 40.75)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('84105', 'SALT LAKE CITY','UT',1,ST_GeomFromText('POINT(-111.85 40.73)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('84108', 'SALT LAKE CITY','UT',1,ST_GeomFromText('POINT(-111.73 40.78)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('84118', 'SALT LAKE CITY','UT',1,ST_GeomFromText('POINT(-112.01 40.65)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('84120', 'SALT LAKE CITY','UT',4,ST_GeomFromText('POINT(-111.99 40.69)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('84088', 'WEST JORDAN','UT',1,ST_GeomFromText('POINT(-111.98 40.58)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('85224', 'CHANDLER','AZ',1,ST_GeomFromText('POINT(-111.87 33.32)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('85226', 'CHANDLER','AZ',3,ST_GeomFromText('POINT(-111.94 33.27)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('85248', 'CHANDLER','AZ',1,ST_GeomFromText('POINT(-111.96 33.24)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('85286', 'CHANDLER','AZ',1,ST_GeomFromText('POINT(-111.82 33.27)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('86004', 'FLAGSTAFF','AZ',1,ST_GeomFromText('POINT(-111.32 35.29)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('85215', 'MESA','AZ',2,ST_GeomFromText('POINT(-111.44 33.59)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('85383', 'PEORIA','AZ',1,ST_GeomFromText('POINT(-112.24 33.76)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('85008', 'PHOENIX','AZ',1,ST_GeomFromText('POINT(-111.98 33.46)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('85012', 'PHOENIX','AZ',1,ST_GeomFromText('POINT(-112.07 33.5)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('85018', 'PHOENIX','AZ',1,ST_GeomFromText('POINT(-111.98 33.5)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('85027', 'PHOENIX','AZ',2,ST_GeomFromText('POINT(-112.08 33.72)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('85044', 'PHOENIX','AZ',5,ST_GeomFromText('POINT(-112.06 33.34)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('85142', 'QUEEN CREEK','AZ',1,ST_GeomFromText('POINT(-111.59 33.16)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('85254', 'SCOTTSDALE','AZ',4,ST_GeomFromText('POINT(-111.94 33.61)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('85255', 'SCOTTSDALE','AZ',1,ST_GeomFromText('POINT(-111.87 33.66)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('85259', 'SCOTTSDALE','AZ',1,ST_GeomFromText('POINT(-111.73 33.68)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('85262', 'SCOTTSDALE','AZ',1,ST_GeomFromText('POINT(-111.78 33.85)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('85282', 'TEMPE','AZ',1,ST_GeomFromText('POINT(-111.92 33.4)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('85283', 'TEMPE','AZ',2,ST_GeomFromText('POINT(-111.93 33.36)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('85284', 'TEMPE','AZ',1,ST_GeomFromText('POINT(-111.93 33.33)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('85711', 'TUCSON','AZ',2,ST_GeomFromText('POINT(-110.88 32.21)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('87111', 'ALBUQUERQUE','NM',3,ST_GeomFromText('POINT(-106.62 35.11)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('87122', 'ALBUQUERQUE','NM',1,ST_GeomFromText('POINT(-106.62 35.11)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('87545', 'LOS ALAMOS','NM',1,ST_GeomFromText('POINT(-106.28 35.89)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('89074', 'HENDERSON','NV',1,ST_GeomFromText('POINT(-115.07 36.03)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('89103', 'LAS VEGAS','NV',1,ST_GeomFromText('POINT(-115.21 36.11)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('89117', 'LAS VEGAS','NV',1,ST_GeomFromText('POINT(-115.27 36.14)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('89129', 'LAS VEGAS','NV',1,ST_GeomFromText('POINT(-115.29 36.23)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('89135', 'LAS VEGAS','NV',1,ST_GeomFromText('POINT(-115.38 36.09)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('89141', 'LAS VEGAS','NV',1,ST_GeomFromText('POINT(-115.21 35.97)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('89144', 'LAS VEGAS','NV',1,ST_GeomFromText('POINT(-115.31 36.17)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('89145', 'LAS VEGAS','NV',1,ST_GeomFromText('POINT(-115.28 36.16)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('89031', 'NORTH LAS VEGAS','NV',1,ST_GeomFromText('POINT(-115.13 36.27)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('97005', 'BEAVERTON','OR',3,ST_GeomFromText('POINT(-122.8 45.49)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('97006', 'BEAVERTON','OR',3,ST_GeomFromText('POINT(-122.85 45.52)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('97408', 'EUGENE','OR',1,ST_GeomFromText('POINT(-123.07 44.13)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('97024', 'FAIRVIEW','OR',1,ST_GeomFromText('POINT(-122.44 45.54)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('97124', 'HILLSBORO','OR',3,ST_GeomFromText('POINT(-122.91 45.58)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('97204', 'PORTLAND','OR',3,ST_GeomFromText('POINT(-122.67 45.51)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('97205', 'PORTLAND','OR',2,ST_GeomFromText('POINT(-122.68 45.51)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('97206', 'PORTLAND','OR',1,ST_GeomFromText('POINT(-122.6 45.48)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('97210', 'PORTLAND','OR',1,ST_GeomFromText('POINT(-122.73 45.55)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('97211', 'PORTLAND','OR',2,ST_GeomFromText('POINT(-122.62 45.57)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('97213', 'PORTLAND','OR',1,ST_GeomFromText('POINT(-122.6 45.53)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('97214', 'PORTLAND','OR',1,ST_GeomFromText('POINT(-122.64 45.51)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('97223', 'PORTLAND','OR',1,ST_GeomFromText('POINT(-122.76 45.44)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('97224', 'PORTLAND','OR',1,ST_GeomFromText('POINT(-122.79 45.4)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('97229', 'PORTLAND','OR',1,ST_GeomFromText('POINT(-122.81 45.55)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('97302', 'SALEM','OR',1,ST_GeomFromText('POINT(-123.06 44.9)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('97068', 'WEST LINN','OR',1,ST_GeomFromText('POINT(-122.66 45.34)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('98604', 'BATTLE GROUND','WA',1,ST_GeomFromText('POINT(-122.48 45.8)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('98606', 'BRUSH PRAIRIE','WA',1,ST_GeomFromText('POINT(-122.45 45.73)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('98007', 'BELLEVUE','WA',1,ST_GeomFromText('POINT(-122.14 47.62)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('98008', 'BELLEVUE','WA',2,ST_GeomFromText('POINT(-122.11 47.6)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('98226', 'BELLINGHAM','WA',1,ST_GeomFromText('POINT(-122.41 48.79)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('98011', 'BOTHELL','WA',1,ST_GeomFromText('POINT(-122.2 47.74)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('98021', 'BOTHELL','WA',2,ST_GeomFromText('POINT(-122.2 47.79)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('98019', 'DUVALL','WA',1,ST_GeomFromText('POINT(-121.93 47.73)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('98333', 'FOX ISLAND','WA',1,ST_GeomFromText('POINT(-122.63 47.24)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('98027', 'ISSAQUAH','WA',6,ST_GeomFromText('POINT(-122.0 47.5)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('98029', 'ISSAQUAH','WA',2,ST_GeomFromText('POINT(-122.0 47.55)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('98075', 'SAMMAMISH','WA',1,ST_GeomFromText('POINT(-122.03 47.58)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('98032', 'KENT','WA',1,ST_GeomFromText('POINT(-122.26 47.39)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('98033', 'KIRKLAND','WA',1,ST_GeomFromText('POINT(-122.18 47.67)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('98034', 'KIRKLAND','WA',1,ST_GeomFromText('POINT(-122.2 47.72)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('99019', 'LIBERTY LAKE','WA',1,ST_GeomFromText('POINT(-117.09 47.63)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('98358', 'NORDLAND','WA',1,ST_GeomFromText('POINT(-122.68 48.05)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('98052', 'REDMOND','WA',11,ST_GeomFromText('POINT(-122.12 47.68)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('98053', 'REDMOND','WA',1,ST_GeomFromText('POINT(-122.01 47.66)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('98074', 'SAMMAMISH','WA',2,ST_GeomFromText('POINT(-122.02 47.62)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('98057', 'RENTON','WA',3,ST_GeomFromText('POINT(-122.19 47.48)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('99352', 'RICHLAND','WA',1,ST_GeomFromText('POINT(-119.32 46.32)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('98101', 'SEATTLE','WA',2,ST_GeomFromText('POINT(-122.33 47.61)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('98103', 'SEATTLE','WA',1,ST_GeomFromText('POINT(-122.34 47.67)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('98104', 'SEATTLE','WA',1,ST_GeomFromText('POINT(-122.32 47.6)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('98109', 'SEATTLE','WA',1,ST_GeomFromText('POINT(-122.34 47.63)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('98110', 'BAINBRIDGE ISLAND','WA',1,ST_GeomFromText('POINT(-122.53 47.64)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('98118', 'SEATTLE','WA',1,ST_GeomFromText('POINT(-122.27 47.54)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('98119', 'SEATTLE','WA',7,ST_GeomFromText('POINT(-122.37 47.63)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('98122', 'SEATTLE','WA',1,ST_GeomFromText('POINT(-122.3 47.61)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('98134', 'SEATTLE','WA',1,ST_GeomFromText('POINT(-122.33 47.57)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('98198', 'SEATTLE','WA',1,ST_GeomFromText('POINT(-122.31 47.38)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('98382', 'SEQUIM','WA',1,ST_GeomFromText('POINT(-123.06 48.06)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('98290', 'SNOHOMISH','WA',1,ST_GeomFromText('POINT(-122.0 47.94)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('98065', 'SNOQUALMIE','WA',1,ST_GeomFromText('POINT(-121.8 47.53)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('99224', 'SPOKANE','WA',1,ST_GeomFromText('POINT(-117.55 47.63)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('98072', 'WOODINVILLE','WA',1,ST_GeomFromText('POINT(-122.09 47.75)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('90242', 'DOWNEY','CA',1,ST_GeomFromText('POINT(-118.14 33.92)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('90025', 'LOS ANGELES','CA',1,ST_GeomFromText('POINT(-118.44 34.04)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('90045', 'LOS ANGELES','CA',1,ST_GeomFromText('POINT(-118.4 33.95)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('90049', 'LOS ANGELES','CA',2,ST_GeomFromText('POINT(-118.49 34.08)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('90094', 'PLAYA VISTA','CA',3,ST_GeomFromText('POINT(-118.43 33.97)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('90254', 'HERMOSA BEACH','CA',1,ST_GeomFromText('POINT(-118.39 33.86)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('90292', 'MARINA DEL REY','CA',1,ST_GeomFromText('POINT(-118.43 33.97)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('91505', 'BURBANK','CA',1,ST_GeomFromText('POINT(-118.34 34.17)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('91526', 'BURBANK','CA',1,ST_GeomFromText('POINT(-118.32 34.19)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('91311', 'CHATSWORTH','CA',1,ST_GeomFromText('POINT(-118.61 34.28)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('91201', 'GLENDALE','CA',3,ST_GeomFromText('POINT(-118.29 34.17)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('93536', 'LANCASTER','CA',1,ST_GeomFromText('POINT(-118.48 34.72)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('91324', 'NORTHRIDGE','CA',1,ST_GeomFromText('POINT(-118.55 34.24)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('91107', 'PASADENA','CA',1,ST_GeomFromText('POINT(-118.08 34.16)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('93108', 'SANTA BARBARA','CA',1,ST_GeomFromText('POINT(-119.61 34.44)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('93117', 'GOLETA','CA',1,ST_GeomFromText('POINT(-120.12 34.5)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('91350', 'SANTA CLARITA','CA',1,ST_GeomFromText('POINT(-118.51 34.43)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('93063', 'SIMI VALLEY','CA',2,ST_GeomFromText('POINT(-118.72 34.3)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('93065', 'SIMI VALLEY','CA',1,ST_GeomFromText('POINT(-118.78 34.25)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('91361', 'WESTLAKE VILLAGE','CA',1,ST_GeomFromText('POINT(-118.89 34.14)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('91367', 'WOODLAND HILLS','CA',3,ST_GeomFromText('POINT(-118.61 34.17)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('92009', 'CARLSBAD','CA',1,ST_GeomFromText('POINT(-117.27 33.09)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('91913', 'CHULA VISTA','CA',1,ST_GeomFromText('POINT(-116.98 32.64)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('92064', 'POWAY','CA',1,ST_GeomFromText('POINT(-117.02 32.97)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('92101', 'SAN DIEGO','CA',1,ST_GeomFromText('POINT(-117.16 32.71)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('92103', 'SAN DIEGO','CA',1,ST_GeomFromText('POINT(-117.17 32.74)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('92106', 'SAN DIEGO','CA',1,ST_GeomFromText('POINT(-117.23 32.72)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('92108', 'SAN DIEGO','CA',1,ST_GeomFromText('POINT(-117.1 32.77)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('92109', 'SAN DIEGO','CA',2,ST_GeomFromText('POINT(-117.23 32.79)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('92116', 'SAN DIEGO','CA',1,ST_GeomFromText('POINT(-117.12 32.76)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('92121', 'SAN DIEGO','CA',2,ST_GeomFromText('POINT(-117.2 32.9)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('92122', 'SAN DIEGO','CA',1,ST_GeomFromText('POINT(-117.2 32.85)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('92123', 'SAN DIEGO','CA',2,ST_GeomFromText('POINT(-117.13 32.8)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('92127', 'SAN DIEGO','CA',1,ST_GeomFromText('POINT(-117.12 33.02)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('92129', 'SAN DIEGO','CA',5,ST_GeomFromText('POINT(-117.12 32.96)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('92131', 'SAN DIEGO','CA',1,ST_GeomFromText('POINT(-117.07 32.89)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('92078', 'SAN MARCOS','CA',2,ST_GeomFromText('POINT(-117.16 33.11)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('92075', 'SOLANA BEACH','CA',1,ST_GeomFromText('POINT(-117.25 32.99)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('92592', 'TEMECULA','CA',1,ST_GeomFromText('POINT(-117.04 33.53)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('91702', 'AZUSA','CA',1,ST_GeomFromText('POINT(-117.87 34.17)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('92883', 'CORONA','CA',1,ST_GeomFromText('POINT(-117.48 33.75)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('92626', 'COSTA MESA','CA',1,ST_GeomFromText('POINT(-117.9 33.67)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('92627', 'COSTA MESA','CA',1,ST_GeomFromText('POINT(-117.91 33.64)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('91723', 'COVINA','CA',1,ST_GeomFromText('POINT(-117.88 34.08)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('92629', 'DANA POINT','CA',1,ST_GeomFromText('POINT(-117.7 33.47)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('92630', 'LAKE FOREST','CA',2,ST_GeomFromText('POINT(-117.67 33.64)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('92646', 'HUNTINGTON BEACH','CA',1,ST_GeomFromText('POINT(-117.97 33.66)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('92604', 'IRVINE','CA',1,ST_GeomFromText('POINT(-117.78 33.69)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('92612', 'IRVINE','CA',1,ST_GeomFromText('POINT(-117.81 33.63)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('92614', 'IRVINE','CA',2,ST_GeomFromText('POINT(-117.85 33.68)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('92618', 'IRVINE','CA',6,ST_GeomFromText('POINT(-117.73 33.67)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('92620', 'IRVINE','CA',1,ST_GeomFromText('POINT(-117.76 33.7)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('92677', 'LAGUNA NIGUEL','CA',1,ST_GeomFromText('POINT(-117.7 33.53)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('90746', 'CARSON','CA',1,ST_GeomFromText('POINT(-118.25 33.86)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('92861', 'VILLA PARK','CA',1,ST_GeomFromText('POINT(-117.81 33.81)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('92673', 'SAN CLEMENTE','CA',1,ST_GeomFromText('POINT(-117.61 33.48)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('91775', 'SAN GABRIEL','CA',1,ST_GeomFromText('POINT(-118.08 34.11)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('92694', 'LADERA RANCH','CA',1,ST_GeomFromText('POINT(-117.63 33.56)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('90501', 'TORRANCE','CA',5,ST_GeomFromText('POINT(-118.31 33.83)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('91786', 'UPLAND','CA',1,ST_GeomFromText('POINT(-117.66 34.1)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('92886', 'YORBA LINDA','CA',1,ST_GeomFromText('POINT(-117.78 33.89)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('92887', 'YORBA LINDA','CA',1,ST_GeomFromText('POINT(-117.72 33.88)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('94017', 'DALY CITY','CA',1,ST_GeomFromText('POINT(-122.47 37.69)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('94025', 'MENLO PARK','CA',1,ST_GeomFromText('POINT(-122.17 37.45)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('94030', 'MILLBRAE','CA',1,ST_GeomFromText('POINT(-122.4 37.59)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('94035', 'MOUNTAIN VIEW','CA',1,ST_GeomFromText('POINT(-122.05 37.41)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('94040', 'MOUNTAIN VIEW','CA',5,ST_GeomFromText('POINT(-122.08 37.38)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('94041', 'MOUNTAIN VIEW','CA',14,ST_GeomFromText('POINT(-122.07 37.38)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('94043', 'MOUNTAIN VIEW','CA',11,ST_GeomFromText('POINT(-122.05 37.41)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('94304', 'PALO ALTO','CA',6,ST_GeomFromText('POINT(-122.18 37.37)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('94306', 'PALO ALTO','CA',2,ST_GeomFromText('POINT(-122.13 37.41)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('94954', 'PETALUMA','CA',4,ST_GeomFromText('POINT(-122.56 38.23)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('94065', 'REDWOOD CITY','CA',2,ST_GeomFromText('POINT(-122.24 37.53)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('94070', 'SAN CARLOS','CA',3,ST_GeomFromText('POINT(-122.26 37.49)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('94104', 'SAN FRANCISCO','CA',1,ST_GeomFromText('POINT(-122.4 37.79)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('94105', 'SAN FRANCISCO','CA',4,ST_GeomFromText('POINT(-122.39 37.78)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('94107', 'SAN FRANCISCO','CA',2,ST_GeomFromText('POINT(-122.39 37.76)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('94109', 'SAN FRANCISCO','CA',1,ST_GeomFromText('POINT(-122.42 37.79)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('94111', 'SAN FRANCISCO','CA',4,ST_GeomFromText('POINT(-122.39 37.79)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('94116', 'SAN FRANCISCO','CA',1,ST_GeomFromText('POINT(-122.48 37.74)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('94117', 'SAN FRANCISCO','CA',2,ST_GeomFromText('POINT(-122.44 37.76)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('94118', 'SAN FRANCISCO','CA',1,ST_GeomFromText('POINT(-122.46 37.78)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('94122', 'SAN FRANCISCO','CA',3,ST_GeomFromText('POINT(-122.48 37.76)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('94123', 'SAN FRANCISCO','CA',1,ST_GeomFromText('POINT(-122.43 37.8)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('94129', 'SAN FRANCISCO','CA',1,ST_GeomFromText('POINT(-122.46 37.79)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('94131', 'SAN FRANCISCO','CA',1,ST_GeomFromText('POINT(-122.44 37.74)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('94401', 'SAN MATEO','CA',1,ST_GeomFromText('POINT(-122.32 37.57)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('94402', 'SAN MATEO','CA',1,ST_GeomFromText('POINT(-122.35 37.52)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('94403', 'SAN MATEO','CA',1,ST_GeomFromText('POINT(-122.3 37.54)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('94404', 'SAN MATEO','CA',2,ST_GeomFromText('POINT(-122.26 37.55)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('94965', 'SAUSALITO','CA',1,ST_GeomFromText('POINT(-122.53 37.84)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('94085', 'SUNNYVALE','CA',4,ST_GeomFromText('POINT(-122.01 37.38)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('94086', 'SUNNYVALE','CA',1,ST_GeomFromText('POINT(-122.02 37.36)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('94087', 'SUNNYVALE','CA',1,ST_GeomFromText('POINT(-122.03 37.35)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('94088', 'SUNNYVALE','CA',1,ST_GeomFromText('POINT(-122.03 37.39)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('94089', 'SUNNYVALE','CA',8,ST_GeomFromText('POINT(-122.0 37.42)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('94531', 'ANTIOCH','CA',1,ST_GeomFromText('POINT(-121.76 37.96)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('94505', 'DISCOVERY BAY','CA',1,ST_GeomFromText('POINT(-121.64 37.86)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('95008', 'CAMPBELL','CA',2,ST_GeomFromText('POINT(-121.95 37.28)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('95014', 'CUPERTINO','CA',3,ST_GeomFromText('POINT(-122.09 37.3)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('94506', 'DANVILLE','CA',1,ST_GeomFromText('POINT(-121.88 37.78)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('94536', 'FREMONT','CA',1,ST_GeomFromText('POINT(-121.98 37.56)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('94539', 'FREMONT','CA',1,ST_GeomFromText('POINT(-121.89 37.51)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('94555', 'FREMONT','CA',1,ST_GeomFromText('POINT(-122.07 37.55)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('94542', 'HAYWARD','CA',1,ST_GeomFromText('POINT(-122.04 37.65)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('94546', 'CASTRO VALLEY','CA',1,ST_GeomFromText('POINT(-122.08 37.7)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('94552', 'CASTRO VALLEY','CA',2,ST_GeomFromText('POINT(-122.01 37.69)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('95023', 'HOLLISTER','CA',1,ST_GeomFromText('POINT(-121.24 36.89)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('94550', 'LIVERMORE','CA',1,ST_GeomFromText('POINT(-121.75 37.68)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('95030', 'LOS GATOS','CA',1,ST_GeomFromText('POINT(-121.99 37.22)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('95032', 'LOS GATOS','CA',1,ST_GeomFromText('POINT(-121.95 37.23)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('95035', 'MILPITAS','CA',4,ST_GeomFromText('POINT(-121.87 37.44)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('95037', 'MORGAN HILL','CA',1,ST_GeomFromText('POINT(-121.65 37.17)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('94602', 'OAKLAND','CA',3,ST_GeomFromText('POINT(-122.21 37.8)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('94607', 'OAKLAND','CA',1,ST_GeomFromText('POINT(-122.3 37.81)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('94608', 'EMERYVILLE','CA',1,ST_GeomFromText('POINT(-122.29 37.83)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('94611', 'OAKLAND','CA',2,ST_GeomFromText('POINT(-122.22 37.83)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('94618', 'OAKLAND','CA',1,ST_GeomFromText('POINT(-122.23 37.84)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('94566', 'PLEASANTON','CA',1,ST_GeomFromText('POINT(-121.85 37.65)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('94568', 'DUBLIN','CA',1,ST_GeomFromText('POINT(-121.91 37.71)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('94588', 'PLEASANTON','CA',2,ST_GeomFromText('POINT(-121.93 37.67)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('95110', 'SAN JOSE','CA',3,ST_GeomFromText('POINT(-121.9 37.34)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('95113', 'SAN JOSE','CA',1,ST_GeomFromText('POINT(-121.89 37.33)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('95118', 'SAN JOSE','CA',2,ST_GeomFromText('POINT(-121.88 37.25)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('95119', 'SAN JOSE','CA',1,ST_GeomFromText('POINT(-121.78 37.22)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('95120', 'SAN JOSE','CA',2,ST_GeomFromText('POINT(-121.83 37.19)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('95125', 'SAN JOSE','CA',2,ST_GeomFromText('POINT(-121.88 37.29)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('95127', 'SAN JOSE','CA',1,ST_GeomFromText('POINT(-121.75 37.37)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('95129', 'SAN JOSE','CA',1,ST_GeomFromText('POINT(-122.0 37.3)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('95130', 'SAN JOSE','CA',1,ST_GeomFromText('POINT(-121.98 37.28)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('95131', 'SAN JOSE','CA',8,ST_GeomFromText('POINT(-121.9 37.38)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('95134', 'SAN JOSE','CA',18,ST_GeomFromText('POINT(-121.94 37.42)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('94582', 'SAN RAMON','CA',1,ST_GeomFromText('POINT(-121.93 37.76)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('95050', 'SANTA CLARA','CA',1,ST_GeomFromText('POINT(-121.95 37.34)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('95051', 'SANTA CLARA','CA',2,ST_GeomFromText('POINT(-121.98 37.35)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('95054', 'SANTA CLARA','CA',13,ST_GeomFromText('POINT(-121.96 37.39)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('95056', 'SANTA CLARA','CA',1,ST_GeomFromText('POINT(-121.96 37.4)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('95060', 'SANTA CRUZ','CA',1,ST_GeomFromText('POINT(-122.1 37.04)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('95066', 'SCOTTS VALLEY','CA',1,ST_GeomFromText('POINT(-122.01 37.06)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('94587', 'UNION CITY','CA',2,ST_GeomFromText('POINT(-122.06 37.59)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('94596', 'WALNUT CREEK','CA',2,ST_GeomFromText('POINT(-122.03 37.89)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('94598', 'WALNUT CREEK','CA',1,ST_GeomFromText('POINT(-122.01 37.91)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('95928', 'CHICO','CA',1,ST_GeomFromText('POINT(-121.81 39.71)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('95630', 'FOLSOM','CA',1,ST_GeomFromText('POINT(-121.14 38.67)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('95762', 'EL DORADO HILLS','CA',6,ST_GeomFromText('POINT(-121.05 38.68)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('93710', 'FRESNO','CA',1,ST_GeomFromText('POINT(-119.75 36.81)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('95648', 'LINCOLN','CA',1,ST_GeomFromText('POINT(-121.25 38.93)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('95667', 'PLACERVILLE','CA',1,ST_GeomFromText('POINT(-120.8 38.73)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('95726', 'POLLOCK PINES','CA',1,ST_GeomFromText('POINT(-120.57 38.74)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('95661', 'ROSEVILLE','CA',1,ST_GeomFromText('POINT(-121.25 38.74)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('95747', 'ROSEVILLE','CA',1,ST_GeomFromText('POINT(-121.37 38.78)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('95814', 'SACRAMENTO','CA',2,ST_GeomFromText('POINT(-121.49 38.58)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('95819', 'SACRAMENTO','CA',1,ST_GeomFromText('POINT(-121.43 38.56)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('95822', 'SACRAMENTO','CA',1,ST_GeomFromText('POINT(-121.49 38.51)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('95827', 'SACRAMENTO','CA',1,ST_GeomFromText('POINT(-121.32 38.55)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('95834', 'SACRAMENTO','CA',1,ST_GeomFromText('POINT(-121.54 38.64)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('95212', 'STOCKTON','CA',1,ST_GeomFromText('POINT(-121.2 38.04)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('95377', 'TRACY','CA',1,ST_GeomFromText('POINT(-121.45 37.62)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('95391', 'TRACY','CA',1,ST_GeomFromText('POINT(-121.63 37.76)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('96734', 'KAILUA','HI',1,ST_GeomFromText('POINT(-157.73 21.4)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('32202', 'JACKSONVILLE','FL',1,ST_GeomFromText('POINT(-81.65 30.33)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('32216', 'JACKSONVILLE','FL',1,ST_GeomFromText('POINT(-81.65 30.33)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('32246', 'JACKSONVILLE','FL',9,ST_GeomFromText('POINT(-81.65 30.33)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('32256', 'JACKSONVILLE','FL',1,ST_GeomFromText('POINT(-81.65 30.33)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('32258', 'JACKSONVILLE','FL',2,ST_GeomFromText('POINT(-81.65 30.33)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('32526', 'PENSACOLA','FL',1,ST_GeomFromText('POINT(-87.18 30.44)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('32317', 'TALLAHASSEE','FL',1,ST_GeomFromText('POINT(-84.28 30.45)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('30905', 'AUGUSTA','GA',1,ST_GeomFromText('POINT(-81.99 33.45)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('30909', 'AUGUSTA','GA',1,ST_GeomFromText('POINT(-81.99 33.45)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('31909', 'COLUMBUS','GA',1,ST_GeomFromText('POINT(-84.87 32.51)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('30809', 'EVANS','GA',1,ST_GeomFromText('POINT(-82.14 33.51)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('31029', 'FORSYTH','GA',1,ST_GeomFromText('POINT(-83.94 33.03)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('29926', 'HILTON HEAD ISLAND','SC',1,ST_GeomFromText('POINT(-80.74 32.19)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('33431', 'BOCA RATON','FL',2,ST_GeomFromText('POINT(-80.1 26.37)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('33486', 'BOCA RATON','FL',2,ST_GeomFromText('POINT(-80.1 26.37)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('33496', 'BOCA RATON','FL',1,ST_GeomFromText('POINT(-80.1 26.37)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('33317', 'FORT LAUDERDALE','FL',1,ST_GeomFromText('POINT(-80.13 26.14)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('33027', 'HOLLYWOOD','FL',1,ST_GeomFromText('POINT(-80.16 26.02)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('33478', 'JUPITER','FL',1,ST_GeomFromText('POINT(-80.1 26.92)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('33122', 'MIAMI','FL',1,ST_GeomFromText('POINT(-80.3 25.79)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('33173', 'MIAMI','FL',1,ST_GeomFromText('POINT(-80.2 25.77)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('33180', 'MIAMI','FL',1,ST_GeomFromText('POINT(-80.2 25.77)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('33185', 'MIAMI','FL',1,ST_GeomFromText('POINT(-80.2 25.77)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('33139', 'MIAMI BEACH','FL',1,ST_GeomFromText('POINT(-80.2 25.77)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('33076', 'POMPANO BEACH','FL',1,ST_GeomFromText('POINT(-80.13 26.23)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('33401', 'WEST PALM BEACH','FL',2,ST_GeomFromText('POINT(-80.12 26.74)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('32708', 'WINTER SPRINGS','FL',2,ST_GeomFromText('POINT(-81.27 28.68)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('33756', 'CLEARWATER','FL',1,ST_GeomFromText('POINT(-82.76 27.97)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('34711', 'CLERMONT','FL',1,ST_GeomFromText('POINT(-81.75 28.55)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('32114', 'DAYTONA BEACH','FL',2,ST_GeomFromText('POINT(-81.05 29.19)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('34698', 'DUNEDIN','FL',1,ST_GeomFromText('POINT(-82.77 28.02)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('33966', 'FORT MYERS','FL',1,ST_GeomFromText('POINT(-81.82 26.57)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('32746', 'LAKE MARY','FL',1,ST_GeomFromText('POINT(-81.33 28.75)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('33558', 'LUTZ','FL',1,ST_GeomFromText('POINT(-82.46 28.13)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('32903', 'INDIALANTIC','FL',1,ST_GeomFromText('POINT(-80.56 28.08)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('32904', 'MELBOURNE','FL',1,ST_GeomFromText('POINT(-80.6 28.08)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('32940', 'MELBOURNE','FL',1,ST_GeomFromText('POINT(-80.6 28.08)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('32951', 'MELBOURNE BEACH','FL',1,ST_GeomFromText('POINT(-80.55 28.06)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('34275', 'NOKOMIS','FL',1,ST_GeomFromText('POINT(-82.43 27.12)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('32810', 'ORLANDO','FL',1,ST_GeomFromText('POINT(-81.37 28.5)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('32828', 'ORLANDO','FL',1,ST_GeomFromText('POINT(-81.37 28.5)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('32836', 'ORLANDO','FL',1,ST_GeomFromText('POINT(-81.37 28.5)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('32837', 'ORLANDO','FL',1,ST_GeomFromText('POINT(-81.37 28.5)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('32765', 'OVIEDO','FL',1,ST_GeomFromText('POINT(-81.18 28.65)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('34683', 'PALM HARBOR','FL',3,ST_GeomFromText('POINT(-82.76 28.08)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('33782', 'PINELLAS PARK','FL',1,ST_GeomFromText('POINT(-82.7 27.85)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('33569', 'RIVERVIEW','FL',1,ST_GeomFromText('POINT(-82.29 27.83)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('33708', 'SAINT PETERSBURG','FL',1,ST_GeomFromText('POINT(-82.64 27.75)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('33716', 'SAINT PETERSBURG','FL',5,ST_GeomFromText('POINT(-82.64 27.75)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('33729', 'SAINT PETERSBURG','FL',1,ST_GeomFromText('POINT(-82.64 27.75)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('34232', 'SARASOTA','FL',1,ST_GeomFromText('POINT(-82.54 27.33)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('33618', 'TAMPA','FL',2,ST_GeomFromText('POINT(-82.48 27.95)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('33626', 'TAMPA','FL',3,ST_GeomFromText('POINT(-82.48 27.95)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('33634', 'TAMPA','FL',4,ST_GeomFromText('POINT(-82.48 27.95)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('33637', 'TAMPA','FL',5,ST_GeomFromText('POINT(-82.48 27.95)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('34286', 'NORTH PORT','FL',1,ST_GeomFromText('POINT(-82.19 27.04)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('34786', 'WINDERMERE','FL',2,ST_GeomFromText('POINT(-81.53 28.49)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('34787', 'WINTER GARDEN','FL',1,ST_GeomFromText('POINT(-81.58 28.56)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('33545', 'WESLEY CHAPEL','FL',1,ST_GeomFromText('POINT(-82.29 28.28)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('35242', 'BIRMINGHAM','AL',1,ST_GeomFromText('POINT(-86.79 33.52)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('35243', 'BIRMINGHAM','AL',2,ST_GeomFromText('POINT(-86.79 33.52)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('35244', 'BIRMINGHAM','AL',5,ST_GeomFromText('POINT(-86.79 33.52)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('35806', 'HUNTSVILLE','AL',1,ST_GeomFromText('POINT(-86.62 34.7)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('35898', 'HUNTSVILLE','AL',1,ST_GeomFromText('POINT(-86.62 34.7)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('35645', 'KILLEN','AL',1,ST_GeomFromText('POINT(-87.52 34.86)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('35096', 'LINCOLN','AL',1,ST_GeomFromText('POINT(-86.13 33.59)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('35756', 'MADISON','AL',1,ST_GeomFromText('POINT(-86.74 34.7)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('35757', 'MADISON','AL',1,ST_GeomFromText('POINT(-86.74 34.7)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('35758', 'MADISON','AL',2,ST_GeomFromText('POINT(-86.74 34.7)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('70471', 'MANDEVILLE','LA',2,ST_GeomFromText('POINT(-90.08 30.37)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('71201', 'MONROE','LA',1,ST_GeomFromText('POINT(-92.08 32.51)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('70112', 'NEW ORLEANS','LA',2,ST_GeomFromText('POINT(-89.93 30.06)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('70113', 'NEW ORLEANS','LA',2,ST_GeomFromText('POINT(-89.93 30.06)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('70117', 'NEW ORLEANS','LA',1,ST_GeomFromText('POINT(-89.93 30.06)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('70131', 'NEW ORLEANS','LA',1,ST_GeomFromText('POINT(-89.93 30.06)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('72712', 'BENTONVILLE','AR',2,ST_GeomFromText('POINT(-94.2 36.36)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('72714', 'BELLA VISTA','AR',1,ST_GeomFromText('POINT(-94.29 36.46)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('72716', 'BENTONVILLE','AR',4,ST_GeomFromText('POINT(-94.2 36.36)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('72719', 'CENTERTON','AR',5,ST_GeomFromText('POINT(-94.28 36.36)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('72701', 'FAYETTEVILLE','AR',1,ST_GeomFromText('POINT(-94.15 36.07)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('72734', 'GENTRY','AR',1,ST_GeomFromText('POINT(-94.48 36.26)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('72601', 'HARRISON','AR',1,ST_GeomFromText('POINT(-93.11 36.24)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('72223', 'LITTLE ROCK','AR',1,ST_GeomFromText('POINT(-92.35 34.72)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('72120', 'SHERWOOD','AR',2,ST_GeomFromText('POINT(-92.2 34.83)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('72764', 'SPRINGDALE','AR',1,ST_GeomFromText('POINT(-94.14 36.18)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('73071', 'NORMAN','OK',1,ST_GeomFromText('POINT(-97.34 35.22)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('73120', 'OKLAHOMA CITY','OK',1,ST_GeomFromText('POINT(-97.51 35.46)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('73142', 'OKLAHOMA CITY','OK',1,ST_GeomFromText('POINT(-97.51 35.46)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('73159', 'OKLAHOMA CITY','OK',1,ST_GeomFromText('POINT(-97.51 35.46)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('73160', 'OKLAHOMA CITY','OK',1,ST_GeomFromText('POINT(-97.51 35.46)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('74133', 'TULSA','OK',1,ST_GeomFromText('POINT(-95.91 36.12)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('74172', 'TULSA','OK',2,ST_GeomFromText('POINT(-95.91 36.12)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('75002', 'ALLEN','TX',5,ST_GeomFromText('POINT(-96.66 33.1)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('75013', 'ALLEN','TX',2,ST_GeomFromText('POINT(-96.66 33.1)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('75006', 'CARROLLTON','TX',1,ST_GeomFromText('POINT(-96.89 32.98)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('75007', 'CARROLLTON','TX',1,ST_GeomFromText('POINT(-96.89 32.98)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('75019', 'COPPELL','TX',2,ST_GeomFromText('POINT(-96.99 32.96)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('75201', 'DALLAS','TX',3,ST_GeomFromText('POINT(-96.76 32.79)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('75204', 'DALLAS','TX',2,ST_GeomFromText('POINT(-96.76 32.79)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('75218', 'DALLAS','TX',1,ST_GeomFromText('POINT(-96.76 32.79)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('75219', 'DALLAS','TX',2,ST_GeomFromText('POINT(-96.76 32.79)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('75230', 'DALLAS','TX',1,ST_GeomFromText('POINT(-96.76 32.79)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('75240', 'DALLAS','TX',2,ST_GeomFromText('POINT(-96.76 32.79)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('75243', 'DALLAS','TX',1,ST_GeomFromText('POINT(-96.76 32.79)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('75248', 'DALLAS','TX',3,ST_GeomFromText('POINT(-96.76 32.79)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('75033', 'FRISCO','TX',5,ST_GeomFromText('POINT(-96.81 33.14)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('75034', 'FRISCO','TX',3,ST_GeomFromText('POINT(-96.81 33.14)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('75035', 'FRISCO','TX',1,ST_GeomFromText('POINT(-96.81 33.14)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('75040', 'GARLAND','TX',1,ST_GeomFromText('POINT(-96.62 32.91)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('75044', 'GARLAND','TX',1,ST_GeomFromText('POINT(-96.62 32.91)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('75048', 'SACHSE','TX',1,ST_GeomFromText('POINT(-96.62 32.91)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('75038', 'IRVING','TX',4,ST_GeomFromText('POINT(-96.96 32.85)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('75063', 'IRVING','TX',4,ST_GeomFromText('POINT(-96.96 32.85)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('75028', 'FLOWER MOUND','TX',1,ST_GeomFromText('POINT(-97.09 33.02)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('75067', 'LEWISVILLE','TX',2,ST_GeomFromText('POINT(-96.98 33.04)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('75068', 'LITTLE ELM','TX',1,ST_GeomFromText('POINT(-96.93 33.16)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('75070', 'MCKINNEY','TX',4,ST_GeomFromText('POINT(-96.65 33.2)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('75071', 'MCKINNEY','TX',1,ST_GeomFromText('POINT(-96.65 33.2)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('75455', 'MOUNT PLEASANT','TX',1,ST_GeomFromText('POINT(-94.97 33.16)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('75023', 'PLANO','TX',1,ST_GeomFromText('POINT(-96.74 33.04)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('75024', 'PLANO','TX',14,ST_GeomFromText('POINT(-96.74 33.04)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('75025', 'PLANO','TX',3,ST_GeomFromText('POINT(-96.74 33.04)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('75093', 'PLANO','TX',3,ST_GeomFromText('POINT(-96.74 33.04)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('75080', 'RICHARDSON','TX',2,ST_GeomFromText('POINT(-96.7 32.97)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('75082', 'RICHARDSON','TX',1,ST_GeomFromText('POINT(-96.7 32.97)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('75032', 'ROCKWALL','TX',2,ST_GeomFromText('POINT(-96.45 32.92)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('75979', 'WOODVILLE','TX',1,ST_GeomFromText('POINT(-94.42 30.77)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('75098', 'WYLIE','TX',2,ST_GeomFromText('POINT(-96.51 33.04)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('79602', 'ABILENE','TX',1,ST_GeomFromText('POINT(-99.73 32.45)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('76226', 'ARGYLE','TX',1,ST_GeomFromText('POINT(-97.17 33.11)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('76014', 'ARLINGTON','TX',1,ST_GeomFromText('POINT(-97.12 32.69)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('76017', 'ARLINGTON','TX',1,ST_GeomFromText('POINT(-97.12 32.69)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('76018', 'ARLINGTON','TX',1,ST_GeomFromText('POINT(-97.12 32.69)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('76227', 'AUBREY','TX',1,ST_GeomFromText('POINT(-96.98 33.3)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('76028', 'BURLESON','TX',1,ST_GeomFromText('POINT(-97.32 32.53)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('76208', 'DENTON','TX',1,ST_GeomFromText('POINT(-97.13 33.21)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('76210', 'DENTON','TX',1,ST_GeomFromText('POINT(-97.06 33.14)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('76101', 'FORT WORTH','TX',1,ST_GeomFromText('POINT(-97.33 32.75)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('76103', 'FORT WORTH','TX',1,ST_GeomFromText('POINT(-97.33 32.75)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('76107', 'FORT WORTH','TX',3,ST_GeomFromText('POINT(-97.33 32.75)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('76108', 'FORT WORTH','TX',2,ST_GeomFromText('POINT(-97.33 32.75)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('76131', 'FORT WORTH','TX',1,ST_GeomFromText('POINT(-97.33 32.75)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('76137', 'FORT WORTH','TX',1,ST_GeomFromText('POINT(-97.33 32.75)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('76155', 'FORT WORTH','TX',1,ST_GeomFromText('POINT(-97.33 32.75)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('76177', 'FORT WORTH','TX',5,ST_GeomFromText('POINT(-97.33 32.75)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('76051', 'GRAPEVINE','TX',1,ST_GeomFromText('POINT(-97.07 32.93)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('76092', 'SOUTHLAKE','TX',2,ST_GeomFromText('POINT(-97.14 32.95)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('76053', 'HURST','TX',1,ST_GeomFromText('POINT(-97.17 32.83)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('76247', 'JUSTIN','TX',1,ST_GeomFromText('POINT(-97.29 33.08)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('76244', 'KELLER','TX',1,ST_GeomFromText('POINT(-97.22 32.93)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('76248', 'KELLER','TX',1,ST_GeomFromText('POINT(-97.22 32.93)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('76262', 'ROANOKE','TX',4,ST_GeomFromText('POINT(-97.23 33.0)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('77843', 'COLLEGE STATION','TX',1,ST_GeomFromText('POINT(-96.31 30.6)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('77385', 'CONROE','TX',1,ST_GeomFromText('POINT(-95.47 30.32)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('77429', 'CYPRESS','TX',1,ST_GeomFromText('POINT(-95.69 29.96)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('77002', 'HOUSTON','TX',4,ST_GeomFromText('POINT(-95.38 29.76)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('77005', 'HOUSTON','TX',1,ST_GeomFromText('POINT(-95.38 29.76)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('77023', 'HOUSTON','TX',1,ST_GeomFromText('POINT(-95.38 29.76)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('77030', 'HOUSTON','TX',1,ST_GeomFromText('POINT(-95.38 29.76)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('77047', 'HOUSTON','TX',1,ST_GeomFromText('POINT(-95.38 29.76)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('77056', 'HOUSTON','TX',2,ST_GeomFromText('POINT(-95.38 29.76)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('77070', 'HOUSTON','TX',1,ST_GeomFromText('POINT(-95.38 29.76)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('77079', 'HOUSTON','TX',1,ST_GeomFromText('POINT(-95.38 29.76)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('77084', 'HOUSTON','TX',2,ST_GeomFromText('POINT(-95.38 29.76)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('77407', 'RICHMOND','TX',1,ST_GeomFromText('POINT(-95.7 29.68)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('77379', 'SPRING','TX',3,ST_GeomFromText('POINT(-95.38 30.06)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('77380', 'SPRING','TX',2,ST_GeomFromText('POINT(-95.38 30.06)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('77389', 'SPRING','TX',3,ST_GeomFromText('POINT(-95.38 30.06)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('78701', 'AUSTIN','TX',1,ST_GeomFromText('POINT(-97.74 30.26)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('78702', 'AUSTIN','TX',1,ST_GeomFromText('POINT(-97.74 30.26)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('78703', 'AUSTIN','TX',3,ST_GeomFromText('POINT(-97.74 30.26)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('78704', 'AUSTIN','TX',1,ST_GeomFromText('POINT(-97.74 30.26)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('78717', 'AUSTIN','TX',2,ST_GeomFromText('POINT(-97.74 30.26)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('78727', 'AUSTIN','TX',1,ST_GeomFromText('POINT(-97.74 30.26)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('78729', 'AUSTIN','TX',2,ST_GeomFromText('POINT(-97.74 30.26)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('78731', 'AUSTIN','TX',2,ST_GeomFromText('POINT(-97.74 30.26)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('78733', 'AUSTIN','TX',1,ST_GeomFromText('POINT(-97.74 30.26)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('78735', 'AUSTIN','TX',3,ST_GeomFromText('POINT(-97.74 30.26)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('78736', 'AUSTIN','TX',1,ST_GeomFromText('POINT(-97.74 30.26)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('78738', 'AUSTIN','TX',1,ST_GeomFromText('POINT(-97.74 30.26)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('78739', 'AUSTIN','TX',1,ST_GeomFromText('POINT(-97.74 30.26)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('78745', 'AUSTIN','TX',1,ST_GeomFromText('POINT(-97.74 30.26)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('78746', 'AUSTIN','TX',2,ST_GeomFromText('POINT(-97.74 30.26)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('78748', 'AUSTIN','TX',1,ST_GeomFromText('POINT(-97.74 30.26)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('78752', 'AUSTIN','TX',1,ST_GeomFromText('POINT(-97.74 30.26)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('78757', 'AUSTIN','TX',1,ST_GeomFromText('POINT(-97.74 30.26)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('78758', 'AUSTIN','TX',1,ST_GeomFromText('POINT(-97.74 30.26)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('78759', 'AUSTIN','TX',2,ST_GeomFromText('POINT(-97.74 30.26)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('78006', 'BOERNE','TX',1,ST_GeomFromText('POINT(-98.73 29.8)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('78613', 'CEDAR PARK','TX',2,ST_GeomFromText('POINT(-97.83 30.51)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('78108', 'CIBOLO','TX',1,ST_GeomFromText('POINT(-98.23 29.57)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('78621', 'ELGIN','TX',2,ST_GeomFromText('POINT(-97.37 30.34)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('78624', 'FREDERICKSBURG','TX',1,ST_GeomFromText('POINT(-98.87 30.27)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('78023', 'HELOTES','TX',4,ST_GeomFromText('POINT(-98.69 29.56)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('78641', 'LEANDER','TX',2,ST_GeomFromText('POINT(-97.86 30.56)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('78653', 'MANOR','TX',1,ST_GeomFromText('POINT(-97.55 30.34)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('78130', 'NEW BRAUNFELS','TX',1,ST_GeomFromText('POINT(-98.11 29.7)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('78132', 'NEW BRAUNFELS','TX',1,ST_GeomFromText('POINT(-98.11 29.7)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('78660', 'PFLUGERVILLE','TX',4,ST_GeomFromText('POINT(-97.62 30.44)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('78580', 'RAYMONDVILLE','TX',3,ST_GeomFromText('POINT(-97.78 26.47)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('78665', 'ROUND ROCK','TX',2,ST_GeomFromText('POINT(-97.64 30.54)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('78681', 'ROUND ROCK','TX',2,ST_GeomFromText('POINT(-97.67 30.51)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('78682', 'ROUND ROCK','TX',7,ST_GeomFromText('POINT(-97.67 30.51)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('78205', 'SAN ANTONIO','TX',3,ST_GeomFromText('POINT(-98.5 29.45)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('78209', 'SAN ANTONIO','TX',1,ST_GeomFromText('POINT(-98.5 29.45)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('78215', 'SAN ANTONIO','TX',1,ST_GeomFromText('POINT(-98.5 29.45)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('78217', 'SAN ANTONIO','TX',1,ST_GeomFromText('POINT(-98.5 29.45)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('78218', 'SAN ANTONIO','TX',6,ST_GeomFromText('POINT(-98.5 29.45)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('78229', 'SAN ANTONIO','TX',5,ST_GeomFromText('POINT(-98.5 29.45)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('78233', 'SAN ANTONIO','TX',2,ST_GeomFromText('POINT(-98.5 29.45)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('78240', 'SAN ANTONIO','TX',1,ST_GeomFromText('POINT(-98.5 29.45)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('78249', 'SAN ANTONIO','TX',2,ST_GeomFromText('POINT(-98.5 29.45)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('78250', 'SAN ANTONIO','TX',1,ST_GeomFromText('POINT(-98.5 29.45)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('78251', 'SAN ANTONIO','TX',1,ST_GeomFromText('POINT(-98.5 29.45)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('78253', 'SAN ANTONIO','TX',1,ST_GeomFromText('POINT(-98.5 29.45)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('78254', 'SAN ANTONIO','TX',1,ST_GeomFromText('POINT(-98.5 29.45)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('78255', 'SAN ANTONIO','TX',1,ST_GeomFromText('POINT(-98.5 29.45)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('78288', 'SAN ANTONIO','TX',6,ST_GeomFromText('POINT(-98.5 29.45)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('46032', 'CARMEL','IN',1,ST_GeomFromText('POINT(-86.1 39.96)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('46307', 'CROWN POINT','IN',1,ST_GeomFromText('POINT(-87.35 41.42)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('46037', 'FISHERS','IN',1,ST_GeomFromText('POINT(-85.94 39.96)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('46140', 'GREENFIELD','IN',1,ST_GeomFromText('POINT(-85.77 39.79)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('46143', 'GREENWOOD','IN',1,ST_GeomFromText('POINT(-86.11 39.61)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('46220', 'INDIANAPOLIS','IN',1,ST_GeomFromText('POINT(-86.14 39.77)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('46240', 'INDIANAPOLIS','IN',1,ST_GeomFromText('POINT(-86.14 39.77)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('46259', 'INDIANAPOLIS','IN',1,ST_GeomFromText('POINT(-86.14 39.77)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('46278', 'INDIANAPOLIS','IN',1,ST_GeomFromText('POINT(-86.14 39.77)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('46285', 'INDIANAPOLIS','IN',3,ST_GeomFromText('POINT(-86.14 39.77)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('47906', 'WEST LAFAYETTE','IN',1,ST_GeomFromText('POINT(-86.91 40.44)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('46163', 'NEW PALESTINE','IN',1,ST_GeomFromText('POINT(-85.89 39.72)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('46064', 'PENDLETON','IN',1,ST_GeomFromText('POINT(-85.74 40.0)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('46617', 'SOUTH BEND','IN',1,ST_GeomFromText('POINT(-86.26 41.67)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('46074', 'WESTFIELD','IN',1,ST_GeomFromText('POINT(-86.13 40.04)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('48104', 'ANN ARBOR','MI',5,ST_GeomFromText('POINT(-83.73 42.27)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('48105', 'ANN ARBOR','MI',1,ST_GeomFromText('POINT(-83.73 42.27)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('48109', 'ANN ARBOR','MI',1,ST_GeomFromText('POINT(-83.73 42.27)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('48116', 'BRIGHTON','MI',1,ST_GeomFromText('POINT(-83.78 42.53)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('48346', 'CLARKSTON','MI',1,ST_GeomFromText('POINT(-83.42 42.73)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('49236', 'CLINTON','MI',1,ST_GeomFromText('POINT(-83.97 42.06)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('48128', 'DEARBORN','MI',1,ST_GeomFromText('POINT(-83.21 42.31)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('48226', 'DETROIT','MI',4,ST_GeomFromText('POINT(-83.1 42.38)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('48237', 'OAK PARK','MI',2,ST_GeomFromText('POINT(-83.18 42.46)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('48265', 'DETROIT','MI',1,ST_GeomFromText('POINT(-83.1 42.38)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('48152', 'LIVONIA','MI',2,ST_GeomFromText('POINT(-83.37 42.39)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('48045', 'HARRISON TOWNSHIP','MI',1,ST_GeomFromText('POINT(-82.81 42.58)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('48375', 'NOVI','MI',1,ST_GeomFromText('POINT(-83.49 42.47)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('48377', 'NOVI','MI',1,ST_GeomFromText('POINT(-83.49 42.47)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('48071', 'MADISON HEIGHTS','MI',1,ST_GeomFromText('POINT(-83.1 42.5)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('48176', 'SALINE','MI',1,ST_GeomFromText('POINT(-83.78 42.17)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('48183', 'TRENTON','MI',1,ST_GeomFromText('POINT(-83.22 42.13)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('48098', 'TROY','MI',1,ST_GeomFromText('POINT(-83.14 42.58)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('48383', 'WHITE LAKE','MI',1,ST_GeomFromText('POINT(-83.5 42.65)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('48187', 'CANTON','MI',1,ST_GeomFromText('POINT(-83.48 42.3)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('48197', 'YPSILANTI','MI',1,ST_GeomFromText('POINT(-83.62 42.24)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('49306', 'BELMONT','MI',1,ST_GeomFromText('POINT(-85.6 43.07)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('48836', 'FOWLERVILLE','MI',2,ST_GeomFromText('POINT(-84.07 42.66)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('49503', 'GRAND RAPIDS','MI',1,ST_GeomFromText('POINT(-85.65 42.96)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('49508', 'GRAND RAPIDS','MI',1,ST_GeomFromText('POINT(-85.65 42.96)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('49509', 'WYOMING','MI',1,ST_GeomFromText('POINT(-85.65 42.96)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('49546', 'GRAND RAPIDS','MI',1,ST_GeomFromText('POINT(-85.65 42.96)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('49424', 'HOLLAND','MI',1,ST_GeomFromText('POINT(-86.1 42.77)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('49428', 'JENISON','MI',1,ST_GeomFromText('POINT(-85.82 42.9)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('49024', 'PORTAGE','MI',1,ST_GeomFromText('POINT(-85.59 42.2)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('48913', 'LANSING','MI',1,ST_GeomFromText('POINT(-84.55 42.7)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('48917', 'LANSING','MI',5,ST_GeomFromText('POINT(-84.55 42.7)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('48951', 'LANSING','MI',2,ST_GeomFromText('POINT(-84.56 42.72)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('60005', 'ARLINGTON HEIGHTS','IL',1,ST_GeomFromText('POINT(-87.98 42.09)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('60013', 'CARY','IL',1,ST_GeomFromText('POINT(-88.24 42.2)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('60015', 'DEERFIELD','IL',8,ST_GeomFromText('POINT(-87.84 42.16)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('60201', 'EVANSTON','IL',3,ST_GeomFromText('POINT(-87.68 42.04)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('60047', 'LAKE ZURICH','IL',1,ST_GeomFromText('POINT(-88.08 42.19)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('60048', 'LIBERTYVILLE','IL',2,ST_GeomFromText('POINT(-87.96 42.28)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('60069', 'LINCOLNSHIRE','IL',3,ST_GeomFromText('POINT(-87.91 42.19)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('60056', 'MOUNT PROSPECT','IL',1,ST_GeomFromText('POINT(-87.93 42.06)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('60060', 'MUNDELEIN','IL',1,ST_GeomFromText('POINT(-88.0 42.26)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('60062', 'NORTHBROOK','IL',1,ST_GeomFromText('POINT(-87.83 42.12)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('60064', 'NORTH CHICAGO','IL',3,ST_GeomFromText('POINT(-87.85 42.31)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('60067', 'PALATINE','IL',1,ST_GeomFromText('POINT(-88.04 42.11)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('60068', 'PARK RIDGE','IL',1,ST_GeomFromText('POINT(-87.84 42.01)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('60073', 'ROUND LAKE','IL',1,ST_GeomFromText('POINT(-88.11 42.34)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('60090', 'WHEELING','IL',2,ST_GeomFromText('POINT(-87.92 42.13)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('60098', 'WOODSTOCK','IL',1,ST_GeomFromText('POINT(-88.43 42.31)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('54919', 'APPLETON','WI',2,ST_GeomFromText('POINT(-88.39 44.26)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('53018', 'DELAFIELD','WI',1,ST_GeomFromText('POINT(-88.39 43.06)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('54130', 'KAUKAUNA','WI',1,ST_GeomFromText('POINT(-88.26 44.27)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('54136', 'KIMBERLY','WI',1,ST_GeomFromText('POINT(-88.34 44.27)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('53044', 'KOHLER','WI',1,ST_GeomFromText('POINT(-87.77 43.73)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('53562', 'MIDDLETON','WI',1,ST_GeomFromText('POINT(-89.5 43.1)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('53593', 'VERONA','WI',2,ST_GeomFromText('POINT(-89.53 42.98)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('53717', 'MADISON','WI',2,ST_GeomFromText('POINT(-89.38 43.07)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('53719', 'MADISON','WI',2,ST_GeomFromText('POINT(-89.38 43.07)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('54220', 'MANITOWOC','WI',1,ST_GeomFromText('POINT(-87.67 44.09)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('53202', 'MILWAUKEE','WI',4,ST_GeomFromText('POINT(-87.96 43.06)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('53207', 'MILWAUKEE','WI',1,ST_GeomFromText('POINT(-87.96 43.06)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('53211', 'MILWAUKEE','WI',1,ST_GeomFromText('POINT(-87.96 43.06)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('53150', 'MUSKEGO','WI',1,ST_GeomFromText('POINT(-88.12 42.89)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('53597', 'WAUNAKEE','WI',1,ST_GeomFromText('POINT(-89.45 43.18)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('60510', 'BATAVIA','IL',1,ST_GeomFromText('POINT(-88.3 41.85)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('60106', 'BENSENVILLE','IL',2,ST_GeomFromText('POINT(-87.94 41.95)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('61704', 'BLOOMINGTON','IL',2,ST_GeomFromText('POINT(-88.97 40.47)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('61705', 'BLOOMINGTON','IL',1,ST_GeomFromText('POINT(-88.95 40.47)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('61710', 'BLOOMINGTON','IL',1,ST_GeomFromText('POINT(-88.97 40.47)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('61791', 'BLOOMINGTON','IL',3,ST_GeomFromText('POINT(-88.97 40.47)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('60515', 'DOWNERS GROVE','IL',1,ST_GeomFromText('POINT(-88.01 41.79)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('60124', 'ELGIN','IL',1,ST_GeomFromText('POINT(-88.28 42.03)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('60131', 'FRANKLIN PARK','IL',1,ST_GeomFromText('POINT(-87.87 41.93)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('60140', 'HAMPSHIRE','IL',1,ST_GeomFromText('POINT(-88.52 42.09)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('60523', 'OAK BROOK','IL',1,ST_GeomFromText('POINT(-87.95 41.83)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('60527', 'WILLOWBROOK','IL',1,ST_GeomFromText('POINT(-87.92 41.8)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('60525', 'LA GRANGE','IL',1,ST_GeomFromText('POINT(-87.87 41.8)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('60526', 'LA GRANGE PARK','IL',1,ST_GeomFromText('POINT(-87.87 41.83)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('60490', 'BOLINGBROOK','IL',1,ST_GeomFromText('POINT(-88.07 41.7)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('60532', 'LISLE','IL',1,ST_GeomFromText('POINT(-88.08 41.79)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('60491', 'HOMER GLEN','IL',1,ST_GeomFromText('POINT(-88.01 41.6)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('60536', 'MILLBROOK','IL',1,ST_GeomFromText('POINT(-88.51 41.7)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('60448', 'MOKENA','IL',1,ST_GeomFromText('POINT(-87.87 41.53)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('60538', 'MONTGOMERY','IL',1,ST_GeomFromText('POINT(-88.34 41.72)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('60541', 'NEWARK','IL',1,ST_GeomFromText('POINT(-88.58 41.53)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('60543', 'OSWEGO','IL',1,ST_GeomFromText('POINT(-88.33 41.69)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('61614', 'PEORIA','IL',2,ST_GeomFromText('POINT(-89.6 40.74)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('60169', 'HOFFMAN ESTATES','IL',2,ST_GeomFromText('POINT(-88.12 42.04)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('60173', 'SCHAUMBURG','IL',2,ST_GeomFromText('POINT(-88.08 42.03)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('60487', 'TINLEY PARK','IL',1,ST_GeomFromText('POINT(-87.84 41.57)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('60185', 'WEST CHICAGO','IL',1,ST_GeomFromText('POINT(-88.22 41.88)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('60601', 'CHICAGO','IL',1,ST_GeomFromText('POINT(-87.68 41.83)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('60603', 'CHICAGO','IL',1,ST_GeomFromText('POINT(-87.68 41.83)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('60605', 'CHICAGO','IL',2,ST_GeomFromText('POINT(-87.68 41.83)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('60606', 'CHICAGO','IL',10,ST_GeomFromText('POINT(-87.68 41.83)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('60613', 'CHICAGO','IL',2,ST_GeomFromText('POINT(-87.68 41.83)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('60629', 'CHICAGO','IL',1,ST_GeomFromText('POINT(-87.68 41.83)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('60642', 'CHICAGO','IL',1,ST_GeomFromText('POINT(-87.65 41.9)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('60647', 'CHICAGO','IL',1,ST_GeomFromText('POINT(-87.68 41.83)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('60657', 'CHICAGO','IL',3,ST_GeomFromText('POINT(-87.68 41.83)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('60661', 'CHICAGO','IL',11,ST_GeomFromText('POINT(-87.68 41.83)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('61820', 'CHAMPAIGN','IL',2,ST_GeomFromText('POINT(-88.26 40.11)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('62629', 'CHATHAM','IL',1,ST_GeomFromText('POINT(-89.69 39.67)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('62034', 'GLEN CARBON','IL',1,ST_GeomFromText('POINT(-89.97 38.76)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('61853', 'MAHOMET','IL',1,ST_GeomFromText('POINT(-88.4 40.19)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('62269', 'O FALLON','IL',1,ST_GeomFromText('POINT(-89.91 38.59)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('63021', 'BALLWIN','MO',1,ST_GeomFromText('POINT(-90.55 38.59)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('63017', 'CHESTERFIELD','MO',2,ST_GeomFromText('POINT(-90.58 38.65)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('63026', 'FENTON','MO',2,ST_GeomFromText('POINT(-90.45 38.53)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('63099', 'FENTON','MO',1,ST_GeomFromText('POINT(-90.45 38.53)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('63043', 'MARYLAND HEIGHTS','MO',2,ST_GeomFromText('POINT(-90.47 38.72)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('63301', 'SAINT CHARLES','MO',1,ST_GeomFromText('POINT(-90.51 38.79)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('63304', 'SAINT CHARLES','MO',1,ST_GeomFromText('POINT(-90.51 38.79)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('63105', 'SAINT LOUIS','MO',2,ST_GeomFromText('POINT(-90.24 38.63)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('63116', 'SAINT LOUIS','MO',1,ST_GeomFromText('POINT(-90.24 38.63)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('63125', 'SAINT LOUIS','MO',2,ST_GeomFromText('POINT(-90.24 38.63)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('63127', 'SAINT LOUIS','MO',1,ST_GeomFromText('POINT(-90.24 38.63)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('63129', 'SAINT LOUIS','MO',1,ST_GeomFromText('POINT(-90.24 38.63)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('63136', 'SAINT LOUIS','MO',2,ST_GeomFromText('POINT(-90.24 38.63)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('63166', 'SAINT LOUIS','MO',2,ST_GeomFromText('POINT(-90.24 38.63)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('20002', 'WASHINGTON','DC',2,ST_GeomFromText('POINT(-77.03 38.89)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('20004', 'WASHINGTON','DC',1,ST_GeomFromText('POINT(-77.03 38.89)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('20005', 'WASHINGTON','DC',1,ST_GeomFromText('POINT(-77.03 38.89)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('20007', 'WASHINGTON','DC',1,ST_GeomFromText('POINT(-77.03 38.89)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('20011', 'WASHINGTON','DC',1,ST_GeomFromText('POINT(-77.03 38.89)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('20024', 'WASHINGTON','DC',4,ST_GeomFromText('POINT(-77.03 38.89)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('20036', 'WASHINGTON','DC',2,ST_GeomFromText('POINT(-77.03 38.89)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('20043', 'WASHINGTON','DC',1,ST_GeomFromText('POINT(-77.03 38.89)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('20065', 'WASHINGTON','DC',1,ST_GeomFromText('POINT(-77.03 38.89)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('20544', 'WASHINGTON','DC',1,ST_GeomFromText('POINT(-77.03 38.89)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('20552', 'WASHINGTON','DC',1,ST_GeomFromText('POINT(-77.03 38.89)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('20705', 'BELTSVILLE','MD',1,ST_GeomFromText('POINT(-76.92 39.03)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('20715', 'BOWIE','MD',1,ST_GeomFromText('POINT(-76.73 38.95)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('20613', 'BRANDYWINE','MD',1,ST_GeomFromText('POINT(-76.85 38.69)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('20754', 'DUNKIRK','MD',1,ST_GeomFromText('POINT(-76.66 38.72)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('20759', 'FULTON','MD',2,ST_GeomFromText('POINT(-76.92 39.15)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('20878', 'GAITHERSBURG','MD',2,ST_GeomFromText('POINT(-77.21 39.14)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('20876', 'GERMANTOWN','MD',1,ST_GeomFromText('POINT(-77.26 39.17)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('20895', 'KENSINGTON','MD',1,ST_GeomFromText('POINT(-77.07 39.02)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('20706', 'LANHAM','MD',1,ST_GeomFromText('POINT(-76.85 38.96)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('20707', 'LAUREL','MD',1,ST_GeomFromText('POINT(-76.85 39.09)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('20708', 'LAUREL','MD',1,ST_GeomFromText('POINT(-76.85 39.09)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('20723', 'LAUREL','MD',1,ST_GeomFromText('POINT(-76.85 39.09)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('20736', 'OWINGS','MD',1,ST_GeomFromText('POINT(-76.62 38.69)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('20850', 'ROCKVILLE','MD',2,ST_GeomFromText('POINT(-77.15 39.08)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('20852', 'ROCKVILLE','MD',1,ST_GeomFromText('POINT(-77.15 39.08)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('20854', 'POTOMAC','MD',1,ST_GeomFromText('POINT(-77.19 39.02)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('20906', 'SILVER SPRING','MD',2,ST_GeomFromText('POINT(-77.02 39.01)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('20910', 'SILVER SPRING','MD',1,ST_GeomFromText('POINT(-77.02 39.01)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('21212', 'BALTIMORE','MD',1,ST_GeomFromText('POINT(-76.61 39.3)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('21218', 'BALTIMORE','MD',1,ST_GeomFromText('POINT(-76.61 39.3)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('21224', 'BALTIMORE','MD',2,ST_GeomFromText('POINT(-76.61 39.3)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('21230', 'BALTIMORE','MD',1,ST_GeomFromText('POINT(-76.61 39.3)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('21231', 'BALTIMORE','MD',5,ST_GeomFromText('POINT(-76.61 39.3)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('21030', 'COCKEYSVILLE','MD',1,ST_GeomFromText('POINT(-76.63 39.47)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('21044', 'COLUMBIA','MD',1,ST_GeomFromText('POINT(-76.85 39.2)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('21046', 'COLUMBIA','MD',3,ST_GeomFromText('POINT(-76.85 39.2)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('21037', 'EDGEWATER','MD',1,ST_GeomFromText('POINT(-76.54 38.9)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('21042', 'ELLICOTT CITY','MD',1,ST_GeomFromText('POINT(-76.83 39.27)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('21043', 'ELLICOTT CITY','MD',1,ST_GeomFromText('POINT(-76.83 39.27)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('21702', 'FREDERICK','MD',1,ST_GeomFromText('POINT(-77.41 39.42)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('21703', 'FREDERICK','MD',1,ST_GeomFromText('POINT(-77.41 39.42)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('21704', 'FREDERICK','MD',1,ST_GeomFromText('POINT(-77.41 39.42)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('21054', 'GAMBRILLS','MD',4,ST_GeomFromText('POINT(-76.66 39.05)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('21061', 'GLEN BURNIE','MD',1,ST_GeomFromText('POINT(-76.6 39.16)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('21740', 'HAGERSTOWN','MD',1,ST_GeomFromText('POINT(-77.71 39.63)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('21742', 'HAGERSTOWN','MD',1,ST_GeomFromText('POINT(-77.71 39.63)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('21076', 'HANOVER','MD',3,ST_GeomFromText('POINT(-76.72 39.16)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('21078', 'HAVRE DE GRACE','MD',1,ST_GeomFromText('POINT(-76.09 39.54)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('21093', 'LUTHERVILLE TIMONIUM','MD',1,ST_GeomFromText('POINT(-76.64 39.43)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('21754', 'IJAMSVILLE','MD',1,ST_GeomFromText('POINT(-77.31 39.33)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('21113', 'ODENTON','MD',1,ST_GeomFromText('POINT(-76.69 39.06)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('21117', 'OWINGS MILLS','MD',1,ST_GeomFromText('POINT(-76.79 39.41)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('21122', 'PASADENA','MD',1,ST_GeomFromText('POINT(-76.55 39.11)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('21658', 'QUEENSTOWN','MD',1,ST_GeomFromText('POINT(-76.15 38.98)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('21144', 'SEVERN','MD',2,ST_GeomFromText('POINT(-76.69 39.13)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('21666', 'STEVENSVILLE','MD',1,ST_GeomFromText('POINT(-76.3 38.99)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('21155', 'UPPERCO','MD',1,ST_GeomFromText('POINT(-76.8 39.57)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('21795', 'WILLIAMSPORT','MD',1,ST_GeomFromText('POINT(-77.81 39.59)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('21163', 'WOODSTOCK','MD',1,ST_GeomFromText('POINT(-76.87 39.32)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('20105', 'ALDIE','VA',2,ST_GeomFromText('POINT(-77.64 38.97)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('22304', 'ALEXANDRIA','VA',3,ST_GeomFromText('POINT(-77.08 38.82)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('22003', 'ANNANDALE','VA',1,ST_GeomFromText('POINT(-77.21 38.83)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('22201', 'ARLINGTON','VA',2,ST_GeomFromText('POINT(-77.1 38.87)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('22203', 'ARLINGTON','VA',3,ST_GeomFromText('POINT(-77.1 38.87)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('22205', 'ARLINGTON','VA',2,ST_GeomFromText('POINT(-77.1 38.87)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('22206', 'ARLINGTON','VA',3,ST_GeomFromText('POINT(-77.1 38.87)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('22207', 'ARLINGTON','VA',1,ST_GeomFromText('POINT(-77.1 38.87)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('22230', 'ARLINGTON','VA',1,ST_GeomFromText('POINT(-77.1 38.87)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('20147', 'ASHBURN','VA',9,ST_GeomFromText('POINT(-77.48 39.04)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('20148', 'ASHBURN','VA',2,ST_GeomFromText('POINT(-77.48 39.04)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('20120', 'CENTREVILLE','VA',3,ST_GeomFromText('POINT(-77.44 38.84)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('22701', 'CULPEPER','VA',3,ST_GeomFromText('POINT(-78.0 38.47)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('22025', 'DUMFRIES','VA',1,ST_GeomFromText('POINT(-77.34 38.6)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('20151', 'CHANTILLY','VA',1,ST_GeomFromText('POINT(-77.4 38.87)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('20152', 'CHANTILLY','VA',1,ST_GeomFromText('POINT(-77.4 38.87)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('22030', 'FAIRFAX','VA',4,ST_GeomFromText('POINT(-77.29 38.85)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('22031', 'FAIRFAX','VA',2,ST_GeomFromText('POINT(-77.29 38.85)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('22032', 'FAIRFAX','VA',1,ST_GeomFromText('POINT(-77.29 38.85)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('22033', 'FAIRFAX','VA',1,ST_GeomFromText('POINT(-77.29 38.85)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('22041', 'FALLS CHURCH','VA',2,ST_GeomFromText('POINT(-77.17 38.88)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('22042', 'FALLS CHURCH','VA',5,ST_GeomFromText('POINT(-77.17 38.88)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('22043', 'FALLS CHURCH','VA',1,ST_GeomFromText('POINT(-77.17 38.88)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('22046', 'FALLS CHURCH','VA',2,ST_GeomFromText('POINT(-77.17 38.88)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('22630', 'FRONT ROYAL','VA',1,ST_GeomFromText('POINT(-78.18 38.92)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('22066', 'GREAT FALLS','VA',2,ST_GeomFromText('POINT(-77.28 39.01)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('20170', 'HERNDON','VA',8,ST_GeomFromText('POINT(-77.38 38.96)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('20171', 'HERNDON','VA',14,ST_GeomFromText('POINT(-77.38 38.96)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('20190', 'RESTON','VA',7,ST_GeomFromText('POINT(-77.34 38.95)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('20191', 'RESTON','VA',1,ST_GeomFromText('POINT(-77.34 38.95)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('20194', 'RESTON','VA',1,ST_GeomFromText('POINT(-77.34 38.95)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('20176', 'LEESBURG','VA',1,ST_GeomFromText('POINT(-77.55 39.1)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('22102', 'MC LEAN','VA',34,ST_GeomFromText('POINT(-77.19 38.94)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('22727', 'MADISON','VA',1,ST_GeomFromText('POINT(-78.25 38.37)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('20109', 'MANASSAS','VA',1,ST_GeomFromText('POINT(-77.48 38.74)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('20110', 'MANASSAS','VA',5,ST_GeomFromText('POINT(-77.48 38.74)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('20111', 'MANASSAS','VA',1,ST_GeomFromText('POINT(-77.48 38.74)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('22735', 'REVA','VA',1,ST_GeomFromText('POINT(-78.13 38.49)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('22015', 'BURKE','VA',2,ST_GeomFromText('POINT(-77.27 38.78)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('20164', 'STERLING','VA',2,ST_GeomFromText('POINT(-77.4 39.0)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('20165', 'STERLING','VA',1,ST_GeomFromText('POINT(-77.4 39.0)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('20166', 'STERLING','VA',4,ST_GeomFromText('POINT(-77.4 39.0)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('22124', 'OAKTON','VA',1,ST_GeomFromText('POINT(-77.3 38.89)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('22180', 'VIENNA','VA',1,ST_GeomFromText('POINT(-77.26 38.9)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('22182', 'VIENNA','VA',15,ST_GeomFromText('POINT(-77.26 38.9)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('20187', 'WARRENTON','VA',1,ST_GeomFromText('POINT(-77.79 38.71)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('22602', 'WINCHESTER','VA',1,ST_GeomFromText('POINT(-78.17 39.17)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('22191', 'WOODBRIDGE','VA',1,ST_GeomFromText('POINT(-77.26 38.63)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('22192', 'WOODBRIDGE','VA',1,ST_GeomFromText('POINT(-77.26 38.63)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('23322', 'CHESAPEAKE','VA',1,ST_GeomFromText('POINT(-76.3 36.67)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('23838', 'CHESTERFIELD','VA',1,ST_GeomFromText('POINT(-77.5 37.37)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('22401', 'FREDERICKSBURG','VA',3,ST_GeomFromText('POINT(-77.48 38.29)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('22405', 'FREDERICKSBURG','VA',2,ST_GeomFromText('POINT(-77.48 38.29)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('23059', 'GLEN ALLEN','VA',2,ST_GeomFromText('POINT(-77.48 37.66)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('23060', 'GLEN ALLEN','VA',2,ST_GeomFromText('POINT(-77.48 37.66)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('23061', 'GLOUCESTER','VA',1,ST_GeomFromText('POINT(-76.54 37.43)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('23662', 'POQUOSON','VA',1,ST_GeomFromText('POINT(-76.34 37.12)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('23666', 'HAMPTON','VA',2,ST_GeomFromText('POINT(-76.29 37.04)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('23681', 'HAMPTON','VA',2,ST_GeomFromText('POINT(-76.29 37.04)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('23602', 'NEWPORT NEWS','VA',1,ST_GeomFromText('POINT(-76.51 37.07)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('23504', 'NORFOLK','VA',1,ST_GeomFromText('POINT(-76.28 36.84)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('23505', 'NORFOLK','VA',1,ST_GeomFromText('POINT(-76.28 36.84)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('23220', 'RICHMOND','VA',1,ST_GeomFromText('POINT(-77.46 37.55)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('23230', 'RICHMOND','VA',1,ST_GeomFromText('POINT(-77.46 37.55)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('23238', 'HENRICO','VA',2,ST_GeomFromText('POINT(-77.46 37.55)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('22554', 'STAFFORD','VA',1,ST_GeomFromText('POINT(-77.4 38.42)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('23452', 'VIRGINIA BEACH','VA',1,ST_GeomFromText('POINT(-76.04 36.73)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('23454', 'VIRGINIA BEACH','VA',1,ST_GeomFromText('POINT(-76.04 36.73)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('23464', 'VIRGINIA BEACH','VA',1,ST_GeomFromText('POINT(-76.04 36.73)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('23693', 'YORKTOWN','VA',1,ST_GeomFromText('POINT(-76.5 37.23)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('27502', 'APEX','NC',7,ST_GeomFromText('POINT(-78.84 35.72)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('27539', 'APEX','NC',8,ST_GeomFromText('POINT(-78.81 35.67)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('27215', 'BURLINGTON','NC',1,ST_GeomFromText('POINT(-79.44 36.08)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('27510', 'CARRBORO','NC',2,ST_GeomFromText('POINT(-79.08 35.91)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('27511', 'CARY','NC',5,ST_GeomFromText('POINT(-78.79 35.78)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('27513', 'CARY','NC',19,ST_GeomFromText('POINT(-78.79 35.78)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('27518', 'CARY','NC',13,ST_GeomFromText('POINT(-78.79 35.78)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('27519', 'CARY','NC',9,ST_GeomFromText('POINT(-78.79 35.78)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('27514', 'CHAPEL HILL','NC',2,ST_GeomFromText('POINT(-79.04 35.92)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('27516', 'CHAPEL HILL','NC',4,ST_GeomFromText('POINT(-79.04 35.92)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('27517', 'CHAPEL HILL','NC',1,ST_GeomFromText('POINT(-79.03 35.84)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('27599', 'CHAPEL HILL','NC',3,ST_GeomFromText('POINT(-79.04 35.92)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('27527', 'CLAYTON','NC',1,ST_GeomFromText('POINT(-78.36 35.63)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('27701', 'DURHAM','NC',4,ST_GeomFromText('POINT(-78.91 35.98)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('27703', 'DURHAM','NC',3,ST_GeomFromText('POINT(-78.91 35.98)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('27704', 'DURHAM','NC',1,ST_GeomFromText('POINT(-78.91 35.98)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('27705', 'DURHAM','NC',2,ST_GeomFromText('POINT(-78.91 35.98)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('27707', 'DURHAM','NC',1,ST_GeomFromText('POINT(-78.91 35.98)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('27709', 'DURHAM','NC',12,ST_GeomFromText('POINT(-78.91 35.98)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('27712', 'DURHAM','NC',1,ST_GeomFromText('POINT(-78.91 35.98)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('27713', 'DURHAM','NC',3,ST_GeomFromText('POINT(-78.91 35.98)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('27526', 'FUQUAY VARINA','NC',2,ST_GeomFromText('POINT(-78.83 35.54)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('27529', 'GARNER','NC',3,ST_GeomFromText('POINT(-78.62 35.69)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('27401', 'GREENSBORO','NC',1,ST_GeomFromText('POINT(-79.82 36.07)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('27455', 'GREENSBORO','NC',1,ST_GeomFromText('POINT(-79.82 36.07)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('27858', 'GREENVILLE','NC',2,ST_GeomFromText('POINT(-77.37 35.59)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('27278', 'HILLSBOROUGH','NC',1,ST_GeomFromText('POINT(-79.1 36.07)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('27540', 'HOLLY SPRINGS','NC',16,ST_GeomFromText('POINT(-78.83 35.65)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('27544', 'KITTRELL','NC',1,ST_GeomFromText('POINT(-78.44 36.22)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('27545', 'KNIGHTDALE','NC',1,ST_GeomFromText('POINT(-78.48 35.79)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('27302', 'MEBANE','NC',1,ST_GeomFromText('POINT(-79.27 36.09)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('28651', 'MILLERS CREEK','NC',1,ST_GeomFromText('POINT(-81.23 36.18)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('27560', 'MORRISVILLE','NC',19,ST_GeomFromText('POINT(-78.83 35.83)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('28659', 'NORTH WILKESBORO','NC',1,ST_GeomFromText('POINT(-81.14 36.16)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('27312', 'PITTSBORO','NC',2,ST_GeomFromText('POINT(-79.17 35.71)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('27601', 'RALEIGH','NC',87,ST_GeomFromText('POINT(-78.65 35.82)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('27603', 'RALEIGH','NC',18,ST_GeomFromText('POINT(-78.65 35.82)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('27604', 'RALEIGH','NC',11,ST_GeomFromText('POINT(-78.65 35.82)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('27605', 'RALEIGH','NC',5,ST_GeomFromText('POINT(-78.65 35.82)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('27606', 'RALEIGH','NC',11,ST_GeomFromText('POINT(-78.65 35.82)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('27607', 'RALEIGH','NC',9,ST_GeomFromText('POINT(-78.65 35.82)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('27608', 'RALEIGH','NC',4,ST_GeomFromText('POINT(-78.65 35.82)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('27609', 'RALEIGH','NC',9,ST_GeomFromText('POINT(-78.65 35.82)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('27610', 'RALEIGH','NC',7,ST_GeomFromText('POINT(-78.65 35.82)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('27612', 'RALEIGH','NC',10,ST_GeomFromText('POINT(-78.65 35.82)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('27613', 'RALEIGH','NC',8,ST_GeomFromText('POINT(-78.65 35.82)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('27614', 'RALEIGH','NC',8,ST_GeomFromText('POINT(-78.65 35.82)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('27615', 'RALEIGH','NC',5,ST_GeomFromText('POINT(-78.65 35.82)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('27616', 'RALEIGH','NC',4,ST_GeomFromText('POINT(-78.65 35.82)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('27617', 'RALEIGH','NC',4,ST_GeomFromText('POINT(-78.75 35.88)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('27650', 'RALEIGH','NC',1,ST_GeomFromText('POINT(-78.65 35.82)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('27571', 'ROLESVILLE','NC',1,ST_GeomFromText('POINT(-78.45 35.92)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('27330', 'SANFORD','NC',2,ST_GeomFromText('POINT(-79.18 35.47)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('27587', 'WAKE FOREST','NC',6,ST_GeomFromText('POINT(-78.52 35.97)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('27377', 'WHITSETT','NC',1,ST_GeomFromText('POINT(-79.59 36.03)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('27592', 'WILLOW SPRING','NC',1,ST_GeomFromText('POINT(-78.66 35.54)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('27101', 'WINSTON SALEM','NC',2,ST_GeomFromText('POINT(-80.24 36.1)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('27596', 'YOUNGSVILLE','NC',1,ST_GeomFromText('POINT(-78.47 36.02)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('28801', 'ASHEVILLE','NC',1,ST_GeomFromText('POINT(-82.54 35.57)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('28202', 'CHARLOTTE','NC',11,ST_GeomFromText('POINT(-80.83 35.19)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('28203', 'CHARLOTTE','NC',1,ST_GeomFromText('POINT(-80.83 35.19)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('28207', 'CHARLOTTE','NC',1,ST_GeomFromText('POINT(-80.83 35.19)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('28208', 'CHARLOTTE','NC',1,ST_GeomFromText('POINT(-80.83 35.19)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('28210', 'CHARLOTTE','NC',1,ST_GeomFromText('POINT(-80.83 35.19)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('28215', 'CHARLOTTE','NC',1,ST_GeomFromText('POINT(-80.83 35.19)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('28216', 'CHARLOTTE','NC',1,ST_GeomFromText('POINT(-80.83 35.19)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('28255', 'CHARLOTTE','NC',1,ST_GeomFromText('POINT(-80.83 35.19)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('28262', 'CHARLOTTE','NC',4,ST_GeomFromText('POINT(-80.83 35.19)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('28273', 'CHARLOTTE','NC',1,ST_GeomFromText('POINT(-80.83 35.19)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('28027', 'CONCORD','NC',1,ST_GeomFromText('POINT(-80.59 35.4)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('28079', 'INDIAN TRAIL','NC',1,ST_GeomFromText('POINT(-80.67 35.07)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('28147', 'SALISBURY','NC',2,ST_GeomFromText('POINT(-80.48 35.66)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('28782', 'TRYON','NC',2,ST_GeomFromText('POINT(-82.23 35.2)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('28401', 'WILMINGTON','NC',1,ST_GeomFromText('POINT(-77.91 34.21)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('28590', 'WINTERVILLE','NC',1,ST_GeomFromText('POINT(-77.39 35.52)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('29707', 'FORT MILL','SC',1,ST_GeomFromText('POINT(-80.86 34.99)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('29708', 'FORT MILL','SC',1,ST_GeomFromText('POINT(-80.94 35.0)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('29715', 'FORT MILL','SC',1,ST_GeomFromText('POINT(-80.94 35.0)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('29403', 'CHARLESTON','SC',1,ST_GeomFromText('POINT(-79.99 32.78)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('29425', 'CHARLESTON','SC',1,ST_GeomFromText('POINT(-79.99 32.78)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('29219', 'COLUMBIA','SC',4,ST_GeomFromText('POINT(-81.03 34.0)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('29601', 'GREENVILLE','SC',2,ST_GeomFromText('POINT(-82.37 34.83)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('29607', 'GREENVILLE','SC',1,ST_GeomFromText('POINT(-82.37 34.83)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('29615', 'GREENVILLE','SC',2,ST_GeomFromText('POINT(-82.37 34.83)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('29650', 'GREER','SC',1,ST_GeomFromText('POINT(-82.23 34.93)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('29651', 'GREER','SC',1,ST_GeomFromText('POINT(-82.23 34.93)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('29464', 'MOUNT PLEASANT','SC',1,ST_GeomFromText('POINT(-79.86 32.82)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('29466', 'MOUNT PLEASANT','SC',1,ST_GeomFromText('POINT(-79.86 32.82)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('29681', 'SIMPSONVILLE','SC',1,ST_GeomFromText('POINT(-82.25 34.73)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('30101', 'ACWORTH','GA',1,ST_GeomFromText('POINT(-84.67 34.05)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('30102', 'ACWORTH','GA',1,ST_GeomFromText('POINT(-84.67 34.05)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('30004', 'ALPHARETTA','GA',6,ST_GeomFromText('POINT(-84.27 34.06)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('30005', 'ALPHARETTA','GA',3,ST_GeomFromText('POINT(-84.27 34.06)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('30009', 'ALPHARETTA','GA',2,ST_GeomFromText('POINT(-84.27 34.06)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('30602', 'ATHENS','GA',1,ST_GeomFromText('POINT(-83.39 33.95)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('30303', 'ATLANTA','GA',4,ST_GeomFromText('POINT(-84.39 33.75)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('30305', 'ATLANTA','GA',1,ST_GeomFromText('POINT(-84.38 33.83)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('30306', 'ATLANTA','GA',1,ST_GeomFromText('POINT(-84.34 33.78)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('30308', 'ATLANTA','GA',3,ST_GeomFromText('POINT(-84.37 33.77)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('30312', 'ATLANTA','GA',1,ST_GeomFromText('POINT(-84.37 33.74)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('30319', 'ATLANTA','GA',3,ST_GeomFromText('POINT(-84.33 33.87)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('30322', 'ATLANTA','GA',1,ST_GeomFromText('POINT(-84.32 33.79)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('30324', 'ATLANTA','GA',1,ST_GeomFromText('POINT(-84.36 33.81)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('30326', 'ATLANTA','GA',4,ST_GeomFromText('POINT(-84.35 33.84)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('30328', 'ATLANTA','GA',5,ST_GeomFromText('POINT(-84.38 33.93)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('30332', 'ATLANTA','GA',2,ST_GeomFromText('POINT(-84.42 33.76)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('30338', 'ATLANTA','GA',1,ST_GeomFromText('POINT(-84.31 33.94)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('30339', 'ATLANTA','GA',1,ST_GeomFromText('POINT(-84.47 33.86)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('30349', 'ATLANTA','GA',2,ST_GeomFromText('POINT(-84.49 33.61)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('30350', 'ATLANTA','GA',2,ST_GeomFromText('POINT(-84.32 33.97)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('30354', 'ATLANTA','GA',1,ST_GeomFromText('POINT(-84.42 33.76)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('30011', 'AUBURN','GA',1,ST_GeomFromText('POINT(-83.83 34.01)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('30528', 'CLEVELAND','GA',1,ST_GeomFromText('POINT(-83.76 34.59)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('30041', 'CUMMING','GA',1,ST_GeomFromText('POINT(-84.13 34.2)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('30019', 'DACULA','GA',1,ST_GeomFromText('POINT(-83.88 33.98)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('30132', 'DALLAS','GA',1,ST_GeomFromText('POINT(-84.83 33.91)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('30030', 'DECATUR','GA',1,ST_GeomFromText('POINT(-84.29 33.77)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('30033', 'DECATUR','GA',3,ST_GeomFromText('POINT(-84.29 33.77)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('30135', 'DOUGLASVILLE','GA',1,ST_GeomFromText('POINT(-84.74 33.74)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('30096', 'DULUTH','GA',2,ST_GeomFromText('POINT(-84.15 34.0)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('30097', 'DULUTH','GA',2,ST_GeomFromText('POINT(-84.15 34.0)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('30043', 'LAWRENCEVILLE','GA',1,ST_GeomFromText('POINT(-83.99 33.94)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('30044', 'LAWRENCEVILLE','GA',1,ST_GeomFromText('POINT(-83.99 33.94)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('30047', 'LILBURN','GA',1,ST_GeomFromText('POINT(-84.13 33.88)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('30066', 'MARIETTA','GA',2,ST_GeomFromText('POINT(-84.54 33.95)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('30263', 'NEWNAN','GA',1,ST_GeomFromText('POINT(-84.78 33.37)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('30092', 'NORCROSS','GA',1,ST_GeomFromText('POINT(-84.2 33.94)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('30127', 'POWDER SPRINGS','GA',1,ST_GeomFromText('POINT(-84.68 33.86)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('30075', 'ROSWELL','GA',2,ST_GeomFromText('POINT(-84.35 34.03)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('30024', 'SUWANEE','GA',3,ST_GeomFromText('POINT(-84.07 34.05)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('30677', 'WATKINSVILLE','GA',1,ST_GeomFromText('POINT(-83.4 33.86)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('30188', 'WOODSTOCK','GA',1,ST_GeomFromText('POINT(-84.51 34.1)', 4326)); +INSERT into zipcodes (zipcode, city, state, count, the_geom) VALUES ('85238', 'MARICOPA','AZ',1,ST_GeomFromText('POINT(-111.93 33.0)', 4326)); diff --git a/roles/provision-pyzip-demo-db-apb/tasks/main.yml b/roles/provision-pyzip-demo-db-apb/tasks/main.yml new file mode 100644 index 0000000..53bbdc0 --- /dev/null +++ b/roles/provision-pyzip-demo-db-apb/tasks/main.yml @@ -0,0 +1,122 @@ +- name: create namespace + openshift_v1_project: + name: '{{ namespace }}' + +- name: create volumes + k8s_v1_persistent_volume_claim: + name: demodb + namespace: '{{ namespace }}' + state: present + access_modes: + - ReadWriteOnce + resources_requests: + storage: 1Gi + +- name: create service + k8s_v1_service: + name: '{{ dbservice_name }}' + namespace: '{{ namespace }}' + state: present + labels: + app: pyzip-demo-db-apb + service: '{{ dbservice_name }}' + selector: + app: pyzip-demo-db-apb + service: '{{ dbservice_name }}' + ports: + - name: port-5432 + port: 5432 + protocol: TCP + target_port: 5432 + +- name: create image stream + openshift_v1_image_stream: + name: postgresql + namespace: '{{ namespace }}' + tags: + - name: postgis + docker_image_repository: docker.io/fabianvf/postgresql + +- name: create deployment config + openshift_v1_deployment_config: + name: demodb + namespace: '{{ namespace }}' + labels: + app: pyzip-demo-db-apb + service: '{{ dbservice_name }}' + replicas: 1 + selector: + app: pyzip-demo-db-apb + service: '{{ dbservice_name }}' + strategy_type: Rolling + strategy_rolling_params: + interval_seconds: 1 + max_surge: 25% + max_unavailable: 25% + timeout_seconds: 600 + update_period_seconds: 1 + spec_template_metadata_labels: + app: pyzip-demo-db-apb + service: '{{ dbservice_name }}' + containers: + - env: + - name: POSTGRES_PASSWORD + value: '{{ database_password }}' + - name: POSTGRES_USER + value: '{{ database_user }}' + - name: POSTGRES_DB + value: '{{ database_name }}' + image: docker.io/fabianvf/postgresql:postgis + image_pull_policy: IfNotPresent + name: demodb + ports: + - container_port: 5432 + protocol: TCP + resources: {} + security_context: {} + termination_message_path: /dev/termination-log + volume_mounts: + - mount_path: /var/lib/pgsql/data + name: demodb + working_dir: / + dns_policy: ClusterFirst + restart_policy: Always + termination_grace_period_seconds: 30 + volumes: + - name: demodb + persistent_volume_claim: + claim_name: demodb + test: false + triggers: + - type: ImageChange + image_change_params: + automatic: true + container_names: + - demodb + _from: + kind: ImageStreamTag + name: postgresql:postgis + + +- name: Wait for the database to come up + wait_for: + port: 5432 + host: "{{ dbservice_name }}" + timeout: 300 + +- name: seed database + shell: "PGPASSWORD={{ database_password }} psql -U {{ database_user }} -d {{ database_name }} -p 5432 -h {{ dbservice_name }} -f {{ role_path }}/files/{{ item }}" + with_items: + - parkcoord.sql + - airports.ddl + - zipcodes.ddl + - airports.sql + - zipcodes.sql + +- name: encode bind credentials + shell: 'echo "{\"POSTGRES_HOST\": \"{{ dbservice_name }}\", \"POSTGRES_PORT\": \"5432\", \"POSTGRES_USER\": \"{{ database_user }}\", \"POSTGRES_PASSWORD\": \"{{ database_password }}\", \"POSTGRES_DB\": \"{{ database_name }}\"}" | base64 -w 0' + register: encoded_bind_credentials + +- copy: + content: "{{ encoded_bind_credentials.stdout }}" + dest: /var/tmp/bind-creds