Repository: google/maps-for-work-samples Branch: master Commit: d1c76979488a Files: 127 Total size: 2.3 MB Directory structure: gitextract_0ly565b8/ ├── .gitignore ├── LICENSE ├── README.md ├── demos/ │ └── CloudSQL/ │ ├── cloudsql-geojson-api/ │ │ ├── CONTRIB.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── api.py │ │ ├── app.yaml │ │ ├── appengine_config.py │ │ ├── requirements.txt │ │ ├── static/ │ │ │ └── js/ │ │ │ └── cloudsql-json-api.js │ │ └── vendor.py │ ├── cloudsql-maps-api/ │ │ ├── index.html │ │ └── js/ │ │ └── gmaps.js │ └── cloudsql-store-locator/ │ ├── cloudsql-datasource.js │ ├── cloudsql.html │ └── cloudsql.js ├── samples/ │ ├── GEE/ │ │ └── gee_maps_polyline_sample.html │ └── maps/ │ └── OpenWeatherMapLayer/ │ └── index.html └── tools/ └── GEE/ └── BuildTheBaseGlobe/ ├── Imagery/ │ ├── A1.prj │ ├── A1.tfw │ ├── A2.prj │ ├── A2.tfw │ ├── B1.prj │ ├── B1.tfw │ ├── B2.prj │ ├── B2.tfw │ ├── BuildBlueMarble.sh │ ├── C1.prj │ ├── C1.tfw │ ├── C2.prj │ ├── C2.tfw │ ├── D1.prj │ ├── D1.tfw │ ├── D2.prj │ ├── D2.tfw │ ├── FetchBlueMarble.sh │ ├── buildtruemarble250.sh │ └── fetchtruemarble250.sh ├── RunMeFirst.sh ├── terrain/ │ ├── BuildEtopoData.sh │ └── FetchEtopoData.sh └── vector/ ├── BuildBorders.sh ├── BuildCloudmadeRoads.sh ├── BuildNamesData.sh ├── FetchBordersData.sh ├── FetchNamesData.sh ├── FetchOSM.sh ├── HiRezShoreline.khdsp ├── InternationalBorders.khdsp ├── LowRezShoreline.khdsp ├── OpenStreetmap/ │ ├── 2D_OSM_Highways_Only.kmdsp │ ├── BuildCloudmadeRoads.sh │ ├── FetchOSMData.sh │ ├── GenericOSMHighwayTemplate.khdsp │ ├── africa_highway.khdsp │ ├── asia_highway.khdsp │ ├── europe_highway.khdsp │ ├── north_america_highway.khdsp │ ├── oceania_highway.khdsp │ ├── south_america/ │ │ └── unzip_south_america.sh │ └── south_america_highway.khdsp ├── StateBorders.khdsp ├── StateNames.khdsp ├── TigerLineRoads/ │ ├── 1_FetchTigerLineData.sh │ ├── 2D_Tiger_Roads_Template.kmdsp │ ├── 2D_Tigerline_Highways_only.kmdsp │ ├── 2_UnzipEdgeFiles.sh │ ├── 3_CreateTigerResources.sh │ ├── 4_BuildTigerResources.sh │ ├── 5_AddTigerResourcesToProject.sh │ ├── ALABAMA.khdsp │ ├── ALASKA.khdsp │ ├── ARIZONA.khdsp │ ├── ARKANSAS.khdsp │ ├── CALIFORNIA.khdsp │ ├── COLORADO.khdsp │ ├── CONNECTICUT.khdsp │ ├── DELAWARE.khdsp │ ├── DISTRICT_OF_COLUMBIA.khdsp │ ├── FLORIDA.khdsp │ ├── GEORGIA.khdsp │ ├── HAWAII.khdsp │ ├── IDAHO.khdsp │ ├── ILLINOIS.khdsp │ ├── INDIANA.khdsp │ ├── IOWA.khdsp │ ├── KANSAS.khdsp │ ├── KENTUCKY.khdsp │ ├── LOUISIANA.khdsp │ ├── MAINE.khdsp │ ├── MARYLAND.khdsp │ ├── MASSACHUSETTS.khdsp │ ├── MICHIGAN.khdsp │ ├── MINNESOTA.khdsp │ ├── MISSISSIPPI.khdsp │ ├── MISSOURI.khdsp │ ├── MONTANA.khdsp │ ├── NEBRASKA.khdsp │ ├── NEVADA.khdsp │ ├── NEW_HAMPSHIRE.khdsp │ ├── NEW_JERSEY.khdsp │ ├── NEW_MEXICO.khdsp │ ├── NEW_YORK.khdsp │ ├── NORTH_CAROLINA.khdsp │ ├── NORTH_DAKOTA.khdsp │ ├── OHIO.khdsp │ ├── OKLAHOMA.khdsp │ ├── OREGON.khdsp │ ├── PENNSYLVANIA.khdsp │ ├── RHODE_ISLAND.khdsp │ ├── SOUTH_CAROLINA.khdsp │ ├── SOUTH_DAKOTA.khdsp │ ├── TENNESSEE.khdsp │ ├── TEXAS.khdsp │ ├── Tiger2009_road_display_rules.khdsp │ ├── TigerLine2D2009HighwaysOnly.kmdsp │ ├── TigerLineRoads.khdsp │ ├── TigerLineRoadsHighwaysOnly.khdsp │ ├── UTAH.khdsp │ ├── VERMONT.khdsp │ ├── VIRGINIA.khdsp │ ├── WASHINGTON.khdsp │ └── WEST_VIRGINIA.khdsp ├── allCountries.kdx ├── usa_state_names.khdsp └── world_cities.khdsp ================================================ FILE CONTENTS ================================================ ================================================ FILE: .gitignore ================================================ *~ \#*\# .\#* ================================================ FILE: LICENSE ================================================ Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and (b) You must cause any modified files to carry prominent notices stating that You changed the files; and (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ================================================ FILE: README.md ================================================ This repository contains samples, demos and tools relating to the Google Maps APIs and related enterprise products, like Google Maps Engine. The samples directory contains simple samples that show a single concept. The demos directory shows some more complex examples, and usually combines the use of a concept or two. The tools contain different tools that both show how to do some thing, but also is a useful tool that you can use e.g. for debugging. Each directory is split into a sub-directory based on the product it applies to. ================================================ FILE: demos/CloudSQL/cloudsql-geojson-api/CONTRIB.md ================================================ # How to become a contributor and submit your own code ## Contributor License Agreements We'd love to accept your sample apps and patches! Before we can take them, we have to jump a couple of legal hurdles. Please fill out either the individual or corporate Contributor License Agreement (CLA). * If you are an individual writing original source code and you're sure you own the intellectual property, then you'll need to sign an [individual CLA](http://code.google.com/legal/individual-cla-v1.0.html). * If you work for a company that wants to allow you to contribute your work, then you'll need to sign a [corporate CLA](http://code.google.com/legal/corporate-cla-v1.0.html). Follow either of the two links above to access the appropriate CLA and instructions for how to sign and return it. Once we receive it, we'll be able to accept your pull requests. ## Contributing A Patch 1. Submit an issue describing your proposed change to the repo in question. 1. The repo owner will respond to your issue promptly. 1. If your proposed change is accepted, and you haven't already done so, sign a Contributor License Agreement (see details above). 1. Fork the desired repo, develop and test your code changes. 1. Ensure that your code adheres to the existing style in the sample to which you are contributing. Refer to the [Google Cloud Platform Samples Style Guide](https://github.com/GoogleCloudPlatform/Template/wiki/style.html) for the recommended coding standards for this organization. 1. Ensure that your code has an appropriate set of unit tests which all pass. 1. Submit a pull request. ================================================ FILE: demos/CloudSQL/cloudsql-geojson-api/LICENSE ================================================ Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and (b) You must cause any modified files to carry prominent notices stating that You changed the files; and (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ================================================ FILE: demos/CloudSQL/cloudsql-geojson-api/README.md ================================================ ## Python CloudSQL Query Library for Google App Engine A demonstration on how to use appengine for building a geospatial application based on [CloudSQL](https://cloud.google.com/sql/docs). This appengine application implements the backend server that your Google Maps API application can use to query your geospatial data. ## Run Locally 1. Install the [App Engine Python SDK](https://developers.google.com/appengine/downloads). See the README file for directions. You'll need python 2.7 and [pip 1.4 or later](http://www.pip-installer.org/en/latest/installing.html) installed too. 2. Install dependencies in the project's lib directory. Note: App Engine can only import libraries from inside your project directory. ``` cd project-wander-api pip install -r requirements.txt -t lib ``` 3. Run this project locally from the command line: ``` dev_appserver.py . ``` Visit the application [http://localhost:8080](http://localhost:8080) See [the development server documentation](https://developers.google.com/appengine/docs/python/tools/devserver) for options when running dev_appserver. ## Deploy To deploy the application: 1. Use the [Admin Console](https://appengine.google.com) to create a project/app id. (App id and project id are identical) 1. [Deploy the application](https://developers.google.com/appengine/docs/python/tools/uploadinganapp) with ``` appcfg.py -A --oauth2 update . ``` 1. Congratulations! Your application is now live at your-app-id.appspot.com ## Next Steps This skeleton includes `TODO` markers to help you find basic areas you will want to customize. ### Installing Libraries See the [Third party libraries](https://developers.google.com/appengine/docs/python/tools/libraries27) page for libraries that are already included in the SDK. To include SDK libraries, add them in your app.yaml file. Other than libraries included in the SDK, only pure python libraries may be added to an App Engine project. ### Feedback Star this repo if you found it useful. Use the github issue tracker to give feedback on this repo. ## Contributing changes See [CONTRIB.md](CONTRIB.md) ## Licensing See [LICENSE](LICENSE) ## Author Wolf Bergenheim ================================================ FILE: demos/CloudSQL/cloudsql-geojson-api/api.py ================================================ # Copyright 2014 Google Inc. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. """A light REST API to query the backed data. This is not production-quality software, but intended as a proof-of-concept. This is intentionally mimiking the Google Maps Engine API. Currently supports only the Tables.features list operation at url: /tables/{db}:{table}/features Supports the following path parameters: * id Supports the following query parameters: * limit * orderBy * select * where All other query parameters are ignored. """ import json import logging import os import traceback import MySQLdb # flask, geojson,geomet and sqlparse are external dependencies. # Install them by running pip install -r requirements.txt -t lib import flask import geojson import geomet.wkb import geomet.wkt import sqlparse # This is your CloudSQL instance _INSTANCE = 'project-lightning-strike:dev-eu' _GEOMETRY_FIELD = 'geometry' # This is the host to connect to in the dev server. # This can be the IP address of your CloudSQL server, if you want to test that. _MYSQL_HOST = '173.194.81.135' _MYSQL_USER = 'root' _MYSQL_PASSWORD = 'koirakakka' # Note: We don't need to call run() since our application is embedded within # the App Engine WSGI application server. app = flask.Flask(__name__) @app.route('/tables/:/features') def do_features_list(database, table): """Handle the parsing of the request and return the geojson. This routes all the /tables/... requests to the handler. See http://flask.pocoo.org/docs/0.10/api/#flask.Flask.route Args: database: The name of the database to use, this is picked from the URL. table: The database table to query from, this is picked from the URL. Returns: A flask.Response object with the GeoJSON to be returned, or an error JSON. """ where = flask.request.args.get('where', default='true') select = flask.request.args.get('select', default='') limit = flask.request.args.get('limit') order_by = flask.request.args.get('orderBy') try: f = Features(_INSTANCE, database) except MySQLdb.OperationalError as e: error = {'error': 'Database Error %s' % str(e)} return flask.Response(response=json.dumps(error), mimetype='application/json', status=500) feature_collection = f.list(table, select, where, limit=limit, order_by=order_by) if 'error' in feature_collection: return flask.Response(response=json.dumps(feature_collection), mimetype='application/json', status=500) else: return flask.Response( response=geojson.dumps(feature_collection, sort_keys=True), mimetype='application/json', status=200) @app.route('/pip/:
') def do_pip(database, table): """Handle the parsing of the point in polygon request and return a polygon. This routes all the /pip/... requests to the handler. See http://flask.pocoo.org/docs/0.10/api/#flask.Flask.route Args: database: The name of the database to use, this is picked from the URL. table: The database table to query from, this is picked from the URL. Returns: A flask.Response object with the GeoJSON to be returned, or an error JSON. """ lat = float(flask.request.args.get('lat', default=0.0)) lng = float(flask.request.args.get('lng', default=0.0)) select = flask.request.args.get('select', default='') try: pip = PointInPolygon(_INSTANCE, database, table) except MySQLdb.OperationalError as e: error = {'error': 'Database Error %s' % str(e)} return flask.Response(response=json.dumps(error), mimetype='application/json', status=500) polygon = pip.pip(lat, lng, select) if 'error' in polygon: return flask.Response(response=json.dumps(polygon), mimetype='application/json', status=500) else: return flask.Response( response=geojson.dumps(polygon, sort_keys=True), mimetype='application/json', status=200) @app.errorhandler(404) def page_not_found(_): """Return a custom 404 error.""" return 'Sorry, Nothing at this URL.', 404 @app.errorhandler(500) def internal_error(_): """Return a custom 500 error.""" return 'Sorry, unexpected error: {}'.format(traceback.format_exc()), 500 class Features(object): """Implements the tables endpoint in the REST API. This class handles all tables/{db}:{table}/features requests. """ def __init__(self, instance, database): """Set up a database connection to the cloud SQL server. Args: instance: The name of the CloudSQL instance. database: The name of the database to use. """ # Keep track of the db instance. self._instance = instance # The name of the database to use. self._database = database self._connect() def _connect(self): if (os.getenv('SERVER_SOFTWARE') and os.getenv('SERVER_SOFTWARE').startswith('Google App Engine/')): socket_name = '/cloudsql/%s' % self._instance self._db = MySQLdb.connect(unix_socket=socket_name, db=self._database, user='root') else: self._db = MySQLdb.connect(host=_MYSQL_HOST, port=3306, db=self._database, user=_MYSQL_USER, passwd=_MYSQL_PASSWORD) def __del__(self): self._db.close() # TODO: Add more methods for Create/Update/Delete features, and tables. def list(self, table, select, where, limit=None, order_by=None): """Send the query to the database and return the result as GeoJSON. Args: table: The Table to use. select: A comma-separated list of columns to use. Anything that is valid SQL is accepted. This value needs rigorous error checking. where: A valid SQL where statement. Also needs a lot of checking. limit: The limit the number of returned entries. order_by: A valid SQL order by statement. Returns: A GeoJSON FeatureCollection representing the returned features, or a dict explaining the error. """ cursor = self._db.cursor() features = [] cols = [] # Add the geometry column to the query. This assumes that geometry is # not in the selected columns. if select: select = '%s,AsWKT(%s) as wktgeom' % (select, _GEOMETRY_FIELD) else: select = 'AsWKT(%s) as wktgeom' % _GEOMETRY_FIELD # Build the query. query = ['select %(select)s from %(id)s where %(where)s' % { 'id': table, 'select': select, 'where': where }] if order_by: query.append('order by %s' % order_by) if limit: query.append('limit %s' % limit) # Convert the list to a string. query_string = ' '.join(query) logging.info('query = "%s"', query_string) if len(sqlparse.split(query_string)) > 1: return {'error': 'invalid parameter'} rows = [] try: cursor.execute(' '.join(query)) cols = [(i[0],i[1]) for i in cursor.description] rows = cursor.fetchall() except MySQLdb.Error as e: # This error should probably be made better in a production system. return {'error': 'Something went wrong: {}'.format(e)} # Give each feature a unique ID. feature_id = 0 # now we read the rows and generate geojson out of them. for row in rows: wktgeom = row[-1] props = {} for i in range(len(row)-1): if row[i] is None: logging.debug('skipping NULL value for column %s ', cols[i][0]) elif cols[i][1] == 246: logging.debug('%s = %d', cols[i][0], row[i]) props[cols[i][0]] = int(row[i]) elif cols[i][1] == 255: logging.debug('SKIPPING GEOMETRY DATA') elif cols[i][1] > 200: logging.debug('stringifying data of type %d: %s=%s', cols[i][1], cols[i][0], row[i]) props[cols[i][0]] = str(row[i]) else: logging.debug('%s = %s', cols[i][0], row[i]) props[cols[i][0]] = row[i] #props = dict(zip(cols[:-1], row[:-1])) # geomet.wkt.loads returns a dict which corresponds to the geometry # We dump this as a string, and let geojson parse it geom = geojson.loads(json.dumps(geomet.wkt.loads(wktgeom))) # Turn the geojson geometry into a proper GeoJSON feature feature = geojson.Feature(geometry=geom, properties=props, id=feature_id) feature_id += 1 # Add the feature to our list of features. features.append(feature) # Close the cursor, now that we are done with it. cursor.close() # Return the list of features as a FeatureCollection. return geojson.FeatureCollection(features) class PointInPolygon(object): """This class handles the pip requests. It uses Features to query the db. """ def __init__(self, instance, database, table): """Create a Features instance and store the table. Args: instance: The name of the CloudSQL instance. database: The name of the database to use. table: The table that contains the features that we want to look up. """ self._features = Features(instance, database) self._table = table def pip(self, lat, lng, fields): """This method returns the polygon that contains the given coordinate. It uses the Feature class to make the actual query. Args: lat: The latitude lng: The longitude fields: The fields to select as data Returns: A geojson polygon or an error dict. """ point = "GeomFromText('POINT(%f %f)')" % (lng, lat) return self._features.list( self._table, fields, 'ST_CONTAINS(%s,%s)' % (_GEOMETRY_FIELD, point), limit=1) ================================================ FILE: demos/CloudSQL/cloudsql-geojson-api/app.yaml ================================================ # This file specifies your Python application's runtime configuration # including URL routing, versions, static file uploads, etc. See # https://developers.google.com/appengine/docs/python/config/appconfig # for details. # TODO: Enter your application id below. If you have signed up # using cloud.google.com/console use the "project id" for your application # id. application: project-wander-api version: 1 runtime: python27 api_version: 1 threadsafe: yes # Handlers define how to route requests to your application. handlers: # App Engine serves and caches static files contained in the listed directories # (and subdirectories). Uncomment and set the directory as needed. #- url: /client # static_dir: client # This handler tells app engine how to route requests to a WSGI application. # The script value is in the format . # where is a WSGI application object. - url: /tables/.* script: api.app # Third party libraries that are included in the App Engine SDK must be listed # here if you want to use them. See # https://developers.google.com/appengine/docs/python/tools/libraries27 for # a list of libraries included in the SDK. Third party libs that are *not* part # of the App Engine SDK don't need to be listed here, instead add them to your # project directory, either as a git submodule or as a plain subdirectory. # TODO: List any other App Engine SDK libs you may need here. #libraries: #- name: jinja2 # version: latest ================================================ FILE: demos/CloudSQL/cloudsql-geojson-api/appengine_config.py ================================================ """`appengine_config` gets loaded when starting a new application instance.""" import vendor # insert `lib` as a site directory so our `main` module can load # third-party libraries, and override built-ins with newer # versions. vendor.add('lib') ================================================ FILE: demos/CloudSQL/cloudsql-geojson-api/requirements.txt ================================================ # This requirements file lists all third-party dependencies for this project. # # Run 'pip install -r requirements.txt -t lib/' to install these dependencies # in `lib/` subdirectory. # # Note: The `lib` directory is added to `sys.path` by `appengine_config.py`. Flask==0.10 geojson git+git://github.com/geomet/geomet.git sqlparse ================================================ FILE: demos/CloudSQL/cloudsql-geojson-api/static/js/cloudsql-json-api.js ================================================ // Create a namespace var google = google || {}; /** * Namespace for the cloudsql library. */ google.cloudsql = google.cloudsql || {}; /** * A helper class to simplify calling a CloudSQL REST API. * @param {string} database The name of the database to use. * @constructor */ google.cloudsql.CloudSqlJsonApi = function(database) { this.database = database; this.featuresCallbacks = $.Callbacks(); this.pipCallbacks = $.Callbacks(); }; /** * Get features from CloudSQL that match the query parameters. * @param {string} table The table that stores the features to query for. * @param {Object} args An object with additional fields, these are converted to * query parameters in the request. * @param {{function(Object)}} callback This function is called when the server * responds, and given the response. */ google.cloudsql.CloudSqlJsonApi.prototype.featuresList = function( table, args, callback) { var encodedArgs = $.param(args); this.FeaturesCallbacks.add(callback); var encodedIdentifier = encodeURIComponent(this.database) + ':' + encodeURIComponent(table); var url = '/tables/' + encodedIdentifier + '/features?' + encoded_args; var self = this; $.getJSON(url, function(response) { self.featuresCallbacks.fire(response); self.featuresCallbacks.remove(callback); }) .fail(function(jqXHR, errorJson) { alert(errorJson.error); }); }; /** * Get features from CloudSQL that intersect with the given coordinate. * @param {string} table The table that stores the features to query for. * @param {string} select A MySQL select statement that is passed to the server. * @param {google.maps.LatLng} location The query point as a google.maps.LatLng * @param {{function(Object)}} callback This function is called when the server * responds, and given the response. */ google.cloudsql.CloudSqlJsonApi.prototype.pointInPolygon = function( table, select, location, callback) { var args = { lat: location.lat(), lng: location.lng(), select: select }; var encodedArgs = $.param(args); this.pipCallbacks.add(callback); var encodedIdentifier = encodeURIComponent(this.database) + ':' + encodeURIComponent(table); var url = '/pip/' + encodedIdentifier + '?' + encodedArgs; var self = this; $.getJSON(url, function(response) { self.pipCallbacks.fire(response); self.pipCallbacks.remove(callback); }) .fail(function(jqXHR, errorJson) { alert(errorJson.error); }); }; ================================================ FILE: demos/CloudSQL/cloudsql-geojson-api/vendor.py ================================================ # # Copyright 2014 Jon Wayne Parrott, [proppy], Michael R. Bernstein # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # # Notes: # - Imported from https://github.com/jonparrott/Darth-Vendor/. # - Added license header. # - Renamed `darth.vendor` to `vendor.add` to match upcoming SDK interface. # - Renamed `position` param to `index` to match upcoming SDK interface. # - Removed funny arworks docstring. import site import os.path import sys def add(folder, index=1): """ Adds the given folder to the python path. Supports namespaced packages. By default, packages in the given folder take precedence over site-packages and any previous path manipulations. Args: folder: Path to the folder containing packages, relative to ``os.getcwd()`` position: Where in ``sys.path`` to insert the vendor packages. By default this is set to 1. It is inadvisable to set it to 0 as it will override any modules in the current working directory. """ # Check if the path contains a virtualenv. site_dir = os.path.join(folder, 'lib', 'python' + sys.version[:3], 'site-packages') if os.path.exists(site_dir): folder = site_dir # Otherwise it's just a normal path, make it absolute. else: folder = os.path.join(os.path.dirname(__file__), folder) # Use site.addsitedir() because it appropriately reads .pth # files for namespaced packages. Unfortunately, there's not an # option to choose where addsitedir() puts its paths in sys.path # so we have to do a little bit of magic to make it play along. # We're going to grab the current sys.path and split it up into # the first entry and then the rest. Essentially turning # ['.', '/site-packages/x', 'site-packages/y'] # into # ['.'] and ['/site-packages/x', 'site-packages/y'] # The reason for this is we want '.' to remain at the top of the # list but we want our vendor files to override everything else. sys.path, remainder = sys.path[:1], sys.path[1:] # Now we call addsitedir which will append our vendor directories # to sys.path (which was truncated by the last step.) site.addsitedir(folder) # Finally, we'll add the paths we removed back. # The final product is something like this: # ['.', '/vendor-folder', /site-packages/x', 'site-packages/y'] sys.path.extend(remainder) ================================================ FILE: demos/CloudSQL/cloudsql-maps-api/index.html ================================================
================================================ FILE: demos/CloudSQL/cloudsql-maps-api/js/gmaps.js ================================================ var map = null; var marker = null; var infowindow = new google.maps.InfoWindow(); var latlng = null; var activePolygons = []; // This helper library makes it easy to call the AppEngine application var cloudSqlApi = new google.cloudsql.CloudSqlJsonApi('nyc'); /** * Initializes the map and sets up a click handler that will call CLoudSQL. */ function initialize() { var mapOptions = { center: { lat: 40.68, lng: -74.0273}, zoom: 11 }; map = new google.maps.Map(document.getElementById('map-canvas'), mapOptions); // Adds a listener to the map click event. google.maps.event.addListener(map, 'click', function(event) { infowindow.close(); placeMarker(event.latLng); latlng = event.latLng; var lat = latlng.lat(); var lng = latlng.lng(); // Get the polygon that contains the clicked point. cloudSqlApi.pointInPolygon('nyczones', 'zone', latlng, function(geojson) { if (geojson.features.length == 0) { alert('Point is not in Polygon in CloudSQL Database'); return; } map.data.forEach(function(feature) { map.data.remove(feature); }); var features = map.data.addGeoJson(geojson); map.data.addListener('click', handlePolygonClick); activePolygons = []; for (i in features) { activePolygons.push(features[i].getId()); } map.data.setStyle(function(feature) { var color = 'black'; var clickable = false; if ($.inArray(feature.getId(), activePolygons) > -1) { color = 'blue'; clickable = true; } return { fillColor: color, strokeColor: color, fillOpacity: 0.2, clickable: clickable }; }); }); }); } /** * Creates a new marker at the given point and removes the old one. * @param {google.maps.LatLng} location The location to place the marker on. */ function placeMarker(location) { if (marker) { marker.setMap(null); } marker = new google.maps.Marker({ position: location, map: map }); } /** * Open an infowindow on the clicked polygon, on the marker. * @param {google.maps.Data.MouseEvent} event The click event. */ function handlePolygonClick(event) { console.log('polygon was clicked'); var content = $('

'); $('').text('Properties').appendTo(content); content.append('
'); event.feature.forEachProperty(function(v, k) { content.append('' + k + ': ' + v).append('
'); }); infowindow.setContent(content.html()); infowindow.setPosition(latlng); infowindow.open(map); } google.maps.event.addDomListener(window, 'load', initialize); ================================================ FILE: demos/CloudSQL/cloudsql-store-locator/cloudsql-datasource.js ================================================ // Copyright 2014 Google Inc. /** * @author Wolf Bergenheim (Google) * @fileoverview * Provides access to store data through Google Cloud SQL. * Depends on the cloudsql REST API * https://github.com/google/maps-for-work-samples */ /** * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ /** * A DataFeed where stores are provided by Google Cloud SQL. *

* Note: the App Engine that serves the API needs to be publicly accessible. * @example

 * var dataFeed = new storeLocator.CloudSqlDataFeed({
 *   table: 'medicare',
 *   database: 'medicare',
 *   server: 'http://project-wander-1.appspot.com',
 *   propertiesModifier: function(props) {
 *     return {
 *       id: transformId(props.OGR_FID),
 *       title: props.fcility_nam
 *     };
 *   }
 * });
 * new storeLocator.View(map, dataFeed);
 * 
* @implements storeLocator.DataFeed * @param {!storeLocator.CloudSqlDataFeedOptions} opts the table ID, API key and * a transformation function for feature/store properties. * @constructor * @implements storeLocator_CloudSqlDataFeed */ storeLocator.CloudSqlDataFeed = function(opts) { this.database_ = opts['database']; this.table_ = opts['table']; this.server_ = opts['server']; if (opts['propertiesModifier']) { this.propertiesModifier_ = opts['propertiesModifier']; } }; storeLocator['CloudSqlDataFeed'] = storeLocator.CloudSqlDataFeed; /** * Returns the stores inside the given bounds. * @param {google.maps.LatLngBounds} bounds * @param {storeLocator.FeatureSet} features the features to filter on. * Unused * @param {function(Array.)} callback the callback * function. */ storeLocator.CloudSqlDataFeed.prototype.getStores = function( bounds, features, callback) { // TODO: use features. var that = this; var center = bounds.getCenter(); // 0.18 is 20000/111045 which is approximately 20 km expressed in degrees var where = '(ST_INTERSECTS(geometry, ' + this.boundsToWkt_(bounds) + ')' + ' OR ST_DISTANCE(geometry, ' + this.latLngToWkt_(center) + ') < 0.18)'; var select = 'uuid,fcilty_nam,fcilty_typ,state,street_add,' + 'locality,postcode,hrs_of_bus,wheelchair,shp_num_an,shp_centre'; var encodedIdentifier = encodeURIComponent(this.database_) + ':' + encodeURIComponent(this.table_); var url = this.server_ + '/tables/' + encodedIdentifier + '/features?'; $.getJSON(url, { 'select': select, 'where': where, 'limit': 300 }, function(resp) { var stores = that.parse_(resp); that.sortByDistance_(center, stores); callback(stores); }); }; /** * @private * @param {!google.maps.LatLng} point * @return {string} */ storeLocator.CloudSqlDataFeed.prototype.latLngToWkt_ = function(point) { return "ST_GEOMFROMTEXT('POINT(" + point.lng() + ' ' + point.lat() + ")')"; }; /** * @private * @param {!google.maps.LatLngBounds} bounds * @return {string} */ storeLocator.CloudSqlDataFeed.prototype.boundsToWkt_ = function(bounds) { var ne = bounds.getNorthEast(); var sw = bounds.getSouthWest(); return [ "ST_GEOMFROMTEXT('POLYGON ((", sw.lng(), ' ', sw.lat(), ', ', ne.lng(), ' ', sw.lat(), ', ', ne.lng(), ' ', ne.lat(), ', ', sw.lng(), ' ', ne.lat(), ', ', sw.lng(), ' ', sw.lat(), "))')" ].join(''); }; /** * @private * @param {*} data GeoJSON feature set. * @return {!Array.} */ storeLocator.CloudSqlDataFeed.prototype.parse_ = function(data) { if (data['error']) { window.alert(data['error']['message']); return []; } var features = data['features']; if (!features) { return []; } var stores = []; for (var i = 0, row; row = features[i]; i++) { var coordinates = row['geometry']['coordinates']; var position = new google.maps.LatLng(coordinates[1], coordinates[0]); var props = this.propertiesModifier_(row['properties']); var store = new storeLocator.Store(props['id'], position, null, props); stores.push(store); } return stores; }; /** * Default properties modifier. Just returns the same properties passed into * it. Useful if the columns in the DB table are already appropriate. * @private * @param {Object} props * @return {Object} an Object to be passed into the "props" argument in the * Store constructor. */ storeLocator.CloudSqlDataFeed.prototype.propertiesModifier_ = function(props) { return props; }; /** * Sorts a list of given stores by distance from a point in ascending order. * Directly manipulates the given array (has side effects). * @private * @param {google.maps.LatLng} latLng the point to sort from. * @param {!Array.} stores the stores to sort. */ storeLocator.CloudSqlDataFeed.prototype.sortByDistance_ = function(latLng, stores) { stores.sort(function(a, b) { return a.distanceTo(latLng) - b.distanceTo(latLng); }); }; /** * @example see storeLocator.CloudSqlDataFeed * @interface */ storeLocator.CloudSqlDataFeedOptions = function() {}; /** * The table name to use. * @type string */ storeLocator.CloudSqlDataFeedOptions.prototype.table; /** * The database to use * @type string */ storeLocator.CloudSqlDataFeedOptions.prototype.database; /** * The host name of the server that hosts the Cloud SQL GeoJSON API. * @type string */ storeLocator.CloudSqlDataFeedOptions.prototype.server; /** * A transformation function. The first argument is the feature's properties. * Return an object useful for the "props" argument in the * storeLocator.Store constructor. The default properties modifier * function passes the feature straight through. *

* Note: storeLocator.CloudSqlDataFeed expects an "id" property. * @type ?(function(Object): Object) */ storeLocator.CloudSqlDataFeedOptions.prototype.propertiesModifier; ================================================ FILE: demos/CloudSQL/cloudsql-store-locator/cloudsql.html ================================================ Store locator with Panel

Medicare offices

Medicare location data from data.gov.au, licensed under CC-BY 2.5

================================================ FILE: demos/CloudSQL/cloudsql-store-locator/cloudsql.js ================================================ google.maps.event.addDomListener(window, 'load', function() { var map = new google.maps.Map(document.getElementById('map-canvas'), { center: new google.maps.LatLng(-28, 135), zoom: 4, mapTypeId: google.maps.MapTypeId.ROADMAP }); var panelDiv = document.getElementById('panel'); var data = new storeLocator.CloudSqlDataFeed({ database: 'medicare', table: 'medicare', server: '', propertiesModifier: function(props) { var shop = join([props.shp_num_an, props.shp_centre], ', '); var locality = join([props.locality, props.postcode], ', '); return { id: props.uuid, title: props.fcilty_nam, address: join([shop, props.street_add, locality], '
'), hours: props.hrs_of_bus }; } }); var view = new storeLocator.View(map, data, { geolocation: false }); new storeLocator.Panel(panelDiv, { view: view }); }); /** * Joins elements of an array that are non-empty and non-null. * @private * @param {!Array} arr array of elements to join. * @param {string} sep the separator. * @return {string} */ function join(arr, sep) { var parts = []; for (var i = 0, ii = arr.length; i < ii; i++) { arr[i] && parts.push(arr[i]); } return parts.join(sep); } ================================================ FILE: samples/GEE/gee_maps_polyline_sample.html ================================================ Symbols on polylines
Mouse over the map to view
================================================ FILE: samples/maps/OpenWeatherMapLayer/index.html ================================================ Weather layer
================================================ FILE: tools/GEE/BuildTheBaseGlobe/Imagery/A1.prj ================================================ GEOGCS["WGS 84", DATUM["WGS_1984", SPHEROID["WGS 84",6378137,298.2572235630016, AUTHORITY["EPSG","7030"]], AUTHORITY["EPSG","6326"]], PRIMEM["Greenwich",0], UNIT["degree",0.0174532925199433], AUTHORITY["EPSG","4326"]] ================================================ FILE: tools/GEE/BuildTheBaseGlobe/Imagery/A1.tfw ================================================ 0.0041666667 0.0000000000 0.0000000000 -0.0041666667 -179.9979166667 89.9979166667 ================================================ FILE: tools/GEE/BuildTheBaseGlobe/Imagery/A2.prj ================================================ GEOGCS["WGS 84", DATUM["WGS_1984", SPHEROID["WGS 84",6378137,298.2572235630016, AUTHORITY["EPSG","7030"]], AUTHORITY["EPSG","6326"]], PRIMEM["Greenwich",0], UNIT["degree",0.0174532925199433], AUTHORITY["EPSG","4326"]] ================================================ FILE: tools/GEE/BuildTheBaseGlobe/Imagery/A2.tfw ================================================ 0.0041666667 0.0000000000 0.0000000000 -0.0041666667 -179.9979166667 -0.0020833333 ================================================ FILE: tools/GEE/BuildTheBaseGlobe/Imagery/B1.prj ================================================ GEOGCS["WGS 84", DATUM["WGS_1984", SPHEROID["WGS 84",6378137,298.2572235630016, AUTHORITY["EPSG","7030"]], AUTHORITY["EPSG","6326"]], PRIMEM["Greenwich",0], UNIT["degree",0.0174532925199433], AUTHORITY["EPSG","4326"]] ================================================ FILE: tools/GEE/BuildTheBaseGlobe/Imagery/B1.tfw ================================================ 0.0041666667 0.0000000000 0.0000000000 -0.0041666667 -89.9979166667 89.9979166667 ================================================ FILE: tools/GEE/BuildTheBaseGlobe/Imagery/B2.prj ================================================ GEOGCS["WGS 84", DATUM["WGS_1984", SPHEROID["WGS 84",6378137,298.2572235630016, AUTHORITY["EPSG","7030"]], AUTHORITY["EPSG","6326"]], PRIMEM["Greenwich",0], UNIT["degree",0.0174532925199433], AUTHORITY["EPSG","4326"]] ================================================ FILE: tools/GEE/BuildTheBaseGlobe/Imagery/B2.tfw ================================================ 0.0041666667 0.0000000000 0.0000000000 -0.0041666667 -89.9979166667 -0.0020833333 ================================================ FILE: tools/GEE/BuildTheBaseGlobe/Imagery/BuildBlueMarble.sh ================================================ #!/bin/bash # Copyright 2014 Google Inc. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. ls *.jpg > FileList echo "Creating Resource Resources/Imagery/BlueMarble" genewimageryresource -o Resources/Imagery/BlueMarble --flat --nomask --filelist FileList sleep 2 echo "Building Resource Resources/Imagery/BlueMarble" gebuild Resources/Imagery/BlueMarble echo "Creating Resource Resources/Imagery/BlueMarbleMercator" genewimageryresource -o Resources/Imagery/BlueMarbleMercator --mercator --nomask --filelist FileList sleep 2 echo "Building Resource Resources/Imagery/BlueMarbleMercator" gebuild Resources/Imagery/BlueMarbleMercator geaddtoimageryproject -o Projects/Imagery Resources/Imagery/BlueMarble geaddtoimageryproject -o Projects/Mercator --mercator Resources/Imagery/BlueMarbleMercator ================================================ FILE: tools/GEE/BuildTheBaseGlobe/Imagery/C1.prj ================================================ GEOGCS["WGS 84", DATUM["WGS_1984", SPHEROID["WGS 84",6378137,298.2572235630016, AUTHORITY["EPSG","7030"]], AUTHORITY["EPSG","6326"]], PRIMEM["Greenwich",0], UNIT["degree",0.0174532925199433], AUTHORITY["EPSG","4326"]] ================================================ FILE: tools/GEE/BuildTheBaseGlobe/Imagery/C1.tfw ================================================ 0.0041666667 0.0000000000 0.0000000000 -0.0041666667 0.0020833333 89.9979166667 ================================================ FILE: tools/GEE/BuildTheBaseGlobe/Imagery/C2.prj ================================================ GEOGCS["WGS 84", DATUM["WGS_1984", SPHEROID["WGS 84",6378137,298.2572235630016, AUTHORITY["EPSG","7030"]], AUTHORITY["EPSG","6326"]], PRIMEM["Greenwich",0], UNIT["degree",0.0174532925199433], AUTHORITY["EPSG","4326"]] ================================================ FILE: tools/GEE/BuildTheBaseGlobe/Imagery/C2.tfw ================================================ 0.0041666667 0.0000000000 0.0000000000 -0.0041666667 0.0020833333 -0.0020833333 ================================================ FILE: tools/GEE/BuildTheBaseGlobe/Imagery/D1.prj ================================================ GEOGCS["WGS 84", DATUM["WGS_1984", SPHEROID["WGS 84",6378137,298.2572235630016, AUTHORITY["EPSG","7030"]], AUTHORITY["EPSG","6326"]], PRIMEM["Greenwich",0], UNIT["degree",0.0174532925199433], AUTHORITY["EPSG","4326"]] ================================================ FILE: tools/GEE/BuildTheBaseGlobe/Imagery/D1.tfw ================================================ 0.0041666667 0.0000000000 0.0000000000 -0.0041666667 90.0020833333 89.9979166667 ================================================ FILE: tools/GEE/BuildTheBaseGlobe/Imagery/D2.prj ================================================ GEOGCS["WGS 84", DATUM["WGS_1984", SPHEROID["WGS 84",6378137,298.2572235630016, AUTHORITY["EPSG","7030"]], AUTHORITY["EPSG","6326"]], PRIMEM["Greenwich",0], UNIT["degree",0.0174532925199433], AUTHORITY["EPSG","4326"]] ================================================ FILE: tools/GEE/BuildTheBaseGlobe/Imagery/D2.tfw ================================================ 0.0041666667 0.0000000000 0.0000000000 -0.0041666667 90.0020833333 -0.0020833333 ================================================ FILE: tools/GEE/BuildTheBaseGlobe/Imagery/FetchBlueMarble.sh ================================================ #!/bin/sh # Copyright 2014 Google Inc. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. wget -O A1.jpg http://mirrors.arsc.edu/nasa/world_500m/world.topo.bathy.200407.3x21600x21600.A1.jpg wget -O A2.jpg http://mirrors.arsc.edu/nasa/world_500m/world.topo.bathy.200407.3x21600x21600.A2.jpg wget -O B1.jpg http://mirrors.arsc.edu/nasa/world_500m/world.topo.bathy.200407.3x21600x21600.B1.jpg wget -O B2.jpg http://mirrors.arsc.edu/nasa/world_500m/world.topo.bathy.200407.3x21600x21600.B2.jpg wget -O C1.jpg http://mirrors.arsc.edu/nasa/world_500m/world.topo.bathy.200407.3x21600x21600.C1.jpg wget -O C2.jpg http://mirrors.arsc.edu/nasa/world_500m/world.topo.bathy.200407.3x21600x21600.C2.jpg wget -O D1.jpg http://mirrors.arsc.edu/nasa/world_500m/world.topo.bathy.200407.3x21600x21600.D1.jpg wget -O D2.jpg http://mirrors.arsc.edu/nasa/world_500m/world.topo.bathy.200407.3x21600x21600.D2.jpg ================================================ FILE: tools/GEE/BuildTheBaseGlobe/Imagery/buildtruemarble250.sh ================================================ #!/bin/bash # Copyright 2014 Google Inc. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. blue_base=`pwd` for file in `find . -name "*.gz"` do base=`basename $file` dir=`dirname $file` echo "Unzipping $base in $dir" cd $dir gunzip $base cd $blue_base done cd $dir ls *.tif > FileList echo "Creating Resource Resources/Imagery/BlueMarble250" genewimageryresource -o Resources/Imagery/BlueMarble250 --flat --nomask --filelist FileList sleep 2 echo "Building Resource Resources/Imagery/BlueMarble250" gebuild Resources/Imagery/BlueMarble250 echo "Creating Resource Resources/Imagery/BlueMarbleMercator250" genewimageryresource -o Resources/Imagery/BlueMarbleMercator250 --mercator --nomask --filelist FileList sleep 2 echo "Building Resource Resources/Imagery/BlueMarbleMercator250" gebuild Resources/Imagery/BlueMarbleMercator250 geaddtoimageryproject -o Projects/Imagery Resources/Imagery/BlueMarble250 geaddtoimageryproject -o Projects/Mercator --mercator Resources/Imagery/BlueMarbleMercator250 cd $blue_base ================================================ FILE: tools/GEE/BuildTheBaseGlobe/Imagery/fetchtruemarble250.sh ================================================ #!/bin/sh # Copyright 2014 Google Inc. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. wget -nH -x http://129.123.16.127/globe/TrueMarble_GeoTIFF/TrueMarble.250m.21600x21600.A1.tif.gz wget -nH -x http://129.123.16.127/globe/TrueMarble_GeoTIFF/TrueMarble.250m.21600x21600.A2.tif.gz wget -nH -x http://129.123.16.127/globe/TrueMarble_GeoTIFF/TrueMarble.250m.21600x21600.A3.tif.gz wget -nH -x http://129.123.16.127/globe/TrueMarble_GeoTIFF/TrueMarble.250m.21600x21600.A4.tif.gz wget -nH -x http://129.123.16.127/globe/TrueMarble_GeoTIFF/TrueMarble.250m.21600x21600.B1.tif.gz wget -nH -x http://129.123.16.127/globe/TrueMarble_GeoTIFF/TrueMarble.250m.21600x21600.B2.tif.gz wget -nH -x http://129.123.16.127/globe/TrueMarble_GeoTIFF/TrueMarble.250m.21600x21600.B3.tif.gz wget -nH -x http://129.123.16.127/globe/TrueMarble_GeoTIFF/TrueMarble.250m.21600x21600.B4.tif.gz wget -nH -x http://129.123.16.127/globe/TrueMarble_GeoTIFF/TrueMarble.250m.21600x21600.C1.tif.gz wget -nH -x http://129.123.16.127/globe/TrueMarble_GeoTIFF/TrueMarble.250m.21600x21600.C2.tif.gz wget -nH -x http://129.123.16.127/globe/TrueMarble_GeoTIFF/TrueMarble.250m.21600x21600.C3.tif.gz # wget -nH -x http://129.123.16.127/globe/TrueMarble_GeoTIFF/TrueMarble.250m.21600x21600.C4.tif.gz Seems to be corrupt wget -nH -x http://129.123.16.127/globe/TrueMarble_GeoTIFF/TrueMarble.250m.21600x21600.D1.tif.gz wget -nH -x http://129.123.16.127/globe/TrueMarble_GeoTIFF/TrueMarble.250m.21600x21600.D2.tif.gz wget -nH -x http://129.123.16.127/globe/TrueMarble_GeoTIFF/TrueMarble.250m.21600x21600.D3.tif.gz wget -nH -x http://129.123.16.127/globe/TrueMarble_GeoTIFF/TrueMarble.250m.21600x21600.D4.tif.gz wget -nH -x http://129.123.16.127/globe/TrueMarble_GeoTIFF/TrueMarble.250m.21600x21600.E1.tif.gz wget -nH -x http://129.123.16.127/globe/TrueMarble_GeoTIFF/TrueMarble.250m.21600x21600.E2.tif.gz wget -nH -x http://129.123.16.127/globe/TrueMarble_GeoTIFF/TrueMarble.250m.21600x21600.E3.tif.gz wget -nH -x http://129.123.16.127/globe/TrueMarble_GeoTIFF/TrueMarble.250m.21600x21600.E4.tif.gz wget -nH -x http://129.123.16.127/globe/TrueMarble_GeoTIFF/TrueMarble.250m.21600x21600.F1.tif.gz wget -nH -x http://129.123.16.127/globe/TrueMarble_GeoTIFF/TrueMarble.250m.21600x21600.F2.tif.gz wget -nH -x http://129.123.16.127/globe/TrueMarble_GeoTIFF/TrueMarble.250m.21600x21600.F3.tif.gz wget -nH -x http://129.123.16.127/globe/TrueMarble_GeoTIFF/TrueMarble.250m.21600x21600.F4.tif.gz wget -nH -x http://129.123.16.127/globe/TrueMarble_GeoTIFF/TrueMarble.250m.21600x21600.G1.tif.gz wget -nH -x http://129.123.16.127/globe/TrueMarble_GeoTIFF/TrueMarble.250m.21600x21600.G2.tif.gz wget -nH -x http://129.123.16.127/globe/TrueMarble_GeoTIFF/TrueMarble.250m.21600x21600.G3.tif.gz # wget -nH -x http://129.123.16.127/globe/TrueMarble_GeoTIFF/TrueMarble.250m.21600x21600.G4.tif.gz Seems to be corrupt wget -nH -x http://129.123.16.127/globe/TrueMarble_GeoTIFF/TrueMarble.250m.21600x21600.H1.tif.gz wget -nH -x http://129.123.16.127/globe/TrueMarble_GeoTIFF/TrueMarble.250m.21600x21600.H2.tif.gz wget -nH -x http://129.123.16.127/globe/TrueMarble_GeoTIFF/TrueMarble.250m.21600x21600.H3.tif.gz wget -nH -x http://129.123.16.127/globe/TrueMarble_GeoTIFF/TrueMarble.250m.21600x21600.H4.tif.gz ================================================ FILE: tools/GEE/BuildTheBaseGlobe/RunMeFirst.sh ================================================ #!/bin/sh # Copyright 2014 Google Inc. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # # This script is part of the larger effort to build a base globe using Google Earth Enterprise # This script in particular creates empty databases and projects that will be used later. # It should be run first, before the other scripts are run. Alternately, the Fusion GUI can be # used to create these projects and databases. # # # This script will create the projects and the database. They # will be empty but the subsequent resources will be added # to them. # # genewimageryproject -o Projects/Imagery genewvectorproject -o Projects/Vector genewterrainproject -o Projects/Terrain genewmapproject -o Projects/Map genewimageryproject -o Projects/Mercator --mercator genewdatabase -o Databases/GoogleEarth --imagery Projects/Imagery --vector Projects/Vector --terrain Projects/Terrain genewmapdatabase -o Databases/GoogleMap --imagery Projects/Imagery --map Projects/Map genewmapdatabase -o Databases/GoogleMap --imagery Projects/Mercator --map Projects/Map --mercator ================================================ FILE: tools/GEE/BuildTheBaseGlobe/terrain/BuildEtopoData.sh ================================================ #!/bin/sh # Copyright 2014 Google Inc. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. echo "Creating new terrain resource Resources/Terrain/ETOPO_1km" genewterrainresource -o Resources/Terrain/ETOPO_1km --nomask ETOPO1_Ice_g.tif echo "Building the terrain resource" gebuild Resources/Terrain/ETOPO_1km echo "Creating new project Projects/Terrain/ETOPO_1km" geaddtoterrainproject -o Projects/Terrain Resources/Terrain/ETOPO_1km echo "Building the terrain projects" gebuild Projects/Terrain ================================================ FILE: tools/GEE/BuildTheBaseGlobe/terrain/FetchEtopoData.sh ================================================ #!/bin/sh # Copyright 2014 Google Inc. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. echo "fetching ETOPO1_Ice_g_geotiff" wget ftp://ftp.ngdc.noaa.gov/mgg/global/relief/ETOPO1/data/ice_surface/grid_registered/georeferenced_tiff/ETOPO1_Ice_g_geotiff.zip echo "extracting ETOPO1_Ice_g_geotiff.zip" unzip ETOPO1_Ice_g_geotiff.zip ================================================ FILE: tools/GEE/BuildTheBaseGlobe/vector/BuildBorders.sh ================================================ #!/bin/sh # Copyright 2014 Google Inc. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. echo "Creating Resources/Vector/Borders/StateBorders" echo "Creating Resources/Vector/Borders/InternationalBorders" echo "Creating Resources/Vector/Borders/LowRezShoreline" echo "Creating Resources/Vector/Borders/HiRezShoreline" genewvectorresource -o Resources/Vector/Borders/StateBorders statesp020.shp genewvectorresource -o Resources/Vector/Borders/InternationalBorders TM_WORLD_BORDERS-0.3.shp genewvectorresource -o Resources/Vector/Borders/LowRezShoreline GSHHS_shp/l/GSHHS_l_L1.shp GSHHS_shp/l/GSHHS_l_L2.shp genewvectorresource -o Resources/Vector/Borders/HiRezShoreline GSHHS_shp/h/GSHHS_h_L1.shp GSHHS_shp/h/GSHHS_h_L2.shp gebuild Resources/Vector/Borders/StateBorders gebuild Resources/Vector/Borders/InternationalBorders gebuild Resources/Vector/Borders/LowRezShoreline gebuild Resources/Vector/Borders/HiRezShoreline cat< ListOfHighways genewvectorresource -o Resources/Vector/Roads/OSM/$continent/highway --encoding "ISO 8859-1" --filelist ListOfHighways sleep 5 gebuild Resources/Vector/Roads/OSM/$continent/highway done echo "*************************************************************************************" echo "**" echo "** once the resources are done building, you can hit return to finish adding OSM Roads" echo "** Keep an eye on the task manager, or run getop to see the build progress" echo " " echo -n "Hit return when they are finished ->" read text for continent in africa asia europe north_america oceania south_america do geaddtovectorproject -o Projects/Vector --template ${continent}_highway.khdsp Resources/Vector/Roads/OSM/$continent/highway done ================================================ FILE: tools/GEE/BuildTheBaseGlobe/vector/BuildNamesData.sh ================================================ #!/bin/sh # Copyright 2014 Google Inc. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. genewvectorresource -o Resources/Vector/Names/GeonamesAllCities allCountries.txt gebuild Resources/Vector/Names/GeonamesAllCities cat< 7 Resources/Vector/Borders/HiRezShoreline.kvasset Borders and Labels|Borders default select all 13 PolygonZ 7 0 Label OutlineOnly 0.5 15 MatchAll 24 0 1 1 1 9c7c63da-7fb6-11df-991e-75e5df0d60ba Shoreline Internal 773 0 1 -1 0 0 ================================================ FILE: tools/GEE/BuildTheBaseGlobe/vector/InternationalBorders.khdsp ================================================ 8 Resources/Vector/Borders/InternationalBorders.kvasset Borders and Labels|Borders default select all 9 PolygonZ 4 0 Label OutlineOnly 0.5 15 1 AreaCenter 0 0 8 100 5 MaxFit 0 0 0.5 Original 255 255 255 255 0 0 0 255 Basic 0 0 MatchAll 24 0 1 1 1 98021c8c-7fb6-11df-9389-75e5df0d60ba International Borders Internal 773 0 1 -1 0 0 ================================================ FILE: tools/GEE/BuildTheBaseGlobe/vector/LowRezShoreline.khdsp ================================================ 9 Resources/Vector/Borders/LowRezShoreline.kvasset Borders and Labels|Borders Shoreline 7 PolygonZ 4 0 Label OutlineOnly 0.5 9 MatchAll Equal 1 1 Lakes 7 PolygonZ 6 0 Label OutlineOnly 0.5 9 MatchAll Equal 1 2 24 0 1 1 1 8cd38828-7fb6-11df-84ce-75e5df0d60ba Shoreline (Low Rez) Internal 773 0 1 -1 0 0 ================================================ FILE: tools/GEE/BuildTheBaseGlobe/vector/OpenStreetmap/2D_OSM_Highways_Only.kmdsp ================================================ Resources/Vector/OSM/africa/highways.kvasset motorway LineZ FillAndOutline 2 0 Circle 4 4 0 0 TopRight MatchAll Equal 0 motorway motorway_link LineZ FillAndOutline 2 0 Circle 4 4 0 0 TopRight MatchAll Equal 0 motorway_link trunk LineZ FillAndOutline 2 0 Circle 4 4 0 0 TopRight MatchAll Equal 0 trunk trunk_link LineZ FillAndOutline 2 0 Circle 4 4 0 0 TopRight MatchAll Equal 0 trunk_link primary LineZ FillAndOutline 2 0 Circle 4 4 0 0 TopRight MatchAll Equal 0 primary secondary tertiary LineZ FillAndOutline 2 0 Circle 4 4 0 0 TopRight MatchAny Equal 0 secondary Equal 0 tertiary 0 0 ================================================ FILE: tools/GEE/BuildTheBaseGlobe/vector/OpenStreetmap/BuildCloudmadeRoads.sh ================================================ #!/bin/sh # Copyright 2014 Google Inc. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. for continent in africa asia europe north_america oceania south_america do find $continent -name "*highway.shp" > ListOfHighways genewvectorresource -o Resources/Vector/Roads/OSM/$continent/highway --encoding "ISO 8859-1" --filelist ListOfHighways sleep 5 gebuild Resources/Vector/Roads/OSM/$continent/highway done echo "*************************************************************************************" echo "**" echo "** once the resources are done building, you can hit return to finish adding OSM Roads" echo "** Keep an eye on the task manager, or run getop to see the build progress" echo " " echo -n "Hit return when they are finished ->" read text for continent in africa asia europe north_america oceania south_america do geaddtovectorproject -o Projects/Vector --template ${continent}_highway.khdsp Resources/Vector/Roads/OSM/$continent/highway done ================================================ FILE: tools/GEE/BuildTheBaseGlobe/vector/OpenStreetmap/FetchOSMData.sh ================================================ #!/bin/sh # Copyright 2014 Google Inc. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # Fetch all of the OpenStreetmap non-USA roads data from Cloudmade.com. USA data will be fetched from US Census. # # If you want USA data from OSM, just do a wget -r http://downloads.cloudmade.com/north_america/united_states wget -nH -x http://downloads.cloudmade.com/africa/northern_africa/sudan/sudan.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/africa/southern_africa/botswana/botswana.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/africa/eastern_africa/burundi/burundi.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/africa/western_africa/sierra_leone/sierra_leone.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/africa/eastern_africa/kenya/kenya.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/africa/middle_africa/equatorial_guinea/equatorial_guinea.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/africa/southern_africa/namibia/namibia.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/africa/western_africa/ghana/ghana.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/africa/eastern_africa/seychelles/seychelles.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/africa/northern_africa/morocco/morocco.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/africa/middle_africa/cameroon/cameroon.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/africa/juan_de_nova_island/juan_de_nova_island.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/africa/glorioso_islands/glorioso_islands.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/africa/southern_africa/lesotho/lesotho.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/africa/western_africa/benin/benin.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/africa/middle_africa/chad/chad.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/africa/western_africa/togo/togo.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/africa/northern_africa/egypt/egypt.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/africa/eastern_africa/somalia/somalia.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/africa/middle_africa/sao_tome_and_principe/sao_tome_and_principe.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/africa/western_africa/guinea/guinea.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/africa/eastern_africa/comoros/comoros.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/africa/western_africa/cape_verde/cape_verde.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/africa/western_africa/cote_d_ivoire/cote_d_ivoire.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/africa/eastern_africa/uganda/uganda.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/africa/eastern_africa/zambia/zambia.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/africa/northern_africa/algeria/algeria.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/africa/western_africa/mali/mali.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/africa/northern_africa/western_sahara/western_sahara.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/africa/eastern_africa/malawi/malawi.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/africa/eastern_africa/reunion/reunion.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/africa/eastern_africa/eritrea/eritrea.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/africa/eastern_africa/mauritius/mauritius.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/africa/eastern_africa/madagascar/madagascar.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/africa/middle_africa/angola/angola.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/africa/northern_africa/tunisia/tunisia.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/africa/western_africa/mauritania/mauritania.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/africa/eastern_africa/tanzania/tanzania.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/africa/northern_africa/libya/libya.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/africa/western_africa/nigeria/nigeria.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/africa/western_africa/burkina_faso/burkina_faso.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/africa/southern_africa/swaziland/swaziland.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/africa/eastern_africa/djibouti/djibouti.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/africa/western_africa/senegal/senegal.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/africa/western_africa/saint_helena/saint_helena.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/africa/western_africa/niger/niger.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/africa/middle_africa/central_african_republic/central_african_republic.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/africa/western_africa/guinea-bissau/guinea-bissau.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/africa/eastern_africa/mayotte/mayotte.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/africa/western_africa/gambia/gambia.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/africa/eastern_africa/rwanda/rwanda.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/africa/eastern_africa/zimbabwe/zimbabwe.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/africa/eastern_africa/ethiopia/ethiopia.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/africa/middle_africa/gabon/gabon.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/africa/southern_africa/south_africa/south_africa.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/africa/middle_africa/democratic_republic_of_the_congo/democratic_republic_of_the_congo.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/africa/eastern_africa/mozambique/mozambique.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/africa/western_africa/liberia/liberia.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/antartica/antartica/antarctica/antarctica.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/antartica/antartica/french_southern_territories/french_southern_territories.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/antartica/antartica/heard_island_and_mcdonald_islands/heard_island_and_mcdonald_islands.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/antartica/antartica/bouvet_island/bouvet_island.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/antartica/antartica/south_georgia_and_the_south_sandwich_islands/south_georgia_and_the_south_sandwich_islands.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/asia/western_asia/iraq/iraq.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/asia/eastern_asia/hong_kong/hong_kong.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/asia/south-eastern_asia/laos/laos.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/asia/central_asia/turkmenistan/turkmenistan.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/asia/southern_asia/pakistan/pakistan.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/asia/western_asia/turkey/turkey.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/asia/western_asia/yemen/yemen.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/asia/gaza_strip/gaza_strip.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/asia/eastern_asia/japan/japan.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/asia/eastern_asia/south_korea/south_korea.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/asia/southern_asia/iran/iran.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/asia/eastern_asia/mongolia/mongolia.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/asia/paracel_islands/paracel_islands.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/asia/northern_asia/russia/russia.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/asia/western_asia/lebanon/lebanon.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/asia/south-eastern_asia/vietnam/vietnam.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/asia/south-eastern_asia/spratly_islands/spratly_islands.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/asia/southern_asia/bangladesh/bangladesh.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/asia/western_asia/united_arab_emirates/united_arab_emirates.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/asia/central_asia/kyrgyzstan/kyrgyzstan.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/asia/eastern_asia/taiwan/taiwan.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/asia/western_asia/oman/oman.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/asia/central_asia/kazakhstan/kazakhstan.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/asia/south-eastern_asia/thailand/thailand.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/asia/south-eastern_asia/myanmar/myanmar.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/asia/southern_asia/nepal/nepal.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/asia/south-eastern_asia/christmas_island/christmas_island.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/asia/western_asia/israel/israel.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/asia/western_asia/syria/syria.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/asia/southern_asia/india/india.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/asia/south-eastern_asia/malaysia/malaysia.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/asia/western_asia/kuwait/kuwait.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/asia/central_asia/tajikistan/tajikistan.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/asia/southern_asia/bhutan/bhutan.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/asia/central_asia/uzbekistan/uzbekistan.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/asia/western_asia/bahrain/bahrain.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/asia/eastern_asia/macao/macao.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/asia/south-eastern_asia/cambodia/cambodia.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/asia/south-eastern_asia/brunei/brunei.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/asia/south-eastern_asia/east_timor/east_timor.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/asia/southern_asia/maldives/maldives.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/asia/southern_asia/british_indian_ocean_territory/british_indian_ocean_territory.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/asia/eastern_asia/north_korea/north_korea.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/asia/eastern_asia/china/china.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/asia/western_asia/saudi_arabia/saudi_arabia.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/asia/south-eastern_asia/singapore/singapore.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/asia/southern_asia/sri_lanka/sri_lanka.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/asia/south-eastern_asia/indonesia/indonesia.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/asia/southern_asia/afghanistan/afghanistan.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/asia/south-eastern_asia/philippines/philippines.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/asia/western_asia/qatar/qatar.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/asia/western_asia/jordan/jordan.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/asia/western_asia/armenia/armenia.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/asia/western_asia/azerbaijan/azerbaijan.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/asia/western_asia/caspian_sea/caspian_sea.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/asia/western_asia/cyprus/cyprus.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/asia/western_asia/georgia/georgia.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/asia/western_asia/palestina/palestina.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/europe/europe.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/europe/eastern_europe/belarus/belarus.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/europe/eastern_europe/bulgaria/bulgaria.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/europe/eastern_europe/czech_republic/czech_republic.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/europe/eastern_europe/hungary/hungary.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/europe/eastern_europe/moldova/moldova.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/europe/eastern_europe/poland/poland.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/europe/eastern_europe/romania/romania.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/europe/eastern_europe/slovakia/slovakia.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/europe/eastern_europe/ukraine/ukraine.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/europe/northern_europe/aland/aland.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/europe/northern_europe/denmark/denmark.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/europe/northern_europe/estonia/estonia.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/europe/northern_europe/faroe_islands/faroe_islands.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/europe/northern_europe/finland/finland.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/europe/northern_europe/iceland/iceland.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/europe/northern_europe/latvia/latvia.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/europe/northern_europe/lithuania/lithuania.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/europe/northern_europe/norway/norway.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/europe/northern_europe/svalbard_and_jan_mayen/svalbard_and_jan_mayen.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/europe/northern_europe/united_kingdom/united_kingdom.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/europe/northern_europe/sweden/sweden.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/europe/southern_europe/albania/albania.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/europe/southern_europe/andorra/andorra.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/europe/southern_europe/bosnia_and_herzegovina/bosnia_and_herzegovina.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/europe/southern_europe/croatia/croatia.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/europe/southern_europe/gibraltar/gibraltar.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/europe/southern_europe/greece/greece.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/europe/southern_europe/italy/italy.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/europe/southern_europe/kosovo/kosovo.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/europe/southern_europe/macedonia/macedonia.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/europe/southern_europe/malta/malta.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/europe/southern_europe/montenegro/montenegro.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/europe/southern_europe/portugal/portugal.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/europe/southern_europe/san_marino/san_marino.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/europe/southern_europe/serbia/serbia.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/europe/southern_europe/slovenia/slovenia.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/europe/southern_europe/spain/spain.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/europe/southern_europe/vatican_city/vatican_city.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/europe/western_europe/austria/austria.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/europe/western_europe/belgium/belgium.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/europe/western_europe/france/france.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/europe/western_europe/germany/germany.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/europe/western_europe/guernsey/guernsey.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/europe/western_europe/isle_of_man/isle_of_man.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/europe/western_europe/jersey/jersey.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/europe/western_europe/liechtenstein/liechtenstein.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/europe/western_europe/luxembourg/luxembourg.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/europe/western_europe/monaco/monaco.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/europe/western_europe/netherlands/netherlands.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/europe/western_europe/switzerland/switzerland.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/americas/caribbean/anguilla/anguilla.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/americas/caribbean/antigua_and_barbuda/antigua_and_barbuda.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/americas/caribbean/aruba/aruba.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/americas/caribbean/bahamas/bahamas.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/americas/caribbean/barbados/barbados.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/americas/caribbean/british_virgin_islands/british_virgin_islands.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/americas/caribbean/cayman_islands/cayman_islands.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/americas/caribbean/cuba/cuba.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/americas/caribbean/dominica/dominica.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/americas/caribbean/dominican_republic/dominican_republic.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/americas/caribbean/grenada/grenada.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/americas/caribbean/guadeloupe/guadeloupe.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/americas/caribbean/haiti/haiti.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/americas/caribbean/jamaica/jamaica.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/americas/caribbean/martinique/martinique.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/americas/caribbean/montserrat/montserrat.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/americas/caribbean/netherlands_antilles/netherlands_antilles.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/americas/caribbean/puerto_rico/puerto_rico.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/americas/caribbean/saint_kitts_and_nevis/saint_kitts_and_nevis.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/americas/caribbean/saint_lucia/saint_lucia.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/americas/caribbean/saint_vincent_and_the_grenadines/saint_vincent_and_the_grenadines.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/americas/caribbean/trinidad_and_tobago/trinidad_and_tobago.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/americas/caribbean/turks_and_caicos_islands/turks_and_caicos_islands.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/americas/caribbean/virgin_islands_us/virgin_islands_us.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/americas/central_america/belize/belize.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/americas/central_america/clipperton_island/clipperton_island.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/americas/central_america/costa_rica/costa_rica.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/americas/central_america/el_salvador/el_salvador.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/americas/central_america/guatemala/guatemala.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/americas/central_america/honduras/honduras.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/americas/central_america/nicaragua/nicaragua.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/americas/central_america/panama/panama.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/americas/northern_america/bermuda/bermuda.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/americas/northern_america/canada/alberta/alberta.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/americas/northern_america/canada/british_columbia/british_columbia.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/americas/northern_america/canada/manitoba/manitoba.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/americas/northern_america/canada/new_brunswick/new_brunswick.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/americas/northern_america/canada/newfoundland_and_labrador/newfoundland_and_labrador.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/americas/northern_america/canada/northwest_territories/northwest_territories.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/americas/northern_america/canada/nova_scotia/nova_scotia.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/americas/northern_america/canada/nunavut/nunavut.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/americas/northern_america/canada/ontario/ontario.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/americas/northern_america/canada/prince_edward_island/prince_edward_island.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/americas/northern_america/canada/quebec/quebec.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/americas/northern_america/canada/saskatchewan/saskatchewan.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/americas/northern_america/canada/yukon/yukon.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/americas/northern_america/greenland/greenland.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/americas/northern_america/mexico/mexico.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/americas/northern_america/saint_pierre_and_miquelon/saint_pierre_and_miquelon.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/americas/south_america/argentina/argentina.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/americas/south_america/bolivia/bolivia.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/americas/south_america/brazil/brazil.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/americas/south_america/chile/chile.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/americas/south_america/colombia/colombia.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/americas/south_america/ecuador/ecuador.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/americas/south_america/falkland_islands/falkland_islands.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/americas/south_america/french_guiana/french_guiana.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/americas/south_america/guyana/guyana.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/americas/south_america/paraguay/paraguay.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/americas/south_america/peru/peru.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/americas/south_america/suriname/suriname.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/americas/south_america/uruguay/uruguay.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/americas/south_america/venezuela/venezuela.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/oceania/australia_and_new_zealand/australia/australia.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/oceania/australia_and_new_zealand/australia/ashmore_and_cartier_islands/ashmore_and_cartier_islands.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/oceania/australia_and_new_zealand/australia/australian_capital_territory/australian_capital_territory.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/oceania/australia_and_new_zealand/australia/coral_sea_islands/coral_sea_islands.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/oceania/australia_and_new_zealand/australia/new_south_wales/new_south_wales.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/oceania/australia_and_new_zealand/australia/northern_territory/northern_territory.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/oceania/australia_and_new_zealand/australia/queensland/queensland.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/oceania/australia_and_new_zealand/australia/south_australia/south_australia.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/oceania/australia_and_new_zealand/australia/tasmania/tasmania.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/oceania/australia_and_new_zealand/australia/victoria/victoria.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/oceania/australia_and_new_zealand/australia/western_australia/western_australia.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/oceania/australia_and_new_zealand/cocos_islands/cocos_islands.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/oceania/australia_and_new_zealand/new_zealand/new_zealand.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/oceania/australia_and_new_zealand/norfolk_island/norfolk_island.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/oceania/melanesia/fiji/fiji.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/oceania/melanesia/new_caledonia/new_caledonia.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/oceania/melanesia/papua_new_guinea/papua_new_guinea.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/oceania/melanesia/solomon_islands/solomon_islands.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/oceania/melanesia/vanuatu/vanuatu.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/oceania/micronesia/guam/guam.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/oceania/micronesia/kiribati/kiribati.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/oceania/micronesia/marshall_islands/marshall_islands.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/oceania/micronesia/nauru/nauru.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/oceania/micronesia/northern_mariana_islands/northern_mariana_islands.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/oceania/micronesia/palau/palau.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/oceania/polynesia/american_samoa/american_samoa.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/oceania/polynesia/cook_islands/cook_islands.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/oceania/polynesia/french_polynesia/french_polynesia.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/oceania/polynesia/niue/niue.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/oceania/polynesia/pitcairn_islands/pitcairn_islands.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/oceania/polynesia/samoa/samoa.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/oceania/polynesia/tokelau/tokelau.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/oceania/polynesia/tonga/tonga.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/oceania/polynesia/tuvalu/tuvalu.shapefiles.zip wget -nH -x http://downloads.cloudmade.com/oceania/polynesia/wallis_and_futuna/wallis_and_futuna.shapefiles.zip OSM_base=`pwd` for file in `find . -name "*.zip"` do base=`basename $file` dir=`dirname $file` echo "Unzipping $base in $dir" cd $dir unzip $base cd $OSM_base done ================================================ FILE: tools/GEE/BuildTheBaseGlobe/vector/OpenStreetmap/GenericOSMHighwayTemplate.khdsp ================================================ 54 Resources/Vector/OSM/africa/highways.kvasset motorway 16 LineZ 7 1 Label FillAndOutline 0.5 18 MatchAll Equal 0 motorway motorway link 16 LineZ 13 0 Label FillAndOutline 0.5 18 MatchAll Equal 0 motorway_link trunk 16 LineZ 7 1 Label FillAndOutline 0.5 18 MatchAll Equal 0 trunk trunk link 16 LineZ 13 0 Label FillAndOutline 0.5 18 MatchAll Equal 0 trunk_link Primary 16 LineZ 10 1 Label FillAndOutline 0.5 18 MatchAny Equal 0 primary SecondaryTertiary 16 LineZ 13 1 Label FillAndOutline 0.5 18 MatchAny Equal 0 secondary Equal 0 tertiary residential 16 LineZ 15 1 Label FillAndOutline 0.5 18 MatchAny Equal 0 residential TrackTrailFootway 16 LineZ 13 1 Label FillAndOutline 0.5 18 MatchAny Equal 0 track Equal 0 steps Equal 0 pedestrian Equal 0 path Equal 0 footway 24 0 1 1 1 972380ec-b54b-11df-9a91-8f0ba6c939b7 british_columbia_highway Internal 773 0 1 -1 0 0 ================================================ FILE: tools/GEE/BuildTheBaseGlobe/vector/OpenStreetmap/africa_highway.khdsp ================================================ 54 Resources/Vector/OSM/africa/highways.kvasset Roads|World Roads motorway 16 LineZ 7 1 Label FillAndOutline 0.5 18 MatchAll Equal 0 motorway motorway link 16 LineZ 13 0 Label FillAndOutline 0.5 18 MatchAll Equal 0 motorway_link trunk 16 LineZ 7 1 Label FillAndOutline 0.5 18 MatchAll Equal 0 trunk trunk link 16 LineZ 13 0 Label FillAndOutline 0.5 18 MatchAll Equal 0 trunk_link Primary 16 LineZ 10 1 Label FillAndOutline 0.5 18 MatchAny Equal 0 primary SecondaryTertiary 16 LineZ 13 1 Label FillAndOutline 0.5 18 MatchAny Equal 0 secondary Equal 0 tertiary residential 16 LineZ 15 1 Label FillAndOutline 0.5 18 MatchAny Equal 0 residential TrackTrailFootway 16 LineZ 13 1 Label FillAndOutline 0.5 18 MatchAny Equal 0 track Equal 0 steps Equal 0 pedestrian Equal 0 path Equal 0 footway 24 0 1 1 1 972380ec-b54b-11df-9a91-8f0ba6c939b7 Africa Roads Internal 773 0 1 -1 0 0 ================================================ FILE: tools/GEE/BuildTheBaseGlobe/vector/OpenStreetmap/asia_highway.khdsp ================================================ 54 Resources/Vector/OSM/asia/highways.kvasset Roads|World Roads motorway 16 LineZ 7 1 Label FillAndOutline 0.5 18 MatchAll Equal 0 motorway motorway link 16 LineZ 13 0 Label FillAndOutline 0.5 18 MatchAll Equal 0 motorway_link trunk 16 LineZ 7 1 Label FillAndOutline 0.5 18 MatchAll Equal 0 trunk trunk link 16 LineZ 13 0 Label FillAndOutline 0.5 18 MatchAll Equal 0 trunk_link Primary 16 LineZ 10 1 Label FillAndOutline 0.5 18 MatchAny Equal 0 primary SecondaryTertiary 16 LineZ 13 1 Label FillAndOutline 0.5 18 MatchAny Equal 0 secondary Equal 0 tertiary residential 16 LineZ 15 1 Label FillAndOutline 0.5 18 MatchAny Equal 0 residential TrackTrailFootway 16 LineZ 13 1 Label FillAndOutline 0.5 18 MatchAny Equal 0 track Equal 0 steps Equal 0 pedestrian Equal 0 path Equal 0 footway 24 0 1 1 1 972380ec-b54b-11df-9a91-8f0ba6c939b7 Asia Roads Internal 773 0 1 -1 0 0 ================================================ FILE: tools/GEE/BuildTheBaseGlobe/vector/OpenStreetmap/europe_highway.khdsp ================================================ 54 Resources/Vector/OSM/europe/highways.kvasset Roads|World Roads motorway 16 LineZ 7 1 Label FillAndOutline 0.5 18 MatchAll Equal 0 motorway motorway link 16 LineZ 13 0 Label FillAndOutline 0.5 18 MatchAll Equal 0 motorway_link trunk 16 LineZ 7 1 Label FillAndOutline 0.5 18 MatchAll Equal 0 trunk trunk link 16 LineZ 13 0 Label FillAndOutline 0.5 18 MatchAll Equal 0 trunk_link Primary 16 LineZ 10 1 Label FillAndOutline 0.5 18 MatchAny Equal 0 primary SecondaryTertiary 16 LineZ 13 1 Label FillAndOutline 0.5 18 MatchAny Equal 0 secondary Equal 0 tertiary residential 16 LineZ 15 1 Label FillAndOutline 0.5 18 MatchAny Equal 0 residential TrackTrailFootway 16 LineZ 13 1 Label FillAndOutline 0.5 18 MatchAny Equal 0 track Equal 0 steps Equal 0 pedestrian Equal 0 path Equal 0 footway 24 0 1 1 1 972380ec-b54b-11df-9a91-8f0ba6c939b7 Europe Roads Internal 773 0 1 -1 0 0 ================================================ FILE: tools/GEE/BuildTheBaseGlobe/vector/OpenStreetmap/north_america_highway.khdsp ================================================ 54 Resources/Vector/OSM/north_america/highways.kvasset Roads|World Roads motorway 16 LineZ 7 1 Label FillAndOutline 0.5 18 MatchAll Equal 0 motorway motorway link 16 LineZ 13 0 Label FillAndOutline 0.5 18 MatchAll Equal 0 motorway_link trunk 16 LineZ 7 1 Label FillAndOutline 0.5 18 MatchAll Equal 0 trunk trunk link 16 LineZ 13 0 Label FillAndOutline 0.5 18 MatchAll Equal 0 trunk_link Primary 16 LineZ 10 1 Label FillAndOutline 0.5 18 MatchAny Equal 0 primary SecondaryTertiary 16 LineZ 13 1 Label FillAndOutline 0.5 18 MatchAny Equal 0 secondary Equal 0 tertiary residential 16 LineZ 15 1 Label FillAndOutline 0.5 18 MatchAny Equal 0 residential TrackTrailFootway 16 LineZ 13 1 Label FillAndOutline 0.5 18 MatchAny Equal 0 track Equal 0 steps Equal 0 pedestrian Equal 0 path Equal 0 footway 24 0 1 1 1 972380ec-b54b-11df-9a91-8f0ba6c939b7 North America Roads (non-USA) Internal 773 0 1 -1 0 0 ================================================ FILE: tools/GEE/BuildTheBaseGlobe/vector/OpenStreetmap/oceania_highway.khdsp ================================================ 54 Resources/Vector/OSM/oceania/highways.kvasset Roads|World Roads motorway 16 LineZ 7 1 Label FillAndOutline 0.5 18 MatchAll Equal 0 motorway motorway link 16 LineZ 13 0 Label FillAndOutline 0.5 18 MatchAll Equal 0 motorway_link trunk 16 LineZ 7 1 Label FillAndOutline 0.5 18 MatchAll Equal 0 trunk trunk link 16 LineZ 13 0 Label FillAndOutline 0.5 18 MatchAll Equal 0 trunk_link Primary 16 LineZ 10 1 Label FillAndOutline 0.5 18 MatchAny Equal 0 primary SecondaryTertiary 16 LineZ 13 1 Label FillAndOutline 0.5 18 MatchAny Equal 0 secondary Equal 0 tertiary residential 16 LineZ 15 1 Label FillAndOutline 0.5 18 MatchAny Equal 0 residential TrackTrailFootway 16 LineZ 13 1 Label FillAndOutline 0.5 18 MatchAny Equal 0 track Equal 0 steps Equal 0 pedestrian Equal 0 path Equal 0 footway 24 0 1 1 1 972380ec-b54b-11df-9a91-8f0ba6c939b7 Oceania Roads Internal 773 0 1 -1 0 0 ================================================ FILE: tools/GEE/BuildTheBaseGlobe/vector/OpenStreetmap/south_america/unzip_south_america.sh ================================================ #!/bin/sh # Copyright 2014 Google Inc. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. for file in `find . -name "*.zip"` do base=`basename $file` dir=`dirname $file` echo "Unzipping $base in $dir" cd /gevol/src1/Cloudmade_OSM/south_america cd $dir unzip $base done ================================================ FILE: tools/GEE/BuildTheBaseGlobe/vector/OpenStreetmap/south_america_highway.khdsp ================================================ 54 Resources/Vector/OSM/south_america/highways.kvasset Roads|World Roads motorway 16 LineZ 7 1 Label FillAndOutline 0.5 18 MatchAll Equal 0 motorway motorway link 16 LineZ 13 0 Label FillAndOutline 0.5 18 MatchAll Equal 0 motorway_link trunk 16 LineZ 7 1 Label FillAndOutline 0.5 18 MatchAll Equal 0 trunk trunk link 16 LineZ 13 0 Label FillAndOutline 0.5 18 MatchAll Equal 0 trunk_link Primary 16 LineZ 10 1 Label FillAndOutline 0.5 18 MatchAny Equal 0 primary SecondaryTertiary 16 LineZ 13 1 Label FillAndOutline 0.5 18 MatchAny Equal 0 secondary Equal 0 tertiary residential 16 LineZ 15 1 Label FillAndOutline 0.5 18 MatchAny Equal 0 residential TrackTrailFootway 16 LineZ 13 1 Label FillAndOutline 0.5 18 MatchAny Equal 0 track Equal 0 steps Equal 0 pedestrian Equal 0 path Equal 0 footway 24 0 1 1 1 972380ec-b54b-11df-9a91-8f0ba6c939b7 South America Roads Internal 773 0 1 -1 0 0 ================================================ FILE: tools/GEE/BuildTheBaseGlobe/vector/StateBorders.khdsp ================================================ 10 Resources/Vector/Borders/StateBorders.kvasset Borders and Labels|Borders Borders 16 PolygonZ 5 0 Label OutlineOnly 0.5 18 MatchAll 24 1 1 1 1 8744d6fa-7fb6-11df-807b-75e5df0d60ba State Borders Internal 773 0 1 -1 0 0 ================================================ FILE: tools/GEE/BuildTheBaseGlobe/vector/StateNames.khdsp ================================================ 14 Resources/Vector/Names/GeonamesAllCities.kvasset Borders and Labels|Borders default select all 1 AreaCenter 1 0 16 100 6 MaxFit 0 0 0.5 Original 255 255 255 255 0 0 0 255 Basic 0 0 MatchAll Equal 6 A Equal 7 ADM1 Equal 8 US 24 0 1 1 1 b41d8248-8057-11df-b8e1-595f15c00163 State Names Internal 773 0 1 -1 0 0 ================================================ FILE: tools/GEE/BuildTheBaseGlobe/vector/TigerLineRoads/1_FetchTigerLineData.sh ================================================ #!/bin/sh # Copyright 2014 Google Inc. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # Fetch all of the Tiger Line 2009 roads files. # If you interrupt the transfer, don't forget the command at the bottom: mv geo/tiger/TIGER2009/* . # Once the download is done, you should have a series of directories called 01_ALABAMA, 02_ALASKA and so on. wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/01_ALABAMA/01001_Autauga_County/tl_2009_01001_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/01_ALABAMA/01003_Baldwin_County/tl_2009_01003_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/01_ALABAMA/01005_Barbour_County/tl_2009_01005_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/01_ALABAMA/01007_Bibb_County/tl_2009_01007_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/01_ALABAMA/01009_Blount_County/tl_2009_01009_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/01_ALABAMA/01011_Bullock_County/tl_2009_01011_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/01_ALABAMA/01013_Butler_County/tl_2009_01013_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/01_ALABAMA/01015_Calhoun_County/tl_2009_01015_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/01_ALABAMA/01017_Chambers_County/tl_2009_01017_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/01_ALABAMA/01019_Cherokee_County/tl_2009_01019_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/01_ALABAMA/01021_Chilton_County/tl_2009_01021_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/01_ALABAMA/01023_Choctaw_County/tl_2009_01023_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/01_ALABAMA/01025_Clarke_County/tl_2009_01025_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/01_ALABAMA/01027_Clay_County/tl_2009_01027_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/01_ALABAMA/01029_Cleburne_County/tl_2009_01029_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/01_ALABAMA/01031_Coffee_County/tl_2009_01031_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/01_ALABAMA/01033_Colbert_County/tl_2009_01033_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/01_ALABAMA/01035_Conecuh_County/tl_2009_01035_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/01_ALABAMA/01037_Coosa_County/tl_2009_01037_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/01_ALABAMA/01039_Covington_County/tl_2009_01039_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/01_ALABAMA/01041_Crenshaw_County/tl_2009_01041_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/01_ALABAMA/01043_Cullman_County/tl_2009_01043_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/01_ALABAMA/01045_Dale_County/tl_2009_01045_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/01_ALABAMA/01047_Dallas_County/tl_2009_01047_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/01_ALABAMA/01049_DeKalb_County/tl_2009_01049_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/01_ALABAMA/01051_Elmore_County/tl_2009_01051_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/01_ALABAMA/01053_Escambia_County/tl_2009_01053_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/01_ALABAMA/01055_Etowah_County/tl_2009_01055_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/01_ALABAMA/01057_Fayette_County/tl_2009_01057_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/01_ALABAMA/01059_Franklin_County/tl_2009_01059_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/01_ALABAMA/01061_Geneva_County/tl_2009_01061_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/01_ALABAMA/01063_Greene_County/tl_2009_01063_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/01_ALABAMA/01065_Hale_County/tl_2009_01065_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/01_ALABAMA/01067_Henry_County/tl_2009_01067_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/01_ALABAMA/01069_Houston_County/tl_2009_01069_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/01_ALABAMA/01071_Jackson_County/tl_2009_01071_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/01_ALABAMA/01073_Jefferson_County/tl_2009_01073_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/01_ALABAMA/01075_Lamar_County/tl_2009_01075_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/01_ALABAMA/01077_Lauderdale_County/tl_2009_01077_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/01_ALABAMA/01079_Lawrence_County/tl_2009_01079_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/01_ALABAMA/01081_Lee_County/tl_2009_01081_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/01_ALABAMA/01083_Limestone_County/tl_2009_01083_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/01_ALABAMA/01085_Lowndes_County/tl_2009_01085_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/01_ALABAMA/01087_Macon_County/tl_2009_01087_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/01_ALABAMA/01089_Madison_County/tl_2009_01089_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/01_ALABAMA/01091_Marengo_County/tl_2009_01091_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/01_ALABAMA/01093_Marion_County/tl_2009_01093_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/01_ALABAMA/01095_Marshall_County/tl_2009_01095_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/01_ALABAMA/01097_Mobile_County/tl_2009_01097_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/01_ALABAMA/01099_Monroe_County/tl_2009_01099_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/01_ALABAMA/01101_Montgomery_County/tl_2009_01101_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/01_ALABAMA/01103_Morgan_County/tl_2009_01103_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/01_ALABAMA/01105_Perry_County/tl_2009_01105_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/01_ALABAMA/01107_Pickens_County/tl_2009_01107_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/01_ALABAMA/01109_Pike_County/tl_2009_01109_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/01_ALABAMA/01111_Randolph_County/tl_2009_01111_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/01_ALABAMA/01113_Russell_County/tl_2009_01113_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/01_ALABAMA/01115_St_Clair_County/tl_2009_01115_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/01_ALABAMA/01117_Shelby_County/tl_2009_01117_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/01_ALABAMA/01119_Sumter_County/tl_2009_01119_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/01_ALABAMA/01121_Talladega_County/tl_2009_01121_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/01_ALABAMA/01123_Tallapoosa_County/tl_2009_01123_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/01_ALABAMA/01125_Tuscaloosa_County/tl_2009_01125_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/01_ALABAMA/01127_Walker_County/tl_2009_01127_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/01_ALABAMA/01129_Washington_County/tl_2009_01129_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/01_ALABAMA/01131_Wilcox_County/tl_2009_01131_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/01_ALABAMA/01133_Winston_County/tl_2009_01133_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/02_ALASKA/02013_Aleutians_East_Borough/tl_2009_02013_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/02_ALASKA/02016_Aleutians_West_Census_Area/tl_2009_02016_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/02_ALASKA/02020_Anchorage_Municipality/tl_2009_02020_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/02_ALASKA/02050_Bethel_Census_Area/tl_2009_02050_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/02_ALASKA/02060_Bristol_Bay_Borough/tl_2009_02060_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/02_ALASKA/02068_Denali_Borough/tl_2009_02068_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/02_ALASKA/02070_Dillingham_Census_Area/tl_2009_02070_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/02_ALASKA/02090_Fairbanks_North_Star_Borough/tl_2009_02090_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/02_ALASKA/02100_Haines_Borough/tl_2009_02100_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/02_ALASKA/02105_Hoonah-Angoon_Census_Area/tl_2009_02105_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/02_ALASKA/02110_Juneau_City_and_Borough/tl_2009_02110_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/02_ALASKA/02122_Kenai_Peninsula_Borough/tl_2009_02122_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/02_ALASKA/02130_Ketchikan_Gateway_Borough/tl_2009_02130_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/02_ALASKA/02150_Kodiak_Island_Borough/tl_2009_02150_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/02_ALASKA/02164_Lake_and_Peninsula_Borough/tl_2009_02164_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/02_ALASKA/02170_Matanuska-Susitna_Borough/tl_2009_02170_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/02_ALASKA/02180_Nome_Census_Area/tl_2009_02180_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/02_ALASKA/02185_North_Slope_Borough/tl_2009_02185_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/02_ALASKA/02188_Northwest_Arctic_Borough/tl_2009_02188_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/02_ALASKA/02195_Petersburg_Census_Area/tl_2009_02195_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/02_ALASKA/02198_Prince_of_Wales-Hyder_Census_Area/tl_2009_02198_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/02_ALASKA/02220_Sitka_City_and_Borough/tl_2009_02220_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/02_ALASKA/02230_Skagway_Municipality/tl_2009_02230_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/02_ALASKA/02240_Southeast_Fairbanks_Census_Area/tl_2009_02240_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/02_ALASKA/02261_Valdez-Cordova_Census_Area/tl_2009_02261_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/02_ALASKA/02270_Wade_Hampton_Census_Area/tl_2009_02270_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/02_ALASKA/02275_Wrangell_City_and_Borough/tl_2009_02275_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/02_ALASKA/02282_Yakutat_City_and_Borough/tl_2009_02282_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/02_ALASKA/02290_Yukon-Koyukuk_Census_Area/tl_2009_02290_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/04_ARIZONA/04001_Apache_County/tl_2009_04001_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/04_ARIZONA/04003_Cochise_County/tl_2009_04003_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/04_ARIZONA/04005_Coconino_County/tl_2009_04005_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/04_ARIZONA/04007_Gila_County/tl_2009_04007_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/04_ARIZONA/04009_Graham_County/tl_2009_04009_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/04_ARIZONA/04011_Greenlee_County/tl_2009_04011_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/04_ARIZONA/04012_La_Paz_County/tl_2009_04012_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/04_ARIZONA/04013_Maricopa_County/tl_2009_04013_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/04_ARIZONA/04015_Mohave_County/tl_2009_04015_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/04_ARIZONA/04017_Navajo_County/tl_2009_04017_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/04_ARIZONA/04019_Pima_County/tl_2009_04019_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/04_ARIZONA/04021_Pinal_County/tl_2009_04021_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/04_ARIZONA/04023_Santa_Cruz_County/tl_2009_04023_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/04_ARIZONA/04025_Yavapai_County/tl_2009_04025_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/04_ARIZONA/04027_Yuma_County/tl_2009_04027_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/05_ARKANSAS/05001_Arkansas_County/tl_2009_05001_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/05_ARKANSAS/05003_Ashley_County/tl_2009_05003_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/05_ARKANSAS/05005_Baxter_County/tl_2009_05005_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/05_ARKANSAS/05007_Benton_County/tl_2009_05007_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/05_ARKANSAS/05009_Boone_County/tl_2009_05009_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/05_ARKANSAS/05011_Bradley_County/tl_2009_05011_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/05_ARKANSAS/05013_Calhoun_County/tl_2009_05013_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/05_ARKANSAS/05015_Carroll_County/tl_2009_05015_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/05_ARKANSAS/05017_Chicot_County/tl_2009_05017_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/05_ARKANSAS/05019_Clark_County/tl_2009_05019_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/05_ARKANSAS/05021_Clay_County/tl_2009_05021_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/05_ARKANSAS/05023_Cleburne_County/tl_2009_05023_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/05_ARKANSAS/05025_Cleveland_County/tl_2009_05025_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/05_ARKANSAS/05027_Columbia_County/tl_2009_05027_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/05_ARKANSAS/05029_Conway_County/tl_2009_05029_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/05_ARKANSAS/05031_Craighead_County/tl_2009_05031_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/05_ARKANSAS/05033_Crawford_County/tl_2009_05033_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/05_ARKANSAS/05035_Crittenden_County/tl_2009_05035_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/05_ARKANSAS/05037_Cross_County/tl_2009_05037_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/05_ARKANSAS/05039_Dallas_County/tl_2009_05039_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/05_ARKANSAS/05041_Desha_County/tl_2009_05041_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/05_ARKANSAS/05043_Drew_County/tl_2009_05043_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/05_ARKANSAS/05045_Faulkner_County/tl_2009_05045_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/05_ARKANSAS/05047_Franklin_County/tl_2009_05047_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/05_ARKANSAS/05049_Fulton_County/tl_2009_05049_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/05_ARKANSAS/05051_Garland_County/tl_2009_05051_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/05_ARKANSAS/05053_Grant_County/tl_2009_05053_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/05_ARKANSAS/05055_Greene_County/tl_2009_05055_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/05_ARKANSAS/05057_Hempstead_County/tl_2009_05057_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/05_ARKANSAS/05059_Hot_Spring_County/tl_2009_05059_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/05_ARKANSAS/05061_Howard_County/tl_2009_05061_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/05_ARKANSAS/05063_Independence_County/tl_2009_05063_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/05_ARKANSAS/05065_Izard_County/tl_2009_05065_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/05_ARKANSAS/05067_Jackson_County/tl_2009_05067_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/05_ARKANSAS/05069_Jefferson_County/tl_2009_05069_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/05_ARKANSAS/05071_Johnson_County/tl_2009_05071_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/05_ARKANSAS/05073_Lafayette_County/tl_2009_05073_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/05_ARKANSAS/05075_Lawrence_County/tl_2009_05075_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/05_ARKANSAS/05077_Lee_County/tl_2009_05077_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/05_ARKANSAS/05079_Lincoln_County/tl_2009_05079_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/05_ARKANSAS/05081_Little_River_County/tl_2009_05081_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/05_ARKANSAS/05083_Logan_County/tl_2009_05083_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/05_ARKANSAS/05085_Lonoke_County/tl_2009_05085_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/05_ARKANSAS/05087_Madison_County/tl_2009_05087_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/05_ARKANSAS/05089_Marion_County/tl_2009_05089_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/05_ARKANSAS/05091_Miller_County/tl_2009_05091_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/05_ARKANSAS/05093_Mississippi_County/tl_2009_05093_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/05_ARKANSAS/05095_Monroe_County/tl_2009_05095_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/05_ARKANSAS/05097_Montgomery_County/tl_2009_05097_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/05_ARKANSAS/05099_Nevada_County/tl_2009_05099_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/05_ARKANSAS/05101_Newton_County/tl_2009_05101_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/05_ARKANSAS/05103_Ouachita_County/tl_2009_05103_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/05_ARKANSAS/05105_Perry_County/tl_2009_05105_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/05_ARKANSAS/05107_Phillips_County/tl_2009_05107_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/05_ARKANSAS/05109_Pike_County/tl_2009_05109_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/05_ARKANSAS/05111_Poinsett_County/tl_2009_05111_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/05_ARKANSAS/05113_Polk_County/tl_2009_05113_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/05_ARKANSAS/05115_Pope_County/tl_2009_05115_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/05_ARKANSAS/05117_Prairie_County/tl_2009_05117_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/05_ARKANSAS/05119_Pulaski_County/tl_2009_05119_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/05_ARKANSAS/05121_Randolph_County/tl_2009_05121_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/05_ARKANSAS/05123_St_Francis_County/tl_2009_05123_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/05_ARKANSAS/05125_Saline_County/tl_2009_05125_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/05_ARKANSAS/05127_Scott_County/tl_2009_05127_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/05_ARKANSAS/05129_Searcy_County/tl_2009_05129_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/05_ARKANSAS/05131_Sebastian_County/tl_2009_05131_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/05_ARKANSAS/05133_Sevier_County/tl_2009_05133_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/05_ARKANSAS/05135_Sharp_County/tl_2009_05135_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/05_ARKANSAS/05137_Stone_County/tl_2009_05137_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/05_ARKANSAS/05139_Union_County/tl_2009_05139_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/05_ARKANSAS/05141_Van_Buren_County/tl_2009_05141_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/05_ARKANSAS/05143_Washington_County/tl_2009_05143_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/05_ARKANSAS/05145_White_County/tl_2009_05145_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/05_ARKANSAS/05147_Woodruff_County/tl_2009_05147_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/05_ARKANSAS/05149_Yell_County/tl_2009_05149_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/06_CALIFORNIA/06001_Alameda_County/tl_2009_06001_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/06_CALIFORNIA/06003_Alpine_County/tl_2009_06003_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/06_CALIFORNIA/06005_Amador_County/tl_2009_06005_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/06_CALIFORNIA/06007_Butte_County/tl_2009_06007_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/06_CALIFORNIA/06009_Calaveras_County/tl_2009_06009_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/06_CALIFORNIA/06011_Colusa_County/tl_2009_06011_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/06_CALIFORNIA/06013_Contra_Costa_County/tl_2009_06013_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/06_CALIFORNIA/06015_Del_Norte_County/tl_2009_06015_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/06_CALIFORNIA/06017_El_Dorado_County/tl_2009_06017_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/06_CALIFORNIA/06019_Fresno_County/tl_2009_06019_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/06_CALIFORNIA/06021_Glenn_County/tl_2009_06021_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/06_CALIFORNIA/06023_Humboldt_County/tl_2009_06023_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/06_CALIFORNIA/06025_Imperial_County/tl_2009_06025_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/06_CALIFORNIA/06027_Inyo_County/tl_2009_06027_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/06_CALIFORNIA/06029_Kern_County/tl_2009_06029_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/06_CALIFORNIA/06031_Kings_County/tl_2009_06031_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/06_CALIFORNIA/06033_Lake_County/tl_2009_06033_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/06_CALIFORNIA/06035_Lassen_County/tl_2009_06035_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/06_CALIFORNIA/06037_Los_Angeles_County/tl_2009_06037_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/06_CALIFORNIA/06039_Madera_County/tl_2009_06039_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/06_CALIFORNIA/06041_Marin_County/tl_2009_06041_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/06_CALIFORNIA/06043_Mariposa_County/tl_2009_06043_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/06_CALIFORNIA/06045_Mendocino_County/tl_2009_06045_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/06_CALIFORNIA/06047_Merced_County/tl_2009_06047_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/06_CALIFORNIA/06049_Modoc_County/tl_2009_06049_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/06_CALIFORNIA/06051_Mono_County/tl_2009_06051_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/06_CALIFORNIA/06053_Monterey_County/tl_2009_06053_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/06_CALIFORNIA/06055_Napa_County/tl_2009_06055_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/06_CALIFORNIA/06057_Nevada_County/tl_2009_06057_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/06_CALIFORNIA/06059_Orange_County/tl_2009_06059_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/06_CALIFORNIA/06061_Placer_County/tl_2009_06061_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/06_CALIFORNIA/06063_Plumas_County/tl_2009_06063_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/06_CALIFORNIA/06065_Riverside_County/tl_2009_06065_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/06_CALIFORNIA/06067_Sacramento_County/tl_2009_06067_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/06_CALIFORNIA/06069_San_Benito_County/tl_2009_06069_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/06_CALIFORNIA/06071_San_Bernardino_County/tl_2009_06071_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/06_CALIFORNIA/06073_San_Diego_County/tl_2009_06073_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/06_CALIFORNIA/06075_San_Francisco_County/tl_2009_06075_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/06_CALIFORNIA/06077_San_Joaquin_County/tl_2009_06077_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/06_CALIFORNIA/06079_San_Luis_Obispo_County/tl_2009_06079_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/06_CALIFORNIA/06081_San_Mateo_County/tl_2009_06081_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/06_CALIFORNIA/06083_Santa_Barbara_County/tl_2009_06083_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/06_CALIFORNIA/06085_Santa_Clara_County/tl_2009_06085_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/06_CALIFORNIA/06087_Santa_Cruz_County/tl_2009_06087_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/06_CALIFORNIA/06089_Shasta_County/tl_2009_06089_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/06_CALIFORNIA/06091_Sierra_County/tl_2009_06091_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/06_CALIFORNIA/06093_Siskiyou_County/tl_2009_06093_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/06_CALIFORNIA/06095_Solano_County/tl_2009_06095_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/06_CALIFORNIA/06097_Sonoma_County/tl_2009_06097_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/06_CALIFORNIA/06099_Stanislaus_County/tl_2009_06099_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/06_CALIFORNIA/06101_Sutter_County/tl_2009_06101_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/06_CALIFORNIA/06103_Tehama_County/tl_2009_06103_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/06_CALIFORNIA/06105_Trinity_County/tl_2009_06105_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/06_CALIFORNIA/06107_Tulare_County/tl_2009_06107_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/06_CALIFORNIA/06109_Tuolumne_County/tl_2009_06109_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/06_CALIFORNIA/06111_Ventura_County/tl_2009_06111_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/06_CALIFORNIA/06113_Yolo_County/tl_2009_06113_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/06_CALIFORNIA/06115_Yuba_County/tl_2009_06115_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/08_COLORADO/08001_Adams_County/tl_2009_08001_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/08_COLORADO/08003_Alamosa_County/tl_2009_08003_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/08_COLORADO/08005_Arapahoe_County/tl_2009_08005_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/08_COLORADO/08007_Archuleta_County/tl_2009_08007_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/08_COLORADO/08009_Baca_County/tl_2009_08009_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/08_COLORADO/08011_Bent_County/tl_2009_08011_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/08_COLORADO/08013_Boulder_County/tl_2009_08013_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/08_COLORADO/08014_Broomfield_County/tl_2009_08014_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/08_COLORADO/08015_Chaffee_County/tl_2009_08015_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/08_COLORADO/08017_Cheyenne_County/tl_2009_08017_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/08_COLORADO/08019_Clear_Creek_County/tl_2009_08019_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/08_COLORADO/08021_Conejos_County/tl_2009_08021_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/08_COLORADO/08023_Costilla_County/tl_2009_08023_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/08_COLORADO/08025_Crowley_County/tl_2009_08025_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/08_COLORADO/08027_Custer_County/tl_2009_08027_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/08_COLORADO/08029_Delta_County/tl_2009_08029_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/08_COLORADO/08031_Denver_County/tl_2009_08031_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/08_COLORADO/08033_Dolores_County/tl_2009_08033_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/08_COLORADO/08035_Douglas_County/tl_2009_08035_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/08_COLORADO/08037_Eagle_County/tl_2009_08037_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/08_COLORADO/08039_Elbert_County/tl_2009_08039_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/08_COLORADO/08041_El_Paso_County/tl_2009_08041_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/08_COLORADO/08043_Fremont_County/tl_2009_08043_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/08_COLORADO/08045_Garfield_County/tl_2009_08045_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/08_COLORADO/08047_Gilpin_County/tl_2009_08047_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/08_COLORADO/08049_Grand_County/tl_2009_08049_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/08_COLORADO/08051_Gunnison_County/tl_2009_08051_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/08_COLORADO/08053_Hinsdale_County/tl_2009_08053_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/08_COLORADO/08055_Huerfano_County/tl_2009_08055_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/08_COLORADO/08057_Jackson_County/tl_2009_08057_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/08_COLORADO/08059_Jefferson_County/tl_2009_08059_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/08_COLORADO/08061_Kiowa_County/tl_2009_08061_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/08_COLORADO/08063_Kit_Carson_County/tl_2009_08063_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/08_COLORADO/08065_Lake_County/tl_2009_08065_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/08_COLORADO/08067_La_Plata_County/tl_2009_08067_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/08_COLORADO/08069_Larimer_County/tl_2009_08069_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/08_COLORADO/08071_Las_Animas_County/tl_2009_08071_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/08_COLORADO/08073_Lincoln_County/tl_2009_08073_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/08_COLORADO/08075_Logan_County/tl_2009_08075_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/08_COLORADO/08077_Mesa_County/tl_2009_08077_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/08_COLORADO/08079_Mineral_County/tl_2009_08079_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/08_COLORADO/08081_Moffat_County/tl_2009_08081_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/08_COLORADO/08083_Montezuma_County/tl_2009_08083_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/08_COLORADO/08085_Montrose_County/tl_2009_08085_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/08_COLORADO/08087_Morgan_County/tl_2009_08087_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/08_COLORADO/08089_Otero_County/tl_2009_08089_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/08_COLORADO/08091_Ouray_County/tl_2009_08091_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/08_COLORADO/08093_Park_County/tl_2009_08093_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/08_COLORADO/08095_Phillips_County/tl_2009_08095_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/08_COLORADO/08097_Pitkin_County/tl_2009_08097_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/08_COLORADO/08099_Prowers_County/tl_2009_08099_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/08_COLORADO/08101_Pueblo_County/tl_2009_08101_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/08_COLORADO/08103_Rio_Blanco_County/tl_2009_08103_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/08_COLORADO/08105_Rio_Grande_County/tl_2009_08105_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/08_COLORADO/08107_Routt_County/tl_2009_08107_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/08_COLORADO/08109_Saguache_County/tl_2009_08109_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/08_COLORADO/08111_San_Juan_County/tl_2009_08111_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/08_COLORADO/08113_San_Miguel_County/tl_2009_08113_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/08_COLORADO/08115_Sedgwick_County/tl_2009_08115_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/08_COLORADO/08117_Summit_County/tl_2009_08117_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/08_COLORADO/08119_Teller_County/tl_2009_08119_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/08_COLORADO/08121_Washington_County/tl_2009_08121_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/08_COLORADO/08123_Weld_County/tl_2009_08123_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/08_COLORADO/08125_Yuma_County/tl_2009_08125_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/09_CONNECTICUT/09001_Fairfield_County/tl_2009_09001_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/09_CONNECTICUT/09003_Hartford_County/tl_2009_09003_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/09_CONNECTICUT/09005_Litchfield_County/tl_2009_09005_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/09_CONNECTICUT/09007_Middlesex_County/tl_2009_09007_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/09_CONNECTICUT/09009_New_Haven_County/tl_2009_09009_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/09_CONNECTICUT/09011_New_London_County/tl_2009_09011_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/09_CONNECTICUT/09013_Tolland_County/tl_2009_09013_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/09_CONNECTICUT/09015_Windham_County/tl_2009_09015_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/10_DELAWARE/10001_Kent_County/tl_2009_10001_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/10_DELAWARE/10003_New_Castle_County/tl_2009_10003_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/10_DELAWARE/10005_Sussex_County/tl_2009_10005_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/11_DISTRICT_OF_COLUMBIA/11001_District_of_Columbia/tl_2009_11001_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/12_FLORIDA/12001_Alachua_County/tl_2009_12001_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/12_FLORIDA/12003_Baker_County/tl_2009_12003_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/12_FLORIDA/12005_Bay_County/tl_2009_12005_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/12_FLORIDA/12007_Bradford_County/tl_2009_12007_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/12_FLORIDA/12009_Brevard_County/tl_2009_12009_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/12_FLORIDA/12011_Broward_County/tl_2009_12011_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/12_FLORIDA/12013_Calhoun_County/tl_2009_12013_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/12_FLORIDA/12015_Charlotte_County/tl_2009_12015_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/12_FLORIDA/12017_Citrus_County/tl_2009_12017_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/12_FLORIDA/12019_Clay_County/tl_2009_12019_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/12_FLORIDA/12021_Collier_County/tl_2009_12021_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/12_FLORIDA/12023_Columbia_County/tl_2009_12023_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/12_FLORIDA/12027_DeSoto_County/tl_2009_12027_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/12_FLORIDA/12029_Dixie_County/tl_2009_12029_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/12_FLORIDA/12031_Duval_County/tl_2009_12031_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/12_FLORIDA/12033_Escambia_County/tl_2009_12033_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/12_FLORIDA/12035_Flagler_County/tl_2009_12035_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/12_FLORIDA/12037_Franklin_County/tl_2009_12037_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/12_FLORIDA/12039_Gadsden_County/tl_2009_12039_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/12_FLORIDA/12041_Gilchrist_County/tl_2009_12041_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/12_FLORIDA/12043_Glades_County/tl_2009_12043_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/12_FLORIDA/12045_Gulf_County/tl_2009_12045_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/12_FLORIDA/12047_Hamilton_County/tl_2009_12047_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/12_FLORIDA/12049_Hardee_County/tl_2009_12049_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/12_FLORIDA/12051_Hendry_County/tl_2009_12051_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/12_FLORIDA/12053_Hernando_County/tl_2009_12053_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/12_FLORIDA/12055_Highlands_County/tl_2009_12055_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/12_FLORIDA/12057_Hillsborough_County/tl_2009_12057_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/12_FLORIDA/12059_Holmes_County/tl_2009_12059_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/12_FLORIDA/12061_Indian_River_County/tl_2009_12061_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/12_FLORIDA/12063_Jackson_County/tl_2009_12063_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/12_FLORIDA/12065_Jefferson_County/tl_2009_12065_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/12_FLORIDA/12067_Lafayette_County/tl_2009_12067_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/12_FLORIDA/12069_Lake_County/tl_2009_12069_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/12_FLORIDA/12071_Lee_County/tl_2009_12071_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/12_FLORIDA/12073_Leon_County/tl_2009_12073_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/12_FLORIDA/12075_Levy_County/tl_2009_12075_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/12_FLORIDA/12077_Liberty_County/tl_2009_12077_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/12_FLORIDA/12079_Madison_County/tl_2009_12079_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/12_FLORIDA/12081_Manatee_County/tl_2009_12081_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/12_FLORIDA/12083_Marion_County/tl_2009_12083_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/12_FLORIDA/12085_Martin_County/tl_2009_12085_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/12_FLORIDA/12086_Miami-Dade_County/tl_2009_12086_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/12_FLORIDA/12087_Monroe_County/tl_2009_12087_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/12_FLORIDA/12089_Nassau_County/tl_2009_12089_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/12_FLORIDA/12091_Okaloosa_County/tl_2009_12091_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/12_FLORIDA/12093_Okeechobee_County/tl_2009_12093_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/12_FLORIDA/12095_Orange_County/tl_2009_12095_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/12_FLORIDA/12097_Osceola_County/tl_2009_12097_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/12_FLORIDA/12099_Palm_Beach_County/tl_2009_12099_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/12_FLORIDA/12101_Pasco_County/tl_2009_12101_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/12_FLORIDA/12103_Pinellas_County/tl_2009_12103_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/12_FLORIDA/12105_Polk_County/tl_2009_12105_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/12_FLORIDA/12107_Putnam_County/tl_2009_12107_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/12_FLORIDA/12109_St_Johns_County/tl_2009_12109_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/12_FLORIDA/12111_St_Lucie_County/tl_2009_12111_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/12_FLORIDA/12113_Santa_Rosa_County/tl_2009_12113_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/12_FLORIDA/12115_Sarasota_County/tl_2009_12115_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/12_FLORIDA/12117_Seminole_County/tl_2009_12117_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/12_FLORIDA/12119_Sumter_County/tl_2009_12119_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/12_FLORIDA/12121_Suwannee_County/tl_2009_12121_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/12_FLORIDA/12123_Taylor_County/tl_2009_12123_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/12_FLORIDA/12125_Union_County/tl_2009_12125_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/12_FLORIDA/12127_Volusia_County/tl_2009_12127_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/12_FLORIDA/12129_Wakulla_County/tl_2009_12129_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/12_FLORIDA/12131_Walton_County/tl_2009_12131_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/12_FLORIDA/12133_Washington_County/tl_2009_12133_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13001_Appling_County/tl_2009_13001_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13003_Atkinson_County/tl_2009_13003_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13005_Bacon_County/tl_2009_13005_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13007_Baker_County/tl_2009_13007_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13009_Baldwin_County/tl_2009_13009_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13011_Banks_County/tl_2009_13011_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13013_Barrow_County/tl_2009_13013_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13015_Bartow_County/tl_2009_13015_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13017_Ben_Hill_County/tl_2009_13017_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13019_Berrien_County/tl_2009_13019_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13021_Bibb_County/tl_2009_13021_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13023_Bleckley_County/tl_2009_13023_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13025_Brantley_County/tl_2009_13025_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13027_Brooks_County/tl_2009_13027_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13029_Bryan_County/tl_2009_13029_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13031_Bulloch_County/tl_2009_13031_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13033_Burke_County/tl_2009_13033_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13035_Butts_County/tl_2009_13035_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13037_Calhoun_County/tl_2009_13037_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13039_Camden_County/tl_2009_13039_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13043_Candler_County/tl_2009_13043_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13045_Carroll_County/tl_2009_13045_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13047_Catoosa_County/tl_2009_13047_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13049_Charlton_County/tl_2009_13049_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13051_Chatham_County/tl_2009_13051_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13053_Chattahoochee_County/tl_2009_13053_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13055_Chattooga_County/tl_2009_13055_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13057_Cherokee_County/tl_2009_13057_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13059_Clarke_County/tl_2009_13059_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13061_Clay_County/tl_2009_13061_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13063_Clayton_County/tl_2009_13063_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13065_Clinch_County/tl_2009_13065_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13067_Cobb_County/tl_2009_13067_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13069_Coffee_County/tl_2009_13069_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13071_Colquitt_County/tl_2009_13071_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13073_Columbia_County/tl_2009_13073_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13075_Cook_County/tl_2009_13075_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13077_Coweta_County/tl_2009_13077_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13079_Crawford_County/tl_2009_13079_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13081_Crisp_County/tl_2009_13081_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13083_Dade_County/tl_2009_13083_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13085_Dawson_County/tl_2009_13085_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13087_Decatur_County/tl_2009_13087_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13089_DeKalb_County/tl_2009_13089_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13091_Dodge_County/tl_2009_13091_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13093_Dooly_County/tl_2009_13093_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13095_Dougherty_County/tl_2009_13095_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13097_Douglas_County/tl_2009_13097_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13099_Early_County/tl_2009_13099_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13101_Echols_County/tl_2009_13101_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13103_Effingham_County/tl_2009_13103_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13105_Elbert_County/tl_2009_13105_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13107_Emanuel_County/tl_2009_13107_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13109_Evans_County/tl_2009_13109_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13111_Fannin_County/tl_2009_13111_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13113_Fayette_County/tl_2009_13113_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13115_Floyd_County/tl_2009_13115_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13117_Forsyth_County/tl_2009_13117_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13119_Franklin_County/tl_2009_13119_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13121_Fulton_County/tl_2009_13121_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13123_Gilmer_County/tl_2009_13123_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13125_Glascock_County/tl_2009_13125_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13127_Glynn_County/tl_2009_13127_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13129_Gordon_County/tl_2009_13129_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13131_Grady_County/tl_2009_13131_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13133_Greene_County/tl_2009_13133_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13135_Gwinnett_County/tl_2009_13135_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13137_Habersham_County/tl_2009_13137_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13139_Hall_County/tl_2009_13139_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13141_Hancock_County/tl_2009_13141_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13143_Haralson_County/tl_2009_13143_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13145_Harris_County/tl_2009_13145_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13147_Hart_County/tl_2009_13147_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13149_Heard_County/tl_2009_13149_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13151_Henry_County/tl_2009_13151_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13153_Houston_County/tl_2009_13153_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13155_Irwin_County/tl_2009_13155_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13157_Jackson_County/tl_2009_13157_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13159_Jasper_County/tl_2009_13159_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13161_Jeff_Davis_County/tl_2009_13161_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13163_Jefferson_County/tl_2009_13163_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13165_Jenkins_County/tl_2009_13165_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13167_Johnson_County/tl_2009_13167_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13169_Jones_County/tl_2009_13169_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13171_Lamar_County/tl_2009_13171_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13173_Lanier_County/tl_2009_13173_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13175_Laurens_County/tl_2009_13175_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13177_Lee_County/tl_2009_13177_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13179_Liberty_County/tl_2009_13179_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13181_Lincoln_County/tl_2009_13181_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13183_Long_County/tl_2009_13183_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13185_Lowndes_County/tl_2009_13185_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13187_Lumpkin_County/tl_2009_13187_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13189_McDuffie_County/tl_2009_13189_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13191_McIntosh_County/tl_2009_13191_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13193_Macon_County/tl_2009_13193_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13195_Madison_County/tl_2009_13195_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13197_Marion_County/tl_2009_13197_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13199_Meriwether_County/tl_2009_13199_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13201_Miller_County/tl_2009_13201_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13205_Mitchell_County/tl_2009_13205_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13207_Monroe_County/tl_2009_13207_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13209_Montgomery_County/tl_2009_13209_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13211_Morgan_County/tl_2009_13211_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13213_Murray_County/tl_2009_13213_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13215_Muscogee_County/tl_2009_13215_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13217_Newton_County/tl_2009_13217_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13219_Oconee_County/tl_2009_13219_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13221_Oglethorpe_County/tl_2009_13221_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13223_Paulding_County/tl_2009_13223_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13225_Peach_County/tl_2009_13225_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13227_Pickens_County/tl_2009_13227_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13229_Pierce_County/tl_2009_13229_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13231_Pike_County/tl_2009_13231_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13233_Polk_County/tl_2009_13233_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13235_Pulaski_County/tl_2009_13235_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13237_Putnam_County/tl_2009_13237_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13239_Quitman_County/tl_2009_13239_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13241_Rabun_County/tl_2009_13241_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13243_Randolph_County/tl_2009_13243_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13245_Richmond_County/tl_2009_13245_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13247_Rockdale_County/tl_2009_13247_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13249_Schley_County/tl_2009_13249_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13251_Screven_County/tl_2009_13251_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13253_Seminole_County/tl_2009_13253_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13255_Spalding_County/tl_2009_13255_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13257_Stephens_County/tl_2009_13257_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13259_Stewart_County/tl_2009_13259_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13261_Sumter_County/tl_2009_13261_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13263_Talbot_County/tl_2009_13263_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13265_Taliaferro_County/tl_2009_13265_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13267_Tattnall_County/tl_2009_13267_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13269_Taylor_County/tl_2009_13269_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13271_Telfair_County/tl_2009_13271_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13273_Terrell_County/tl_2009_13273_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13275_Thomas_County/tl_2009_13275_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13277_Tift_County/tl_2009_13277_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13279_Toombs_County/tl_2009_13279_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13281_Towns_County/tl_2009_13281_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13283_Treutlen_County/tl_2009_13283_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13285_Troup_County/tl_2009_13285_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13287_Turner_County/tl_2009_13287_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13289_Twiggs_County/tl_2009_13289_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13291_Union_County/tl_2009_13291_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13293_Upson_County/tl_2009_13293_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13295_Walker_County/tl_2009_13295_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13297_Walton_County/tl_2009_13297_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13299_Ware_County/tl_2009_13299_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13301_Warren_County/tl_2009_13301_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13303_Washington_County/tl_2009_13303_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13305_Wayne_County/tl_2009_13305_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13307_Webster_County/tl_2009_13307_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13309_Wheeler_County/tl_2009_13309_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13311_White_County/tl_2009_13311_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13313_Whitfield_County/tl_2009_13313_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13315_Wilcox_County/tl_2009_13315_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13317_Wilkes_County/tl_2009_13317_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13319_Wilkinson_County/tl_2009_13319_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/13_GEORGIA/13321_Worth_County/tl_2009_13321_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/15_HAWAII/15001_Hawaii_County/tl_2009_15001_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/15_HAWAII/15003_Honolulu_County/tl_2009_15003_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/15_HAWAII/15005_Kalawao_County/tl_2009_15005_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/15_HAWAII/15007_Kauai_County/tl_2009_15007_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/15_HAWAII/15009_Maui_County/tl_2009_15009_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/16_IDAHO/16001_Ada_County/tl_2009_16001_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/16_IDAHO/16003_Adams_County/tl_2009_16003_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/16_IDAHO/16005_Bannock_County/tl_2009_16005_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/16_IDAHO/16007_Bear_Lake_County/tl_2009_16007_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/16_IDAHO/16009_Benewah_County/tl_2009_16009_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/16_IDAHO/16011_Bingham_County/tl_2009_16011_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/16_IDAHO/16013_Blaine_County/tl_2009_16013_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/16_IDAHO/16015_Boise_County/tl_2009_16015_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/16_IDAHO/16017_Bonner_County/tl_2009_16017_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/16_IDAHO/16019_Bonneville_County/tl_2009_16019_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/16_IDAHO/16021_Boundary_County/tl_2009_16021_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/16_IDAHO/16023_Butte_County/tl_2009_16023_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/16_IDAHO/16025_Camas_County/tl_2009_16025_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/16_IDAHO/16027_Canyon_County/tl_2009_16027_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/16_IDAHO/16029_Caribou_County/tl_2009_16029_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/16_IDAHO/16031_Cassia_County/tl_2009_16031_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/16_IDAHO/16033_Clark_County/tl_2009_16033_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/16_IDAHO/16035_Clearwater_County/tl_2009_16035_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/16_IDAHO/16037_Custer_County/tl_2009_16037_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/16_IDAHO/16039_Elmore_County/tl_2009_16039_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/16_IDAHO/16041_Franklin_County/tl_2009_16041_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/16_IDAHO/16043_Fremont_County/tl_2009_16043_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/16_IDAHO/16045_Gem_County/tl_2009_16045_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/16_IDAHO/16047_Gooding_County/tl_2009_16047_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/16_IDAHO/16049_Idaho_County/tl_2009_16049_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/16_IDAHO/16051_Jefferson_County/tl_2009_16051_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/16_IDAHO/16053_Jerome_County/tl_2009_16053_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/16_IDAHO/16055_Kootenai_County/tl_2009_16055_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/16_IDAHO/16057_Latah_County/tl_2009_16057_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/16_IDAHO/16059_Lemhi_County/tl_2009_16059_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/16_IDAHO/16061_Lewis_County/tl_2009_16061_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/16_IDAHO/16063_Lincoln_County/tl_2009_16063_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/16_IDAHO/16065_Madison_County/tl_2009_16065_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/16_IDAHO/16067_Minidoka_County/tl_2009_16067_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/16_IDAHO/16069_Nez_Perce_County/tl_2009_16069_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/16_IDAHO/16071_Oneida_County/tl_2009_16071_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/16_IDAHO/16073_Owyhee_County/tl_2009_16073_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/16_IDAHO/16075_Payette_County/tl_2009_16075_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/16_IDAHO/16077_Power_County/tl_2009_16077_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/16_IDAHO/16079_Shoshone_County/tl_2009_16079_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/16_IDAHO/16081_Teton_County/tl_2009_16081_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/16_IDAHO/16083_Twin_Falls_County/tl_2009_16083_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/16_IDAHO/16085_Valley_County/tl_2009_16085_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/16_IDAHO/16087_Washington_County/tl_2009_16087_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/17_ILLINOIS/17001_Adams_County/tl_2009_17001_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/17_ILLINOIS/17003_Alexander_County/tl_2009_17003_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/17_ILLINOIS/17005_Bond_County/tl_2009_17005_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/17_ILLINOIS/17007_Boone_County/tl_2009_17007_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/17_ILLINOIS/17009_Brown_County/tl_2009_17009_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/17_ILLINOIS/17011_Bureau_County/tl_2009_17011_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/17_ILLINOIS/17013_Calhoun_County/tl_2009_17013_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/17_ILLINOIS/17015_Carroll_County/tl_2009_17015_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/17_ILLINOIS/17017_Cass_County/tl_2009_17017_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/17_ILLINOIS/17019_Champaign_County/tl_2009_17019_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/17_ILLINOIS/17021_Christian_County/tl_2009_17021_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/17_ILLINOIS/17023_Clark_County/tl_2009_17023_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/17_ILLINOIS/17025_Clay_County/tl_2009_17025_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/17_ILLINOIS/17027_Clinton_County/tl_2009_17027_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/17_ILLINOIS/17029_Coles_County/tl_2009_17029_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/17_ILLINOIS/17031_Cook_County/tl_2009_17031_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/17_ILLINOIS/17033_Crawford_County/tl_2009_17033_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/17_ILLINOIS/17035_Cumberland_County/tl_2009_17035_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/17_ILLINOIS/17037_DeKalb_County/tl_2009_17037_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/17_ILLINOIS/17039_De_Witt_County/tl_2009_17039_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/17_ILLINOIS/17041_Douglas_County/tl_2009_17041_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/17_ILLINOIS/17043_DuPage_County/tl_2009_17043_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/17_ILLINOIS/17045_Edgar_County/tl_2009_17045_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/17_ILLINOIS/17047_Edwards_County/tl_2009_17047_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/17_ILLINOIS/17049_Effingham_County/tl_2009_17049_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/17_ILLINOIS/17051_Fayette_County/tl_2009_17051_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/17_ILLINOIS/17053_Ford_County/tl_2009_17053_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/17_ILLINOIS/17055_Franklin_County/tl_2009_17055_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/17_ILLINOIS/17057_Fulton_County/tl_2009_17057_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/17_ILLINOIS/17059_Gallatin_County/tl_2009_17059_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/17_ILLINOIS/17061_Greene_County/tl_2009_17061_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/17_ILLINOIS/17063_Grundy_County/tl_2009_17063_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/17_ILLINOIS/17065_Hamilton_County/tl_2009_17065_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/17_ILLINOIS/17067_Hancock_County/tl_2009_17067_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/17_ILLINOIS/17069_Hardin_County/tl_2009_17069_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/17_ILLINOIS/17071_Henderson_County/tl_2009_17071_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/17_ILLINOIS/17073_Henry_County/tl_2009_17073_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/17_ILLINOIS/17075_Iroquois_County/tl_2009_17075_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/17_ILLINOIS/17077_Jackson_County/tl_2009_17077_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/17_ILLINOIS/17079_Jasper_County/tl_2009_17079_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/17_ILLINOIS/17081_Jefferson_County/tl_2009_17081_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/17_ILLINOIS/17083_Jersey_County/tl_2009_17083_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/17_ILLINOIS/17085_Jo_Daviess_County/tl_2009_17085_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/17_ILLINOIS/17087_Johnson_County/tl_2009_17087_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/17_ILLINOIS/17089_Kane_County/tl_2009_17089_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/17_ILLINOIS/17091_Kankakee_County/tl_2009_17091_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/17_ILLINOIS/17093_Kendall_County/tl_2009_17093_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/17_ILLINOIS/17095_Knox_County/tl_2009_17095_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/17_ILLINOIS/17097_Lake_County/tl_2009_17097_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/17_ILLINOIS/17099_LaSalle_County/tl_2009_17099_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/17_ILLINOIS/17101_Lawrence_County/tl_2009_17101_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/17_ILLINOIS/17103_Lee_County/tl_2009_17103_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/17_ILLINOIS/17105_Livingston_County/tl_2009_17105_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/17_ILLINOIS/17107_Logan_County/tl_2009_17107_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/17_ILLINOIS/17109_McDonough_County/tl_2009_17109_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/17_ILLINOIS/17111_McHenry_County/tl_2009_17111_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/17_ILLINOIS/17113_McLean_County/tl_2009_17113_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/17_ILLINOIS/17115_Macon_County/tl_2009_17115_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/17_ILLINOIS/17117_Macoupin_County/tl_2009_17117_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/17_ILLINOIS/17119_Madison_County/tl_2009_17119_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/17_ILLINOIS/17121_Marion_County/tl_2009_17121_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/17_ILLINOIS/17123_Marshall_County/tl_2009_17123_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/17_ILLINOIS/17125_Mason_County/tl_2009_17125_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/17_ILLINOIS/17127_Massac_County/tl_2009_17127_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/17_ILLINOIS/17129_Menard_County/tl_2009_17129_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/17_ILLINOIS/17131_Mercer_County/tl_2009_17131_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/17_ILLINOIS/17133_Monroe_County/tl_2009_17133_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/17_ILLINOIS/17135_Montgomery_County/tl_2009_17135_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/17_ILLINOIS/17137_Morgan_County/tl_2009_17137_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/17_ILLINOIS/17139_Moultrie_County/tl_2009_17139_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/17_ILLINOIS/17141_Ogle_County/tl_2009_17141_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/17_ILLINOIS/17143_Peoria_County/tl_2009_17143_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/17_ILLINOIS/17145_Perry_County/tl_2009_17145_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/17_ILLINOIS/17147_Piatt_County/tl_2009_17147_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/17_ILLINOIS/17149_Pike_County/tl_2009_17149_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/17_ILLINOIS/17151_Pope_County/tl_2009_17151_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/17_ILLINOIS/17153_Pulaski_County/tl_2009_17153_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/17_ILLINOIS/17155_Putnam_County/tl_2009_17155_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/17_ILLINOIS/17157_Randolph_County/tl_2009_17157_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/17_ILLINOIS/17159_Richland_County/tl_2009_17159_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/17_ILLINOIS/17161_Rock_Island_County/tl_2009_17161_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/17_ILLINOIS/17163_St_Clair_County/tl_2009_17163_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/17_ILLINOIS/17165_Saline_County/tl_2009_17165_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/17_ILLINOIS/17167_Sangamon_County/tl_2009_17167_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/17_ILLINOIS/17169_Schuyler_County/tl_2009_17169_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/17_ILLINOIS/17171_Scott_County/tl_2009_17171_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/17_ILLINOIS/17173_Shelby_County/tl_2009_17173_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/17_ILLINOIS/17175_Stark_County/tl_2009_17175_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/17_ILLINOIS/17177_Stephenson_County/tl_2009_17177_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/17_ILLINOIS/17179_Tazewell_County/tl_2009_17179_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/17_ILLINOIS/17181_Union_County/tl_2009_17181_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/17_ILLINOIS/17183_Vermilion_County/tl_2009_17183_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/17_ILLINOIS/17185_Wabash_County/tl_2009_17185_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/17_ILLINOIS/17187_Warren_County/tl_2009_17187_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/17_ILLINOIS/17189_Washington_County/tl_2009_17189_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/17_ILLINOIS/17191_Wayne_County/tl_2009_17191_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/17_ILLINOIS/17193_White_County/tl_2009_17193_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/17_ILLINOIS/17195_Whiteside_County/tl_2009_17195_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/17_ILLINOIS/17197_Will_County/tl_2009_17197_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/17_ILLINOIS/17199_Williamson_County/tl_2009_17199_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/17_ILLINOIS/17201_Winnebago_County/tl_2009_17201_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/17_ILLINOIS/17203_Woodford_County/tl_2009_17203_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/18_INDIANA/18001_Adams_County/tl_2009_18001_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/18_INDIANA/18003_Allen_County/tl_2009_18003_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/18_INDIANA/18005_Bartholomew_County/tl_2009_18005_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/18_INDIANA/18007_Benton_County/tl_2009_18007_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/18_INDIANA/18009_Blackford_County/tl_2009_18009_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/18_INDIANA/18011_Boone_County/tl_2009_18011_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/18_INDIANA/18013_Brown_County/tl_2009_18013_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/18_INDIANA/18015_Carroll_County/tl_2009_18015_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/18_INDIANA/18017_Cass_County/tl_2009_18017_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/18_INDIANA/18019_Clark_County/tl_2009_18019_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/18_INDIANA/18021_Clay_County/tl_2009_18021_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/18_INDIANA/18023_Clinton_County/tl_2009_18023_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/18_INDIANA/18025_Crawford_County/tl_2009_18025_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/18_INDIANA/18027_Daviess_County/tl_2009_18027_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/18_INDIANA/18029_Dearborn_County/tl_2009_18029_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/18_INDIANA/18031_Decatur_County/tl_2009_18031_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/18_INDIANA/18033_DeKalb_County/tl_2009_18033_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/18_INDIANA/18035_Delaware_County/tl_2009_18035_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/18_INDIANA/18037_Dubois_County/tl_2009_18037_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/18_INDIANA/18039_Elkhart_County/tl_2009_18039_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/18_INDIANA/18041_Fayette_County/tl_2009_18041_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/18_INDIANA/18043_Floyd_County/tl_2009_18043_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/18_INDIANA/18045_Fountain_County/tl_2009_18045_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/18_INDIANA/18047_Franklin_County/tl_2009_18047_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/18_INDIANA/18049_Fulton_County/tl_2009_18049_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/18_INDIANA/18051_Gibson_County/tl_2009_18051_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/18_INDIANA/18053_Grant_County/tl_2009_18053_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/18_INDIANA/18055_Greene_County/tl_2009_18055_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/18_INDIANA/18057_Hamilton_County/tl_2009_18057_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/18_INDIANA/18059_Hancock_County/tl_2009_18059_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/18_INDIANA/18061_Harrison_County/tl_2009_18061_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/18_INDIANA/18063_Hendricks_County/tl_2009_18063_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/18_INDIANA/18065_Henry_County/tl_2009_18065_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/18_INDIANA/18067_Howard_County/tl_2009_18067_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/18_INDIANA/18069_Huntington_County/tl_2009_18069_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/18_INDIANA/18071_Jackson_County/tl_2009_18071_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/18_INDIANA/18073_Jasper_County/tl_2009_18073_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/18_INDIANA/18075_Jay_County/tl_2009_18075_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/18_INDIANA/18077_Jefferson_County/tl_2009_18077_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/18_INDIANA/18079_Jennings_County/tl_2009_18079_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/18_INDIANA/18081_Johnson_County/tl_2009_18081_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/18_INDIANA/18083_Knox_County/tl_2009_18083_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/18_INDIANA/18085_Kosciusko_County/tl_2009_18085_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/18_INDIANA/18087_LaGrange_County/tl_2009_18087_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/18_INDIANA/18089_Lake_County/tl_2009_18089_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/18_INDIANA/18091_LaPorte_County/tl_2009_18091_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/18_INDIANA/18093_Lawrence_County/tl_2009_18093_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/18_INDIANA/18095_Madison_County/tl_2009_18095_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/18_INDIANA/18097_Marion_County/tl_2009_18097_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/18_INDIANA/18099_Marshall_County/tl_2009_18099_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/18_INDIANA/18101_Martin_County/tl_2009_18101_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/18_INDIANA/18103_Miami_County/tl_2009_18103_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/18_INDIANA/18105_Monroe_County/tl_2009_18105_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/18_INDIANA/18107_Montgomery_County/tl_2009_18107_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/18_INDIANA/18109_Morgan_County/tl_2009_18109_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/18_INDIANA/18111_Newton_County/tl_2009_18111_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/18_INDIANA/18113_Noble_County/tl_2009_18113_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/18_INDIANA/18115_Ohio_County/tl_2009_18115_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/18_INDIANA/18117_Orange_County/tl_2009_18117_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/18_INDIANA/18119_Owen_County/tl_2009_18119_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/18_INDIANA/18121_Parke_County/tl_2009_18121_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/18_INDIANA/18123_Perry_County/tl_2009_18123_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/18_INDIANA/18125_Pike_County/tl_2009_18125_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/18_INDIANA/18127_Porter_County/tl_2009_18127_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/18_INDIANA/18129_Posey_County/tl_2009_18129_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/18_INDIANA/18131_Pulaski_County/tl_2009_18131_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/18_INDIANA/18133_Putnam_County/tl_2009_18133_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/18_INDIANA/18135_Randolph_County/tl_2009_18135_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/18_INDIANA/18137_Ripley_County/tl_2009_18137_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/18_INDIANA/18139_Rush_County/tl_2009_18139_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/18_INDIANA/18141_St_Joseph_County/tl_2009_18141_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/18_INDIANA/18143_Scott_County/tl_2009_18143_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/18_INDIANA/18145_Shelby_County/tl_2009_18145_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/18_INDIANA/18147_Spencer_County/tl_2009_18147_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/18_INDIANA/18149_Starke_County/tl_2009_18149_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/18_INDIANA/18151_Steuben_County/tl_2009_18151_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/18_INDIANA/18153_Sullivan_County/tl_2009_18153_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/18_INDIANA/18155_Switzerland_County/tl_2009_18155_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/18_INDIANA/18157_Tippecanoe_County/tl_2009_18157_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/18_INDIANA/18159_Tipton_County/tl_2009_18159_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/18_INDIANA/18161_Union_County/tl_2009_18161_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/18_INDIANA/18163_Vanderburgh_County/tl_2009_18163_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/18_INDIANA/18165_Vermillion_County/tl_2009_18165_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/18_INDIANA/18167_Vigo_County/tl_2009_18167_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/18_INDIANA/18169_Wabash_County/tl_2009_18169_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/18_INDIANA/18171_Warren_County/tl_2009_18171_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/18_INDIANA/18173_Warrick_County/tl_2009_18173_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/18_INDIANA/18175_Washington_County/tl_2009_18175_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/18_INDIANA/18177_Wayne_County/tl_2009_18177_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/18_INDIANA/18179_Wells_County/tl_2009_18179_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/18_INDIANA/18181_White_County/tl_2009_18181_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/18_INDIANA/18183_Whitley_County/tl_2009_18183_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/19_IOWA/19001_Adair_County/tl_2009_19001_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/19_IOWA/19003_Adams_County/tl_2009_19003_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/19_IOWA/19005_Allamakee_County/tl_2009_19005_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/19_IOWA/19007_Appanoose_County/tl_2009_19007_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/19_IOWA/19009_Audubon_County/tl_2009_19009_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/19_IOWA/19011_Benton_County/tl_2009_19011_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/19_IOWA/19013_Black_Hawk_County/tl_2009_19013_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/19_IOWA/19015_Boone_County/tl_2009_19015_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/19_IOWA/19017_Bremer_County/tl_2009_19017_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/19_IOWA/19019_Buchanan_County/tl_2009_19019_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/19_IOWA/19021_Buena_Vista_County/tl_2009_19021_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/19_IOWA/19023_Butler_County/tl_2009_19023_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/19_IOWA/19025_Calhoun_County/tl_2009_19025_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/19_IOWA/19027_Carroll_County/tl_2009_19027_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/19_IOWA/19029_Cass_County/tl_2009_19029_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/19_IOWA/19031_Cedar_County/tl_2009_19031_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/19_IOWA/19033_Cerro_Gordo_County/tl_2009_19033_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/19_IOWA/19035_Cherokee_County/tl_2009_19035_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/19_IOWA/19037_Chickasaw_County/tl_2009_19037_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/19_IOWA/19039_Clarke_County/tl_2009_19039_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/19_IOWA/19041_Clay_County/tl_2009_19041_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/19_IOWA/19043_Clayton_County/tl_2009_19043_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/19_IOWA/19045_Clinton_County/tl_2009_19045_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/19_IOWA/19047_Crawford_County/tl_2009_19047_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/19_IOWA/19049_Dallas_County/tl_2009_19049_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/19_IOWA/19051_Davis_County/tl_2009_19051_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/19_IOWA/19053_Decatur_County/tl_2009_19053_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/19_IOWA/19055_Delaware_County/tl_2009_19055_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/19_IOWA/19057_Des_Moines_County/tl_2009_19057_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/19_IOWA/19059_Dickinson_County/tl_2009_19059_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/19_IOWA/19061_Dubuque_County/tl_2009_19061_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/19_IOWA/19063_Emmet_County/tl_2009_19063_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/19_IOWA/19065_Fayette_County/tl_2009_19065_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/19_IOWA/19067_Floyd_County/tl_2009_19067_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/19_IOWA/19069_Franklin_County/tl_2009_19069_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/19_IOWA/19071_Fremont_County/tl_2009_19071_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/19_IOWA/19073_Greene_County/tl_2009_19073_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/19_IOWA/19075_Grundy_County/tl_2009_19075_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/19_IOWA/19077_Guthrie_County/tl_2009_19077_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/19_IOWA/19079_Hamilton_County/tl_2009_19079_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/19_IOWA/19081_Hancock_County/tl_2009_19081_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/19_IOWA/19083_Hardin_County/tl_2009_19083_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/19_IOWA/19085_Harrison_County/tl_2009_19085_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/19_IOWA/19087_Henry_County/tl_2009_19087_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/19_IOWA/19089_Howard_County/tl_2009_19089_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/19_IOWA/19091_Humboldt_County/tl_2009_19091_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/19_IOWA/19093_Ida_County/tl_2009_19093_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/19_IOWA/19095_Iowa_County/tl_2009_19095_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/19_IOWA/19097_Jackson_County/tl_2009_19097_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/19_IOWA/19099_Jasper_County/tl_2009_19099_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/19_IOWA/19101_Jefferson_County/tl_2009_19101_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/19_IOWA/19103_Johnson_County/tl_2009_19103_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/19_IOWA/19105_Jones_County/tl_2009_19105_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/19_IOWA/19107_Keokuk_County/tl_2009_19107_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/19_IOWA/19109_Kossuth_County/tl_2009_19109_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/19_IOWA/19111_Lee_County/tl_2009_19111_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/19_IOWA/19113_Linn_County/tl_2009_19113_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/19_IOWA/19115_Louisa_County/tl_2009_19115_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/19_IOWA/19117_Lucas_County/tl_2009_19117_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/19_IOWA/19119_Lyon_County/tl_2009_19119_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/19_IOWA/19121_Madison_County/tl_2009_19121_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/19_IOWA/19123_Mahaska_County/tl_2009_19123_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/19_IOWA/19125_Marion_County/tl_2009_19125_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/19_IOWA/19127_Marshall_County/tl_2009_19127_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/19_IOWA/19129_Mills_County/tl_2009_19129_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/19_IOWA/19131_Mitchell_County/tl_2009_19131_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/19_IOWA/19133_Monona_County/tl_2009_19133_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/19_IOWA/19135_Monroe_County/tl_2009_19135_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/19_IOWA/19137_Montgomery_County/tl_2009_19137_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/19_IOWA/19139_Muscatine_County/tl_2009_19139_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/19_IOWA/19141_OBrien_County/tl_2009_19141_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/19_IOWA/19143_Osceola_County/tl_2009_19143_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/19_IOWA/19145_Page_County/tl_2009_19145_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/19_IOWA/19147_Palo_Alto_County/tl_2009_19147_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/19_IOWA/19149_Plymouth_County/tl_2009_19149_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/19_IOWA/19151_Pocahontas_County/tl_2009_19151_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/19_IOWA/19153_Polk_County/tl_2009_19153_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/19_IOWA/19155_Pottawattamie_County/tl_2009_19155_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/19_IOWA/19157_Poweshiek_County/tl_2009_19157_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/19_IOWA/19159_Ringgold_County/tl_2009_19159_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/19_IOWA/19161_Sac_County/tl_2009_19161_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/19_IOWA/19163_Scott_County/tl_2009_19163_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/19_IOWA/19165_Shelby_County/tl_2009_19165_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/19_IOWA/19167_Sioux_County/tl_2009_19167_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/19_IOWA/19169_Story_County/tl_2009_19169_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/19_IOWA/19171_Tama_County/tl_2009_19171_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/19_IOWA/19173_Taylor_County/tl_2009_19173_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/19_IOWA/19175_Union_County/tl_2009_19175_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/19_IOWA/19177_Van_Buren_County/tl_2009_19177_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/19_IOWA/19179_Wapello_County/tl_2009_19179_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/19_IOWA/19181_Warren_County/tl_2009_19181_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/19_IOWA/19183_Washington_County/tl_2009_19183_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/19_IOWA/19185_Wayne_County/tl_2009_19185_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/19_IOWA/19187_Webster_County/tl_2009_19187_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/19_IOWA/19189_Winnebago_County/tl_2009_19189_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/19_IOWA/19191_Winneshiek_County/tl_2009_19191_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/19_IOWA/19193_Woodbury_County/tl_2009_19193_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/19_IOWA/19195_Worth_County/tl_2009_19195_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/19_IOWA/19197_Wright_County/tl_2009_19197_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/20_KANSAS/20001_Allen_County/tl_2009_20001_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/20_KANSAS/20003_Anderson_County/tl_2009_20003_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/20_KANSAS/20005_Atchison_County/tl_2009_20005_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/20_KANSAS/20007_Barber_County/tl_2009_20007_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/20_KANSAS/20009_Barton_County/tl_2009_20009_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/20_KANSAS/20011_Bourbon_County/tl_2009_20011_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/20_KANSAS/20013_Brown_County/tl_2009_20013_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/20_KANSAS/20015_Butler_County/tl_2009_20015_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/20_KANSAS/20017_Chase_County/tl_2009_20017_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/20_KANSAS/20019_Chautauqua_County/tl_2009_20019_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/20_KANSAS/20021_Cherokee_County/tl_2009_20021_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/20_KANSAS/20023_Cheyenne_County/tl_2009_20023_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/20_KANSAS/20025_Clark_County/tl_2009_20025_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/20_KANSAS/20027_Clay_County/tl_2009_20027_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/20_KANSAS/20029_Cloud_County/tl_2009_20029_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/20_KANSAS/20031_Coffey_County/tl_2009_20031_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/20_KANSAS/20033_Comanche_County/tl_2009_20033_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/20_KANSAS/20035_Cowley_County/tl_2009_20035_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/20_KANSAS/20037_Crawford_County/tl_2009_20037_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/20_KANSAS/20039_Decatur_County/tl_2009_20039_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/20_KANSAS/20041_Dickinson_County/tl_2009_20041_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/20_KANSAS/20043_Doniphan_County/tl_2009_20043_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/20_KANSAS/20045_Douglas_County/tl_2009_20045_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/20_KANSAS/20047_Edwards_County/tl_2009_20047_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/20_KANSAS/20049_Elk_County/tl_2009_20049_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/20_KANSAS/20051_Ellis_County/tl_2009_20051_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/20_KANSAS/20053_Ellsworth_County/tl_2009_20053_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/20_KANSAS/20055_Finney_County/tl_2009_20055_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/20_KANSAS/20057_Ford_County/tl_2009_20057_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/20_KANSAS/20059_Franklin_County/tl_2009_20059_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/20_KANSAS/20061_Geary_County/tl_2009_20061_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/20_KANSAS/20063_Gove_County/tl_2009_20063_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/20_KANSAS/20065_Graham_County/tl_2009_20065_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/20_KANSAS/20067_Grant_County/tl_2009_20067_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/20_KANSAS/20069_Gray_County/tl_2009_20069_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/20_KANSAS/20071_Greeley_County/tl_2009_20071_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/20_KANSAS/20073_Greenwood_County/tl_2009_20073_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/20_KANSAS/20075_Hamilton_County/tl_2009_20075_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/20_KANSAS/20077_Harper_County/tl_2009_20077_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/20_KANSAS/20079_Harvey_County/tl_2009_20079_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/20_KANSAS/20081_Haskell_County/tl_2009_20081_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/20_KANSAS/20083_Hodgeman_County/tl_2009_20083_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/20_KANSAS/20085_Jackson_County/tl_2009_20085_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/20_KANSAS/20087_Jefferson_County/tl_2009_20087_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/20_KANSAS/20089_Jewell_County/tl_2009_20089_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/20_KANSAS/20091_Johnson_County/tl_2009_20091_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/20_KANSAS/20093_Kearny_County/tl_2009_20093_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/20_KANSAS/20095_Kingman_County/tl_2009_20095_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/20_KANSAS/20097_Kiowa_County/tl_2009_20097_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/20_KANSAS/20099_Labette_County/tl_2009_20099_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/20_KANSAS/20101_Lane_County/tl_2009_20101_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/20_KANSAS/20103_Leavenworth_County/tl_2009_20103_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/20_KANSAS/20105_Lincoln_County/tl_2009_20105_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/20_KANSAS/20107_Linn_County/tl_2009_20107_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/20_KANSAS/20109_Logan_County/tl_2009_20109_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/20_KANSAS/20111_Lyon_County/tl_2009_20111_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/20_KANSAS/20113_McPherson_County/tl_2009_20113_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/20_KANSAS/20115_Marion_County/tl_2009_20115_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/20_KANSAS/20117_Marshall_County/tl_2009_20117_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/20_KANSAS/20119_Meade_County/tl_2009_20119_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/20_KANSAS/20121_Miami_County/tl_2009_20121_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/20_KANSAS/20123_Mitchell_County/tl_2009_20123_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/20_KANSAS/20125_Montgomery_County/tl_2009_20125_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/20_KANSAS/20127_Morris_County/tl_2009_20127_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/20_KANSAS/20129_Morton_County/tl_2009_20129_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/20_KANSAS/20131_Nemaha_County/tl_2009_20131_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/20_KANSAS/20133_Neosho_County/tl_2009_20133_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/20_KANSAS/20135_Ness_County/tl_2009_20135_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/20_KANSAS/20137_Norton_County/tl_2009_20137_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/20_KANSAS/20139_Osage_County/tl_2009_20139_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/20_KANSAS/20141_Osborne_County/tl_2009_20141_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/20_KANSAS/20143_Ottawa_County/tl_2009_20143_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/20_KANSAS/20145_Pawnee_County/tl_2009_20145_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/20_KANSAS/20147_Phillips_County/tl_2009_20147_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/20_KANSAS/20149_Pottawatomie_County/tl_2009_20149_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/20_KANSAS/20151_Pratt_County/tl_2009_20151_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/20_KANSAS/20153_Rawlins_County/tl_2009_20153_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/20_KANSAS/20155_Reno_County/tl_2009_20155_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/20_KANSAS/20157_Republic_County/tl_2009_20157_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/20_KANSAS/20159_Rice_County/tl_2009_20159_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/20_KANSAS/20161_Riley_County/tl_2009_20161_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/20_KANSAS/20163_Rooks_County/tl_2009_20163_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/20_KANSAS/20165_Rush_County/tl_2009_20165_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/20_KANSAS/20167_Russell_County/tl_2009_20167_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/20_KANSAS/20169_Saline_County/tl_2009_20169_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/20_KANSAS/20171_Scott_County/tl_2009_20171_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/20_KANSAS/20173_Sedgwick_County/tl_2009_20173_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/20_KANSAS/20175_Seward_County/tl_2009_20175_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/20_KANSAS/20177_Shawnee_County/tl_2009_20177_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/20_KANSAS/20179_Sheridan_County/tl_2009_20179_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/20_KANSAS/20181_Sherman_County/tl_2009_20181_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/20_KANSAS/20183_Smith_County/tl_2009_20183_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/20_KANSAS/20185_Stafford_County/tl_2009_20185_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/20_KANSAS/20187_Stanton_County/tl_2009_20187_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/20_KANSAS/20189_Stevens_County/tl_2009_20189_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/20_KANSAS/20191_Sumner_County/tl_2009_20191_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/20_KANSAS/20193_Thomas_County/tl_2009_20193_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/20_KANSAS/20195_Trego_County/tl_2009_20195_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/20_KANSAS/20197_Wabaunsee_County/tl_2009_20197_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/20_KANSAS/20199_Wallace_County/tl_2009_20199_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/20_KANSAS/20201_Washington_County/tl_2009_20201_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/20_KANSAS/20203_Wichita_County/tl_2009_20203_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/20_KANSAS/20205_Wilson_County/tl_2009_20205_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/20_KANSAS/20207_Woodson_County/tl_2009_20207_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/20_KANSAS/20209_Wyandotte_County/tl_2009_20209_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21001_Adair_County/tl_2009_21001_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21003_Allen_County/tl_2009_21003_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21005_Anderson_County/tl_2009_21005_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21007_Ballard_County/tl_2009_21007_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21009_Barren_County/tl_2009_21009_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21011_Bath_County/tl_2009_21011_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21013_Bell_County/tl_2009_21013_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21015_Boone_County/tl_2009_21015_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21017_Bourbon_County/tl_2009_21017_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21019_Boyd_County/tl_2009_21019_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21021_Boyle_County/tl_2009_21021_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21023_Bracken_County/tl_2009_21023_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21025_Breathitt_County/tl_2009_21025_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21027_Breckinridge_County/tl_2009_21027_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21029_Bullitt_County/tl_2009_21029_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21031_Butler_County/tl_2009_21031_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21033_Caldwell_County/tl_2009_21033_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21035_Calloway_County/tl_2009_21035_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21037_Campbell_County/tl_2009_21037_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21039_Carlisle_County/tl_2009_21039_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21041_Carroll_County/tl_2009_21041_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21043_Carter_County/tl_2009_21043_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21045_Casey_County/tl_2009_21045_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21047_Christian_County/tl_2009_21047_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21049_Clark_County/tl_2009_21049_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21051_Clay_County/tl_2009_21051_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21053_Clinton_County/tl_2009_21053_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21055_Crittenden_County/tl_2009_21055_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21057_Cumberland_County/tl_2009_21057_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21059_Daviess_County/tl_2009_21059_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21061_Edmonson_County/tl_2009_21061_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21063_Elliott_County/tl_2009_21063_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21065_Estill_County/tl_2009_21065_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21067_Fayette_County/tl_2009_21067_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21069_Fleming_County/tl_2009_21069_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21071_Floyd_County/tl_2009_21071_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21073_Franklin_County/tl_2009_21073_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21075_Fulton_County/tl_2009_21075_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21077_Gallatin_County/tl_2009_21077_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21079_Garrard_County/tl_2009_21079_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21081_Grant_County/tl_2009_21081_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21083_Graves_County/tl_2009_21083_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21085_Grayson_County/tl_2009_21085_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21087_Green_County/tl_2009_21087_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21089_Greenup_County/tl_2009_21089_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21091_Hancock_County/tl_2009_21091_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21093_Hardin_County/tl_2009_21093_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21095_Harlan_County/tl_2009_21095_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21097_Harrison_County/tl_2009_21097_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21099_Hart_County/tl_2009_21099_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21101_Henderson_County/tl_2009_21101_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21103_Henry_County/tl_2009_21103_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21105_Hickman_County/tl_2009_21105_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21107_Hopkins_County/tl_2009_21107_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21109_Jackson_County/tl_2009_21109_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21111_Jefferson_County/tl_2009_21111_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21113_Jessamine_County/tl_2009_21113_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21115_Johnson_County/tl_2009_21115_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21117_Kenton_County/tl_2009_21117_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21119_Knott_County/tl_2009_21119_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21121_Knox_County/tl_2009_21121_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21123_Larue_County/tl_2009_21123_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21125_Laurel_County/tl_2009_21125_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21127_Lawrence_County/tl_2009_21127_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21129_Lee_County/tl_2009_21129_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21131_Leslie_County/tl_2009_21131_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21133_Letcher_County/tl_2009_21133_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21135_Lewis_County/tl_2009_21135_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21137_Lincoln_County/tl_2009_21137_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21139_Livingston_County/tl_2009_21139_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21141_Logan_County/tl_2009_21141_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21143_Lyon_County/tl_2009_21143_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21145_McCracken_County/tl_2009_21145_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21147_McCreary_County/tl_2009_21147_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21149_McLean_County/tl_2009_21149_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21151_Madison_County/tl_2009_21151_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21153_Magoffin_County/tl_2009_21153_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21155_Marion_County/tl_2009_21155_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21157_Marshall_County/tl_2009_21157_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21159_Martin_County/tl_2009_21159_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21161_Mason_County/tl_2009_21161_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21163_Meade_County/tl_2009_21163_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21165_Menifee_County/tl_2009_21165_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21167_Mercer_County/tl_2009_21167_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21169_Metcalfe_County/tl_2009_21169_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21171_Monroe_County/tl_2009_21171_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21173_Montgomery_County/tl_2009_21173_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21175_Morgan_County/tl_2009_21175_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21177_Muhlenberg_County/tl_2009_21177_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21179_Nelson_County/tl_2009_21179_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21181_Nicholas_County/tl_2009_21181_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21183_Ohio_County/tl_2009_21183_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21185_Oldham_County/tl_2009_21185_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21187_Owen_County/tl_2009_21187_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21189_Owsley_County/tl_2009_21189_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21191_Pendleton_County/tl_2009_21191_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21193_Perry_County/tl_2009_21193_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21195_Pike_County/tl_2009_21195_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21197_Powell_County/tl_2009_21197_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21199_Pulaski_County/tl_2009_21199_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21201_Robertson_County/tl_2009_21201_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21203_Rockcastle_County/tl_2009_21203_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21205_Rowan_County/tl_2009_21205_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21207_Russell_County/tl_2009_21207_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21209_Scott_County/tl_2009_21209_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21211_Shelby_County/tl_2009_21211_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21213_Simpson_County/tl_2009_21213_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21215_Spencer_County/tl_2009_21215_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21217_Taylor_County/tl_2009_21217_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21219_Todd_County/tl_2009_21219_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21221_Trigg_County/tl_2009_21221_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21223_Trimble_County/tl_2009_21223_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21225_Union_County/tl_2009_21225_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21227_Warren_County/tl_2009_21227_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21229_Washington_County/tl_2009_21229_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21231_Wayne_County/tl_2009_21231_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21233_Webster_County/tl_2009_21233_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21235_Whitley_County/tl_2009_21235_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21237_Wolfe_County/tl_2009_21237_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/21_KENTUCKY/21239_Woodford_County/tl_2009_21239_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/22_LOUISIANA/22001_Acadia_Parish/tl_2009_22001_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/22_LOUISIANA/22003_Allen_Parish/tl_2009_22003_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/22_LOUISIANA/22005_Ascension_Parish/tl_2009_22005_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/22_LOUISIANA/22007_Assumption_Parish/tl_2009_22007_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/22_LOUISIANA/22009_Avoyelles_Parish/tl_2009_22009_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/22_LOUISIANA/22011_Beauregard_Parish/tl_2009_22011_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/22_LOUISIANA/22013_Bienville_Parish/tl_2009_22013_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/22_LOUISIANA/22015_Bossier_Parish/tl_2009_22015_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/22_LOUISIANA/22017_Caddo_Parish/tl_2009_22017_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/22_LOUISIANA/22019_Calcasieu_Parish/tl_2009_22019_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/22_LOUISIANA/22021_Caldwell_Parish/tl_2009_22021_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/22_LOUISIANA/22023_Cameron_Parish/tl_2009_22023_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/22_LOUISIANA/22025_Catahoula_Parish/tl_2009_22025_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/22_LOUISIANA/22027_Claiborne_Parish/tl_2009_22027_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/22_LOUISIANA/22029_Concordia_Parish/tl_2009_22029_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/22_LOUISIANA/22031_De_Soto_Parish/tl_2009_22031_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/22_LOUISIANA/22033_East_Baton_Rouge_Parish/tl_2009_22033_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/22_LOUISIANA/22035_East_Carroll_Parish/tl_2009_22035_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/22_LOUISIANA/22037_East_Feliciana_Parish/tl_2009_22037_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/22_LOUISIANA/22039_Evangeline_Parish/tl_2009_22039_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/22_LOUISIANA/22041_Franklin_Parish/tl_2009_22041_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/22_LOUISIANA/22043_Grant_Parish/tl_2009_22043_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/22_LOUISIANA/22045_Iberia_Parish/tl_2009_22045_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/22_LOUISIANA/22047_Iberville_Parish/tl_2009_22047_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/22_LOUISIANA/22049_Jackson_Parish/tl_2009_22049_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/22_LOUISIANA/22051_Jefferson_Parish/tl_2009_22051_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/22_LOUISIANA/22053_Jefferson_Davis_Parish/tl_2009_22053_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/22_LOUISIANA/22055_Lafayette_Parish/tl_2009_22055_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/22_LOUISIANA/22057_Lafourche_Parish/tl_2009_22057_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/22_LOUISIANA/22059_La_Salle_Parish/tl_2009_22059_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/22_LOUISIANA/22061_Lincoln_Parish/tl_2009_22061_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/22_LOUISIANA/22063_Livingston_Parish/tl_2009_22063_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/22_LOUISIANA/22065_Madison_Parish/tl_2009_22065_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/22_LOUISIANA/22067_Morehouse_Parish/tl_2009_22067_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/22_LOUISIANA/22069_Natchitoches_Parish/tl_2009_22069_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/22_LOUISIANA/22071_Orleans_Parish/tl_2009_22071_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/22_LOUISIANA/22073_Ouachita_Parish/tl_2009_22073_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/22_LOUISIANA/22075_Plaquemines_Parish/tl_2009_22075_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/22_LOUISIANA/22077_Pointe_Coupee_Parish/tl_2009_22077_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/22_LOUISIANA/22079_Rapides_Parish/tl_2009_22079_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/22_LOUISIANA/22081_Red_River_Parish/tl_2009_22081_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/22_LOUISIANA/22083_Richland_Parish/tl_2009_22083_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/22_LOUISIANA/22085_Sabine_Parish/tl_2009_22085_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/22_LOUISIANA/22087_St_Bernard_Parish/tl_2009_22087_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/22_LOUISIANA/22089_St_Charles_Parish/tl_2009_22089_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/22_LOUISIANA/22091_St_Helena_Parish/tl_2009_22091_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/22_LOUISIANA/22093_St_James_Parish/tl_2009_22093_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/22_LOUISIANA/22095_St_John_the_Baptist_Parish/tl_2009_22095_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/22_LOUISIANA/22097_St_Landry_Parish/tl_2009_22097_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/22_LOUISIANA/22099_St_Martin_Parish/tl_2009_22099_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/22_LOUISIANA/22101_St_Mary_Parish/tl_2009_22101_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/22_LOUISIANA/22103_St_Tammany_Parish/tl_2009_22103_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/22_LOUISIANA/22105_Tangipahoa_Parish/tl_2009_22105_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/22_LOUISIANA/22107_Tensas_Parish/tl_2009_22107_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/22_LOUISIANA/22109_Terrebonne_Parish/tl_2009_22109_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/22_LOUISIANA/22111_Union_Parish/tl_2009_22111_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/22_LOUISIANA/22113_Vermilion_Parish/tl_2009_22113_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/22_LOUISIANA/22115_Vernon_Parish/tl_2009_22115_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/22_LOUISIANA/22117_Washington_Parish/tl_2009_22117_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/22_LOUISIANA/22119_Webster_Parish/tl_2009_22119_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/22_LOUISIANA/22121_West_Baton_Rouge_Parish/tl_2009_22121_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/22_LOUISIANA/22123_West_Carroll_Parish/tl_2009_22123_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/22_LOUISIANA/22125_West_Feliciana_Parish/tl_2009_22125_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/22_LOUISIANA/22127_Winn_Parish/tl_2009_22127_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/23_MAINE/23001_Androscoggin_County/tl_2009_23001_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/23_MAINE/23003_Aroostook_County/tl_2009_23003_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/23_MAINE/23005_Cumberland_County/tl_2009_23005_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/23_MAINE/23007_Franklin_County/tl_2009_23007_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/23_MAINE/23009_Hancock_County/tl_2009_23009_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/23_MAINE/23011_Kennebec_County/tl_2009_23011_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/23_MAINE/23013_Knox_County/tl_2009_23013_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/23_MAINE/23015_Lincoln_County/tl_2009_23015_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/23_MAINE/23017_Oxford_County/tl_2009_23017_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/23_MAINE/23019_Penobscot_County/tl_2009_23019_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/23_MAINE/23021_Piscataquis_County/tl_2009_23021_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/23_MAINE/23023_Sagadahoc_County/tl_2009_23023_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/23_MAINE/23025_Somerset_County/tl_2009_23025_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/23_MAINE/23027_Waldo_County/tl_2009_23027_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/23_MAINE/23029_Washington_County/tl_2009_23029_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/23_MAINE/23031_York_County/tl_2009_23031_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/24_MARYLAND/24001_Allegany_County/tl_2009_24001_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/24_MARYLAND/24003_Anne_Arundel_County/tl_2009_24003_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/24_MARYLAND/24005_Baltimore_County/tl_2009_24005_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/24_MARYLAND/24009_Calvert_County/tl_2009_24009_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/24_MARYLAND/24011_Caroline_County/tl_2009_24011_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/24_MARYLAND/24013_Carroll_County/tl_2009_24013_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/24_MARYLAND/24015_Cecil_County/tl_2009_24015_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/24_MARYLAND/24017_Charles_County/tl_2009_24017_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/24_MARYLAND/24019_Dorchester_County/tl_2009_24019_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/24_MARYLAND/24021_Frederick_County/tl_2009_24021_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/24_MARYLAND/24023_Garrett_County/tl_2009_24023_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/24_MARYLAND/24025_Harford_County/tl_2009_24025_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/24_MARYLAND/24027_Howard_County/tl_2009_24027_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/24_MARYLAND/24029_Kent_County/tl_2009_24029_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/24_MARYLAND/24031_Montgomery_County/tl_2009_24031_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/24_MARYLAND/24033_Prince_Georges_County/tl_2009_24033_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/24_MARYLAND/24035_Queen_Annes_County/tl_2009_24035_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/24_MARYLAND/24037_St_Marys_County/tl_2009_24037_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/24_MARYLAND/24039_Somerset_County/tl_2009_24039_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/24_MARYLAND/24041_Talbot_County/tl_2009_24041_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/24_MARYLAND/24043_Washington_County/tl_2009_24043_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/24_MARYLAND/24045_Wicomico_County/tl_2009_24045_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/24_MARYLAND/24047_Worcester_County/tl_2009_24047_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/24_MARYLAND/24510_Baltimore_city/tl_2009_24510_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/25_MASSACHUSETTS/25001_Barnstable_County/tl_2009_25001_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/25_MASSACHUSETTS/25003_Berkshire_County/tl_2009_25003_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/25_MASSACHUSETTS/25005_Bristol_County/tl_2009_25005_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/25_MASSACHUSETTS/25007_Dukes_County/tl_2009_25007_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/25_MASSACHUSETTS/25009_Essex_County/tl_2009_25009_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/25_MASSACHUSETTS/25011_Franklin_County/tl_2009_25011_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/25_MASSACHUSETTS/25013_Hampden_County/tl_2009_25013_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/25_MASSACHUSETTS/25015_Hampshire_County/tl_2009_25015_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/25_MASSACHUSETTS/25017_Middlesex_County/tl_2009_25017_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/25_MASSACHUSETTS/25019_Nantucket_County/tl_2009_25019_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/25_MASSACHUSETTS/25021_Norfolk_County/tl_2009_25021_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/25_MASSACHUSETTS/25023_Plymouth_County/tl_2009_25023_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/25_MASSACHUSETTS/25025_Suffolk_County/tl_2009_25025_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/25_MASSACHUSETTS/25027_Worcester_County/tl_2009_25027_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/26_MICHIGAN/26001_Alcona_County/tl_2009_26001_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/26_MICHIGAN/26003_Alger_County/tl_2009_26003_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/26_MICHIGAN/26005_Allegan_County/tl_2009_26005_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/26_MICHIGAN/26007_Alpena_County/tl_2009_26007_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/26_MICHIGAN/26009_Antrim_County/tl_2009_26009_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/26_MICHIGAN/26011_Arenac_County/tl_2009_26011_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/26_MICHIGAN/26013_Baraga_County/tl_2009_26013_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/26_MICHIGAN/26015_Barry_County/tl_2009_26015_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/26_MICHIGAN/26017_Bay_County/tl_2009_26017_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/26_MICHIGAN/26019_Benzie_County/tl_2009_26019_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/26_MICHIGAN/26021_Berrien_County/tl_2009_26021_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/26_MICHIGAN/26023_Branch_County/tl_2009_26023_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/26_MICHIGAN/26025_Calhoun_County/tl_2009_26025_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/26_MICHIGAN/26027_Cass_County/tl_2009_26027_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/26_MICHIGAN/26029_Charlevoix_County/tl_2009_26029_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/26_MICHIGAN/26031_Cheboygan_County/tl_2009_26031_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/26_MICHIGAN/26033_Chippewa_County/tl_2009_26033_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/26_MICHIGAN/26035_Clare_County/tl_2009_26035_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/26_MICHIGAN/26037_Clinton_County/tl_2009_26037_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/26_MICHIGAN/26039_Crawford_County/tl_2009_26039_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/26_MICHIGAN/26041_Delta_County/tl_2009_26041_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/26_MICHIGAN/26043_Dickinson_County/tl_2009_26043_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/26_MICHIGAN/26045_Eaton_County/tl_2009_26045_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/26_MICHIGAN/26047_Emmet_County/tl_2009_26047_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/26_MICHIGAN/26049_Genesee_County/tl_2009_26049_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/26_MICHIGAN/26051_Gladwin_County/tl_2009_26051_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/26_MICHIGAN/26053_Gogebic_County/tl_2009_26053_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/26_MICHIGAN/26055_Grand_Traverse_County/tl_2009_26055_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/26_MICHIGAN/26057_Gratiot_County/tl_2009_26057_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/26_MICHIGAN/26059_Hillsdale_County/tl_2009_26059_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/26_MICHIGAN/26061_Houghton_County/tl_2009_26061_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/26_MICHIGAN/26063_Huron_County/tl_2009_26063_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/26_MICHIGAN/26065_Ingham_County/tl_2009_26065_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/26_MICHIGAN/26067_Ionia_County/tl_2009_26067_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/26_MICHIGAN/26069_Iosco_County/tl_2009_26069_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/26_MICHIGAN/26071_Iron_County/tl_2009_26071_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/26_MICHIGAN/26073_Isabella_County/tl_2009_26073_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/26_MICHIGAN/26075_Jackson_County/tl_2009_26075_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/26_MICHIGAN/26077_Kalamazoo_County/tl_2009_26077_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/26_MICHIGAN/26079_Kalkaska_County/tl_2009_26079_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/26_MICHIGAN/26081_Kent_County/tl_2009_26081_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/26_MICHIGAN/26083_Keweenaw_County/tl_2009_26083_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/26_MICHIGAN/26085_Lake_County/tl_2009_26085_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/26_MICHIGAN/26087_Lapeer_County/tl_2009_26087_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/26_MICHIGAN/26089_Leelanau_County/tl_2009_26089_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/26_MICHIGAN/26091_Lenawee_County/tl_2009_26091_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/26_MICHIGAN/26093_Livingston_County/tl_2009_26093_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/26_MICHIGAN/26095_Luce_County/tl_2009_26095_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/26_MICHIGAN/26097_Mackinac_County/tl_2009_26097_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/26_MICHIGAN/26099_Macomb_County/tl_2009_26099_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/26_MICHIGAN/26101_Manistee_County/tl_2009_26101_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/26_MICHIGAN/26103_Marquette_County/tl_2009_26103_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/26_MICHIGAN/26105_Mason_County/tl_2009_26105_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/26_MICHIGAN/26107_Mecosta_County/tl_2009_26107_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/26_MICHIGAN/26109_Menominee_County/tl_2009_26109_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/26_MICHIGAN/26111_Midland_County/tl_2009_26111_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/26_MICHIGAN/26113_Missaukee_County/tl_2009_26113_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/26_MICHIGAN/26115_Monroe_County/tl_2009_26115_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/26_MICHIGAN/26117_Montcalm_County/tl_2009_26117_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/26_MICHIGAN/26119_Montmorency_County/tl_2009_26119_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/26_MICHIGAN/26121_Muskegon_County/tl_2009_26121_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/26_MICHIGAN/26123_Newaygo_County/tl_2009_26123_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/26_MICHIGAN/26125_Oakland_County/tl_2009_26125_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/26_MICHIGAN/26127_Oceana_County/tl_2009_26127_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/26_MICHIGAN/26129_Ogemaw_County/tl_2009_26129_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/26_MICHIGAN/26131_Ontonagon_County/tl_2009_26131_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/26_MICHIGAN/26133_Osceola_County/tl_2009_26133_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/26_MICHIGAN/26135_Oscoda_County/tl_2009_26135_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/26_MICHIGAN/26137_Otsego_County/tl_2009_26137_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/26_MICHIGAN/26139_Ottawa_County/tl_2009_26139_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/26_MICHIGAN/26141_Presque_Isle_County/tl_2009_26141_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/26_MICHIGAN/26143_Roscommon_County/tl_2009_26143_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/26_MICHIGAN/26145_Saginaw_County/tl_2009_26145_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/26_MICHIGAN/26147_St_Clair_County/tl_2009_26147_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/26_MICHIGAN/26149_St_Joseph_County/tl_2009_26149_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/26_MICHIGAN/26151_Sanilac_County/tl_2009_26151_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/26_MICHIGAN/26153_Schoolcraft_County/tl_2009_26153_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/26_MICHIGAN/26155_Shiawassee_County/tl_2009_26155_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/26_MICHIGAN/26157_Tuscola_County/tl_2009_26157_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/26_MICHIGAN/26159_Van_Buren_County/tl_2009_26159_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/26_MICHIGAN/26161_Washtenaw_County/tl_2009_26161_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/26_MICHIGAN/26163_Wayne_County/tl_2009_26163_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/26_MICHIGAN/26165_Wexford_County/tl_2009_26165_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/27_MINNESOTA/27001_Aitkin_County/tl_2009_27001_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/27_MINNESOTA/27003_Anoka_County/tl_2009_27003_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/27_MINNESOTA/27005_Becker_County/tl_2009_27005_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/27_MINNESOTA/27007_Beltrami_County/tl_2009_27007_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/27_MINNESOTA/27009_Benton_County/tl_2009_27009_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/27_MINNESOTA/27011_Big_Stone_County/tl_2009_27011_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/27_MINNESOTA/27013_Blue_Earth_County/tl_2009_27013_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/27_MINNESOTA/27015_Brown_County/tl_2009_27015_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/27_MINNESOTA/27017_Carlton_County/tl_2009_27017_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/27_MINNESOTA/27019_Carver_County/tl_2009_27019_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/27_MINNESOTA/27021_Cass_County/tl_2009_27021_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/27_MINNESOTA/27023_Chippewa_County/tl_2009_27023_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/27_MINNESOTA/27025_Chisago_County/tl_2009_27025_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/27_MINNESOTA/27027_Clay_County/tl_2009_27027_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/27_MINNESOTA/27029_Clearwater_County/tl_2009_27029_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/27_MINNESOTA/27031_Cook_County/tl_2009_27031_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/27_MINNESOTA/27033_Cottonwood_County/tl_2009_27033_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/27_MINNESOTA/27035_Crow_Wing_County/tl_2009_27035_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/27_MINNESOTA/27037_Dakota_County/tl_2009_27037_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/27_MINNESOTA/27039_Dodge_County/tl_2009_27039_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/27_MINNESOTA/27041_Douglas_County/tl_2009_27041_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/27_MINNESOTA/27043_Faribault_County/tl_2009_27043_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/27_MINNESOTA/27045_Fillmore_County/tl_2009_27045_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/27_MINNESOTA/27047_Freeborn_County/tl_2009_27047_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/27_MINNESOTA/27049_Goodhue_County/tl_2009_27049_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/27_MINNESOTA/27051_Grant_County/tl_2009_27051_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/27_MINNESOTA/27053_Hennepin_County/tl_2009_27053_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/27_MINNESOTA/27055_Houston_County/tl_2009_27055_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/27_MINNESOTA/27057_Hubbard_County/tl_2009_27057_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/27_MINNESOTA/27059_Isanti_County/tl_2009_27059_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/27_MINNESOTA/27061_Itasca_County/tl_2009_27061_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/27_MINNESOTA/27063_Jackson_County/tl_2009_27063_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/27_MINNESOTA/27065_Kanabec_County/tl_2009_27065_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/27_MINNESOTA/27067_Kandiyohi_County/tl_2009_27067_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/27_MINNESOTA/27069_Kittson_County/tl_2009_27069_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/27_MINNESOTA/27071_Koochiching_County/tl_2009_27071_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/27_MINNESOTA/27073_Lac_qui_Parle_County/tl_2009_27073_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/27_MINNESOTA/27075_Lake_County/tl_2009_27075_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/27_MINNESOTA/27077_Lake_of_the_Woods_County/tl_2009_27077_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/27_MINNESOTA/27079_Le_Sueur_County/tl_2009_27079_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/27_MINNESOTA/27081_Lincoln_County/tl_2009_27081_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/27_MINNESOTA/27083_Lyon_County/tl_2009_27083_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/27_MINNESOTA/27085_McLeod_County/tl_2009_27085_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/27_MINNESOTA/27087_Mahnomen_County/tl_2009_27087_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/27_MINNESOTA/27089_Marshall_County/tl_2009_27089_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/27_MINNESOTA/27091_Martin_County/tl_2009_27091_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/27_MINNESOTA/27093_Meeker_County/tl_2009_27093_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/27_MINNESOTA/27095_Mille_Lacs_County/tl_2009_27095_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/27_MINNESOTA/27097_Morrison_County/tl_2009_27097_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/27_MINNESOTA/27099_Mower_County/tl_2009_27099_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/27_MINNESOTA/27101_Murray_County/tl_2009_27101_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/27_MINNESOTA/27103_Nicollet_County/tl_2009_27103_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/27_MINNESOTA/27105_Nobles_County/tl_2009_27105_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/27_MINNESOTA/27107_Norman_County/tl_2009_27107_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/27_MINNESOTA/27109_Olmsted_County/tl_2009_27109_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/27_MINNESOTA/27111_Otter_Tail_County/tl_2009_27111_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/27_MINNESOTA/27113_Pennington_County/tl_2009_27113_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/27_MINNESOTA/27115_Pine_County/tl_2009_27115_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/27_MINNESOTA/27117_Pipestone_County/tl_2009_27117_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/27_MINNESOTA/27119_Polk_County/tl_2009_27119_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/27_MINNESOTA/27121_Pope_County/tl_2009_27121_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/27_MINNESOTA/27123_Ramsey_County/tl_2009_27123_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/27_MINNESOTA/27125_Red_Lake_County/tl_2009_27125_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/27_MINNESOTA/27127_Redwood_County/tl_2009_27127_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/27_MINNESOTA/27129_Renville_County/tl_2009_27129_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/27_MINNESOTA/27131_Rice_County/tl_2009_27131_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/27_MINNESOTA/27133_Rock_County/tl_2009_27133_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/27_MINNESOTA/27135_Roseau_County/tl_2009_27135_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/27_MINNESOTA/27137_St_Louis_County/tl_2009_27137_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/27_MINNESOTA/27139_Scott_County/tl_2009_27139_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/27_MINNESOTA/27141_Sherburne_County/tl_2009_27141_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/27_MINNESOTA/27143_Sibley_County/tl_2009_27143_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/27_MINNESOTA/27145_Stearns_County/tl_2009_27145_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/27_MINNESOTA/27147_Steele_County/tl_2009_27147_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/27_MINNESOTA/27149_Stevens_County/tl_2009_27149_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/27_MINNESOTA/27151_Swift_County/tl_2009_27151_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/27_MINNESOTA/27153_Todd_County/tl_2009_27153_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/27_MINNESOTA/27155_Traverse_County/tl_2009_27155_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/27_MINNESOTA/27157_Wabasha_County/tl_2009_27157_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/27_MINNESOTA/27159_Wadena_County/tl_2009_27159_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/27_MINNESOTA/27161_Waseca_County/tl_2009_27161_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/27_MINNESOTA/27163_Washington_County/tl_2009_27163_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/27_MINNESOTA/27165_Watonwan_County/tl_2009_27165_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/27_MINNESOTA/27167_Wilkin_County/tl_2009_27167_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/27_MINNESOTA/27169_Winona_County/tl_2009_27169_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/27_MINNESOTA/27171_Wright_County/tl_2009_27171_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/27_MINNESOTA/27173_Yellow_Medicine_County/tl_2009_27173_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/28_MISSISSIPPI/28001_Adams_County/tl_2009_28001_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/28_MISSISSIPPI/28003_Alcorn_County/tl_2009_28003_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/28_MISSISSIPPI/28005_Amite_County/tl_2009_28005_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/28_MISSISSIPPI/28007_Attala_County/tl_2009_28007_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/28_MISSISSIPPI/28009_Benton_County/tl_2009_28009_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/28_MISSISSIPPI/28011_Bolivar_County/tl_2009_28011_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/28_MISSISSIPPI/28013_Calhoun_County/tl_2009_28013_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/28_MISSISSIPPI/28015_Carroll_County/tl_2009_28015_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/28_MISSISSIPPI/28017_Chickasaw_County/tl_2009_28017_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/28_MISSISSIPPI/28019_Choctaw_County/tl_2009_28019_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/28_MISSISSIPPI/28021_Claiborne_County/tl_2009_28021_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/28_MISSISSIPPI/28023_Clarke_County/tl_2009_28023_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/28_MISSISSIPPI/28025_Clay_County/tl_2009_28025_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/28_MISSISSIPPI/28027_Coahoma_County/tl_2009_28027_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/28_MISSISSIPPI/28029_Copiah_County/tl_2009_28029_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/28_MISSISSIPPI/28031_Covington_County/tl_2009_28031_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/28_MISSISSIPPI/28033_DeSoto_County/tl_2009_28033_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/28_MISSISSIPPI/28035_Forrest_County/tl_2009_28035_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/28_MISSISSIPPI/28037_Franklin_County/tl_2009_28037_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/28_MISSISSIPPI/28039_George_County/tl_2009_28039_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/28_MISSISSIPPI/28041_Greene_County/tl_2009_28041_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/28_MISSISSIPPI/28043_Grenada_County/tl_2009_28043_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/28_MISSISSIPPI/28045_Hancock_County/tl_2009_28045_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/28_MISSISSIPPI/28047_Harrison_County/tl_2009_28047_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/28_MISSISSIPPI/28049_Hinds_County/tl_2009_28049_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/28_MISSISSIPPI/28051_Holmes_County/tl_2009_28051_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/28_MISSISSIPPI/28053_Humphreys_County/tl_2009_28053_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/28_MISSISSIPPI/28055_Issaquena_County/tl_2009_28055_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/28_MISSISSIPPI/28057_Itawamba_County/tl_2009_28057_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/28_MISSISSIPPI/28059_Jackson_County/tl_2009_28059_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/28_MISSISSIPPI/28061_Jasper_County/tl_2009_28061_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/28_MISSISSIPPI/28063_Jefferson_County/tl_2009_28063_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/28_MISSISSIPPI/28065_Jefferson_Davis_County/tl_2009_28065_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/28_MISSISSIPPI/28067_Jones_County/tl_2009_28067_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/28_MISSISSIPPI/28069_Kemper_County/tl_2009_28069_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/28_MISSISSIPPI/28071_Lafayette_County/tl_2009_28071_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/28_MISSISSIPPI/28073_Lamar_County/tl_2009_28073_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/28_MISSISSIPPI/28075_Lauderdale_County/tl_2009_28075_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/28_MISSISSIPPI/28077_Lawrence_County/tl_2009_28077_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/28_MISSISSIPPI/28079_Leake_County/tl_2009_28079_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/28_MISSISSIPPI/28081_Lee_County/tl_2009_28081_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/28_MISSISSIPPI/28083_Leflore_County/tl_2009_28083_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/28_MISSISSIPPI/28085_Lincoln_County/tl_2009_28085_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/28_MISSISSIPPI/28087_Lowndes_County/tl_2009_28087_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/28_MISSISSIPPI/28089_Madison_County/tl_2009_28089_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/28_MISSISSIPPI/28091_Marion_County/tl_2009_28091_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/28_MISSISSIPPI/28093_Marshall_County/tl_2009_28093_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/28_MISSISSIPPI/28095_Monroe_County/tl_2009_28095_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/28_MISSISSIPPI/28097_Montgomery_County/tl_2009_28097_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/28_MISSISSIPPI/28099_Neshoba_County/tl_2009_28099_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/28_MISSISSIPPI/28101_Newton_County/tl_2009_28101_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/28_MISSISSIPPI/28103_Noxubee_County/tl_2009_28103_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/28_MISSISSIPPI/28105_Oktibbeha_County/tl_2009_28105_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/28_MISSISSIPPI/28107_Panola_County/tl_2009_28107_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/28_MISSISSIPPI/28109_Pearl_River_County/tl_2009_28109_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/28_MISSISSIPPI/28111_Perry_County/tl_2009_28111_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/28_MISSISSIPPI/28113_Pike_County/tl_2009_28113_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/28_MISSISSIPPI/28115_Pontotoc_County/tl_2009_28115_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/28_MISSISSIPPI/28117_Prentiss_County/tl_2009_28117_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/28_MISSISSIPPI/28119_Quitman_County/tl_2009_28119_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/28_MISSISSIPPI/28121_Rankin_County/tl_2009_28121_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/28_MISSISSIPPI/28123_Scott_County/tl_2009_28123_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/28_MISSISSIPPI/28125_Sharkey_County/tl_2009_28125_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/28_MISSISSIPPI/28127_Simpson_County/tl_2009_28127_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/28_MISSISSIPPI/28129_Smith_County/tl_2009_28129_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/28_MISSISSIPPI/28131_Stone_County/tl_2009_28131_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/28_MISSISSIPPI/28133_Sunflower_County/tl_2009_28133_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/28_MISSISSIPPI/28135_Tallahatchie_County/tl_2009_28135_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/28_MISSISSIPPI/28137_Tate_County/tl_2009_28137_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/28_MISSISSIPPI/28139_Tippah_County/tl_2009_28139_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/28_MISSISSIPPI/28141_Tishomingo_County/tl_2009_28141_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/28_MISSISSIPPI/28143_Tunica_County/tl_2009_28143_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/28_MISSISSIPPI/28145_Union_County/tl_2009_28145_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/28_MISSISSIPPI/28147_Walthall_County/tl_2009_28147_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/28_MISSISSIPPI/28149_Warren_County/tl_2009_28149_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/28_MISSISSIPPI/28151_Washington_County/tl_2009_28151_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/28_MISSISSIPPI/28153_Wayne_County/tl_2009_28153_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/28_MISSISSIPPI/28155_Webster_County/tl_2009_28155_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/28_MISSISSIPPI/28157_Wilkinson_County/tl_2009_28157_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/28_MISSISSIPPI/28159_Winston_County/tl_2009_28159_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/28_MISSISSIPPI/28161_Yalobusha_County/tl_2009_28161_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/28_MISSISSIPPI/28163_Yazoo_County/tl_2009_28163_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29001_Adair_County/tl_2009_29001_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29003_Andrew_County/tl_2009_29003_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29005_Atchison_County/tl_2009_29005_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29007_Audrain_County/tl_2009_29007_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29009_Barry_County/tl_2009_29009_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29011_Barton_County/tl_2009_29011_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29013_Bates_County/tl_2009_29013_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29015_Benton_County/tl_2009_29015_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29017_Bollinger_County/tl_2009_29017_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29019_Boone_County/tl_2009_29019_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29021_Buchanan_County/tl_2009_29021_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29023_Butler_County/tl_2009_29023_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29025_Caldwell_County/tl_2009_29025_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29027_Callaway_County/tl_2009_29027_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29029_Camden_County/tl_2009_29029_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29031_Cape_Girardeau_County/tl_2009_29031_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29033_Carroll_County/tl_2009_29033_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29035_Carter_County/tl_2009_29035_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29037_Cass_County/tl_2009_29037_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29039_Cedar_County/tl_2009_29039_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29041_Chariton_County/tl_2009_29041_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29043_Christian_County/tl_2009_29043_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29045_Clark_County/tl_2009_29045_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29047_Clay_County/tl_2009_29047_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29049_Clinton_County/tl_2009_29049_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29051_Cole_County/tl_2009_29051_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29053_Cooper_County/tl_2009_29053_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29055_Crawford_County/tl_2009_29055_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29057_Dade_County/tl_2009_29057_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29059_Dallas_County/tl_2009_29059_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29061_Daviess_County/tl_2009_29061_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29063_DeKalb_County/tl_2009_29063_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29065_Dent_County/tl_2009_29065_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29067_Douglas_County/tl_2009_29067_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29069_Dunklin_County/tl_2009_29069_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29071_Franklin_County/tl_2009_29071_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29073_Gasconade_County/tl_2009_29073_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29075_Gentry_County/tl_2009_29075_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29077_Greene_County/tl_2009_29077_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29079_Grundy_County/tl_2009_29079_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29081_Harrison_County/tl_2009_29081_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29083_Henry_County/tl_2009_29083_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29085_Hickory_County/tl_2009_29085_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29087_Holt_County/tl_2009_29087_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29089_Howard_County/tl_2009_29089_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29091_Howell_County/tl_2009_29091_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29093_Iron_County/tl_2009_29093_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29095_Jackson_County/tl_2009_29095_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29097_Jasper_County/tl_2009_29097_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29099_Jefferson_County/tl_2009_29099_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29101_Johnson_County/tl_2009_29101_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29103_Knox_County/tl_2009_29103_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29105_Laclede_County/tl_2009_29105_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29107_Lafayette_County/tl_2009_29107_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29109_Lawrence_County/tl_2009_29109_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29111_Lewis_County/tl_2009_29111_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29113_Lincoln_County/tl_2009_29113_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29115_Linn_County/tl_2009_29115_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29117_Livingston_County/tl_2009_29117_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29119_McDonald_County/tl_2009_29119_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29121_Macon_County/tl_2009_29121_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29123_Madison_County/tl_2009_29123_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29125_Maries_County/tl_2009_29125_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29127_Marion_County/tl_2009_29127_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29129_Mercer_County/tl_2009_29129_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29131_Miller_County/tl_2009_29131_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29133_Mississippi_County/tl_2009_29133_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29135_Moniteau_County/tl_2009_29135_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29137_Monroe_County/tl_2009_29137_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29139_Montgomery_County/tl_2009_29139_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29141_Morgan_County/tl_2009_29141_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29143_New_Madrid_County/tl_2009_29143_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29145_Newton_County/tl_2009_29145_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29147_Nodaway_County/tl_2009_29147_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29149_Oregon_County/tl_2009_29149_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29151_Osage_County/tl_2009_29151_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29153_Ozark_County/tl_2009_29153_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29155_Pemiscot_County/tl_2009_29155_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29157_Perry_County/tl_2009_29157_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29159_Pettis_County/tl_2009_29159_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29161_Phelps_County/tl_2009_29161_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29163_Pike_County/tl_2009_29163_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29165_Platte_County/tl_2009_29165_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29167_Polk_County/tl_2009_29167_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29169_Pulaski_County/tl_2009_29169_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29171_Putnam_County/tl_2009_29171_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29173_Ralls_County/tl_2009_29173_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29175_Randolph_County/tl_2009_29175_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29177_Ray_County/tl_2009_29177_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29179_Reynolds_County/tl_2009_29179_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29181_Ripley_County/tl_2009_29181_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29183_St_Charles_County/tl_2009_29183_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29185_St_Clair_County/tl_2009_29185_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29186_Ste_Genevieve_County/tl_2009_29186_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29187_St_Francois_County/tl_2009_29187_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29189_St_Louis_County/tl_2009_29189_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29195_Saline_County/tl_2009_29195_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29197_Schuyler_County/tl_2009_29197_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29199_Scotland_County/tl_2009_29199_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29201_Scott_County/tl_2009_29201_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29203_Shannon_County/tl_2009_29203_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29205_Shelby_County/tl_2009_29205_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29207_Stoddard_County/tl_2009_29207_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29209_Stone_County/tl_2009_29209_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29211_Sullivan_County/tl_2009_29211_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29213_Taney_County/tl_2009_29213_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29215_Texas_County/tl_2009_29215_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29217_Vernon_County/tl_2009_29217_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29219_Warren_County/tl_2009_29219_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29221_Washington_County/tl_2009_29221_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29223_Wayne_County/tl_2009_29223_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29225_Webster_County/tl_2009_29225_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29227_Worth_County/tl_2009_29227_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29229_Wright_County/tl_2009_29229_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/29_MISSOURI/29510_St_Louis_city/tl_2009_29510_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/30_MONTANA/30001_Beaverhead_County/tl_2009_30001_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/30_MONTANA/30003_Big_Horn_County/tl_2009_30003_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/30_MONTANA/30005_Blaine_County/tl_2009_30005_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/30_MONTANA/30007_Broadwater_County/tl_2009_30007_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/30_MONTANA/30009_Carbon_County/tl_2009_30009_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/30_MONTANA/30011_Carter_County/tl_2009_30011_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/30_MONTANA/30013_Cascade_County/tl_2009_30013_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/30_MONTANA/30015_Chouteau_County/tl_2009_30015_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/30_MONTANA/30017_Custer_County/tl_2009_30017_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/30_MONTANA/30019_Daniels_County/tl_2009_30019_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/30_MONTANA/30021_Dawson_County/tl_2009_30021_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/30_MONTANA/30023_Deer_Lodge_County/tl_2009_30023_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/30_MONTANA/30025_Fallon_County/tl_2009_30025_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/30_MONTANA/30027_Fergus_County/tl_2009_30027_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/30_MONTANA/30029_Flathead_County/tl_2009_30029_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/30_MONTANA/30031_Gallatin_County/tl_2009_30031_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/30_MONTANA/30033_Garfield_County/tl_2009_30033_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/30_MONTANA/30035_Glacier_County/tl_2009_30035_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/30_MONTANA/30037_Golden_Valley_County/tl_2009_30037_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/30_MONTANA/30039_Granite_County/tl_2009_30039_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/30_MONTANA/30041_Hill_County/tl_2009_30041_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/30_MONTANA/30043_Jefferson_County/tl_2009_30043_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/30_MONTANA/30045_Judith_Basin_County/tl_2009_30045_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/30_MONTANA/30047_Lake_County/tl_2009_30047_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/30_MONTANA/30049_Lewis_and_Clark_County/tl_2009_30049_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/30_MONTANA/30051_Liberty_County/tl_2009_30051_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/30_MONTANA/30053_Lincoln_County/tl_2009_30053_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/30_MONTANA/30055_McCone_County/tl_2009_30055_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/30_MONTANA/30057_Madison_County/tl_2009_30057_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/30_MONTANA/30059_Meagher_County/tl_2009_30059_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/30_MONTANA/30061_Mineral_County/tl_2009_30061_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/30_MONTANA/30063_Missoula_County/tl_2009_30063_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/30_MONTANA/30065_Musselshell_County/tl_2009_30065_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/30_MONTANA/30067_Park_County/tl_2009_30067_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/30_MONTANA/30069_Petroleum_County/tl_2009_30069_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/30_MONTANA/30071_Phillips_County/tl_2009_30071_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/30_MONTANA/30073_Pondera_County/tl_2009_30073_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/30_MONTANA/30075_Powder_River_County/tl_2009_30075_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/30_MONTANA/30077_Powell_County/tl_2009_30077_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/30_MONTANA/30079_Prairie_County/tl_2009_30079_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/30_MONTANA/30081_Ravalli_County/tl_2009_30081_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/30_MONTANA/30083_Richland_County/tl_2009_30083_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/30_MONTANA/30085_Roosevelt_County/tl_2009_30085_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/30_MONTANA/30087_Rosebud_County/tl_2009_30087_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/30_MONTANA/30089_Sanders_County/tl_2009_30089_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/30_MONTANA/30091_Sheridan_County/tl_2009_30091_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/30_MONTANA/30093_Silver_Bow_County/tl_2009_30093_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/30_MONTANA/30095_Stillwater_County/tl_2009_30095_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/30_MONTANA/30097_Sweet_Grass_County/tl_2009_30097_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/30_MONTANA/30099_Teton_County/tl_2009_30099_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/30_MONTANA/30101_Toole_County/tl_2009_30101_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/30_MONTANA/30103_Treasure_County/tl_2009_30103_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/30_MONTANA/30105_Valley_County/tl_2009_30105_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/30_MONTANA/30107_Wheatland_County/tl_2009_30107_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/30_MONTANA/30109_Wibaux_County/tl_2009_30109_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/30_MONTANA/30111_Yellowstone_County/tl_2009_30111_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/31_NEBRASKA/31001_Adams_County/tl_2009_31001_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/31_NEBRASKA/31003_Antelope_County/tl_2009_31003_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/31_NEBRASKA/31005_Arthur_County/tl_2009_31005_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/31_NEBRASKA/31007_Banner_County/tl_2009_31007_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/31_NEBRASKA/31009_Blaine_County/tl_2009_31009_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/31_NEBRASKA/31011_Boone_County/tl_2009_31011_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/31_NEBRASKA/31013_Box_Butte_County/tl_2009_31013_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/31_NEBRASKA/31015_Boyd_County/tl_2009_31015_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/31_NEBRASKA/31017_Brown_County/tl_2009_31017_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/31_NEBRASKA/31019_Buffalo_County/tl_2009_31019_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/31_NEBRASKA/31021_Burt_County/tl_2009_31021_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/31_NEBRASKA/31023_Butler_County/tl_2009_31023_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/31_NEBRASKA/31025_Cass_County/tl_2009_31025_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/31_NEBRASKA/31027_Cedar_County/tl_2009_31027_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/31_NEBRASKA/31029_Chase_County/tl_2009_31029_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/31_NEBRASKA/31031_Cherry_County/tl_2009_31031_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/31_NEBRASKA/31033_Cheyenne_County/tl_2009_31033_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/31_NEBRASKA/31035_Clay_County/tl_2009_31035_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/31_NEBRASKA/31037_Colfax_County/tl_2009_31037_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/31_NEBRASKA/31039_Cuming_County/tl_2009_31039_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/31_NEBRASKA/31041_Custer_County/tl_2009_31041_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/31_NEBRASKA/31043_Dakota_County/tl_2009_31043_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/31_NEBRASKA/31045_Dawes_County/tl_2009_31045_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/31_NEBRASKA/31047_Dawson_County/tl_2009_31047_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/31_NEBRASKA/31049_Deuel_County/tl_2009_31049_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/31_NEBRASKA/31051_Dixon_County/tl_2009_31051_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/31_NEBRASKA/31053_Dodge_County/tl_2009_31053_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/31_NEBRASKA/31055_Douglas_County/tl_2009_31055_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/31_NEBRASKA/31057_Dundy_County/tl_2009_31057_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/31_NEBRASKA/31059_Fillmore_County/tl_2009_31059_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/31_NEBRASKA/31061_Franklin_County/tl_2009_31061_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/31_NEBRASKA/31063_Frontier_County/tl_2009_31063_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/31_NEBRASKA/31065_Furnas_County/tl_2009_31065_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/31_NEBRASKA/31067_Gage_County/tl_2009_31067_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/31_NEBRASKA/31069_Garden_County/tl_2009_31069_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/31_NEBRASKA/31071_Garfield_County/tl_2009_31071_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/31_NEBRASKA/31073_Gosper_County/tl_2009_31073_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/31_NEBRASKA/31075_Grant_County/tl_2009_31075_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/31_NEBRASKA/31077_Greeley_County/tl_2009_31077_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/31_NEBRASKA/31079_Hall_County/tl_2009_31079_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/31_NEBRASKA/31081_Hamilton_County/tl_2009_31081_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/31_NEBRASKA/31083_Harlan_County/tl_2009_31083_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/31_NEBRASKA/31085_Hayes_County/tl_2009_31085_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/31_NEBRASKA/31087_Hitchcock_County/tl_2009_31087_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/31_NEBRASKA/31089_Holt_County/tl_2009_31089_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/31_NEBRASKA/31091_Hooker_County/tl_2009_31091_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/31_NEBRASKA/31093_Howard_County/tl_2009_31093_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/31_NEBRASKA/31095_Jefferson_County/tl_2009_31095_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/31_NEBRASKA/31097_Johnson_County/tl_2009_31097_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/31_NEBRASKA/31099_Kearney_County/tl_2009_31099_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/31_NEBRASKA/31101_Keith_County/tl_2009_31101_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/31_NEBRASKA/31103_Keya_Paha_County/tl_2009_31103_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/31_NEBRASKA/31105_Kimball_County/tl_2009_31105_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/31_NEBRASKA/31107_Knox_County/tl_2009_31107_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/31_NEBRASKA/31109_Lancaster_County/tl_2009_31109_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/31_NEBRASKA/31111_Lincoln_County/tl_2009_31111_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/31_NEBRASKA/31113_Logan_County/tl_2009_31113_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/31_NEBRASKA/31115_Loup_County/tl_2009_31115_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/31_NEBRASKA/31117_McPherson_County/tl_2009_31117_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/31_NEBRASKA/31119_Madison_County/tl_2009_31119_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/31_NEBRASKA/31121_Merrick_County/tl_2009_31121_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/31_NEBRASKA/31123_Morrill_County/tl_2009_31123_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/31_NEBRASKA/31125_Nance_County/tl_2009_31125_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/31_NEBRASKA/31127_Nemaha_County/tl_2009_31127_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/31_NEBRASKA/31129_Nuckolls_County/tl_2009_31129_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/31_NEBRASKA/31131_Otoe_County/tl_2009_31131_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/31_NEBRASKA/31133_Pawnee_County/tl_2009_31133_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/31_NEBRASKA/31135_Perkins_County/tl_2009_31135_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/31_NEBRASKA/31137_Phelps_County/tl_2009_31137_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/31_NEBRASKA/31139_Pierce_County/tl_2009_31139_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/31_NEBRASKA/31141_Platte_County/tl_2009_31141_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/31_NEBRASKA/31143_Polk_County/tl_2009_31143_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/31_NEBRASKA/31145_Red_Willow_County/tl_2009_31145_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/31_NEBRASKA/31147_Richardson_County/tl_2009_31147_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/31_NEBRASKA/31149_Rock_County/tl_2009_31149_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/31_NEBRASKA/31151_Saline_County/tl_2009_31151_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/31_NEBRASKA/31153_Sarpy_County/tl_2009_31153_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/31_NEBRASKA/31155_Saunders_County/tl_2009_31155_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/31_NEBRASKA/31157_Scotts_Bluff_County/tl_2009_31157_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/31_NEBRASKA/31159_Seward_County/tl_2009_31159_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/31_NEBRASKA/31161_Sheridan_County/tl_2009_31161_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/31_NEBRASKA/31163_Sherman_County/tl_2009_31163_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/31_NEBRASKA/31165_Sioux_County/tl_2009_31165_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/31_NEBRASKA/31167_Stanton_County/tl_2009_31167_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/31_NEBRASKA/31169_Thayer_County/tl_2009_31169_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/31_NEBRASKA/31171_Thomas_County/tl_2009_31171_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/31_NEBRASKA/31173_Thurston_County/tl_2009_31173_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/31_NEBRASKA/31175_Valley_County/tl_2009_31175_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/31_NEBRASKA/31177_Washington_County/tl_2009_31177_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/31_NEBRASKA/31179_Wayne_County/tl_2009_31179_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/31_NEBRASKA/31181_Webster_County/tl_2009_31181_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/31_NEBRASKA/31183_Wheeler_County/tl_2009_31183_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/31_NEBRASKA/31185_York_County/tl_2009_31185_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/32_NEVADA/32001_Churchill_County/tl_2009_32001_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/32_NEVADA/32003_Clark_County/tl_2009_32003_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/32_NEVADA/32005_Douglas_County/tl_2009_32005_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/32_NEVADA/32007_Elko_County/tl_2009_32007_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/32_NEVADA/32009_Esmeralda_County/tl_2009_32009_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/32_NEVADA/32011_Eureka_County/tl_2009_32011_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/32_NEVADA/32013_Humboldt_County/tl_2009_32013_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/32_NEVADA/32015_Lander_County/tl_2009_32015_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/32_NEVADA/32017_Lincoln_County/tl_2009_32017_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/32_NEVADA/32019_Lyon_County/tl_2009_32019_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/32_NEVADA/32021_Mineral_County/tl_2009_32021_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/32_NEVADA/32023_Nye_County/tl_2009_32023_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/32_NEVADA/32027_Pershing_County/tl_2009_32027_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/32_NEVADA/32029_Storey_County/tl_2009_32029_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/32_NEVADA/32031_Washoe_County/tl_2009_32031_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/32_NEVADA/32033_White_Pine_County/tl_2009_32033_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/32_NEVADA/32510_Carson_City/tl_2009_32510_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/33_NEW_HAMPSHIRE/33001_Belknap_County/tl_2009_33001_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/33_NEW_HAMPSHIRE/33003_Carroll_County/tl_2009_33003_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/33_NEW_HAMPSHIRE/33005_Cheshire_County/tl_2009_33005_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/33_NEW_HAMPSHIRE/33007_Coos_County/tl_2009_33007_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/33_NEW_HAMPSHIRE/33009_Grafton_County/tl_2009_33009_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/33_NEW_HAMPSHIRE/33011_Hillsborough_County/tl_2009_33011_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/33_NEW_HAMPSHIRE/33013_Merrimack_County/tl_2009_33013_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/33_NEW_HAMPSHIRE/33015_Rockingham_County/tl_2009_33015_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/33_NEW_HAMPSHIRE/33017_Strafford_County/tl_2009_33017_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/33_NEW_HAMPSHIRE/33019_Sullivan_County/tl_2009_33019_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/34_NEW_JERSEY/34001_Atlantic_County/tl_2009_34001_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/34_NEW_JERSEY/34003_Bergen_County/tl_2009_34003_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/34_NEW_JERSEY/34005_Burlington_County/tl_2009_34005_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/34_NEW_JERSEY/34007_Camden_County/tl_2009_34007_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/34_NEW_JERSEY/34009_Cape_May_County/tl_2009_34009_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/34_NEW_JERSEY/34011_Cumberland_County/tl_2009_34011_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/34_NEW_JERSEY/34013_Essex_County/tl_2009_34013_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/34_NEW_JERSEY/34015_Gloucester_County/tl_2009_34015_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/34_NEW_JERSEY/34017_Hudson_County/tl_2009_34017_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/34_NEW_JERSEY/34019_Hunterdon_County/tl_2009_34019_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/34_NEW_JERSEY/34021_Mercer_County/tl_2009_34021_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/34_NEW_JERSEY/34023_Middlesex_County/tl_2009_34023_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/34_NEW_JERSEY/34025_Monmouth_County/tl_2009_34025_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/34_NEW_JERSEY/34027_Morris_County/tl_2009_34027_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/34_NEW_JERSEY/34029_Ocean_County/tl_2009_34029_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/34_NEW_JERSEY/34031_Passaic_County/tl_2009_34031_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/34_NEW_JERSEY/34033_Salem_County/tl_2009_34033_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/34_NEW_JERSEY/34035_Somerset_County/tl_2009_34035_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/34_NEW_JERSEY/34037_Sussex_County/tl_2009_34037_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/34_NEW_JERSEY/34039_Union_County/tl_2009_34039_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/34_NEW_JERSEY/34041_Warren_County/tl_2009_34041_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/35_NEW_MEXICO/35001_Bernalillo_County/tl_2009_35001_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/35_NEW_MEXICO/35003_Catron_County/tl_2009_35003_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/35_NEW_MEXICO/35005_Chaves_County/tl_2009_35005_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/35_NEW_MEXICO/35006_Cibola_County/tl_2009_35006_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/35_NEW_MEXICO/35007_Colfax_County/tl_2009_35007_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/35_NEW_MEXICO/35009_Curry_County/tl_2009_35009_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/35_NEW_MEXICO/35011_De_Baca_County/tl_2009_35011_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/35_NEW_MEXICO/35013_Dona_Ana_County/tl_2009_35013_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/35_NEW_MEXICO/35015_Eddy_County/tl_2009_35015_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/35_NEW_MEXICO/35017_Grant_County/tl_2009_35017_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/35_NEW_MEXICO/35019_Guadalupe_County/tl_2009_35019_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/35_NEW_MEXICO/35021_Harding_County/tl_2009_35021_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/35_NEW_MEXICO/35023_Hidalgo_County/tl_2009_35023_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/35_NEW_MEXICO/35025_Lea_County/tl_2009_35025_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/35_NEW_MEXICO/35027_Lincoln_County/tl_2009_35027_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/35_NEW_MEXICO/35028_Los_Alamos_County/tl_2009_35028_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/35_NEW_MEXICO/35029_Luna_County/tl_2009_35029_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/35_NEW_MEXICO/35031_McKinley_County/tl_2009_35031_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/35_NEW_MEXICO/35033_Mora_County/tl_2009_35033_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/35_NEW_MEXICO/35035_Otero_County/tl_2009_35035_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/35_NEW_MEXICO/35037_Quay_County/tl_2009_35037_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/35_NEW_MEXICO/35039_Rio_Arriba_County/tl_2009_35039_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/35_NEW_MEXICO/35041_Roosevelt_County/tl_2009_35041_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/35_NEW_MEXICO/35043_Sandoval_County/tl_2009_35043_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/35_NEW_MEXICO/35045_San_Juan_County/tl_2009_35045_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/35_NEW_MEXICO/35047_San_Miguel_County/tl_2009_35047_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/35_NEW_MEXICO/35049_Santa_Fe_County/tl_2009_35049_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/35_NEW_MEXICO/35051_Sierra_County/tl_2009_35051_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/35_NEW_MEXICO/35053_Socorro_County/tl_2009_35053_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/35_NEW_MEXICO/35055_Taos_County/tl_2009_35055_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/35_NEW_MEXICO/35057_Torrance_County/tl_2009_35057_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/35_NEW_MEXICO/35059_Union_County/tl_2009_35059_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/35_NEW_MEXICO/35061_Valencia_County/tl_2009_35061_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/36_NEW_YORK/36001_Albany_County/tl_2009_36001_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/36_NEW_YORK/36003_Allegany_County/tl_2009_36003_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/36_NEW_YORK/36005_Bronx_County/tl_2009_36005_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/36_NEW_YORK/36007_Broome_County/tl_2009_36007_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/36_NEW_YORK/36009_Cattaraugus_County/tl_2009_36009_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/36_NEW_YORK/36011_Cayuga_County/tl_2009_36011_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/36_NEW_YORK/36013_Chautauqua_County/tl_2009_36013_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/36_NEW_YORK/36015_Chemung_County/tl_2009_36015_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/36_NEW_YORK/36017_Chenango_County/tl_2009_36017_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/36_NEW_YORK/36019_Clinton_County/tl_2009_36019_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/36_NEW_YORK/36021_Columbia_County/tl_2009_36021_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/36_NEW_YORK/36023_Cortland_County/tl_2009_36023_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/36_NEW_YORK/36025_Delaware_County/tl_2009_36025_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/36_NEW_YORK/36027_Dutchess_County/tl_2009_36027_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/36_NEW_YORK/36029_Erie_County/tl_2009_36029_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/36_NEW_YORK/36031_Essex_County/tl_2009_36031_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/36_NEW_YORK/36033_Franklin_County/tl_2009_36033_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/36_NEW_YORK/36035_Fulton_County/tl_2009_36035_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/36_NEW_YORK/36037_Genesee_County/tl_2009_36037_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/36_NEW_YORK/36039_Greene_County/tl_2009_36039_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/36_NEW_YORK/36041_Hamilton_County/tl_2009_36041_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/36_NEW_YORK/36043_Herkimer_County/tl_2009_36043_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/36_NEW_YORK/36045_Jefferson_County/tl_2009_36045_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/36_NEW_YORK/36047_Kings_County/tl_2009_36047_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/36_NEW_YORK/36049_Lewis_County/tl_2009_36049_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/36_NEW_YORK/36051_Livingston_County/tl_2009_36051_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/36_NEW_YORK/36053_Madison_County/tl_2009_36053_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/36_NEW_YORK/36055_Monroe_County/tl_2009_36055_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/36_NEW_YORK/36057_Montgomery_County/tl_2009_36057_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/36_NEW_YORK/36059_Nassau_County/tl_2009_36059_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/36_NEW_YORK/36061_New_York_County/tl_2009_36061_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/36_NEW_YORK/36063_Niagara_County/tl_2009_36063_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/36_NEW_YORK/36065_Oneida_County/tl_2009_36065_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/36_NEW_YORK/36067_Onondaga_County/tl_2009_36067_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/36_NEW_YORK/36069_Ontario_County/tl_2009_36069_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/36_NEW_YORK/36071_Orange_County/tl_2009_36071_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/36_NEW_YORK/36073_Orleans_County/tl_2009_36073_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/36_NEW_YORK/36075_Oswego_County/tl_2009_36075_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/36_NEW_YORK/36077_Otsego_County/tl_2009_36077_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/36_NEW_YORK/36079_Putnam_County/tl_2009_36079_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/36_NEW_YORK/36081_Queens_County/tl_2009_36081_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/36_NEW_YORK/36083_Rensselaer_County/tl_2009_36083_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/36_NEW_YORK/36085_Richmond_County/tl_2009_36085_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/36_NEW_YORK/36087_Rockland_County/tl_2009_36087_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/36_NEW_YORK/36089_St_Lawrence_County/tl_2009_36089_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/36_NEW_YORK/36091_Saratoga_County/tl_2009_36091_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/36_NEW_YORK/36093_Schenectady_County/tl_2009_36093_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/36_NEW_YORK/36095_Schoharie_County/tl_2009_36095_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/36_NEW_YORK/36097_Schuyler_County/tl_2009_36097_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/36_NEW_YORK/36099_Seneca_County/tl_2009_36099_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/36_NEW_YORK/36101_Steuben_County/tl_2009_36101_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/36_NEW_YORK/36103_Suffolk_County/tl_2009_36103_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/36_NEW_YORK/36105_Sullivan_County/tl_2009_36105_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/36_NEW_YORK/36107_Tioga_County/tl_2009_36107_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/36_NEW_YORK/36109_Tompkins_County/tl_2009_36109_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/36_NEW_YORK/36111_Ulster_County/tl_2009_36111_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/36_NEW_YORK/36113_Warren_County/tl_2009_36113_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/36_NEW_YORK/36115_Washington_County/tl_2009_36115_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/36_NEW_YORK/36117_Wayne_County/tl_2009_36117_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/36_NEW_YORK/36119_Westchester_County/tl_2009_36119_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/36_NEW_YORK/36121_Wyoming_County/tl_2009_36121_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/36_NEW_YORK/36123_Yates_County/tl_2009_36123_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/37_NORTH_CAROLINA/37001_Alamance_County/tl_2009_37001_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/37_NORTH_CAROLINA/37003_Alexander_County/tl_2009_37003_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/37_NORTH_CAROLINA/37005_Alleghany_County/tl_2009_37005_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/37_NORTH_CAROLINA/37007_Anson_County/tl_2009_37007_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/37_NORTH_CAROLINA/37009_Ashe_County/tl_2009_37009_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/37_NORTH_CAROLINA/37011_Avery_County/tl_2009_37011_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/37_NORTH_CAROLINA/37013_Beaufort_County/tl_2009_37013_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/37_NORTH_CAROLINA/37015_Bertie_County/tl_2009_37015_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/37_NORTH_CAROLINA/37017_Bladen_County/tl_2009_37017_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/37_NORTH_CAROLINA/37019_Brunswick_County/tl_2009_37019_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/37_NORTH_CAROLINA/37021_Buncombe_County/tl_2009_37021_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/37_NORTH_CAROLINA/37023_Burke_County/tl_2009_37023_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/37_NORTH_CAROLINA/37025_Cabarrus_County/tl_2009_37025_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/37_NORTH_CAROLINA/37027_Caldwell_County/tl_2009_37027_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/37_NORTH_CAROLINA/37029_Camden_County/tl_2009_37029_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/37_NORTH_CAROLINA/37031_Carteret_County/tl_2009_37031_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/37_NORTH_CAROLINA/37033_Caswell_County/tl_2009_37033_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/37_NORTH_CAROLINA/37035_Catawba_County/tl_2009_37035_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/37_NORTH_CAROLINA/37037_Chatham_County/tl_2009_37037_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/37_NORTH_CAROLINA/37039_Cherokee_County/tl_2009_37039_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/37_NORTH_CAROLINA/37041_Chowan_County/tl_2009_37041_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/37_NORTH_CAROLINA/37043_Clay_County/tl_2009_37043_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/37_NORTH_CAROLINA/37045_Cleveland_County/tl_2009_37045_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/37_NORTH_CAROLINA/37047_Columbus_County/tl_2009_37047_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/37_NORTH_CAROLINA/37049_Craven_County/tl_2009_37049_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/37_NORTH_CAROLINA/37051_Cumberland_County/tl_2009_37051_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/37_NORTH_CAROLINA/37053_Currituck_County/tl_2009_37053_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/37_NORTH_CAROLINA/37055_Dare_County/tl_2009_37055_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/37_NORTH_CAROLINA/37057_Davidson_County/tl_2009_37057_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/37_NORTH_CAROLINA/37059_Davie_County/tl_2009_37059_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/37_NORTH_CAROLINA/37061_Duplin_County/tl_2009_37061_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/37_NORTH_CAROLINA/37063_Durham_County/tl_2009_37063_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/37_NORTH_CAROLINA/37065_Edgecombe_County/tl_2009_37065_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/37_NORTH_CAROLINA/37067_Forsyth_County/tl_2009_37067_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/37_NORTH_CAROLINA/37069_Franklin_County/tl_2009_37069_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/37_NORTH_CAROLINA/37071_Gaston_County/tl_2009_37071_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/37_NORTH_CAROLINA/37073_Gates_County/tl_2009_37073_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/37_NORTH_CAROLINA/37075_Graham_County/tl_2009_37075_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/37_NORTH_CAROLINA/37077_Granville_County/tl_2009_37077_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/37_NORTH_CAROLINA/37079_Greene_County/tl_2009_37079_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/37_NORTH_CAROLINA/37081_Guilford_County/tl_2009_37081_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/37_NORTH_CAROLINA/37083_Halifax_County/tl_2009_37083_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/37_NORTH_CAROLINA/37085_Harnett_County/tl_2009_37085_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/37_NORTH_CAROLINA/37087_Haywood_County/tl_2009_37087_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/37_NORTH_CAROLINA/37089_Henderson_County/tl_2009_37089_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/37_NORTH_CAROLINA/37091_Hertford_County/tl_2009_37091_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/37_NORTH_CAROLINA/37093_Hoke_County/tl_2009_37093_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/37_NORTH_CAROLINA/37095_Hyde_County/tl_2009_37095_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/37_NORTH_CAROLINA/37097_Iredell_County/tl_2009_37097_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/37_NORTH_CAROLINA/37099_Jackson_County/tl_2009_37099_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/37_NORTH_CAROLINA/37101_Johnston_County/tl_2009_37101_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/37_NORTH_CAROLINA/37103_Jones_County/tl_2009_37103_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/37_NORTH_CAROLINA/37105_Lee_County/tl_2009_37105_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/37_NORTH_CAROLINA/37107_Lenoir_County/tl_2009_37107_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/37_NORTH_CAROLINA/37109_Lincoln_County/tl_2009_37109_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/37_NORTH_CAROLINA/37111_McDowell_County/tl_2009_37111_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/37_NORTH_CAROLINA/37113_Macon_County/tl_2009_37113_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/37_NORTH_CAROLINA/37115_Madison_County/tl_2009_37115_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/37_NORTH_CAROLINA/37117_Martin_County/tl_2009_37117_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/37_NORTH_CAROLINA/37119_Mecklenburg_County/tl_2009_37119_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/37_NORTH_CAROLINA/37121_Mitchell_County/tl_2009_37121_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/37_NORTH_CAROLINA/37123_Montgomery_County/tl_2009_37123_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/37_NORTH_CAROLINA/37125_Moore_County/tl_2009_37125_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/37_NORTH_CAROLINA/37127_Nash_County/tl_2009_37127_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/37_NORTH_CAROLINA/37129_New_Hanover_County/tl_2009_37129_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/37_NORTH_CAROLINA/37131_Northampton_County/tl_2009_37131_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/37_NORTH_CAROLINA/37133_Onslow_County/tl_2009_37133_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/37_NORTH_CAROLINA/37135_Orange_County/tl_2009_37135_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/37_NORTH_CAROLINA/37137_Pamlico_County/tl_2009_37137_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/37_NORTH_CAROLINA/37139_Pasquotank_County/tl_2009_37139_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/37_NORTH_CAROLINA/37141_Pender_County/tl_2009_37141_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/37_NORTH_CAROLINA/37143_Perquimans_County/tl_2009_37143_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/37_NORTH_CAROLINA/37145_Person_County/tl_2009_37145_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/37_NORTH_CAROLINA/37147_Pitt_County/tl_2009_37147_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/37_NORTH_CAROLINA/37149_Polk_County/tl_2009_37149_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/37_NORTH_CAROLINA/37151_Randolph_County/tl_2009_37151_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/37_NORTH_CAROLINA/37153_Richmond_County/tl_2009_37153_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/37_NORTH_CAROLINA/37155_Robeson_County/tl_2009_37155_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/37_NORTH_CAROLINA/37157_Rockingham_County/tl_2009_37157_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/37_NORTH_CAROLINA/37159_Rowan_County/tl_2009_37159_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/37_NORTH_CAROLINA/37161_Rutherford_County/tl_2009_37161_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/37_NORTH_CAROLINA/37163_Sampson_County/tl_2009_37163_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/37_NORTH_CAROLINA/37165_Scotland_County/tl_2009_37165_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/37_NORTH_CAROLINA/37167_Stanly_County/tl_2009_37167_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/37_NORTH_CAROLINA/37169_Stokes_County/tl_2009_37169_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/37_NORTH_CAROLINA/37171_Surry_County/tl_2009_37171_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/37_NORTH_CAROLINA/37173_Swain_County/tl_2009_37173_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/37_NORTH_CAROLINA/37175_Transylvania_County/tl_2009_37175_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/37_NORTH_CAROLINA/37177_Tyrrell_County/tl_2009_37177_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/37_NORTH_CAROLINA/37179_Union_County/tl_2009_37179_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/37_NORTH_CAROLINA/37181_Vance_County/tl_2009_37181_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/37_NORTH_CAROLINA/37183_Wake_County/tl_2009_37183_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/37_NORTH_CAROLINA/37185_Warren_County/tl_2009_37185_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/37_NORTH_CAROLINA/37187_Washington_County/tl_2009_37187_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/37_NORTH_CAROLINA/37189_Watauga_County/tl_2009_37189_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/37_NORTH_CAROLINA/37191_Wayne_County/tl_2009_37191_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/37_NORTH_CAROLINA/37193_Wilkes_County/tl_2009_37193_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/37_NORTH_CAROLINA/37195_Wilson_County/tl_2009_37195_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/37_NORTH_CAROLINA/37197_Yadkin_County/tl_2009_37197_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/37_NORTH_CAROLINA/37199_Yancey_County/tl_2009_37199_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/38_NORTH_DAKOTA/38001_Adams_County/tl_2009_38001_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/38_NORTH_DAKOTA/38003_Barnes_County/tl_2009_38003_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/38_NORTH_DAKOTA/38005_Benson_County/tl_2009_38005_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/38_NORTH_DAKOTA/38007_Billings_County/tl_2009_38007_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/38_NORTH_DAKOTA/38009_Bottineau_County/tl_2009_38009_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/38_NORTH_DAKOTA/38011_Bowman_County/tl_2009_38011_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/38_NORTH_DAKOTA/38013_Burke_County/tl_2009_38013_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/38_NORTH_DAKOTA/38015_Burleigh_County/tl_2009_38015_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/38_NORTH_DAKOTA/38017_Cass_County/tl_2009_38017_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/38_NORTH_DAKOTA/38019_Cavalier_County/tl_2009_38019_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/38_NORTH_DAKOTA/38021_Dickey_County/tl_2009_38021_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/38_NORTH_DAKOTA/38023_Divide_County/tl_2009_38023_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/38_NORTH_DAKOTA/38025_Dunn_County/tl_2009_38025_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/38_NORTH_DAKOTA/38027_Eddy_County/tl_2009_38027_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/38_NORTH_DAKOTA/38029_Emmons_County/tl_2009_38029_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/38_NORTH_DAKOTA/38031_Foster_County/tl_2009_38031_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/38_NORTH_DAKOTA/38033_Golden_Valley_County/tl_2009_38033_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/38_NORTH_DAKOTA/38035_Grand_Forks_County/tl_2009_38035_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/38_NORTH_DAKOTA/38037_Grant_County/tl_2009_38037_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/38_NORTH_DAKOTA/38039_Griggs_County/tl_2009_38039_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/38_NORTH_DAKOTA/38041_Hettinger_County/tl_2009_38041_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/38_NORTH_DAKOTA/38043_Kidder_County/tl_2009_38043_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/38_NORTH_DAKOTA/38045_LaMoure_County/tl_2009_38045_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/38_NORTH_DAKOTA/38047_Logan_County/tl_2009_38047_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/38_NORTH_DAKOTA/38049_McHenry_County/tl_2009_38049_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/38_NORTH_DAKOTA/38051_McIntosh_County/tl_2009_38051_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/38_NORTH_DAKOTA/38053_McKenzie_County/tl_2009_38053_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/38_NORTH_DAKOTA/38055_McLean_County/tl_2009_38055_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/38_NORTH_DAKOTA/38057_Mercer_County/tl_2009_38057_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/38_NORTH_DAKOTA/38059_Morton_County/tl_2009_38059_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/38_NORTH_DAKOTA/38061_Mountrail_County/tl_2009_38061_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/38_NORTH_DAKOTA/38063_Nelson_County/tl_2009_38063_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/38_NORTH_DAKOTA/38065_Oliver_County/tl_2009_38065_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/38_NORTH_DAKOTA/38067_Pembina_County/tl_2009_38067_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/38_NORTH_DAKOTA/38069_Pierce_County/tl_2009_38069_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/38_NORTH_DAKOTA/38071_Ramsey_County/tl_2009_38071_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/38_NORTH_DAKOTA/38073_Ransom_County/tl_2009_38073_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/38_NORTH_DAKOTA/38075_Renville_County/tl_2009_38075_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/38_NORTH_DAKOTA/38077_Richland_County/tl_2009_38077_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/38_NORTH_DAKOTA/38079_Rolette_County/tl_2009_38079_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/38_NORTH_DAKOTA/38081_Sargent_County/tl_2009_38081_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/38_NORTH_DAKOTA/38083_Sheridan_County/tl_2009_38083_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/38_NORTH_DAKOTA/38085_Sioux_County/tl_2009_38085_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/38_NORTH_DAKOTA/38087_Slope_County/tl_2009_38087_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/38_NORTH_DAKOTA/38089_Stark_County/tl_2009_38089_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/38_NORTH_DAKOTA/38091_Steele_County/tl_2009_38091_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/38_NORTH_DAKOTA/38093_Stutsman_County/tl_2009_38093_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/38_NORTH_DAKOTA/38095_Towner_County/tl_2009_38095_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/38_NORTH_DAKOTA/38097_Traill_County/tl_2009_38097_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/38_NORTH_DAKOTA/38099_Walsh_County/tl_2009_38099_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/38_NORTH_DAKOTA/38101_Ward_County/tl_2009_38101_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/38_NORTH_DAKOTA/38103_Wells_County/tl_2009_38103_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/38_NORTH_DAKOTA/38105_Williams_County/tl_2009_38105_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/39_OHIO/39001_Adams_County/tl_2009_39001_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/39_OHIO/39003_Allen_County/tl_2009_39003_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/39_OHIO/39005_Ashland_County/tl_2009_39005_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/39_OHIO/39007_Ashtabula_County/tl_2009_39007_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/39_OHIO/39009_Athens_County/tl_2009_39009_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/39_OHIO/39011_Auglaize_County/tl_2009_39011_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/39_OHIO/39013_Belmont_County/tl_2009_39013_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/39_OHIO/39015_Brown_County/tl_2009_39015_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/39_OHIO/39017_Butler_County/tl_2009_39017_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/39_OHIO/39019_Carroll_County/tl_2009_39019_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/39_OHIO/39021_Champaign_County/tl_2009_39021_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/39_OHIO/39023_Clark_County/tl_2009_39023_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/39_OHIO/39025_Clermont_County/tl_2009_39025_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/39_OHIO/39027_Clinton_County/tl_2009_39027_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/39_OHIO/39029_Columbiana_County/tl_2009_39029_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/39_OHIO/39031_Coshocton_County/tl_2009_39031_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/39_OHIO/39033_Crawford_County/tl_2009_39033_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/39_OHIO/39035_Cuyahoga_County/tl_2009_39035_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/39_OHIO/39037_Darke_County/tl_2009_39037_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/39_OHIO/39039_Defiance_County/tl_2009_39039_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/39_OHIO/39041_Delaware_County/tl_2009_39041_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/39_OHIO/39043_Erie_County/tl_2009_39043_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/39_OHIO/39045_Fairfield_County/tl_2009_39045_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/39_OHIO/39047_Fayette_County/tl_2009_39047_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/39_OHIO/39049_Franklin_County/tl_2009_39049_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/39_OHIO/39051_Fulton_County/tl_2009_39051_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/39_OHIO/39053_Gallia_County/tl_2009_39053_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/39_OHIO/39055_Geauga_County/tl_2009_39055_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/39_OHIO/39057_Greene_County/tl_2009_39057_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/39_OHIO/39059_Guernsey_County/tl_2009_39059_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/39_OHIO/39061_Hamilton_County/tl_2009_39061_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/39_OHIO/39063_Hancock_County/tl_2009_39063_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/39_OHIO/39065_Hardin_County/tl_2009_39065_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/39_OHIO/39067_Harrison_County/tl_2009_39067_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/39_OHIO/39069_Henry_County/tl_2009_39069_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/39_OHIO/39071_Highland_County/tl_2009_39071_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/39_OHIO/39073_Hocking_County/tl_2009_39073_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/39_OHIO/39075_Holmes_County/tl_2009_39075_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/39_OHIO/39077_Huron_County/tl_2009_39077_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/39_OHIO/39079_Jackson_County/tl_2009_39079_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/39_OHIO/39081_Jefferson_County/tl_2009_39081_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/39_OHIO/39083_Knox_County/tl_2009_39083_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/39_OHIO/39085_Lake_County/tl_2009_39085_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/39_OHIO/39087_Lawrence_County/tl_2009_39087_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/39_OHIO/39089_Licking_County/tl_2009_39089_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/39_OHIO/39091_Logan_County/tl_2009_39091_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/39_OHIO/39093_Lorain_County/tl_2009_39093_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/39_OHIO/39095_Lucas_County/tl_2009_39095_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/39_OHIO/39097_Madison_County/tl_2009_39097_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/39_OHIO/39099_Mahoning_County/tl_2009_39099_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/39_OHIO/39101_Marion_County/tl_2009_39101_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/39_OHIO/39103_Medina_County/tl_2009_39103_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/39_OHIO/39105_Meigs_County/tl_2009_39105_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/39_OHIO/39107_Mercer_County/tl_2009_39107_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/39_OHIO/39109_Miami_County/tl_2009_39109_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/39_OHIO/39111_Monroe_County/tl_2009_39111_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/39_OHIO/39113_Montgomery_County/tl_2009_39113_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/39_OHIO/39115_Morgan_County/tl_2009_39115_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/39_OHIO/39117_Morrow_County/tl_2009_39117_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/39_OHIO/39119_Muskingum_County/tl_2009_39119_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/39_OHIO/39121_Noble_County/tl_2009_39121_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/39_OHIO/39123_Ottawa_County/tl_2009_39123_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/39_OHIO/39125_Paulding_County/tl_2009_39125_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/39_OHIO/39127_Perry_County/tl_2009_39127_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/39_OHIO/39129_Pickaway_County/tl_2009_39129_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/39_OHIO/39131_Pike_County/tl_2009_39131_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/39_OHIO/39133_Portage_County/tl_2009_39133_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/39_OHIO/39135_Preble_County/tl_2009_39135_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/39_OHIO/39137_Putnam_County/tl_2009_39137_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/39_OHIO/39139_Richland_County/tl_2009_39139_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/39_OHIO/39141_Ross_County/tl_2009_39141_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/39_OHIO/39143_Sandusky_County/tl_2009_39143_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/39_OHIO/39145_Scioto_County/tl_2009_39145_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/39_OHIO/39147_Seneca_County/tl_2009_39147_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/39_OHIO/39149_Shelby_County/tl_2009_39149_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/39_OHIO/39151_Stark_County/tl_2009_39151_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/39_OHIO/39153_Summit_County/tl_2009_39153_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/39_OHIO/39155_Trumbull_County/tl_2009_39155_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/39_OHIO/39157_Tuscarawas_County/tl_2009_39157_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/39_OHIO/39159_Union_County/tl_2009_39159_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/39_OHIO/39161_Van_Wert_County/tl_2009_39161_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/39_OHIO/39163_Vinton_County/tl_2009_39163_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/39_OHIO/39165_Warren_County/tl_2009_39165_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/39_OHIO/39167_Washington_County/tl_2009_39167_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/39_OHIO/39169_Wayne_County/tl_2009_39169_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/39_OHIO/39171_Williams_County/tl_2009_39171_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/39_OHIO/39173_Wood_County/tl_2009_39173_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/39_OHIO/39175_Wyandot_County/tl_2009_39175_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/40_OKLAHOMA/40001_Adair_County/tl_2009_40001_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/40_OKLAHOMA/40003_Alfalfa_County/tl_2009_40003_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/40_OKLAHOMA/40005_Atoka_County/tl_2009_40005_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/40_OKLAHOMA/40007_Beaver_County/tl_2009_40007_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/40_OKLAHOMA/40009_Beckham_County/tl_2009_40009_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/40_OKLAHOMA/40011_Blaine_County/tl_2009_40011_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/40_OKLAHOMA/40013_Bryan_County/tl_2009_40013_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/40_OKLAHOMA/40015_Caddo_County/tl_2009_40015_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/40_OKLAHOMA/40017_Canadian_County/tl_2009_40017_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/40_OKLAHOMA/40019_Carter_County/tl_2009_40019_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/40_OKLAHOMA/40021_Cherokee_County/tl_2009_40021_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/40_OKLAHOMA/40023_Choctaw_County/tl_2009_40023_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/40_OKLAHOMA/40025_Cimarron_County/tl_2009_40025_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/40_OKLAHOMA/40027_Cleveland_County/tl_2009_40027_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/40_OKLAHOMA/40029_Coal_County/tl_2009_40029_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/40_OKLAHOMA/40031_Comanche_County/tl_2009_40031_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/40_OKLAHOMA/40033_Cotton_County/tl_2009_40033_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/40_OKLAHOMA/40035_Craig_County/tl_2009_40035_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/40_OKLAHOMA/40037_Creek_County/tl_2009_40037_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/40_OKLAHOMA/40039_Custer_County/tl_2009_40039_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/40_OKLAHOMA/40041_Delaware_County/tl_2009_40041_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/40_OKLAHOMA/40043_Dewey_County/tl_2009_40043_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/40_OKLAHOMA/40045_Ellis_County/tl_2009_40045_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/40_OKLAHOMA/40047_Garfield_County/tl_2009_40047_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/40_OKLAHOMA/40049_Garvin_County/tl_2009_40049_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/40_OKLAHOMA/40051_Grady_County/tl_2009_40051_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/40_OKLAHOMA/40053_Grant_County/tl_2009_40053_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/40_OKLAHOMA/40055_Greer_County/tl_2009_40055_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/40_OKLAHOMA/40057_Harmon_County/tl_2009_40057_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/40_OKLAHOMA/40059_Harper_County/tl_2009_40059_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/40_OKLAHOMA/40061_Haskell_County/tl_2009_40061_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/40_OKLAHOMA/40063_Hughes_County/tl_2009_40063_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/40_OKLAHOMA/40065_Jackson_County/tl_2009_40065_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/40_OKLAHOMA/40067_Jefferson_County/tl_2009_40067_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/40_OKLAHOMA/40069_Johnston_County/tl_2009_40069_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/40_OKLAHOMA/40071_Kay_County/tl_2009_40071_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/40_OKLAHOMA/40073_Kingfisher_County/tl_2009_40073_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/40_OKLAHOMA/40075_Kiowa_County/tl_2009_40075_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/40_OKLAHOMA/40077_Latimer_County/tl_2009_40077_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/40_OKLAHOMA/40079_Le_Flore_County/tl_2009_40079_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/40_OKLAHOMA/40081_Lincoln_County/tl_2009_40081_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/40_OKLAHOMA/40083_Logan_County/tl_2009_40083_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/40_OKLAHOMA/40085_Love_County/tl_2009_40085_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/40_OKLAHOMA/40087_McClain_County/tl_2009_40087_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/40_OKLAHOMA/40089_McCurtain_County/tl_2009_40089_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/40_OKLAHOMA/40091_McIntosh_County/tl_2009_40091_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/40_OKLAHOMA/40093_Major_County/tl_2009_40093_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/40_OKLAHOMA/40095_Marshall_County/tl_2009_40095_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/40_OKLAHOMA/40097_Mayes_County/tl_2009_40097_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/40_OKLAHOMA/40099_Murray_County/tl_2009_40099_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/40_OKLAHOMA/40101_Muskogee_County/tl_2009_40101_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/40_OKLAHOMA/40103_Noble_County/tl_2009_40103_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/40_OKLAHOMA/40105_Nowata_County/tl_2009_40105_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/40_OKLAHOMA/40107_Okfuskee_County/tl_2009_40107_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/40_OKLAHOMA/40109_Oklahoma_County/tl_2009_40109_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/40_OKLAHOMA/40111_Okmulgee_County/tl_2009_40111_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/40_OKLAHOMA/40113_Osage_County/tl_2009_40113_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/40_OKLAHOMA/40115_Ottawa_County/tl_2009_40115_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/40_OKLAHOMA/40117_Pawnee_County/tl_2009_40117_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/40_OKLAHOMA/40119_Payne_County/tl_2009_40119_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/40_OKLAHOMA/40121_Pittsburg_County/tl_2009_40121_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/40_OKLAHOMA/40123_Pontotoc_County/tl_2009_40123_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/40_OKLAHOMA/40125_Pottawatomie_County/tl_2009_40125_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/40_OKLAHOMA/40127_Pushmataha_County/tl_2009_40127_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/40_OKLAHOMA/40129_Roger_Mills_County/tl_2009_40129_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/40_OKLAHOMA/40131_Rogers_County/tl_2009_40131_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/40_OKLAHOMA/40133_Seminole_County/tl_2009_40133_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/40_OKLAHOMA/40135_Sequoyah_County/tl_2009_40135_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/40_OKLAHOMA/40137_Stephens_County/tl_2009_40137_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/40_OKLAHOMA/40139_Texas_County/tl_2009_40139_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/40_OKLAHOMA/40141_Tillman_County/tl_2009_40141_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/40_OKLAHOMA/40143_Tulsa_County/tl_2009_40143_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/40_OKLAHOMA/40145_Wagoner_County/tl_2009_40145_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/40_OKLAHOMA/40147_Washington_County/tl_2009_40147_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/40_OKLAHOMA/40149_Washita_County/tl_2009_40149_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/40_OKLAHOMA/40151_Woods_County/tl_2009_40151_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/40_OKLAHOMA/40153_Woodward_County/tl_2009_40153_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/41_OREGON/41001_Baker_County/tl_2009_41001_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/41_OREGON/41003_Benton_County/tl_2009_41003_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/41_OREGON/41005_Clackamas_County/tl_2009_41005_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/41_OREGON/41007_Clatsop_County/tl_2009_41007_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/41_OREGON/41009_Columbia_County/tl_2009_41009_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/41_OREGON/41011_Coos_County/tl_2009_41011_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/41_OREGON/41013_Crook_County/tl_2009_41013_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/41_OREGON/41015_Curry_County/tl_2009_41015_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/41_OREGON/41017_Deschutes_County/tl_2009_41017_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/41_OREGON/41019_Douglas_County/tl_2009_41019_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/41_OREGON/41021_Gilliam_County/tl_2009_41021_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/41_OREGON/41023_Grant_County/tl_2009_41023_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/41_OREGON/41025_Harney_County/tl_2009_41025_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/41_OREGON/41027_Hood_River_County/tl_2009_41027_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/41_OREGON/41029_Jackson_County/tl_2009_41029_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/41_OREGON/41031_Jefferson_County/tl_2009_41031_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/41_OREGON/41033_Josephine_County/tl_2009_41033_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/41_OREGON/41035_Klamath_County/tl_2009_41035_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/41_OREGON/41037_Lake_County/tl_2009_41037_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/41_OREGON/41039_Lane_County/tl_2009_41039_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/41_OREGON/41041_Lincoln_County/tl_2009_41041_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/41_OREGON/41043_Linn_County/tl_2009_41043_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/41_OREGON/41045_Malheur_County/tl_2009_41045_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/41_OREGON/41047_Marion_County/tl_2009_41047_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/41_OREGON/41049_Morrow_County/tl_2009_41049_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/41_OREGON/41051_Multnomah_County/tl_2009_41051_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/41_OREGON/41053_Polk_County/tl_2009_41053_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/41_OREGON/41055_Sherman_County/tl_2009_41055_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/41_OREGON/41057_Tillamook_County/tl_2009_41057_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/41_OREGON/41059_Umatilla_County/tl_2009_41059_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/41_OREGON/41061_Union_County/tl_2009_41061_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/41_OREGON/41063_Wallowa_County/tl_2009_41063_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/41_OREGON/41065_Wasco_County/tl_2009_41065_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/41_OREGON/41067_Washington_County/tl_2009_41067_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/41_OREGON/41069_Wheeler_County/tl_2009_41069_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/41_OREGON/41071_Yamhill_County/tl_2009_41071_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/42_PENNSYLVANIA/42001_Adams_County/tl_2009_42001_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/42_PENNSYLVANIA/42003_Allegheny_County/tl_2009_42003_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/42_PENNSYLVANIA/42005_Armstrong_County/tl_2009_42005_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/42_PENNSYLVANIA/42007_Beaver_County/tl_2009_42007_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/42_PENNSYLVANIA/42009_Bedford_County/tl_2009_42009_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/42_PENNSYLVANIA/42011_Berks_County/tl_2009_42011_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/42_PENNSYLVANIA/42013_Blair_County/tl_2009_42013_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/42_PENNSYLVANIA/42015_Bradford_County/tl_2009_42015_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/42_PENNSYLVANIA/42017_Bucks_County/tl_2009_42017_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/42_PENNSYLVANIA/42019_Butler_County/tl_2009_42019_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/42_PENNSYLVANIA/42021_Cambria_County/tl_2009_42021_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/42_PENNSYLVANIA/42023_Cameron_County/tl_2009_42023_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/42_PENNSYLVANIA/42025_Carbon_County/tl_2009_42025_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/42_PENNSYLVANIA/42027_Centre_County/tl_2009_42027_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/42_PENNSYLVANIA/42029_Chester_County/tl_2009_42029_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/42_PENNSYLVANIA/42031_Clarion_County/tl_2009_42031_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/42_PENNSYLVANIA/42033_Clearfield_County/tl_2009_42033_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/42_PENNSYLVANIA/42035_Clinton_County/tl_2009_42035_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/42_PENNSYLVANIA/42037_Columbia_County/tl_2009_42037_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/42_PENNSYLVANIA/42039_Crawford_County/tl_2009_42039_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/42_PENNSYLVANIA/42041_Cumberland_County/tl_2009_42041_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/42_PENNSYLVANIA/42043_Dauphin_County/tl_2009_42043_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/42_PENNSYLVANIA/42045_Delaware_County/tl_2009_42045_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/42_PENNSYLVANIA/42047_Elk_County/tl_2009_42047_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/42_PENNSYLVANIA/42049_Erie_County/tl_2009_42049_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/42_PENNSYLVANIA/42051_Fayette_County/tl_2009_42051_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/42_PENNSYLVANIA/42053_Forest_County/tl_2009_42053_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/42_PENNSYLVANIA/42055_Franklin_County/tl_2009_42055_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/42_PENNSYLVANIA/42057_Fulton_County/tl_2009_42057_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/42_PENNSYLVANIA/42059_Greene_County/tl_2009_42059_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/42_PENNSYLVANIA/42061_Huntingdon_County/tl_2009_42061_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/42_PENNSYLVANIA/42063_Indiana_County/tl_2009_42063_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/42_PENNSYLVANIA/42065_Jefferson_County/tl_2009_42065_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/42_PENNSYLVANIA/42067_Juniata_County/tl_2009_42067_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/42_PENNSYLVANIA/42069_Lackawanna_County/tl_2009_42069_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/42_PENNSYLVANIA/42071_Lancaster_County/tl_2009_42071_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/42_PENNSYLVANIA/42073_Lawrence_County/tl_2009_42073_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/42_PENNSYLVANIA/42075_Lebanon_County/tl_2009_42075_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/42_PENNSYLVANIA/42077_Lehigh_County/tl_2009_42077_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/42_PENNSYLVANIA/42079_Luzerne_County/tl_2009_42079_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/42_PENNSYLVANIA/42081_Lycoming_County/tl_2009_42081_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/42_PENNSYLVANIA/42083_McKean_County/tl_2009_42083_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/42_PENNSYLVANIA/42085_Mercer_County/tl_2009_42085_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/42_PENNSYLVANIA/42087_Mifflin_County/tl_2009_42087_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/42_PENNSYLVANIA/42089_Monroe_County/tl_2009_42089_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/42_PENNSYLVANIA/42091_Montgomery_County/tl_2009_42091_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/42_PENNSYLVANIA/42093_Montour_County/tl_2009_42093_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/42_PENNSYLVANIA/42095_Northampton_County/tl_2009_42095_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/42_PENNSYLVANIA/42097_Northumberland_County/tl_2009_42097_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/42_PENNSYLVANIA/42099_Perry_County/tl_2009_42099_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/42_PENNSYLVANIA/42101_Philadelphia_County/tl_2009_42101_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/42_PENNSYLVANIA/42103_Pike_County/tl_2009_42103_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/42_PENNSYLVANIA/42105_Potter_County/tl_2009_42105_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/42_PENNSYLVANIA/42107_Schuylkill_County/tl_2009_42107_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/42_PENNSYLVANIA/42109_Snyder_County/tl_2009_42109_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/42_PENNSYLVANIA/42111_Somerset_County/tl_2009_42111_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/42_PENNSYLVANIA/42113_Sullivan_County/tl_2009_42113_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/42_PENNSYLVANIA/42115_Susquehanna_County/tl_2009_42115_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/42_PENNSYLVANIA/42117_Tioga_County/tl_2009_42117_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/42_PENNSYLVANIA/42119_Union_County/tl_2009_42119_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/42_PENNSYLVANIA/42121_Venango_County/tl_2009_42121_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/42_PENNSYLVANIA/42123_Warren_County/tl_2009_42123_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/42_PENNSYLVANIA/42125_Washington_County/tl_2009_42125_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/42_PENNSYLVANIA/42127_Wayne_County/tl_2009_42127_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/42_PENNSYLVANIA/42129_Westmoreland_County/tl_2009_42129_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/42_PENNSYLVANIA/42131_Wyoming_County/tl_2009_42131_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/42_PENNSYLVANIA/42133_York_County/tl_2009_42133_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/44_RHODE_ISLAND/44001_Bristol_County/tl_2009_44001_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/44_RHODE_ISLAND/44003_Kent_County/tl_2009_44003_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/44_RHODE_ISLAND/44005_Newport_County/tl_2009_44005_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/44_RHODE_ISLAND/44007_Providence_County/tl_2009_44007_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/44_RHODE_ISLAND/44009_Washington_County/tl_2009_44009_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/45_SOUTH_CAROLINA/45001_Abbeville_County/tl_2009_45001_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/45_SOUTH_CAROLINA/45003_Aiken_County/tl_2009_45003_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/45_SOUTH_CAROLINA/45005_Allendale_County/tl_2009_45005_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/45_SOUTH_CAROLINA/45007_Anderson_County/tl_2009_45007_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/45_SOUTH_CAROLINA/45009_Bamberg_County/tl_2009_45009_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/45_SOUTH_CAROLINA/45011_Barnwell_County/tl_2009_45011_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/45_SOUTH_CAROLINA/45013_Beaufort_County/tl_2009_45013_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/45_SOUTH_CAROLINA/45015_Berkeley_County/tl_2009_45015_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/45_SOUTH_CAROLINA/45017_Calhoun_County/tl_2009_45017_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/45_SOUTH_CAROLINA/45019_Charleston_County/tl_2009_45019_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/45_SOUTH_CAROLINA/45021_Cherokee_County/tl_2009_45021_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/45_SOUTH_CAROLINA/45023_Chester_County/tl_2009_45023_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/45_SOUTH_CAROLINA/45025_Chesterfield_County/tl_2009_45025_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/45_SOUTH_CAROLINA/45027_Clarendon_County/tl_2009_45027_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/45_SOUTH_CAROLINA/45029_Colleton_County/tl_2009_45029_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/45_SOUTH_CAROLINA/45031_Darlington_County/tl_2009_45031_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/45_SOUTH_CAROLINA/45033_Dillon_County/tl_2009_45033_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/45_SOUTH_CAROLINA/45035_Dorchester_County/tl_2009_45035_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/45_SOUTH_CAROLINA/45037_Edgefield_County/tl_2009_45037_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/45_SOUTH_CAROLINA/45039_Fairfield_County/tl_2009_45039_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/45_SOUTH_CAROLINA/45041_Florence_County/tl_2009_45041_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/45_SOUTH_CAROLINA/45043_Georgetown_County/tl_2009_45043_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/45_SOUTH_CAROLINA/45045_Greenville_County/tl_2009_45045_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/45_SOUTH_CAROLINA/45047_Greenwood_County/tl_2009_45047_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/45_SOUTH_CAROLINA/45049_Hampton_County/tl_2009_45049_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/45_SOUTH_CAROLINA/45051_Horry_County/tl_2009_45051_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/45_SOUTH_CAROLINA/45053_Jasper_County/tl_2009_45053_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/45_SOUTH_CAROLINA/45055_Kershaw_County/tl_2009_45055_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/45_SOUTH_CAROLINA/45057_Lancaster_County/tl_2009_45057_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/45_SOUTH_CAROLINA/45059_Laurens_County/tl_2009_45059_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/45_SOUTH_CAROLINA/45061_Lee_County/tl_2009_45061_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/45_SOUTH_CAROLINA/45063_Lexington_County/tl_2009_45063_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/45_SOUTH_CAROLINA/45065_McCormick_County/tl_2009_45065_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/45_SOUTH_CAROLINA/45067_Marion_County/tl_2009_45067_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/45_SOUTH_CAROLINA/45069_Marlboro_County/tl_2009_45069_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/45_SOUTH_CAROLINA/45071_Newberry_County/tl_2009_45071_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/45_SOUTH_CAROLINA/45073_Oconee_County/tl_2009_45073_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/45_SOUTH_CAROLINA/45075_Orangeburg_County/tl_2009_45075_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/45_SOUTH_CAROLINA/45077_Pickens_County/tl_2009_45077_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/45_SOUTH_CAROLINA/45079_Richland_County/tl_2009_45079_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/45_SOUTH_CAROLINA/45081_Saluda_County/tl_2009_45081_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/45_SOUTH_CAROLINA/45083_Spartanburg_County/tl_2009_45083_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/45_SOUTH_CAROLINA/45085_Sumter_County/tl_2009_45085_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/45_SOUTH_CAROLINA/45087_Union_County/tl_2009_45087_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/45_SOUTH_CAROLINA/45089_Williamsburg_County/tl_2009_45089_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/45_SOUTH_CAROLINA/45091_York_County/tl_2009_45091_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/46_SOUTH_DAKOTA/46003_Aurora_County/tl_2009_46003_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/46_SOUTH_DAKOTA/46005_Beadle_County/tl_2009_46005_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/46_SOUTH_DAKOTA/46007_Bennett_County/tl_2009_46007_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/46_SOUTH_DAKOTA/46009_Bon_Homme_County/tl_2009_46009_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/46_SOUTH_DAKOTA/46011_Brookings_County/tl_2009_46011_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/46_SOUTH_DAKOTA/46013_Brown_County/tl_2009_46013_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/46_SOUTH_DAKOTA/46015_Brule_County/tl_2009_46015_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/46_SOUTH_DAKOTA/46017_Buffalo_County/tl_2009_46017_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/46_SOUTH_DAKOTA/46019_Butte_County/tl_2009_46019_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/46_SOUTH_DAKOTA/46021_Campbell_County/tl_2009_46021_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/46_SOUTH_DAKOTA/46023_Charles_Mix_County/tl_2009_46023_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/46_SOUTH_DAKOTA/46025_Clark_County/tl_2009_46025_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/46_SOUTH_DAKOTA/46027_Clay_County/tl_2009_46027_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/46_SOUTH_DAKOTA/46029_Codington_County/tl_2009_46029_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/46_SOUTH_DAKOTA/46031_Corson_County/tl_2009_46031_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/46_SOUTH_DAKOTA/46033_Custer_County/tl_2009_46033_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/46_SOUTH_DAKOTA/46035_Davison_County/tl_2009_46035_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/46_SOUTH_DAKOTA/46037_Day_County/tl_2009_46037_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/46_SOUTH_DAKOTA/46039_Deuel_County/tl_2009_46039_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/46_SOUTH_DAKOTA/46041_Dewey_County/tl_2009_46041_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/46_SOUTH_DAKOTA/46043_Douglas_County/tl_2009_46043_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/46_SOUTH_DAKOTA/46045_Edmunds_County/tl_2009_46045_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/46_SOUTH_DAKOTA/46047_Fall_River_County/tl_2009_46047_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/46_SOUTH_DAKOTA/46049_Faulk_County/tl_2009_46049_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/46_SOUTH_DAKOTA/46051_Grant_County/tl_2009_46051_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/46_SOUTH_DAKOTA/46053_Gregory_County/tl_2009_46053_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/46_SOUTH_DAKOTA/46055_Haakon_County/tl_2009_46055_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/46_SOUTH_DAKOTA/46057_Hamlin_County/tl_2009_46057_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/46_SOUTH_DAKOTA/46059_Hand_County/tl_2009_46059_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/46_SOUTH_DAKOTA/46061_Hanson_County/tl_2009_46061_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/46_SOUTH_DAKOTA/46063_Harding_County/tl_2009_46063_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/46_SOUTH_DAKOTA/46065_Hughes_County/tl_2009_46065_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/46_SOUTH_DAKOTA/46067_Hutchinson_County/tl_2009_46067_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/46_SOUTH_DAKOTA/46069_Hyde_County/tl_2009_46069_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/46_SOUTH_DAKOTA/46071_Jackson_County/tl_2009_46071_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/46_SOUTH_DAKOTA/46073_Jerauld_County/tl_2009_46073_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/46_SOUTH_DAKOTA/46075_Jones_County/tl_2009_46075_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/46_SOUTH_DAKOTA/46077_Kingsbury_County/tl_2009_46077_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/46_SOUTH_DAKOTA/46079_Lake_County/tl_2009_46079_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/46_SOUTH_DAKOTA/46081_Lawrence_County/tl_2009_46081_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/46_SOUTH_DAKOTA/46083_Lincoln_County/tl_2009_46083_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/46_SOUTH_DAKOTA/46085_Lyman_County/tl_2009_46085_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/46_SOUTH_DAKOTA/46087_McCook_County/tl_2009_46087_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/46_SOUTH_DAKOTA/46089_McPherson_County/tl_2009_46089_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/46_SOUTH_DAKOTA/46091_Marshall_County/tl_2009_46091_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/46_SOUTH_DAKOTA/46093_Meade_County/tl_2009_46093_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/46_SOUTH_DAKOTA/46095_Mellette_County/tl_2009_46095_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/46_SOUTH_DAKOTA/46097_Miner_County/tl_2009_46097_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/46_SOUTH_DAKOTA/46099_Minnehaha_County/tl_2009_46099_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/46_SOUTH_DAKOTA/46101_Moody_County/tl_2009_46101_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/46_SOUTH_DAKOTA/46103_Pennington_County/tl_2009_46103_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/46_SOUTH_DAKOTA/46105_Perkins_County/tl_2009_46105_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/46_SOUTH_DAKOTA/46107_Potter_County/tl_2009_46107_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/46_SOUTH_DAKOTA/46109_Roberts_County/tl_2009_46109_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/46_SOUTH_DAKOTA/46111_Sanborn_County/tl_2009_46111_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/46_SOUTH_DAKOTA/46113_Shannon_County/tl_2009_46113_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/46_SOUTH_DAKOTA/46115_Spink_County/tl_2009_46115_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/46_SOUTH_DAKOTA/46117_Stanley_County/tl_2009_46117_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/46_SOUTH_DAKOTA/46119_Sully_County/tl_2009_46119_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/46_SOUTH_DAKOTA/46121_Todd_County/tl_2009_46121_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/46_SOUTH_DAKOTA/46123_Tripp_County/tl_2009_46123_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/46_SOUTH_DAKOTA/46125_Turner_County/tl_2009_46125_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/46_SOUTH_DAKOTA/46127_Union_County/tl_2009_46127_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/46_SOUTH_DAKOTA/46129_Walworth_County/tl_2009_46129_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/46_SOUTH_DAKOTA/46135_Yankton_County/tl_2009_46135_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/46_SOUTH_DAKOTA/46137_Ziebach_County/tl_2009_46137_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/47_TENNESSEE/47001_Anderson_County/tl_2009_47001_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/47_TENNESSEE/47003_Bedford_County/tl_2009_47003_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/47_TENNESSEE/47005_Benton_County/tl_2009_47005_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/47_TENNESSEE/47007_Bledsoe_County/tl_2009_47007_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/47_TENNESSEE/47009_Blount_County/tl_2009_47009_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/47_TENNESSEE/47011_Bradley_County/tl_2009_47011_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/47_TENNESSEE/47013_Campbell_County/tl_2009_47013_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/47_TENNESSEE/47015_Cannon_County/tl_2009_47015_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/47_TENNESSEE/47017_Carroll_County/tl_2009_47017_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/47_TENNESSEE/47019_Carter_County/tl_2009_47019_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/47_TENNESSEE/47021_Cheatham_County/tl_2009_47021_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/47_TENNESSEE/47023_Chester_County/tl_2009_47023_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/47_TENNESSEE/47025_Claiborne_County/tl_2009_47025_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/47_TENNESSEE/47027_Clay_County/tl_2009_47027_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/47_TENNESSEE/47029_Cocke_County/tl_2009_47029_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/47_TENNESSEE/47031_Coffee_County/tl_2009_47031_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/47_TENNESSEE/47033_Crockett_County/tl_2009_47033_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/47_TENNESSEE/47035_Cumberland_County/tl_2009_47035_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/47_TENNESSEE/47037_Davidson_County/tl_2009_47037_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/47_TENNESSEE/47039_Decatur_County/tl_2009_47039_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/47_TENNESSEE/47041_DeKalb_County/tl_2009_47041_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/47_TENNESSEE/47043_Dickson_County/tl_2009_47043_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/47_TENNESSEE/47045_Dyer_County/tl_2009_47045_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/47_TENNESSEE/47047_Fayette_County/tl_2009_47047_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/47_TENNESSEE/47049_Fentress_County/tl_2009_47049_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/47_TENNESSEE/47051_Franklin_County/tl_2009_47051_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/47_TENNESSEE/47053_Gibson_County/tl_2009_47053_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/47_TENNESSEE/47055_Giles_County/tl_2009_47055_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/47_TENNESSEE/47057_Grainger_County/tl_2009_47057_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/47_TENNESSEE/47059_Greene_County/tl_2009_47059_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/47_TENNESSEE/47061_Grundy_County/tl_2009_47061_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/47_TENNESSEE/47063_Hamblen_County/tl_2009_47063_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/47_TENNESSEE/47065_Hamilton_County/tl_2009_47065_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/47_TENNESSEE/47067_Hancock_County/tl_2009_47067_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/47_TENNESSEE/47069_Hardeman_County/tl_2009_47069_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/47_TENNESSEE/47071_Hardin_County/tl_2009_47071_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/47_TENNESSEE/47073_Hawkins_County/tl_2009_47073_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/47_TENNESSEE/47075_Haywood_County/tl_2009_47075_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/47_TENNESSEE/47077_Henderson_County/tl_2009_47077_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/47_TENNESSEE/47079_Henry_County/tl_2009_47079_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/47_TENNESSEE/47081_Hickman_County/tl_2009_47081_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/47_TENNESSEE/47083_Houston_County/tl_2009_47083_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/47_TENNESSEE/47085_Humphreys_County/tl_2009_47085_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/47_TENNESSEE/47087_Jackson_County/tl_2009_47087_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/47_TENNESSEE/47089_Jefferson_County/tl_2009_47089_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/47_TENNESSEE/47091_Johnson_County/tl_2009_47091_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/47_TENNESSEE/47093_Knox_County/tl_2009_47093_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/47_TENNESSEE/47095_Lake_County/tl_2009_47095_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/47_TENNESSEE/47097_Lauderdale_County/tl_2009_47097_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/47_TENNESSEE/47099_Lawrence_County/tl_2009_47099_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/47_TENNESSEE/47101_Lewis_County/tl_2009_47101_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/47_TENNESSEE/47103_Lincoln_County/tl_2009_47103_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/47_TENNESSEE/47105_Loudon_County/tl_2009_47105_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/47_TENNESSEE/47107_McMinn_County/tl_2009_47107_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/47_TENNESSEE/47109_McNairy_County/tl_2009_47109_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/47_TENNESSEE/47111_Macon_County/tl_2009_47111_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/47_TENNESSEE/47113_Madison_County/tl_2009_47113_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/47_TENNESSEE/47115_Marion_County/tl_2009_47115_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/47_TENNESSEE/47117_Marshall_County/tl_2009_47117_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/47_TENNESSEE/47119_Maury_County/tl_2009_47119_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/47_TENNESSEE/47121_Meigs_County/tl_2009_47121_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/47_TENNESSEE/47123_Monroe_County/tl_2009_47123_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/47_TENNESSEE/47125_Montgomery_County/tl_2009_47125_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/47_TENNESSEE/47127_Moore_County/tl_2009_47127_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/47_TENNESSEE/47129_Morgan_County/tl_2009_47129_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/47_TENNESSEE/47131_Obion_County/tl_2009_47131_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/47_TENNESSEE/47133_Overton_County/tl_2009_47133_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/47_TENNESSEE/47135_Perry_County/tl_2009_47135_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/47_TENNESSEE/47137_Pickett_County/tl_2009_47137_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/47_TENNESSEE/47139_Polk_County/tl_2009_47139_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/47_TENNESSEE/47141_Putnam_County/tl_2009_47141_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/47_TENNESSEE/47143_Rhea_County/tl_2009_47143_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/47_TENNESSEE/47145_Roane_County/tl_2009_47145_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/47_TENNESSEE/47147_Robertson_County/tl_2009_47147_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/47_TENNESSEE/47149_Rutherford_County/tl_2009_47149_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/47_TENNESSEE/47151_Scott_County/tl_2009_47151_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/47_TENNESSEE/47153_Sequatchie_County/tl_2009_47153_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/47_TENNESSEE/47155_Sevier_County/tl_2009_47155_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/47_TENNESSEE/47157_Shelby_County/tl_2009_47157_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/47_TENNESSEE/47159_Smith_County/tl_2009_47159_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/47_TENNESSEE/47161_Stewart_County/tl_2009_47161_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/47_TENNESSEE/47163_Sullivan_County/tl_2009_47163_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/47_TENNESSEE/47165_Sumner_County/tl_2009_47165_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/47_TENNESSEE/47167_Tipton_County/tl_2009_47167_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/47_TENNESSEE/47169_Trousdale_County/tl_2009_47169_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/47_TENNESSEE/47171_Unicoi_County/tl_2009_47171_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/47_TENNESSEE/47173_Union_County/tl_2009_47173_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/47_TENNESSEE/47175_Van_Buren_County/tl_2009_47175_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/47_TENNESSEE/47177_Warren_County/tl_2009_47177_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/47_TENNESSEE/47179_Washington_County/tl_2009_47179_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/47_TENNESSEE/47181_Wayne_County/tl_2009_47181_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/47_TENNESSEE/47183_Weakley_County/tl_2009_47183_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/47_TENNESSEE/47185_White_County/tl_2009_47185_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/47_TENNESSEE/47187_Williamson_County/tl_2009_47187_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/47_TENNESSEE/47189_Wilson_County/tl_2009_47189_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48001_Anderson_County/tl_2009_48001_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48003_Andrews_County/tl_2009_48003_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48005_Angelina_County/tl_2009_48005_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48007_Aransas_County/tl_2009_48007_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48009_Archer_County/tl_2009_48009_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48011_Armstrong_County/tl_2009_48011_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48013_Atascosa_County/tl_2009_48013_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48015_Austin_County/tl_2009_48015_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48017_Bailey_County/tl_2009_48017_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48019_Bandera_County/tl_2009_48019_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48021_Bastrop_County/tl_2009_48021_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48023_Baylor_County/tl_2009_48023_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48025_Bee_County/tl_2009_48025_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48027_Bell_County/tl_2009_48027_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48029_Bexar_County/tl_2009_48029_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48031_Blanco_County/tl_2009_48031_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48033_Borden_County/tl_2009_48033_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48035_Bosque_County/tl_2009_48035_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48037_Bowie_County/tl_2009_48037_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48039_Brazoria_County/tl_2009_48039_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48041_Brazos_County/tl_2009_48041_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48043_Brewster_County/tl_2009_48043_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48045_Briscoe_County/tl_2009_48045_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48047_Brooks_County/tl_2009_48047_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48049_Brown_County/tl_2009_48049_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48051_Burleson_County/tl_2009_48051_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48053_Burnet_County/tl_2009_48053_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48055_Caldwell_County/tl_2009_48055_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48057_Calhoun_County/tl_2009_48057_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48059_Callahan_County/tl_2009_48059_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48061_Cameron_County/tl_2009_48061_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48063_Camp_County/tl_2009_48063_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48065_Carson_County/tl_2009_48065_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48067_Cass_County/tl_2009_48067_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48069_Castro_County/tl_2009_48069_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48071_Chambers_County/tl_2009_48071_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48073_Cherokee_County/tl_2009_48073_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48075_Childress_County/tl_2009_48075_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48077_Clay_County/tl_2009_48077_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48079_Cochran_County/tl_2009_48079_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48081_Coke_County/tl_2009_48081_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48083_Coleman_County/tl_2009_48083_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48085_Collin_County/tl_2009_48085_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48087_Collingsworth_County/tl_2009_48087_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48089_Colorado_County/tl_2009_48089_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48091_Comal_County/tl_2009_48091_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48093_Comanche_County/tl_2009_48093_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48095_Concho_County/tl_2009_48095_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48097_Cooke_County/tl_2009_48097_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48099_Coryell_County/tl_2009_48099_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48101_Cottle_County/tl_2009_48101_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48103_Crane_County/tl_2009_48103_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48105_Crockett_County/tl_2009_48105_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48107_Crosby_County/tl_2009_48107_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48109_Culberson_County/tl_2009_48109_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48111_Dallam_County/tl_2009_48111_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48113_Dallas_County/tl_2009_48113_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48115_Dawson_County/tl_2009_48115_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48117_Deaf_Smith_County/tl_2009_48117_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48119_Delta_County/tl_2009_48119_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48121_Denton_County/tl_2009_48121_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48123_DeWitt_County/tl_2009_48123_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48125_Dickens_County/tl_2009_48125_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48127_Dimmit_County/tl_2009_48127_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48129_Donley_County/tl_2009_48129_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48131_Duval_County/tl_2009_48131_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48133_Eastland_County/tl_2009_48133_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48135_Ector_County/tl_2009_48135_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48137_Edwards_County/tl_2009_48137_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48139_Ellis_County/tl_2009_48139_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48141_El_Paso_County/tl_2009_48141_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48143_Erath_County/tl_2009_48143_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48145_Falls_County/tl_2009_48145_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48147_Fannin_County/tl_2009_48147_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48149_Fayette_County/tl_2009_48149_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48151_Fisher_County/tl_2009_48151_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48153_Floyd_County/tl_2009_48153_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48155_Foard_County/tl_2009_48155_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48157_Fort_Bend_County/tl_2009_48157_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48159_Franklin_County/tl_2009_48159_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48161_Freestone_County/tl_2009_48161_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48163_Frio_County/tl_2009_48163_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48165_Gaines_County/tl_2009_48165_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48167_Galveston_County/tl_2009_48167_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48169_Garza_County/tl_2009_48169_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48171_Gillespie_County/tl_2009_48171_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48173_Glasscock_County/tl_2009_48173_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48175_Goliad_County/tl_2009_48175_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48177_Gonzales_County/tl_2009_48177_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48179_Gray_County/tl_2009_48179_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48181_Grayson_County/tl_2009_48181_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48183_Gregg_County/tl_2009_48183_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48185_Grimes_County/tl_2009_48185_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48187_Guadalupe_County/tl_2009_48187_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48189_Hale_County/tl_2009_48189_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48191_Hall_County/tl_2009_48191_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48193_Hamilton_County/tl_2009_48193_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48195_Hansford_County/tl_2009_48195_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48197_Hardeman_County/tl_2009_48197_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48199_Hardin_County/tl_2009_48199_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48201_Harris_County/tl_2009_48201_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48203_Harrison_County/tl_2009_48203_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48205_Hartley_County/tl_2009_48205_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48207_Haskell_County/tl_2009_48207_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48209_Hays_County/tl_2009_48209_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48211_Hemphill_County/tl_2009_48211_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48213_Henderson_County/tl_2009_48213_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48215_Hidalgo_County/tl_2009_48215_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48217_Hill_County/tl_2009_48217_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48219_Hockley_County/tl_2009_48219_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48221_Hood_County/tl_2009_48221_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48223_Hopkins_County/tl_2009_48223_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48225_Houston_County/tl_2009_48225_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48227_Howard_County/tl_2009_48227_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48229_Hudspeth_County/tl_2009_48229_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48231_Hunt_County/tl_2009_48231_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48233_Hutchinson_County/tl_2009_48233_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48235_Irion_County/tl_2009_48235_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48237_Jack_County/tl_2009_48237_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48239_Jackson_County/tl_2009_48239_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48241_Jasper_County/tl_2009_48241_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48243_Jeff_Davis_County/tl_2009_48243_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48245_Jefferson_County/tl_2009_48245_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48247_Jim_Hogg_County/tl_2009_48247_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48249_Jim_Wells_County/tl_2009_48249_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48251_Johnson_County/tl_2009_48251_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48253_Jones_County/tl_2009_48253_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48255_Karnes_County/tl_2009_48255_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48257_Kaufman_County/tl_2009_48257_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48259_Kendall_County/tl_2009_48259_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48261_Kenedy_County/tl_2009_48261_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48263_Kent_County/tl_2009_48263_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48265_Kerr_County/tl_2009_48265_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48267_Kimble_County/tl_2009_48267_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48269_King_County/tl_2009_48269_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48271_Kinney_County/tl_2009_48271_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48273_Kleberg_County/tl_2009_48273_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48275_Knox_County/tl_2009_48275_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48277_Lamar_County/tl_2009_48277_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48279_Lamb_County/tl_2009_48279_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48281_Lampasas_County/tl_2009_48281_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48283_La_Salle_County/tl_2009_48283_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48285_Lavaca_County/tl_2009_48285_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48287_Lee_County/tl_2009_48287_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48289_Leon_County/tl_2009_48289_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48291_Liberty_County/tl_2009_48291_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48293_Limestone_County/tl_2009_48293_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48295_Lipscomb_County/tl_2009_48295_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48297_Live_Oak_County/tl_2009_48297_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48299_Llano_County/tl_2009_48299_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48301_Loving_County/tl_2009_48301_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48303_Lubbock_County/tl_2009_48303_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48305_Lynn_County/tl_2009_48305_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48307_McCulloch_County/tl_2009_48307_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48309_McLennan_County/tl_2009_48309_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48311_McMullen_County/tl_2009_48311_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48313_Madison_County/tl_2009_48313_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48315_Marion_County/tl_2009_48315_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48317_Martin_County/tl_2009_48317_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48319_Mason_County/tl_2009_48319_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48321_Matagorda_County/tl_2009_48321_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48323_Maverick_County/tl_2009_48323_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48325_Medina_County/tl_2009_48325_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48327_Menard_County/tl_2009_48327_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48329_Midland_County/tl_2009_48329_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48331_Milam_County/tl_2009_48331_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48333_Mills_County/tl_2009_48333_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48335_Mitchell_County/tl_2009_48335_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48337_Montague_County/tl_2009_48337_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48339_Montgomery_County/tl_2009_48339_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48341_Moore_County/tl_2009_48341_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48343_Morris_County/tl_2009_48343_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48345_Motley_County/tl_2009_48345_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48347_Nacogdoches_County/tl_2009_48347_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48349_Navarro_County/tl_2009_48349_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48351_Newton_County/tl_2009_48351_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48353_Nolan_County/tl_2009_48353_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48355_Nueces_County/tl_2009_48355_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48357_Ochiltree_County/tl_2009_48357_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48359_Oldham_County/tl_2009_48359_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48361_Orange_County/tl_2009_48361_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48363_Palo_Pinto_County/tl_2009_48363_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48365_Panola_County/tl_2009_48365_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48367_Parker_County/tl_2009_48367_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48369_Parmer_County/tl_2009_48369_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48371_Pecos_County/tl_2009_48371_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48373_Polk_County/tl_2009_48373_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48375_Potter_County/tl_2009_48375_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48377_Presidio_County/tl_2009_48377_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48379_Rains_County/tl_2009_48379_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48381_Randall_County/tl_2009_48381_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48383_Reagan_County/tl_2009_48383_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48385_Real_County/tl_2009_48385_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48387_Red_River_County/tl_2009_48387_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48389_Reeves_County/tl_2009_48389_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48391_Refugio_County/tl_2009_48391_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48393_Roberts_County/tl_2009_48393_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48395_Robertson_County/tl_2009_48395_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48397_Rockwall_County/tl_2009_48397_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48399_Runnels_County/tl_2009_48399_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48401_Rusk_County/tl_2009_48401_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48403_Sabine_County/tl_2009_48403_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48405_San_Augustine_County/tl_2009_48405_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48407_San_Jacinto_County/tl_2009_48407_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48409_San_Patricio_County/tl_2009_48409_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48411_San_Saba_County/tl_2009_48411_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48413_Schleicher_County/tl_2009_48413_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48415_Scurry_County/tl_2009_48415_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48417_Shackelford_County/tl_2009_48417_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48419_Shelby_County/tl_2009_48419_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48421_Sherman_County/tl_2009_48421_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48423_Smith_County/tl_2009_48423_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48425_Somervell_County/tl_2009_48425_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48427_Starr_County/tl_2009_48427_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48429_Stephens_County/tl_2009_48429_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48431_Sterling_County/tl_2009_48431_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48433_Stonewall_County/tl_2009_48433_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48435_Sutton_County/tl_2009_48435_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48437_Swisher_County/tl_2009_48437_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48439_Tarrant_County/tl_2009_48439_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48441_Taylor_County/tl_2009_48441_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48443_Terrell_County/tl_2009_48443_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48445_Terry_County/tl_2009_48445_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48447_Throckmorton_County/tl_2009_48447_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48449_Titus_County/tl_2009_48449_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48451_Tom_Green_County/tl_2009_48451_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48453_Travis_County/tl_2009_48453_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48455_Trinity_County/tl_2009_48455_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48457_Tyler_County/tl_2009_48457_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48459_Upshur_County/tl_2009_48459_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48461_Upton_County/tl_2009_48461_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48463_Uvalde_County/tl_2009_48463_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48465_Val_Verde_County/tl_2009_48465_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48467_Van_Zandt_County/tl_2009_48467_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48469_Victoria_County/tl_2009_48469_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48471_Walker_County/tl_2009_48471_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48473_Waller_County/tl_2009_48473_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48475_Ward_County/tl_2009_48475_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48477_Washington_County/tl_2009_48477_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48479_Webb_County/tl_2009_48479_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48481_Wharton_County/tl_2009_48481_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48483_Wheeler_County/tl_2009_48483_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48485_Wichita_County/tl_2009_48485_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48487_Wilbarger_County/tl_2009_48487_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48489_Willacy_County/tl_2009_48489_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48491_Williamson_County/tl_2009_48491_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48493_Wilson_County/tl_2009_48493_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48495_Winkler_County/tl_2009_48495_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48497_Wise_County/tl_2009_48497_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48499_Wood_County/tl_2009_48499_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48501_Yoakum_County/tl_2009_48501_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48503_Young_County/tl_2009_48503_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48505_Zapata_County/tl_2009_48505_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/48_TEXAS/48507_Zavala_County/tl_2009_48507_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/49_UTAH/49001_Beaver_County/tl_2009_49001_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/49_UTAH/49003_Box_Elder_County/tl_2009_49003_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/49_UTAH/49005_Cache_County/tl_2009_49005_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/49_UTAH/49007_Carbon_County/tl_2009_49007_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/49_UTAH/49009_Daggett_County/tl_2009_49009_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/49_UTAH/49011_Davis_County/tl_2009_49011_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/49_UTAH/49013_Duchesne_County/tl_2009_49013_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/49_UTAH/49015_Emery_County/tl_2009_49015_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/49_UTAH/49017_Garfield_County/tl_2009_49017_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/49_UTAH/49019_Grand_County/tl_2009_49019_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/49_UTAH/49021_Iron_County/tl_2009_49021_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/49_UTAH/49023_Juab_County/tl_2009_49023_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/49_UTAH/49025_Kane_County/tl_2009_49025_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/49_UTAH/49027_Millard_County/tl_2009_49027_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/49_UTAH/49029_Morgan_County/tl_2009_49029_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/49_UTAH/49031_Piute_County/tl_2009_49031_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/49_UTAH/49033_Rich_County/tl_2009_49033_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/49_UTAH/49035_Salt_Lake_County/tl_2009_49035_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/49_UTAH/49037_San_Juan_County/tl_2009_49037_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/49_UTAH/49039_Sanpete_County/tl_2009_49039_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/49_UTAH/49041_Sevier_County/tl_2009_49041_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/49_UTAH/49043_Summit_County/tl_2009_49043_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/49_UTAH/49045_Tooele_County/tl_2009_49045_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/49_UTAH/49047_Uintah_County/tl_2009_49047_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/49_UTAH/49049_Utah_County/tl_2009_49049_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/49_UTAH/49051_Wasatch_County/tl_2009_49051_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/49_UTAH/49053_Washington_County/tl_2009_49053_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/49_UTAH/49055_Wayne_County/tl_2009_49055_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/49_UTAH/49057_Weber_County/tl_2009_49057_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/50_VERMONT/50001_Addison_County/tl_2009_50001_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/50_VERMONT/50003_Bennington_County/tl_2009_50003_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/50_VERMONT/50005_Caledonia_County/tl_2009_50005_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/50_VERMONT/50007_Chittenden_County/tl_2009_50007_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/50_VERMONT/50009_Essex_County/tl_2009_50009_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/50_VERMONT/50011_Franklin_County/tl_2009_50011_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/50_VERMONT/50013_Grand_Isle_County/tl_2009_50013_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/50_VERMONT/50015_Lamoille_County/tl_2009_50015_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/50_VERMONT/50017_Orange_County/tl_2009_50017_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/50_VERMONT/50019_Orleans_County/tl_2009_50019_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/50_VERMONT/50021_Rutland_County/tl_2009_50021_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/50_VERMONT/50023_Washington_County/tl_2009_50023_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/50_VERMONT/50025_Windham_County/tl_2009_50025_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/50_VERMONT/50027_Windsor_County/tl_2009_50027_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51001_Accomack_County/tl_2009_51001_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51003_Albemarle_County/tl_2009_51003_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51005_Alleghany_County/tl_2009_51005_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51007_Amelia_County/tl_2009_51007_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51009_Amherst_County/tl_2009_51009_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51011_Appomattox_County/tl_2009_51011_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51013_Arlington_County/tl_2009_51013_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51015_Augusta_County/tl_2009_51015_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51017_Bath_County/tl_2009_51017_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51019_Bedford_County/tl_2009_51019_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51021_Bland_County/tl_2009_51021_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51023_Botetourt_County/tl_2009_51023_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51025_Brunswick_County/tl_2009_51025_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51027_Buchanan_County/tl_2009_51027_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51029_Buckingham_County/tl_2009_51029_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51031_Campbell_County/tl_2009_51031_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51033_Caroline_County/tl_2009_51033_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51035_Carroll_County/tl_2009_51035_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51036_Charles_City_County/tl_2009_51036_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51037_Charlotte_County/tl_2009_51037_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51041_Chesterfield_County/tl_2009_51041_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51043_Clarke_County/tl_2009_51043_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51045_Craig_County/tl_2009_51045_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51047_Culpeper_County/tl_2009_51047_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51049_Cumberland_County/tl_2009_51049_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51051_Dickenson_County/tl_2009_51051_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51053_Dinwiddie_County/tl_2009_51053_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51057_Essex_County/tl_2009_51057_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51059_Fairfax_County/tl_2009_51059_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51061_Fauquier_County/tl_2009_51061_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51063_Floyd_County/tl_2009_51063_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51065_Fluvanna_County/tl_2009_51065_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51067_Franklin_County/tl_2009_51067_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51069_Frederick_County/tl_2009_51069_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51071_Giles_County/tl_2009_51071_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51073_Gloucester_County/tl_2009_51073_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51075_Goochland_County/tl_2009_51075_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51077_Grayson_County/tl_2009_51077_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51079_Greene_County/tl_2009_51079_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51081_Greensville_County/tl_2009_51081_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51083_Halifax_County/tl_2009_51083_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51085_Hanover_County/tl_2009_51085_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51087_Henrico_County/tl_2009_51087_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51089_Henry_County/tl_2009_51089_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51091_Highland_County/tl_2009_51091_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51093_Isle_of_Wight_County/tl_2009_51093_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51095_James_City_County/tl_2009_51095_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51097_King_and_Queen_County/tl_2009_51097_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51099_King_George_County/tl_2009_51099_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51101_King_William_County/tl_2009_51101_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51103_Lancaster_County/tl_2009_51103_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51105_Lee_County/tl_2009_51105_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51107_Loudoun_County/tl_2009_51107_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51109_Louisa_County/tl_2009_51109_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51111_Lunenburg_County/tl_2009_51111_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51113_Madison_County/tl_2009_51113_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51115_Mathews_County/tl_2009_51115_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51117_Mecklenburg_County/tl_2009_51117_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51119_Middlesex_County/tl_2009_51119_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51121_Montgomery_County/tl_2009_51121_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51125_Nelson_County/tl_2009_51125_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51127_New_Kent_County/tl_2009_51127_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51131_Northampton_County/tl_2009_51131_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51133_Northumberland_County/tl_2009_51133_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51135_Nottoway_County/tl_2009_51135_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51137_Orange_County/tl_2009_51137_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51139_Page_County/tl_2009_51139_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51141_Patrick_County/tl_2009_51141_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51143_Pittsylvania_County/tl_2009_51143_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51145_Powhatan_County/tl_2009_51145_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51147_Prince_Edward_County/tl_2009_51147_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51149_Prince_George_County/tl_2009_51149_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51153_Prince_William_County/tl_2009_51153_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51155_Pulaski_County/tl_2009_51155_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51157_Rappahannock_County/tl_2009_51157_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51159_Richmond_County/tl_2009_51159_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51161_Roanoke_County/tl_2009_51161_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51163_Rockbridge_County/tl_2009_51163_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51165_Rockingham_County/tl_2009_51165_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51167_Russell_County/tl_2009_51167_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51169_Scott_County/tl_2009_51169_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51171_Shenandoah_County/tl_2009_51171_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51173_Smyth_County/tl_2009_51173_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51175_Southampton_County/tl_2009_51175_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51177_Spotsylvania_County/tl_2009_51177_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51179_Stafford_County/tl_2009_51179_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51181_Surry_County/tl_2009_51181_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51183_Sussex_County/tl_2009_51183_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51185_Tazewell_County/tl_2009_51185_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51187_Warren_County/tl_2009_51187_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51191_Washington_County/tl_2009_51191_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51193_Westmoreland_County/tl_2009_51193_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51195_Wise_County/tl_2009_51195_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51197_Wythe_County/tl_2009_51197_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51199_York_County/tl_2009_51199_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51510_Alexandria_city/tl_2009_51510_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51515_Bedford_city/tl_2009_51515_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51520_Bristol_city/tl_2009_51520_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51530_Buena_Vista_city/tl_2009_51530_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51540_Charlottesville_city/tl_2009_51540_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51550_Chesapeake_city/tl_2009_51550_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51570_Colonial_Heights_city/tl_2009_51570_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51580_Covington_city/tl_2009_51580_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51590_Danville_city/tl_2009_51590_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51595_Emporia_city/tl_2009_51595_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51600_Fairfax_city/tl_2009_51600_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51610_Falls_Church_city/tl_2009_51610_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51620_Franklin_city/tl_2009_51620_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51630_Fredericksburg_city/tl_2009_51630_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51640_Galax_city/tl_2009_51640_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51650_Hampton_city/tl_2009_51650_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51660_Harrisonburg_city/tl_2009_51660_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51670_Hopewell_city/tl_2009_51670_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51678_Lexington_city/tl_2009_51678_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51680_Lynchburg_city/tl_2009_51680_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51683_Manassas_city/tl_2009_51683_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51685_Manassas_Park_city/tl_2009_51685_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51690_Martinsville_city/tl_2009_51690_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51700_Newport_News_city/tl_2009_51700_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51710_Norfolk_city/tl_2009_51710_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51720_Norton_city/tl_2009_51720_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51730_Petersburg_city/tl_2009_51730_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51735_Poquoson_city/tl_2009_51735_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51740_Portsmouth_city/tl_2009_51740_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51750_Radford_city/tl_2009_51750_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51760_Richmond_city/tl_2009_51760_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51770_Roanoke_city/tl_2009_51770_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51775_Salem_city/tl_2009_51775_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51790_Staunton_city/tl_2009_51790_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51800_Suffolk_city/tl_2009_51800_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51810_Virginia_Beach_city/tl_2009_51810_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51820_Waynesboro_city/tl_2009_51820_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51830_Williamsburg_city/tl_2009_51830_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/51_VIRGINIA/51840_Winchester_city/tl_2009_51840_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/53_WASHINGTON/53001_Adams_County/tl_2009_53001_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/53_WASHINGTON/53003_Asotin_County/tl_2009_53003_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/53_WASHINGTON/53005_Benton_County/tl_2009_53005_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/53_WASHINGTON/53007_Chelan_County/tl_2009_53007_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/53_WASHINGTON/53009_Clallam_County/tl_2009_53009_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/53_WASHINGTON/53011_Clark_County/tl_2009_53011_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/53_WASHINGTON/53013_Columbia_County/tl_2009_53013_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/53_WASHINGTON/53015_Cowlitz_County/tl_2009_53015_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/53_WASHINGTON/53017_Douglas_County/tl_2009_53017_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/53_WASHINGTON/53019_Ferry_County/tl_2009_53019_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/53_WASHINGTON/53021_Franklin_County/tl_2009_53021_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/53_WASHINGTON/53023_Garfield_County/tl_2009_53023_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/53_WASHINGTON/53025_Grant_County/tl_2009_53025_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/53_WASHINGTON/53027_Grays_Harbor_County/tl_2009_53027_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/53_WASHINGTON/53029_Island_County/tl_2009_53029_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/53_WASHINGTON/53031_Jefferson_County/tl_2009_53031_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/53_WASHINGTON/53033_King_County/tl_2009_53033_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/53_WASHINGTON/53035_Kitsap_County/tl_2009_53035_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/53_WASHINGTON/53037_Kittitas_County/tl_2009_53037_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/53_WASHINGTON/53039_Klickitat_County/tl_2009_53039_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/53_WASHINGTON/53041_Lewis_County/tl_2009_53041_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/53_WASHINGTON/53043_Lincoln_County/tl_2009_53043_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/53_WASHINGTON/53045_Mason_County/tl_2009_53045_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/53_WASHINGTON/53047_Okanogan_County/tl_2009_53047_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/53_WASHINGTON/53049_Pacific_County/tl_2009_53049_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/53_WASHINGTON/53051_Pend_Oreille_County/tl_2009_53051_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/53_WASHINGTON/53053_Pierce_County/tl_2009_53053_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/53_WASHINGTON/53055_San_Juan_County/tl_2009_53055_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/53_WASHINGTON/53057_Skagit_County/tl_2009_53057_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/53_WASHINGTON/53059_Skamania_County/tl_2009_53059_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/53_WASHINGTON/53061_Snohomish_County/tl_2009_53061_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/53_WASHINGTON/53063_Spokane_County/tl_2009_53063_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/53_WASHINGTON/53065_Stevens_County/tl_2009_53065_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/53_WASHINGTON/53067_Thurston_County/tl_2009_53067_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/53_WASHINGTON/53069_Wahkiakum_County/tl_2009_53069_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/53_WASHINGTON/53071_Walla_Walla_County/tl_2009_53071_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/53_WASHINGTON/53073_Whatcom_County/tl_2009_53073_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/53_WASHINGTON/53075_Whitman_County/tl_2009_53075_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/53_WASHINGTON/53077_Yakima_County/tl_2009_53077_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/54_WEST_VIRGINIA/54001_Barbour_County/tl_2009_54001_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/54_WEST_VIRGINIA/54003_Berkeley_County/tl_2009_54003_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/54_WEST_VIRGINIA/54005_Boone_County/tl_2009_54005_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/54_WEST_VIRGINIA/54007_Braxton_County/tl_2009_54007_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/54_WEST_VIRGINIA/54009_Brooke_County/tl_2009_54009_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/54_WEST_VIRGINIA/54011_Cabell_County/tl_2009_54011_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/54_WEST_VIRGINIA/54013_Calhoun_County/tl_2009_54013_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/54_WEST_VIRGINIA/54015_Clay_County/tl_2009_54015_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/54_WEST_VIRGINIA/54017_Doddridge_County/tl_2009_54017_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/54_WEST_VIRGINIA/54019_Fayette_County/tl_2009_54019_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/54_WEST_VIRGINIA/54021_Gilmer_County/tl_2009_54021_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/54_WEST_VIRGINIA/54023_Grant_County/tl_2009_54023_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/54_WEST_VIRGINIA/54025_Greenbrier_County/tl_2009_54025_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/54_WEST_VIRGINIA/54027_Hampshire_County/tl_2009_54027_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/54_WEST_VIRGINIA/54029_Hancock_County/tl_2009_54029_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/54_WEST_VIRGINIA/54031_Hardy_County/tl_2009_54031_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/54_WEST_VIRGINIA/54033_Harrison_County/tl_2009_54033_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/54_WEST_VIRGINIA/54035_Jackson_County/tl_2009_54035_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/54_WEST_VIRGINIA/54037_Jefferson_County/tl_2009_54037_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/54_WEST_VIRGINIA/54039_Kanawha_County/tl_2009_54039_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/54_WEST_VIRGINIA/54041_Lewis_County/tl_2009_54041_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/54_WEST_VIRGINIA/54043_Lincoln_County/tl_2009_54043_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/54_WEST_VIRGINIA/54045_Logan_County/tl_2009_54045_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/54_WEST_VIRGINIA/54047_McDowell_County/tl_2009_54047_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/54_WEST_VIRGINIA/54049_Marion_County/tl_2009_54049_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/54_WEST_VIRGINIA/54051_Marshall_County/tl_2009_54051_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/54_WEST_VIRGINIA/54053_Mason_County/tl_2009_54053_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/54_WEST_VIRGINIA/54055_Mercer_County/tl_2009_54055_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/54_WEST_VIRGINIA/54057_Mineral_County/tl_2009_54057_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/54_WEST_VIRGINIA/54059_Mingo_County/tl_2009_54059_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/54_WEST_VIRGINIA/54061_Monongalia_County/tl_2009_54061_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/54_WEST_VIRGINIA/54063_Monroe_County/tl_2009_54063_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/54_WEST_VIRGINIA/54065_Morgan_County/tl_2009_54065_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/54_WEST_VIRGINIA/54067_Nicholas_County/tl_2009_54067_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/54_WEST_VIRGINIA/54069_Ohio_County/tl_2009_54069_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/54_WEST_VIRGINIA/54071_Pendleton_County/tl_2009_54071_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/54_WEST_VIRGINIA/54073_Pleasants_County/tl_2009_54073_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/54_WEST_VIRGINIA/54075_Pocahontas_County/tl_2009_54075_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/54_WEST_VIRGINIA/54077_Preston_County/tl_2009_54077_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/54_WEST_VIRGINIA/54079_Putnam_County/tl_2009_54079_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/54_WEST_VIRGINIA/54081_Raleigh_County/tl_2009_54081_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/54_WEST_VIRGINIA/54083_Randolph_County/tl_2009_54083_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/54_WEST_VIRGINIA/54085_Ritchie_County/tl_2009_54085_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/54_WEST_VIRGINIA/54087_Roane_County/tl_2009_54087_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/54_WEST_VIRGINIA/54089_Summers_County/tl_2009_54089_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/54_WEST_VIRGINIA/54091_Taylor_County/tl_2009_54091_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/54_WEST_VIRGINIA/54093_Tucker_County/tl_2009_54093_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/54_WEST_VIRGINIA/54095_Tyler_County/tl_2009_54095_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/54_WEST_VIRGINIA/54097_Upshur_County/tl_2009_54097_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/54_WEST_VIRGINIA/54099_Wayne_County/tl_2009_54099_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/54_WEST_VIRGINIA/54101_Webster_County/tl_2009_54101_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/54_WEST_VIRGINIA/54103_Wetzel_County/tl_2009_54103_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/54_WEST_VIRGINIA/54105_Wirt_County/tl_2009_54105_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/54_WEST_VIRGINIA/54107_Wood_County/tl_2009_54107_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/54_WEST_VIRGINIA/54109_Wyoming_County/tl_2009_54109_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/55_WISCONSIN/55001_Adams_County/tl_2009_55001_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/55_WISCONSIN/55003_Ashland_County/tl_2009_55003_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/55_WISCONSIN/55005_Barron_County/tl_2009_55005_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/55_WISCONSIN/55007_Bayfield_County/tl_2009_55007_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/55_WISCONSIN/55009_Brown_County/tl_2009_55009_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/55_WISCONSIN/55011_Buffalo_County/tl_2009_55011_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/55_WISCONSIN/55013_Burnett_County/tl_2009_55013_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/55_WISCONSIN/55015_Calumet_County/tl_2009_55015_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/55_WISCONSIN/55017_Chippewa_County/tl_2009_55017_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/55_WISCONSIN/55019_Clark_County/tl_2009_55019_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/55_WISCONSIN/55021_Columbia_County/tl_2009_55021_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/55_WISCONSIN/55023_Crawford_County/tl_2009_55023_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/55_WISCONSIN/55025_Dane_County/tl_2009_55025_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/55_WISCONSIN/55027_Dodge_County/tl_2009_55027_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/55_WISCONSIN/55029_Door_County/tl_2009_55029_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/55_WISCONSIN/55031_Douglas_County/tl_2009_55031_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/55_WISCONSIN/55033_Dunn_County/tl_2009_55033_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/55_WISCONSIN/55035_Eau_Claire_County/tl_2009_55035_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/55_WISCONSIN/55037_Florence_County/tl_2009_55037_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/55_WISCONSIN/55039_Fond_du_Lac_County/tl_2009_55039_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/55_WISCONSIN/55041_Forest_County/tl_2009_55041_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/55_WISCONSIN/55043_Grant_County/tl_2009_55043_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/55_WISCONSIN/55045_Green_County/tl_2009_55045_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/55_WISCONSIN/55047_Green_Lake_County/tl_2009_55047_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/55_WISCONSIN/55049_Iowa_County/tl_2009_55049_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/55_WISCONSIN/55051_Iron_County/tl_2009_55051_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/55_WISCONSIN/55053_Jackson_County/tl_2009_55053_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/55_WISCONSIN/55055_Jefferson_County/tl_2009_55055_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/55_WISCONSIN/55057_Juneau_County/tl_2009_55057_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/55_WISCONSIN/55059_Kenosha_County/tl_2009_55059_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/55_WISCONSIN/55061_Kewaunee_County/tl_2009_55061_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/55_WISCONSIN/55063_La_Crosse_County/tl_2009_55063_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/55_WISCONSIN/55065_Lafayette_County/tl_2009_55065_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/55_WISCONSIN/55067_Langlade_County/tl_2009_55067_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/55_WISCONSIN/55069_Lincoln_County/tl_2009_55069_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/55_WISCONSIN/55071_Manitowoc_County/tl_2009_55071_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/55_WISCONSIN/55073_Marathon_County/tl_2009_55073_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/55_WISCONSIN/55075_Marinette_County/tl_2009_55075_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/55_WISCONSIN/55077_Marquette_County/tl_2009_55077_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/55_WISCONSIN/55078_Menominee_County/tl_2009_55078_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/55_WISCONSIN/55079_Milwaukee_County/tl_2009_55079_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/55_WISCONSIN/55081_Monroe_County/tl_2009_55081_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/55_WISCONSIN/55083_Oconto_County/tl_2009_55083_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/55_WISCONSIN/55085_Oneida_County/tl_2009_55085_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/55_WISCONSIN/55087_Outagamie_County/tl_2009_55087_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/55_WISCONSIN/55089_Ozaukee_County/tl_2009_55089_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/55_WISCONSIN/55091_Pepin_County/tl_2009_55091_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/55_WISCONSIN/55093_Pierce_County/tl_2009_55093_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/55_WISCONSIN/55095_Polk_County/tl_2009_55095_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/55_WISCONSIN/55097_Portage_County/tl_2009_55097_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/55_WISCONSIN/55099_Price_County/tl_2009_55099_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/55_WISCONSIN/55101_Racine_County/tl_2009_55101_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/55_WISCONSIN/55103_Richland_County/tl_2009_55103_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/55_WISCONSIN/55105_Rock_County/tl_2009_55105_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/55_WISCONSIN/55107_Rusk_County/tl_2009_55107_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/55_WISCONSIN/55109_St_Croix_County/tl_2009_55109_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/55_WISCONSIN/55111_Sauk_County/tl_2009_55111_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/55_WISCONSIN/55113_Sawyer_County/tl_2009_55113_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/55_WISCONSIN/55115_Shawano_County/tl_2009_55115_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/55_WISCONSIN/55117_Sheboygan_County/tl_2009_55117_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/55_WISCONSIN/55119_Taylor_County/tl_2009_55119_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/55_WISCONSIN/55121_Trempealeau_County/tl_2009_55121_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/55_WISCONSIN/55123_Vernon_County/tl_2009_55123_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/55_WISCONSIN/55125_Vilas_County/tl_2009_55125_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/55_WISCONSIN/55127_Walworth_County/tl_2009_55127_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/55_WISCONSIN/55129_Washburn_County/tl_2009_55129_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/55_WISCONSIN/55131_Washington_County/tl_2009_55131_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/55_WISCONSIN/55133_Waukesha_County/tl_2009_55133_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/55_WISCONSIN/55135_Waupaca_County/tl_2009_55135_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/55_WISCONSIN/55137_Waushara_County/tl_2009_55137_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/55_WISCONSIN/55139_Winnebago_County/tl_2009_55139_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/55_WISCONSIN/55141_Wood_County/tl_2009_55141_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/56_WYOMING/56001_Albany_County/tl_2009_56001_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/56_WYOMING/56003_Big_Horn_County/tl_2009_56003_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/56_WYOMING/56005_Campbell_County/tl_2009_56005_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/56_WYOMING/56007_Carbon_County/tl_2009_56007_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/56_WYOMING/56009_Converse_County/tl_2009_56009_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/56_WYOMING/56011_Crook_County/tl_2009_56011_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/56_WYOMING/56013_Fremont_County/tl_2009_56013_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/56_WYOMING/56015_Goshen_County/tl_2009_56015_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/56_WYOMING/56017_Hot_Springs_County/tl_2009_56017_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/56_WYOMING/56019_Johnson_County/tl_2009_56019_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/56_WYOMING/56021_Laramie_County/tl_2009_56021_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/56_WYOMING/56023_Lincoln_County/tl_2009_56023_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/56_WYOMING/56025_Natrona_County/tl_2009_56025_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/56_WYOMING/56027_Niobrara_County/tl_2009_56027_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/56_WYOMING/56029_Park_County/tl_2009_56029_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/56_WYOMING/56031_Platte_County/tl_2009_56031_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/56_WYOMING/56033_Sheridan_County/tl_2009_56033_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/56_WYOMING/56035_Sublette_County/tl_2009_56035_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/56_WYOMING/56037_Sweetwater_County/tl_2009_56037_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/56_WYOMING/56039_Teton_County/tl_2009_56039_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/56_WYOMING/56041_Uinta_County/tl_2009_56041_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/56_WYOMING/56043_Washakie_County/tl_2009_56043_edges.zip wget -nH -x ftp://ftp2.census.gov/geo/tiger/TIGER2009/56_WYOMING/56045_Weston_County/tl_2009_56045_edges.zip mv geo/tiger/TIGER2009/* . ================================================ FILE: tools/GEE/BuildTheBaseGlobe/vector/TigerLineRoads/2D_Tiger_Roads_Template.kmdsp ================================================ Resources/Vector/TigerLine2007/MidAtlantic.kvasset Interstate 1 0 fields.FULLNAME.substring(15) Sans Regular 12 0 4 IconFixedSizeStyle shield1 Internal 2 2 2 2 LineZ FillAndOutline 4 1 Circle 4 4 0 0 TopRight MatchAll Equal 5 S1200 RegExpMatch 6 I-* Interstate2 1 0 fields.FULLNAME.substring(15) Sans Regular 12 0 4 IconFixedSizeStyle shield1 Internal 2 2 2 2 LineZ FillAndOutline 4 1 Circle 4 4 0 0 TopRight MatchAll Equal 5 S1100 RegExpMatch 6 I-* US Hwy 1 0 fields.FULLNAME.substring(7) Sans Regular 12 0 4 IconFixedSizeStyle shield2 Internal 2 2 2 2 LineZ FillAndOutline 4 1 Circle 4 4 0 0 TopRight MatchAll RegExpMatch 6 US Hwy* State Hwy 1 0 fields.FULLNAME.substring(10) Sans Regular 12 0 4 IconFixedSizeStyle shield3 Internal 2 2 2 2 LineZ FillAndOutline 4 1 Circle 4 4 0 0 TopRight MatchAll RegExpMatch 6 State Hwy* Primary Roads LineZ FillAndOutline 4 0 Circle 4 4 0 0 TopRight MatchAll Equal 5 S1100 NotRegExpMatch 6 US Hwy* NotRegExpMatch 6 State Hwy* Secondary Roads LineZ FillAndOutline 4 0 Circle 4 4 0 0 TopRight MatchAll Equal 5 S1200 NotRegExpMatch 6 US Hwy* NotRegExpMatch 6 State Hwy* Surface Roads LineZ FillAndOutline 4 0 Circle 4 4 0 0 TopRight MatchAny Equal 5 S1400 Equal 5 S1630 0 ================================================ FILE: tools/GEE/BuildTheBaseGlobe/vector/TigerLineRoads/2D_Tigerline_Highways_only.kmdsp ================================================ Resources/Vector/Roads/TigerLine2009.kvasset Interstate 1 0 fields.FULLNAME.substring(15) Sans Regular 12 0 4 IconFixedSizeStyle shield1 Internal 2 2 2 2 LineZ FillAndOutline 4 0 Circle 4 4 0 0 TopRight MatchAll Equal 6 S1200 RegExpMatch 7 Interstate* Interstate2 1 0 fields.FULLNAME.substring(15) Sans Regular 12 0 4 IconFixedSizeStyle shield1 Internal 2 2 2 2 LineZ FillAndOutline 4 0 Circle 4 4 0 0 TopRight MatchAll Equal 6 S1100 RegExpMatch 7 Interstate* US Hwy 1 0 fields.FULLNAME.substring(7) Sans Regular 12 0 4 IconFixedSizeStyle shield2 Internal 2 2 2 2 LineZ FillAndOutline 4 0 Circle 4 4 0 0 TopRight MatchAll RegExpMatch 7 US Hwy* State Hwy 1 0 fields.FULLNAME.substring(10) Sans Regular 12 0 4 IconFixedSizeStyle shield3 Internal 2 2 2 2 LineZ FillAndOutline 4 0 Circle 4 4 0 0 TopRight MatchAll RegExpMatch 7 State Hwy* Primary Roads LineZ FillAndOutline 4 0 Circle 4 4 0 0 TopRight MatchAll Equal 6 S1100 NotRegExpMatch 7 US Hwy* NotRegExpMatch 7 State Hwy* Secondary Roads LineZ FillAndOutline 4 0 Circle 4 4 0 0 TopRight MatchAll Equal 6 S1200 NotRegExpMatch 7 US Hwy* NotRegExpMatch 7 State Hwy* 0 0 ================================================ FILE: tools/GEE/BuildTheBaseGlobe/vector/TigerLineRoads/2_UnzipEdgeFiles.sh ================================================ #!/bin/sh # Copyright 2014 Google Inc. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # Unzip all of the Tiger 2009 files that were just downloaded find . -name "*edges.zip" > edges_list home=`pwd` for file in `cat edges_list` do dir=`dirname $file` fname=`basename $file` cd $dir unzip $fname cd $home done ================================================ FILE: tools/GEE/BuildTheBaseGlobe/vector/TigerLineRoads/3_CreateTigerResources.sh ================================================ #!/bin/sh # Copyright 2014 Google Inc. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. for USState in ALABAMA ALASKA ARIZONA ARKANSAS CALIFORNIA COLORADO CONNECTICUT DELAWARE DISTRICT_OF_COLUMBIA FLORIDA GEORGIA HAWAII IDAHO ILLINOIS INDIANA IOWA KANSAS KENTUCKY LOUISIANA MAINE MARYLAND MASSACHUSETTS MICHIGAN MINNESOTA MISSISSIPPI MISSOURI MONTANA NEBRASKA NEVADA NEW_HAMPSHIRE NEW_JERSEY NEW_MEXICO NEW_YORK NORTH_CAROLINA NORTH_DAKOTA OHIO OKLAHOMA OREGON PENNSYLVANIA RHODE_ISLAND SOUTH_CAROLINA SOUTH_DAKOTA TENNESSEE TEXAS UTAH VERMONT VIRGINIA WASHINGTON WEST_VIRGINIA do find [0-9]*$USState* -name "*edges.shp" > $USState.list genewvectorresource -o Resources/Vector/Roads/TigerLine2009/$USState --encoding "ISO 8859-1" --filelist $USState.list sleep 5 gebuild Resources/Vector/Roads/TigerLine2009/$USState done ================================================ FILE: tools/GEE/BuildTheBaseGlobe/vector/TigerLineRoads/4_BuildTigerResources.sh ================================================ #!/bin/sh # Copyright 2014 Google Inc. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. for USState in ALABAMA ALASKA ARIZONA ARKANSAS CALIFORNIA COLORADO CONNECTICUT DELAWARE DISTRICT_OF_COLUMBIA FLORIDA GEORGIA HAWAII IDAHO ILLINOIS INDIANA IOWA KANSAS KENTUCKY LOUISIANA MAINE MARYLAND MASSACHUSETTS MICHIGAN MINNESOTA MISSISSIPPI MISSOURI MONTANA NEBRASKA NEVADA NEW_HAMPSHIRE NEW_JERSEY NEW_MEXICO NEW_YORK NORTH_CAROLINA NORTH_DAKOTA OHIO OKLAHOMA OREGON PENNSYLVANIA RHODE_ISLAND SOUTH_CAROLINA SOUTH_DAKOTA TENNESSEE TEXAS UTAH VERMONT VIRGINIA WASHINGTON WEST_VIRGINIA do gebuild Resources/Vector/Roads/TigerLine2009/$USState done ================================================ FILE: tools/GEE/BuildTheBaseGlobe/vector/TigerLineRoads/5_AddTigerResourcesToProject.sh ================================================ #!/bin/sh # Copyright 2014 Google Inc. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. for USState in ALABAMA ALASKA ARIZONA ARKANSAS CALIFORNIA COLORADO CONNECTICUT DELAWARE DISTRICT_OF_COLUMBIA FLORIDA GEORGIA HAWAII IDAHO ILLINOIS INDIANA IOWA KANSAS KENTUCKY LOUISIANA MAINE MARYLAND MASSACHUSETTS MICHIGAN MINNESOTA MISSISSIPPI MISSOURI MONTANA NEBRASKA NEVADA NEW_HAMPSHIRE NEW_JERSEY NEW_MEXICO NEW_YORK NORTH_CAROLINA NORTH_DAKOTA OHIO OKLAHOMA OREGON PENNSYLVANIA RHODE_ISLAND SOUTH_CAROLINA SOUTH_DAKOTA TENNESSEE TEXAS UTAH VERMONT VIRGINIA WASHINGTON WEST_VIRGINIA do geaddtovectorproject -o Projects/Vector --template $USState.khdsp Resources/Vector/Roads/TigerLine2009/$USState done ================================================ FILE: tools/GEE/BuildTheBaseGlobe/vector/TigerLineRoads/ALABAMA.khdsp ================================================ 5 Resources/Vector/Roads/TigerLine2009/ALABAMA.kvasset Roads|USA Roads Interstates 18 LineZ 6 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^Interstate Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,3) == "I- " Primary Roads 18 LineZ 8 1 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1100 NotRegExpMatch 7 ^Interstate Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^State Hwy fields.MTFCC == "S1100" && fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte" US Highways 18 LineZ 10 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^US Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,6) == "US Hwy" && fields.FULLNAME.substr(-3,3) != "Alt" State Highways 18 LineZ 11 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^State Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,9) == "State Rte" && fields.FULLNAME.substr(-3,3) != "Alt" State Highways, no label 11 LineZ 10 0 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^State Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,9) == "State Rte" && fields.FULLNAME.substr(-3,3) != "Alt" Secondary Roads 18 LineZ 13 1 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1200 NotRegExpMatch 7 ^State Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^Interstate Hwy fields.MTFCC == "S1200" && ((fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte") || fields.FULLNAME.substr(-3,3) == "Alt") Secondary Roads, no label 13 LineZ 10 0 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1200 NotRegExpMatch 7 ^State Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^Interstate Hwy fields.MTFCC == "S1200" && ((fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte") || fields.FULLNAME.substr(-3,3) == "Alt") Surface Streets 18 LineZ 16 1 Label FillAndOutline 0.5 18 MatchAny Equal 5 S1400 Equal 5 S1630 24 1 1 1 1 22d7a8be-c7d7-11df-8257-0b74fb10cdfb ALABAMA Roads Internal shield1 0 1 -1 0 0 ================================================ FILE: tools/GEE/BuildTheBaseGlobe/vector/TigerLineRoads/ALASKA.khdsp ================================================ 5 Resources/Vector/Roads/TigerLine2009/ALASKA.kvasset Roads|USA Roads Interstates 18 LineZ 6 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^Interstate Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,3) == "I- " Primary Roads 18 LineZ 8 1 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1100 NotRegExpMatch 7 ^Interstate Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^State Hwy fields.MTFCC == "S1100" && fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte" US Highways 18 LineZ 10 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^US Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,6) == "US Hwy" && fields.FULLNAME.substr(-3,3) != "Alt" State Highways 18 LineZ 11 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^State Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,9) == "State Rte" && fields.FULLNAME.substr(-3,3) != "Alt" State Highways, no label 11 LineZ 10 0 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^State Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,9) == "State Rte" && fields.FULLNAME.substr(-3,3) != "Alt" Secondary Roads 18 LineZ 13 1 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1200 NotRegExpMatch 7 ^State Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^Interstate Hwy fields.MTFCC == "S1200" && ((fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte") || fields.FULLNAME.substr(-3,3) == "Alt") Secondary Roads, no label 13 LineZ 10 0 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1200 NotRegExpMatch 7 ^State Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^Interstate Hwy fields.MTFCC == "S1200" && ((fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte") || fields.FULLNAME.substr(-3,3) == "Alt") Surface Streets 18 LineZ 16 1 Label FillAndOutline 0.5 18 MatchAny Equal 5 S1400 Equal 5 S1630 24 1 1 1 1 22d7a8be-c7d7-11df-8257-0b74fb10cdfb ALASKA Roads Internal shield1 0 1 -1 0 0 ================================================ FILE: tools/GEE/BuildTheBaseGlobe/vector/TigerLineRoads/ARIZONA.khdsp ================================================ 5 Resources/Vector/Roads/TigerLine2009/ARIZONA.kvasset Roads|USA Roads Interstates 18 LineZ 6 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^Interstate Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,3) == "I- " Primary Roads 18 LineZ 8 1 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1100 NotRegExpMatch 7 ^Interstate Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^State Hwy fields.MTFCC == "S1100" && fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte" US Highways 18 LineZ 10 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^US Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,6) == "US Hwy" && fields.FULLNAME.substr(-3,3) != "Alt" State Highways 18 LineZ 11 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^State Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,9) == "State Rte" && fields.FULLNAME.substr(-3,3) != "Alt" State Highways, no label 11 LineZ 10 0 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^State Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,9) == "State Rte" && fields.FULLNAME.substr(-3,3) != "Alt" Secondary Roads 18 LineZ 13 1 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1200 NotRegExpMatch 7 ^State Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^Interstate Hwy fields.MTFCC == "S1200" && ((fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte") || fields.FULLNAME.substr(-3,3) == "Alt") Secondary Roads, no label 13 LineZ 10 0 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1200 NotRegExpMatch 7 ^State Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^Interstate Hwy fields.MTFCC == "S1200" && ((fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte") || fields.FULLNAME.substr(-3,3) == "Alt") Surface Streets 18 LineZ 16 1 Label FillAndOutline 0.5 18 MatchAny Equal 5 S1400 Equal 5 S1630 24 1 1 1 1 22d7a8be-c7d7-11df-8257-0b74fb10cdfb ARIZONA Roads Internal shield1 0 1 -1 0 0 ================================================ FILE: tools/GEE/BuildTheBaseGlobe/vector/TigerLineRoads/ARKANSAS.khdsp ================================================ 5 Resources/Vector/Roads/TigerLine2009/ARKANSAS.kvasset Roads|USA Roads Interstates 18 LineZ 6 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^Interstate Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,3) == "I- " Primary Roads 18 LineZ 8 1 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1100 NotRegExpMatch 7 ^Interstate Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^State Hwy fields.MTFCC == "S1100" && fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte" US Highways 18 LineZ 10 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^US Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,6) == "US Hwy" && fields.FULLNAME.substr(-3,3) != "Alt" State Highways 18 LineZ 11 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^State Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,9) == "State Rte" && fields.FULLNAME.substr(-3,3) != "Alt" State Highways, no label 11 LineZ 10 0 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^State Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,9) == "State Rte" && fields.FULLNAME.substr(-3,3) != "Alt" Secondary Roads 18 LineZ 13 1 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1200 NotRegExpMatch 7 ^State Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^Interstate Hwy fields.MTFCC == "S1200" && ((fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte") || fields.FULLNAME.substr(-3,3) == "Alt") Secondary Roads, no label 13 LineZ 10 0 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1200 NotRegExpMatch 7 ^State Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^Interstate Hwy fields.MTFCC == "S1200" && ((fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte") || fields.FULLNAME.substr(-3,3) == "Alt") Surface Streets 18 LineZ 16 1 Label FillAndOutline 0.5 18 MatchAny Equal 5 S1400 Equal 5 S1630 24 1 1 1 1 22d7a8be-c7d7-11df-8257-0b74fb10cdfb ARKANSAS Roads Internal shield1 0 1 -1 0 0 ================================================ FILE: tools/GEE/BuildTheBaseGlobe/vector/TigerLineRoads/CALIFORNIA.khdsp ================================================ 5 Resources/Vector/Roads/TigerLine2009/CALIFORNIA.kvasset Roads|USA Roads Interstates 18 LineZ 6 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^Interstate Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,3) == "I- " Primary Roads 18 LineZ 8 1 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1100 NotRegExpMatch 7 ^Interstate Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^State Hwy fields.MTFCC == "S1100" && fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte" US Highways 18 LineZ 10 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^US Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,6) == "US Hwy" && fields.FULLNAME.substr(-3,3) != "Alt" State Highways 18 LineZ 11 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^State Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,9) == "State Rte" && fields.FULLNAME.substr(-3,3) != "Alt" State Highways, no label 11 LineZ 10 0 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^State Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,9) == "State Rte" && fields.FULLNAME.substr(-3,3) != "Alt" Secondary Roads 18 LineZ 13 1 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1200 NotRegExpMatch 7 ^State Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^Interstate Hwy fields.MTFCC == "S1200" && ((fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte") || fields.FULLNAME.substr(-3,3) == "Alt") Secondary Roads, no label 13 LineZ 10 0 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1200 NotRegExpMatch 7 ^State Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^Interstate Hwy fields.MTFCC == "S1200" && ((fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte") || fields.FULLNAME.substr(-3,3) == "Alt") Surface Streets 18 LineZ 16 1 Label FillAndOutline 0.5 18 MatchAny Equal 5 S1400 Equal 5 S1630 24 1 1 1 1 22d7a8be-c7d7-11df-8257-0b74fb10cdfb CALIFORNIA Roads Internal shield1 0 1 -1 0 0 ================================================ FILE: tools/GEE/BuildTheBaseGlobe/vector/TigerLineRoads/COLORADO.khdsp ================================================ 5 Resources/Vector/Roads/TigerLine2009/COLORADO.kvasset Roads|USA Roads Interstates 18 LineZ 6 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^Interstate Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,3) == "I- " Primary Roads 18 LineZ 8 1 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1100 NotRegExpMatch 7 ^Interstate Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^State Hwy fields.MTFCC == "S1100" && fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte" US Highways 18 LineZ 10 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^US Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,6) == "US Hwy" && fields.FULLNAME.substr(-3,3) != "Alt" State Highways 18 LineZ 11 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^State Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,9) == "State Rte" && fields.FULLNAME.substr(-3,3) != "Alt" State Highways, no label 11 LineZ 10 0 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^State Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,9) == "State Rte" && fields.FULLNAME.substr(-3,3) != "Alt" Secondary Roads 18 LineZ 13 1 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1200 NotRegExpMatch 7 ^State Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^Interstate Hwy fields.MTFCC == "S1200" && ((fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte") || fields.FULLNAME.substr(-3,3) == "Alt") Secondary Roads, no label 13 LineZ 10 0 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1200 NotRegExpMatch 7 ^State Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^Interstate Hwy fields.MTFCC == "S1200" && ((fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte") || fields.FULLNAME.substr(-3,3) == "Alt") Surface Streets 18 LineZ 16 1 Label FillAndOutline 0.5 18 MatchAny Equal 5 S1400 Equal 5 S1630 24 1 1 1 1 22d7a8be-c7d7-11df-8257-0b74fb10cdfb COLORADO Roads Internal shield1 0 1 -1 0 0 ================================================ FILE: tools/GEE/BuildTheBaseGlobe/vector/TigerLineRoads/CONNECTICUT.khdsp ================================================ 5 Resources/Vector/Roads/TigerLine2009/CONNECTICUT.kvasset Roads|USA Roads Interstates 18 LineZ 6 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^Interstate Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,3) == "I- " Primary Roads 18 LineZ 8 1 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1100 NotRegExpMatch 7 ^Interstate Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^State Hwy fields.MTFCC == "S1100" && fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte" US Highways 18 LineZ 10 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^US Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,6) == "US Hwy" && fields.FULLNAME.substr(-3,3) != "Alt" State Highways 18 LineZ 11 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^State Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,9) == "State Rte" && fields.FULLNAME.substr(-3,3) != "Alt" State Highways, no label 11 LineZ 10 0 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^State Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,9) == "State Rte" && fields.FULLNAME.substr(-3,3) != "Alt" Secondary Roads 18 LineZ 13 1 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1200 NotRegExpMatch 7 ^State Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^Interstate Hwy fields.MTFCC == "S1200" && ((fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte") || fields.FULLNAME.substr(-3,3) == "Alt") Secondary Roads, no label 13 LineZ 10 0 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1200 NotRegExpMatch 7 ^State Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^Interstate Hwy fields.MTFCC == "S1200" && ((fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte") || fields.FULLNAME.substr(-3,3) == "Alt") Surface Streets 18 LineZ 16 1 Label FillAndOutline 0.5 18 MatchAny Equal 5 S1400 Equal 5 S1630 24 1 1 1 1 22d7a8be-c7d7-11df-8257-0b74fb10cdfb CONNECTICUT Roads Internal shield1 0 1 -1 0 0 ================================================ FILE: tools/GEE/BuildTheBaseGlobe/vector/TigerLineRoads/DELAWARE.khdsp ================================================ 5 Resources/Vector/Roads/TigerLine2009/DELAWARE.kvasset Roads|USA Roads Interstates 18 LineZ 6 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^Interstate Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,3) == "I- " Primary Roads 18 LineZ 8 1 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1100 NotRegExpMatch 7 ^Interstate Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^State Hwy fields.MTFCC == "S1100" && fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte" US Highways 18 LineZ 10 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^US Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,6) == "US Hwy" && fields.FULLNAME.substr(-3,3) != "Alt" State Highways 18 LineZ 11 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^State Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,9) == "State Rte" && fields.FULLNAME.substr(-3,3) != "Alt" State Highways, no label 11 LineZ 10 0 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^State Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,9) == "State Rte" && fields.FULLNAME.substr(-3,3) != "Alt" Secondary Roads 18 LineZ 13 1 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1200 NotRegExpMatch 7 ^State Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^Interstate Hwy fields.MTFCC == "S1200" && ((fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte") || fields.FULLNAME.substr(-3,3) == "Alt") Secondary Roads, no label 13 LineZ 10 0 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1200 NotRegExpMatch 7 ^State Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^Interstate Hwy fields.MTFCC == "S1200" && ((fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte") || fields.FULLNAME.substr(-3,3) == "Alt") Surface Streets 18 LineZ 16 1 Label FillAndOutline 0.5 18 MatchAny Equal 5 S1400 Equal 5 S1630 24 1 1 1 1 22d7a8be-c7d7-11df-8257-0b74fb10cdfb DELAWARE Roads Internal shield1 0 1 -1 0 0 ================================================ FILE: tools/GEE/BuildTheBaseGlobe/vector/TigerLineRoads/DISTRICT_OF_COLUMBIA.khdsp ================================================ 5 Resources/Vector/Roads/TigerLine2009/DISTRICT_OF_COLUMBIA.kvasset Roads|USA Roads Interstates 18 LineZ 6 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^Interstate Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,3) == "I- " Primary Roads 18 LineZ 8 1 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1100 NotRegExpMatch 7 ^Interstate Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^State Hwy fields.MTFCC == "S1100" && fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte" US Highways 18 LineZ 10 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^US Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,6) == "US Hwy" && fields.FULLNAME.substr(-3,3) != "Alt" State Highways 18 LineZ 11 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^State Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,9) == "State Rte" && fields.FULLNAME.substr(-3,3) != "Alt" State Highways, no label 11 LineZ 10 0 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^State Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,9) == "State Rte" && fields.FULLNAME.substr(-3,3) != "Alt" Secondary Roads 18 LineZ 13 1 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1200 NotRegExpMatch 7 ^State Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^Interstate Hwy fields.MTFCC == "S1200" && ((fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte") || fields.FULLNAME.substr(-3,3) == "Alt") Secondary Roads, no label 13 LineZ 10 0 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1200 NotRegExpMatch 7 ^State Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^Interstate Hwy fields.MTFCC == "S1200" && ((fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte") || fields.FULLNAME.substr(-3,3) == "Alt") Surface Streets 18 LineZ 16 1 Label FillAndOutline 0.5 18 MatchAny Equal 5 S1400 Equal 5 S1630 24 1 1 1 1 22d7a8be-c7d7-11df-8257-0b74fb10cdfb DISTRICT_OF_COLUMBIA Roads Internal shield1 0 1 -1 0 0 ================================================ FILE: tools/GEE/BuildTheBaseGlobe/vector/TigerLineRoads/FLORIDA.khdsp ================================================ 5 Resources/Vector/Roads/TigerLine2009/FLORIDA.kvasset Roads|USA Roads Interstates 18 LineZ 6 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^Interstate Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,3) == "I- " Primary Roads 18 LineZ 8 1 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1100 NotRegExpMatch 7 ^Interstate Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^State Hwy fields.MTFCC == "S1100" && fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte" US Highways 18 LineZ 10 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^US Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,6) == "US Hwy" && fields.FULLNAME.substr(-3,3) != "Alt" State Highways 18 LineZ 11 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^State Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,9) == "State Rte" && fields.FULLNAME.substr(-3,3) != "Alt" State Highways, no label 11 LineZ 10 0 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^State Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,9) == "State Rte" && fields.FULLNAME.substr(-3,3) != "Alt" Secondary Roads 18 LineZ 13 1 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1200 NotRegExpMatch 7 ^State Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^Interstate Hwy fields.MTFCC == "S1200" && ((fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte") || fields.FULLNAME.substr(-3,3) == "Alt") Secondary Roads, no label 13 LineZ 10 0 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1200 NotRegExpMatch 7 ^State Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^Interstate Hwy fields.MTFCC == "S1200" && ((fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte") || fields.FULLNAME.substr(-3,3) == "Alt") Surface Streets 18 LineZ 16 1 Label FillAndOutline 0.5 18 MatchAny Equal 5 S1400 Equal 5 S1630 24 1 1 1 1 22d7a8be-c7d7-11df-8257-0b74fb10cdfb FLORIDA Roads Internal shield1 0 1 -1 0 0 ================================================ FILE: tools/GEE/BuildTheBaseGlobe/vector/TigerLineRoads/GEORGIA.khdsp ================================================ 5 Resources/Vector/Roads/TigerLine2009/GEORGIA.kvasset Roads|USA Roads Interstates 18 LineZ 6 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^Interstate Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,3) == "I- " Primary Roads 18 LineZ 8 1 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1100 NotRegExpMatch 7 ^Interstate Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^State Hwy fields.MTFCC == "S1100" && fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte" US Highways 18 LineZ 10 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^US Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,6) == "US Hwy" && fields.FULLNAME.substr(-3,3) != "Alt" State Highways 18 LineZ 11 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^State Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,9) == "State Rte" && fields.FULLNAME.substr(-3,3) != "Alt" State Highways, no label 11 LineZ 10 0 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^State Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,9) == "State Rte" && fields.FULLNAME.substr(-3,3) != "Alt" Secondary Roads 18 LineZ 13 1 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1200 NotRegExpMatch 7 ^State Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^Interstate Hwy fields.MTFCC == "S1200" && ((fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte") || fields.FULLNAME.substr(-3,3) == "Alt") Secondary Roads, no label 13 LineZ 10 0 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1200 NotRegExpMatch 7 ^State Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^Interstate Hwy fields.MTFCC == "S1200" && ((fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte") || fields.FULLNAME.substr(-3,3) == "Alt") Surface Streets 18 LineZ 16 1 Label FillAndOutline 0.5 18 MatchAny Equal 5 S1400 Equal 5 S1630 24 1 1 1 1 22d7a8be-c7d7-11df-8257-0b74fb10cdfb GEORGIA Roads Internal shield1 0 1 -1 0 0 ================================================ FILE: tools/GEE/BuildTheBaseGlobe/vector/TigerLineRoads/HAWAII.khdsp ================================================ 5 Resources/Vector/Roads/TigerLine2009/HAWAII.kvasset Roads|USA Roads Interstates 18 LineZ 6 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^Interstate Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,3) == "I- " Primary Roads 18 LineZ 8 1 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1100 NotRegExpMatch 7 ^Interstate Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^State Hwy fields.MTFCC == "S1100" && fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte" US Highways 18 LineZ 10 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^US Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,6) == "US Hwy" && fields.FULLNAME.substr(-3,3) != "Alt" State Highways 18 LineZ 11 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^State Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,9) == "State Rte" && fields.FULLNAME.substr(-3,3) != "Alt" State Highways, no label 11 LineZ 10 0 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^State Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,9) == "State Rte" && fields.FULLNAME.substr(-3,3) != "Alt" Secondary Roads 18 LineZ 13 1 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1200 NotRegExpMatch 7 ^State Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^Interstate Hwy fields.MTFCC == "S1200" && ((fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte") || fields.FULLNAME.substr(-3,3) == "Alt") Secondary Roads, no label 13 LineZ 10 0 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1200 NotRegExpMatch 7 ^State Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^Interstate Hwy fields.MTFCC == "S1200" && ((fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte") || fields.FULLNAME.substr(-3,3) == "Alt") Surface Streets 18 LineZ 16 1 Label FillAndOutline 0.5 18 MatchAny Equal 5 S1400 Equal 5 S1630 24 1 1 1 1 22d7a8be-c7d7-11df-8257-0b74fb10cdfb HAWAII Roads Internal shield1 0 1 -1 0 0 ================================================ FILE: tools/GEE/BuildTheBaseGlobe/vector/TigerLineRoads/IDAHO.khdsp ================================================ 5 Resources/Vector/Roads/TigerLine2009/IDAHO.kvasset Roads|USA Roads Interstates 18 LineZ 6 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^Interstate Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,3) == "I- " Primary Roads 18 LineZ 8 1 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1100 NotRegExpMatch 7 ^Interstate Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^State Hwy fields.MTFCC == "S1100" && fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte" US Highways 18 LineZ 10 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^US Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,6) == "US Hwy" && fields.FULLNAME.substr(-3,3) != "Alt" State Highways 18 LineZ 11 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^State Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,9) == "State Rte" && fields.FULLNAME.substr(-3,3) != "Alt" State Highways, no label 11 LineZ 10 0 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^State Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,9) == "State Rte" && fields.FULLNAME.substr(-3,3) != "Alt" Secondary Roads 18 LineZ 13 1 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1200 NotRegExpMatch 7 ^State Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^Interstate Hwy fields.MTFCC == "S1200" && ((fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte") || fields.FULLNAME.substr(-3,3) == "Alt") Secondary Roads, no label 13 LineZ 10 0 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1200 NotRegExpMatch 7 ^State Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^Interstate Hwy fields.MTFCC == "S1200" && ((fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte") || fields.FULLNAME.substr(-3,3) == "Alt") Surface Streets 18 LineZ 16 1 Label FillAndOutline 0.5 18 MatchAny Equal 5 S1400 Equal 5 S1630 24 1 1 1 1 22d7a8be-c7d7-11df-8257-0b74fb10cdfb IDAHO Roads Internal shield1 0 1 -1 0 0 ================================================ FILE: tools/GEE/BuildTheBaseGlobe/vector/TigerLineRoads/ILLINOIS.khdsp ================================================ 5 Resources/Vector/Roads/TigerLine2009/ILLINOIS.kvasset Roads|USA Roads Interstates 18 LineZ 6 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^Interstate Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,3) == "I- " Primary Roads 18 LineZ 8 1 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1100 NotRegExpMatch 7 ^Interstate Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^State Hwy fields.MTFCC == "S1100" && fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte" US Highways 18 LineZ 10 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^US Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,6) == "US Hwy" && fields.FULLNAME.substr(-3,3) != "Alt" State Highways 18 LineZ 11 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^State Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,9) == "State Rte" && fields.FULLNAME.substr(-3,3) != "Alt" State Highways, no label 11 LineZ 10 0 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^State Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,9) == "State Rte" && fields.FULLNAME.substr(-3,3) != "Alt" Secondary Roads 18 LineZ 13 1 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1200 NotRegExpMatch 7 ^State Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^Interstate Hwy fields.MTFCC == "S1200" && ((fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte") || fields.FULLNAME.substr(-3,3) == "Alt") Secondary Roads, no label 13 LineZ 10 0 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1200 NotRegExpMatch 7 ^State Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^Interstate Hwy fields.MTFCC == "S1200" && ((fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte") || fields.FULLNAME.substr(-3,3) == "Alt") Surface Streets 18 LineZ 16 1 Label FillAndOutline 0.5 18 MatchAny Equal 5 S1400 Equal 5 S1630 24 1 1 1 1 22d7a8be-c7d7-11df-8257-0b74fb10cdfb ILLINOIS Roads Internal shield1 0 1 -1 0 0 ================================================ FILE: tools/GEE/BuildTheBaseGlobe/vector/TigerLineRoads/INDIANA.khdsp ================================================ 5 Resources/Vector/Roads/TigerLine2009/INDIANA.kvasset Roads|USA Roads Interstates 18 LineZ 6 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^Interstate Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,3) == "I- " Primary Roads 18 LineZ 8 1 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1100 NotRegExpMatch 7 ^Interstate Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^State Hwy fields.MTFCC == "S1100" && fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte" US Highways 18 LineZ 10 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^US Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,6) == "US Hwy" && fields.FULLNAME.substr(-3,3) != "Alt" State Highways 18 LineZ 11 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^State Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,9) == "State Rte" && fields.FULLNAME.substr(-3,3) != "Alt" State Highways, no label 11 LineZ 10 0 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^State Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,9) == "State Rte" && fields.FULLNAME.substr(-3,3) != "Alt" Secondary Roads 18 LineZ 13 1 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1200 NotRegExpMatch 7 ^State Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^Interstate Hwy fields.MTFCC == "S1200" && ((fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte") || fields.FULLNAME.substr(-3,3) == "Alt") Secondary Roads, no label 13 LineZ 10 0 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1200 NotRegExpMatch 7 ^State Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^Interstate Hwy fields.MTFCC == "S1200" && ((fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte") || fields.FULLNAME.substr(-3,3) == "Alt") Surface Streets 18 LineZ 16 1 Label FillAndOutline 0.5 18 MatchAny Equal 5 S1400 Equal 5 S1630 24 1 1 1 1 22d7a8be-c7d7-11df-8257-0b74fb10cdfb INDIANA Roads Internal shield1 0 1 -1 0 0 ================================================ FILE: tools/GEE/BuildTheBaseGlobe/vector/TigerLineRoads/IOWA.khdsp ================================================ 5 Resources/Vector/Roads/TigerLine2009/IOWA.kvasset Roads|USA Roads Interstates 18 LineZ 6 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^Interstate Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,3) == "I- " Primary Roads 18 LineZ 8 1 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1100 NotRegExpMatch 7 ^Interstate Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^State Hwy fields.MTFCC == "S1100" && fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte" US Highways 18 LineZ 10 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^US Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,6) == "US Hwy" && fields.FULLNAME.substr(-3,3) != "Alt" State Highways 18 LineZ 11 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^State Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,9) == "State Rte" && fields.FULLNAME.substr(-3,3) != "Alt" State Highways, no label 11 LineZ 10 0 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^State Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,9) == "State Rte" && fields.FULLNAME.substr(-3,3) != "Alt" Secondary Roads 18 LineZ 13 1 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1200 NotRegExpMatch 7 ^State Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^Interstate Hwy fields.MTFCC == "S1200" && ((fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte") || fields.FULLNAME.substr(-3,3) == "Alt") Secondary Roads, no label 13 LineZ 10 0 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1200 NotRegExpMatch 7 ^State Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^Interstate Hwy fields.MTFCC == "S1200" && ((fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte") || fields.FULLNAME.substr(-3,3) == "Alt") Surface Streets 18 LineZ 16 1 Label FillAndOutline 0.5 18 MatchAny Equal 5 S1400 Equal 5 S1630 24 1 1 1 1 22d7a8be-c7d7-11df-8257-0b74fb10cdfb IOWA Roads Internal shield1 0 1 -1 0 0 ================================================ FILE: tools/GEE/BuildTheBaseGlobe/vector/TigerLineRoads/KANSAS.khdsp ================================================ 5 Resources/Vector/Roads/TigerLine2009/KANSAS.kvasset Roads|USA Roads Interstates 18 LineZ 6 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^Interstate Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,3) == "I- " Primary Roads 18 LineZ 8 1 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1100 NotRegExpMatch 7 ^Interstate Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^State Hwy fields.MTFCC == "S1100" && fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte" US Highways 18 LineZ 10 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^US Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,6) == "US Hwy" && fields.FULLNAME.substr(-3,3) != "Alt" State Highways 18 LineZ 11 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^State Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,9) == "State Rte" && fields.FULLNAME.substr(-3,3) != "Alt" State Highways, no label 11 LineZ 10 0 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^State Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,9) == "State Rte" && fields.FULLNAME.substr(-3,3) != "Alt" Secondary Roads 18 LineZ 13 1 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1200 NotRegExpMatch 7 ^State Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^Interstate Hwy fields.MTFCC == "S1200" && ((fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte") || fields.FULLNAME.substr(-3,3) == "Alt") Secondary Roads, no label 13 LineZ 10 0 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1200 NotRegExpMatch 7 ^State Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^Interstate Hwy fields.MTFCC == "S1200" && ((fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte") || fields.FULLNAME.substr(-3,3) == "Alt") Surface Streets 18 LineZ 16 1 Label FillAndOutline 0.5 18 MatchAny Equal 5 S1400 Equal 5 S1630 24 1 1 1 1 22d7a8be-c7d7-11df-8257-0b74fb10cdfb KANSAS Roads Internal shield1 0 1 -1 0 0 ================================================ FILE: tools/GEE/BuildTheBaseGlobe/vector/TigerLineRoads/KENTUCKY.khdsp ================================================ 5 Resources/Vector/Roads/TigerLine2009/KENTUCKY.kvasset Roads|USA Roads Interstates 18 LineZ 6 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^Interstate Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,3) == "I- " Primary Roads 18 LineZ 8 1 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1100 NotRegExpMatch 7 ^Interstate Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^State Hwy fields.MTFCC == "S1100" && fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte" US Highways 18 LineZ 10 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^US Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,6) == "US Hwy" && fields.FULLNAME.substr(-3,3) != "Alt" State Highways 18 LineZ 11 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^State Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,9) == "State Rte" && fields.FULLNAME.substr(-3,3) != "Alt" State Highways, no label 11 LineZ 10 0 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^State Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,9) == "State Rte" && fields.FULLNAME.substr(-3,3) != "Alt" Secondary Roads 18 LineZ 13 1 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1200 NotRegExpMatch 7 ^State Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^Interstate Hwy fields.MTFCC == "S1200" && ((fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte") || fields.FULLNAME.substr(-3,3) == "Alt") Secondary Roads, no label 13 LineZ 10 0 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1200 NotRegExpMatch 7 ^State Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^Interstate Hwy fields.MTFCC == "S1200" && ((fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte") || fields.FULLNAME.substr(-3,3) == "Alt") Surface Streets 18 LineZ 16 1 Label FillAndOutline 0.5 18 MatchAny Equal 5 S1400 Equal 5 S1630 24 1 1 1 1 22d7a8be-c7d7-11df-8257-0b74fb10cdfb KENTUCKY Roads Internal shield1 0 1 -1 0 0 ================================================ FILE: tools/GEE/BuildTheBaseGlobe/vector/TigerLineRoads/LOUISIANA.khdsp ================================================ 5 Resources/Vector/Roads/TigerLine2009/LOUISIANA.kvasset Roads|USA Roads Interstates 18 LineZ 6 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^Interstate Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,3) == "I- " Primary Roads 18 LineZ 8 1 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1100 NotRegExpMatch 7 ^Interstate Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^State Hwy fields.MTFCC == "S1100" && fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte" US Highways 18 LineZ 10 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^US Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,6) == "US Hwy" && fields.FULLNAME.substr(-3,3) != "Alt" State Highways 18 LineZ 11 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^State Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,9) == "State Rte" && fields.FULLNAME.substr(-3,3) != "Alt" State Highways, no label 11 LineZ 10 0 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^State Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,9) == "State Rte" && fields.FULLNAME.substr(-3,3) != "Alt" Secondary Roads 18 LineZ 13 1 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1200 NotRegExpMatch 7 ^State Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^Interstate Hwy fields.MTFCC == "S1200" && ((fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte") || fields.FULLNAME.substr(-3,3) == "Alt") Secondary Roads, no label 13 LineZ 10 0 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1200 NotRegExpMatch 7 ^State Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^Interstate Hwy fields.MTFCC == "S1200" && ((fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte") || fields.FULLNAME.substr(-3,3) == "Alt") Surface Streets 18 LineZ 16 1 Label FillAndOutline 0.5 18 MatchAny Equal 5 S1400 Equal 5 S1630 24 1 1 1 1 22d7a8be-c7d7-11df-8257-0b74fb10cdfb LOUISIANA Roads Internal shield1 0 1 -1 0 0 ================================================ FILE: tools/GEE/BuildTheBaseGlobe/vector/TigerLineRoads/MAINE.khdsp ================================================ 5 Resources/Vector/Roads/TigerLine2009/MAINE.kvasset Roads|USA Roads Interstates 18 LineZ 6 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^Interstate Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,3) == "I- " Primary Roads 18 LineZ 8 1 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1100 NotRegExpMatch 7 ^Interstate Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^State Hwy fields.MTFCC == "S1100" && fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte" US Highways 18 LineZ 10 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^US Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,6) == "US Hwy" && fields.FULLNAME.substr(-3,3) != "Alt" State Highways 18 LineZ 11 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^State Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,9) == "State Rte" && fields.FULLNAME.substr(-3,3) != "Alt" State Highways, no label 11 LineZ 10 0 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^State Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,9) == "State Rte" && fields.FULLNAME.substr(-3,3) != "Alt" Secondary Roads 18 LineZ 13 1 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1200 NotRegExpMatch 7 ^State Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^Interstate Hwy fields.MTFCC == "S1200" && ((fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte") || fields.FULLNAME.substr(-3,3) == "Alt") Secondary Roads, no label 13 LineZ 10 0 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1200 NotRegExpMatch 7 ^State Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^Interstate Hwy fields.MTFCC == "S1200" && ((fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte") || fields.FULLNAME.substr(-3,3) == "Alt") Surface Streets 18 LineZ 16 1 Label FillAndOutline 0.5 18 MatchAny Equal 5 S1400 Equal 5 S1630 24 1 1 1 1 22d7a8be-c7d7-11df-8257-0b74fb10cdfb MAINE Roads Internal shield1 0 1 -1 0 0 ================================================ FILE: tools/GEE/BuildTheBaseGlobe/vector/TigerLineRoads/MARYLAND.khdsp ================================================ 5 Resources/Vector/Roads/TigerLine2009/MARYLAND.kvasset Roads|USA Roads Interstates 18 LineZ 6 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^Interstate Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,3) == "I- " Primary Roads 18 LineZ 8 1 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1100 NotRegExpMatch 7 ^Interstate Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^State Hwy fields.MTFCC == "S1100" && fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte" US Highways 18 LineZ 10 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^US Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,6) == "US Hwy" && fields.FULLNAME.substr(-3,3) != "Alt" State Highways 18 LineZ 11 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^State Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,9) == "State Rte" && fields.FULLNAME.substr(-3,3) != "Alt" State Highways, no label 11 LineZ 10 0 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^State Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,9) == "State Rte" && fields.FULLNAME.substr(-3,3) != "Alt" Secondary Roads 18 LineZ 13 1 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1200 NotRegExpMatch 7 ^State Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^Interstate Hwy fields.MTFCC == "S1200" && ((fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte") || fields.FULLNAME.substr(-3,3) == "Alt") Secondary Roads, no label 13 LineZ 10 0 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1200 NotRegExpMatch 7 ^State Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^Interstate Hwy fields.MTFCC == "S1200" && ((fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte") || fields.FULLNAME.substr(-3,3) == "Alt") Surface Streets 18 LineZ 16 1 Label FillAndOutline 0.5 18 MatchAny Equal 5 S1400 Equal 5 S1630 24 1 1 1 1 22d7a8be-c7d7-11df-8257-0b74fb10cdfb MARYLAND Roads Internal shield1 0 1 -1 0 0 ================================================ FILE: tools/GEE/BuildTheBaseGlobe/vector/TigerLineRoads/MASSACHUSETTS.khdsp ================================================ 5 Resources/Vector/Roads/TigerLine2009/MASSACHUSETTS.kvasset Roads|USA Roads Interstates 18 LineZ 6 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^Interstate Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,3) == "I- " Primary Roads 18 LineZ 8 1 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1100 NotRegExpMatch 7 ^Interstate Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^State Hwy fields.MTFCC == "S1100" && fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte" US Highways 18 LineZ 10 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^US Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,6) == "US Hwy" && fields.FULLNAME.substr(-3,3) != "Alt" State Highways 18 LineZ 11 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^State Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,9) == "State Rte" && fields.FULLNAME.substr(-3,3) != "Alt" State Highways, no label 11 LineZ 10 0 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^State Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,9) == "State Rte" && fields.FULLNAME.substr(-3,3) != "Alt" Secondary Roads 18 LineZ 13 1 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1200 NotRegExpMatch 7 ^State Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^Interstate Hwy fields.MTFCC == "S1200" && ((fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte") || fields.FULLNAME.substr(-3,3) == "Alt") Secondary Roads, no label 13 LineZ 10 0 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1200 NotRegExpMatch 7 ^State Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^Interstate Hwy fields.MTFCC == "S1200" && ((fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte") || fields.FULLNAME.substr(-3,3) == "Alt") Surface Streets 18 LineZ 16 1 Label FillAndOutline 0.5 18 MatchAny Equal 5 S1400 Equal 5 S1630 24 1 1 1 1 22d7a8be-c7d7-11df-8257-0b74fb10cdfb MASSACHUSETTS Roads Internal shield1 0 1 -1 0 0 ================================================ FILE: tools/GEE/BuildTheBaseGlobe/vector/TigerLineRoads/MICHIGAN.khdsp ================================================ 5 Resources/Vector/Roads/TigerLine2009/MICHIGAN.kvasset Roads|USA Roads Interstates 18 LineZ 6 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^Interstate Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,3) == "I- " Primary Roads 18 LineZ 8 1 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1100 NotRegExpMatch 7 ^Interstate Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^State Hwy fields.MTFCC == "S1100" && fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte" US Highways 18 LineZ 10 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^US Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,6) == "US Hwy" && fields.FULLNAME.substr(-3,3) != "Alt" State Highways 18 LineZ 11 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^State Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,9) == "State Rte" && fields.FULLNAME.substr(-3,3) != "Alt" State Highways, no label 11 LineZ 10 0 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^State Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,9) == "State Rte" && fields.FULLNAME.substr(-3,3) != "Alt" Secondary Roads 18 LineZ 13 1 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1200 NotRegExpMatch 7 ^State Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^Interstate Hwy fields.MTFCC == "S1200" && ((fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte") || fields.FULLNAME.substr(-3,3) == "Alt") Secondary Roads, no label 13 LineZ 10 0 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1200 NotRegExpMatch 7 ^State Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^Interstate Hwy fields.MTFCC == "S1200" && ((fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte") || fields.FULLNAME.substr(-3,3) == "Alt") Surface Streets 18 LineZ 16 1 Label FillAndOutline 0.5 18 MatchAny Equal 5 S1400 Equal 5 S1630 24 1 1 1 1 22d7a8be-c7d7-11df-8257-0b74fb10cdfb MICHIGAN Roads Internal shield1 0 1 -1 0 0 ================================================ FILE: tools/GEE/BuildTheBaseGlobe/vector/TigerLineRoads/MINNESOTA.khdsp ================================================ 5 Resources/Vector/Roads/TigerLine2009/MINNESOTA.kvasset Roads|USA Roads Interstates 18 LineZ 6 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^Interstate Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,3) == "I- " Primary Roads 18 LineZ 8 1 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1100 NotRegExpMatch 7 ^Interstate Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^State Hwy fields.MTFCC == "S1100" && fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte" US Highways 18 LineZ 10 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^US Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,6) == "US Hwy" && fields.FULLNAME.substr(-3,3) != "Alt" State Highways 18 LineZ 11 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^State Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,9) == "State Rte" && fields.FULLNAME.substr(-3,3) != "Alt" State Highways, no label 11 LineZ 10 0 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^State Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,9) == "State Rte" && fields.FULLNAME.substr(-3,3) != "Alt" Secondary Roads 18 LineZ 13 1 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1200 NotRegExpMatch 7 ^State Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^Interstate Hwy fields.MTFCC == "S1200" && ((fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte") || fields.FULLNAME.substr(-3,3) == "Alt") Secondary Roads, no label 13 LineZ 10 0 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1200 NotRegExpMatch 7 ^State Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^Interstate Hwy fields.MTFCC == "S1200" && ((fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte") || fields.FULLNAME.substr(-3,3) == "Alt") Surface Streets 18 LineZ 16 1 Label FillAndOutline 0.5 18 MatchAny Equal 5 S1400 Equal 5 S1630 24 1 1 1 1 22d7a8be-c7d7-11df-8257-0b74fb10cdfb MINNESOTA Roads Internal shield1 0 1 -1 0 0 ================================================ FILE: tools/GEE/BuildTheBaseGlobe/vector/TigerLineRoads/MISSISSIPPI.khdsp ================================================ 5 Resources/Vector/Roads/TigerLine2009/MISSISSIPPI.kvasset Roads|USA Roads Interstates 18 LineZ 6 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^Interstate Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,3) == "I- " Primary Roads 18 LineZ 8 1 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1100 NotRegExpMatch 7 ^Interstate Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^State Hwy fields.MTFCC == "S1100" && fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte" US Highways 18 LineZ 10 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^US Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,6) == "US Hwy" && fields.FULLNAME.substr(-3,3) != "Alt" State Highways 18 LineZ 11 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^State Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,9) == "State Rte" && fields.FULLNAME.substr(-3,3) != "Alt" State Highways, no label 11 LineZ 10 0 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^State Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,9) == "State Rte" && fields.FULLNAME.substr(-3,3) != "Alt" Secondary Roads 18 LineZ 13 1 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1200 NotRegExpMatch 7 ^State Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^Interstate Hwy fields.MTFCC == "S1200" && ((fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte") || fields.FULLNAME.substr(-3,3) == "Alt") Secondary Roads, no label 13 LineZ 10 0 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1200 NotRegExpMatch 7 ^State Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^Interstate Hwy fields.MTFCC == "S1200" && ((fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte") || fields.FULLNAME.substr(-3,3) == "Alt") Surface Streets 18 LineZ 16 1 Label FillAndOutline 0.5 18 MatchAny Equal 5 S1400 Equal 5 S1630 24 1 1 1 1 22d7a8be-c7d7-11df-8257-0b74fb10cdfb MISSISSIPPI Roads Internal shield1 0 1 -1 0 0 ================================================ FILE: tools/GEE/BuildTheBaseGlobe/vector/TigerLineRoads/MISSOURI.khdsp ================================================ 5 Resources/Vector/Roads/TigerLine2009/MISSOURI.kvasset Roads|USA Roads Interstates 18 LineZ 6 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^Interstate Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,3) == "I- " Primary Roads 18 LineZ 8 1 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1100 NotRegExpMatch 7 ^Interstate Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^State Hwy fields.MTFCC == "S1100" && fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte" US Highways 18 LineZ 10 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^US Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,6) == "US Hwy" && fields.FULLNAME.substr(-3,3) != "Alt" State Highways 18 LineZ 11 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^State Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,9) == "State Rte" && fields.FULLNAME.substr(-3,3) != "Alt" State Highways, no label 11 LineZ 10 0 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^State Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,9) == "State Rte" && fields.FULLNAME.substr(-3,3) != "Alt" Secondary Roads 18 LineZ 13 1 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1200 NotRegExpMatch 7 ^State Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^Interstate Hwy fields.MTFCC == "S1200" && ((fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte") || fields.FULLNAME.substr(-3,3) == "Alt") Secondary Roads, no label 13 LineZ 10 0 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1200 NotRegExpMatch 7 ^State Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^Interstate Hwy fields.MTFCC == "S1200" && ((fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte") || fields.FULLNAME.substr(-3,3) == "Alt") Surface Streets 18 LineZ 16 1 Label FillAndOutline 0.5 18 MatchAny Equal 5 S1400 Equal 5 S1630 24 1 1 1 1 22d7a8be-c7d7-11df-8257-0b74fb10cdfb MISSOURI Roads Internal shield1 0 1 -1 0 0 ================================================ FILE: tools/GEE/BuildTheBaseGlobe/vector/TigerLineRoads/MONTANA.khdsp ================================================ 5 Resources/Vector/Roads/TigerLine2009/MONTANA.kvasset Roads|USA Roads Interstates 18 LineZ 6 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^Interstate Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,3) == "I- " Primary Roads 18 LineZ 8 1 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1100 NotRegExpMatch 7 ^Interstate Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^State Hwy fields.MTFCC == "S1100" && fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte" US Highways 18 LineZ 10 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^US Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,6) == "US Hwy" && fields.FULLNAME.substr(-3,3) != "Alt" State Highways 18 LineZ 11 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^State Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,9) == "State Rte" && fields.FULLNAME.substr(-3,3) != "Alt" State Highways, no label 11 LineZ 10 0 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^State Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,9) == "State Rte" && fields.FULLNAME.substr(-3,3) != "Alt" Secondary Roads 18 LineZ 13 1 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1200 NotRegExpMatch 7 ^State Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^Interstate Hwy fields.MTFCC == "S1200" && ((fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte") || fields.FULLNAME.substr(-3,3) == "Alt") Secondary Roads, no label 13 LineZ 10 0 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1200 NotRegExpMatch 7 ^State Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^Interstate Hwy fields.MTFCC == "S1200" && ((fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte") || fields.FULLNAME.substr(-3,3) == "Alt") Surface Streets 18 LineZ 16 1 Label FillAndOutline 0.5 18 MatchAny Equal 5 S1400 Equal 5 S1630 24 1 1 1 1 22d7a8be-c7d7-11df-8257-0b74fb10cdfb MONTANA Roads Internal shield1 0 1 -1 0 0 ================================================ FILE: tools/GEE/BuildTheBaseGlobe/vector/TigerLineRoads/NEBRASKA.khdsp ================================================ 5 Resources/Vector/Roads/TigerLine2009/NEBRASKA.kvasset Roads|USA Roads Interstates 18 LineZ 6 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^Interstate Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,3) == "I- " Primary Roads 18 LineZ 8 1 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1100 NotRegExpMatch 7 ^Interstate Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^State Hwy fields.MTFCC == "S1100" && fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte" US Highways 18 LineZ 10 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^US Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,6) == "US Hwy" && fields.FULLNAME.substr(-3,3) != "Alt" State Highways 18 LineZ 11 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^State Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,9) == "State Rte" && fields.FULLNAME.substr(-3,3) != "Alt" State Highways, no label 11 LineZ 10 0 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^State Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,9) == "State Rte" && fields.FULLNAME.substr(-3,3) != "Alt" Secondary Roads 18 LineZ 13 1 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1200 NotRegExpMatch 7 ^State Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^Interstate Hwy fields.MTFCC == "S1200" && ((fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte") || fields.FULLNAME.substr(-3,3) == "Alt") Secondary Roads, no label 13 LineZ 10 0 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1200 NotRegExpMatch 7 ^State Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^Interstate Hwy fields.MTFCC == "S1200" && ((fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte") || fields.FULLNAME.substr(-3,3) == "Alt") Surface Streets 18 LineZ 16 1 Label FillAndOutline 0.5 18 MatchAny Equal 5 S1400 Equal 5 S1630 24 1 1 1 1 22d7a8be-c7d7-11df-8257-0b74fb10cdfb NEBRASKA Roads Internal shield1 0 1 -1 0 0 ================================================ FILE: tools/GEE/BuildTheBaseGlobe/vector/TigerLineRoads/NEVADA.khdsp ================================================ 5 Resources/Vector/Roads/TigerLine2009/NEVADA.kvasset Roads|USA Roads Interstates 18 LineZ 6 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^Interstate Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,3) == "I- " Primary Roads 18 LineZ 8 1 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1100 NotRegExpMatch 7 ^Interstate Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^State Hwy fields.MTFCC == "S1100" && fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte" US Highways 18 LineZ 10 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^US Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,6) == "US Hwy" && fields.FULLNAME.substr(-3,3) != "Alt" State Highways 18 LineZ 11 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^State Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,9) == "State Rte" && fields.FULLNAME.substr(-3,3) != "Alt" State Highways, no label 11 LineZ 10 0 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^State Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,9) == "State Rte" && fields.FULLNAME.substr(-3,3) != "Alt" Secondary Roads 18 LineZ 13 1 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1200 NotRegExpMatch 7 ^State Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^Interstate Hwy fields.MTFCC == "S1200" && ((fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte") || fields.FULLNAME.substr(-3,3) == "Alt") Secondary Roads, no label 13 LineZ 10 0 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1200 NotRegExpMatch 7 ^State Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^Interstate Hwy fields.MTFCC == "S1200" && ((fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte") || fields.FULLNAME.substr(-3,3) == "Alt") Surface Streets 18 LineZ 16 1 Label FillAndOutline 0.5 18 MatchAny Equal 5 S1400 Equal 5 S1630 24 1 1 1 1 22d7a8be-c7d7-11df-8257-0b74fb10cdfb NEVADA Roads Internal shield1 0 1 -1 0 0 ================================================ FILE: tools/GEE/BuildTheBaseGlobe/vector/TigerLineRoads/NEW_HAMPSHIRE.khdsp ================================================ 5 Resources/Vector/Roads/TigerLine2009/NEW_HAMPSHIRE.kvasset Roads|USA Roads Interstates 18 LineZ 6 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^Interstate Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,3) == "I- " Primary Roads 18 LineZ 8 1 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1100 NotRegExpMatch 7 ^Interstate Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^State Hwy fields.MTFCC == "S1100" && fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte" US Highways 18 LineZ 10 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^US Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,6) == "US Hwy" && fields.FULLNAME.substr(-3,3) != "Alt" State Highways 18 LineZ 11 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^State Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,9) == "State Rte" && fields.FULLNAME.substr(-3,3) != "Alt" State Highways, no label 11 LineZ 10 0 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^State Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,9) == "State Rte" && fields.FULLNAME.substr(-3,3) != "Alt" Secondary Roads 18 LineZ 13 1 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1200 NotRegExpMatch 7 ^State Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^Interstate Hwy fields.MTFCC == "S1200" && ((fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte") || fields.FULLNAME.substr(-3,3) == "Alt") Secondary Roads, no label 13 LineZ 10 0 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1200 NotRegExpMatch 7 ^State Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^Interstate Hwy fields.MTFCC == "S1200" && ((fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte") || fields.FULLNAME.substr(-3,3) == "Alt") Surface Streets 18 LineZ 16 1 Label FillAndOutline 0.5 18 MatchAny Equal 5 S1400 Equal 5 S1630 24 1 1 1 1 22d7a8be-c7d7-11df-8257-0b74fb10cdfb NEW_HAMPSHIRE Roads Internal shield1 0 1 -1 0 0 ================================================ FILE: tools/GEE/BuildTheBaseGlobe/vector/TigerLineRoads/NEW_JERSEY.khdsp ================================================ 5 Resources/Vector/Roads/TigerLine2009/NEW_JERSEY.kvasset Roads|USA Roads Interstates 18 LineZ 6 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^Interstate Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,3) == "I- " Primary Roads 18 LineZ 8 1 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1100 NotRegExpMatch 7 ^Interstate Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^State Hwy fields.MTFCC == "S1100" && fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte" US Highways 18 LineZ 10 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^US Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,6) == "US Hwy" && fields.FULLNAME.substr(-3,3) != "Alt" State Highways 18 LineZ 11 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^State Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,9) == "State Rte" && fields.FULLNAME.substr(-3,3) != "Alt" State Highways, no label 11 LineZ 10 0 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^State Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,9) == "State Rte" && fields.FULLNAME.substr(-3,3) != "Alt" Secondary Roads 18 LineZ 13 1 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1200 NotRegExpMatch 7 ^State Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^Interstate Hwy fields.MTFCC == "S1200" && ((fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte") || fields.FULLNAME.substr(-3,3) == "Alt") Secondary Roads, no label 13 LineZ 10 0 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1200 NotRegExpMatch 7 ^State Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^Interstate Hwy fields.MTFCC == "S1200" && ((fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte") || fields.FULLNAME.substr(-3,3) == "Alt") Surface Streets 18 LineZ 16 1 Label FillAndOutline 0.5 18 MatchAny Equal 5 S1400 Equal 5 S1630 24 1 1 1 1 22d7a8be-c7d7-11df-8257-0b74fb10cdfb NEW_JERSEY Roads Internal shield1 0 1 -1 0 0 ================================================ FILE: tools/GEE/BuildTheBaseGlobe/vector/TigerLineRoads/NEW_MEXICO.khdsp ================================================ 5 Resources/Vector/Roads/TigerLine2009/NEW_MEXICO.kvasset Roads|USA Roads Interstates 18 LineZ 6 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^Interstate Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,3) == "I- " Primary Roads 18 LineZ 8 1 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1100 NotRegExpMatch 7 ^Interstate Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^State Hwy fields.MTFCC == "S1100" && fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte" US Highways 18 LineZ 10 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^US Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,6) == "US Hwy" && fields.FULLNAME.substr(-3,3) != "Alt" State Highways 18 LineZ 11 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^State Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,9) == "State Rte" && fields.FULLNAME.substr(-3,3) != "Alt" State Highways, no label 11 LineZ 10 0 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^State Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,9) == "State Rte" && fields.FULLNAME.substr(-3,3) != "Alt" Secondary Roads 18 LineZ 13 1 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1200 NotRegExpMatch 7 ^State Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^Interstate Hwy fields.MTFCC == "S1200" && ((fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte") || fields.FULLNAME.substr(-3,3) == "Alt") Secondary Roads, no label 13 LineZ 10 0 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1200 NotRegExpMatch 7 ^State Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^Interstate Hwy fields.MTFCC == "S1200" && ((fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte") || fields.FULLNAME.substr(-3,3) == "Alt") Surface Streets 18 LineZ 16 1 Label FillAndOutline 0.5 18 MatchAny Equal 5 S1400 Equal 5 S1630 24 1 1 1 1 22d7a8be-c7d7-11df-8257-0b74fb10cdfb NEW_MEXICO Roads Internal shield1 0 1 -1 0 0 ================================================ FILE: tools/GEE/BuildTheBaseGlobe/vector/TigerLineRoads/NEW_YORK.khdsp ================================================ 5 Resources/Vector/Roads/TigerLine2009/NEW_YORK.kvasset Roads|USA Roads Interstates 18 LineZ 6 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^Interstate Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,3) == "I- " Primary Roads 18 LineZ 8 1 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1100 NotRegExpMatch 7 ^Interstate Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^State Hwy fields.MTFCC == "S1100" && fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte" US Highways 18 LineZ 10 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^US Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,6) == "US Hwy" && fields.FULLNAME.substr(-3,3) != "Alt" State Highways 18 LineZ 11 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^State Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,9) == "State Rte" && fields.FULLNAME.substr(-3,3) != "Alt" State Highways, no label 11 LineZ 10 0 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^State Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,9) == "State Rte" && fields.FULLNAME.substr(-3,3) != "Alt" Secondary Roads 18 LineZ 13 1 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1200 NotRegExpMatch 7 ^State Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^Interstate Hwy fields.MTFCC == "S1200" && ((fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte") || fields.FULLNAME.substr(-3,3) == "Alt") Secondary Roads, no label 13 LineZ 10 0 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1200 NotRegExpMatch 7 ^State Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^Interstate Hwy fields.MTFCC == "S1200" && ((fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte") || fields.FULLNAME.substr(-3,3) == "Alt") Surface Streets 18 LineZ 16 1 Label FillAndOutline 0.5 18 MatchAny Equal 5 S1400 Equal 5 S1630 24 1 1 1 1 22d7a8be-c7d7-11df-8257-0b74fb10cdfb NEW_YORK Roads Internal shield1 0 1 -1 0 0 ================================================ FILE: tools/GEE/BuildTheBaseGlobe/vector/TigerLineRoads/NORTH_CAROLINA.khdsp ================================================ 5 Resources/Vector/Roads/TigerLine2009/NORTH_CAROLINA.kvasset Roads|USA Roads Interstates 18 LineZ 6 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^Interstate Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,3) == "I- " Primary Roads 18 LineZ 8 1 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1100 NotRegExpMatch 7 ^Interstate Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^State Hwy fields.MTFCC == "S1100" && fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte" US Highways 18 LineZ 10 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^US Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,6) == "US Hwy" && fields.FULLNAME.substr(-3,3) != "Alt" State Highways 18 LineZ 11 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^State Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,9) == "State Rte" && fields.FULLNAME.substr(-3,3) != "Alt" State Highways, no label 11 LineZ 10 0 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^State Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,9) == "State Rte" && fields.FULLNAME.substr(-3,3) != "Alt" Secondary Roads 18 LineZ 13 1 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1200 NotRegExpMatch 7 ^State Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^Interstate Hwy fields.MTFCC == "S1200" && ((fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte") || fields.FULLNAME.substr(-3,3) == "Alt") Secondary Roads, no label 13 LineZ 10 0 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1200 NotRegExpMatch 7 ^State Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^Interstate Hwy fields.MTFCC == "S1200" && ((fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte") || fields.FULLNAME.substr(-3,3) == "Alt") Surface Streets 18 LineZ 16 1 Label FillAndOutline 0.5 18 MatchAny Equal 5 S1400 Equal 5 S1630 24 1 1 1 1 22d7a8be-c7d7-11df-8257-0b74fb10cdfb NORTH_CAROLINA Roads Internal shield1 0 1 -1 0 0 ================================================ FILE: tools/GEE/BuildTheBaseGlobe/vector/TigerLineRoads/NORTH_DAKOTA.khdsp ================================================ 5 Resources/Vector/Roads/TigerLine2009/NORTH_DAKOTA.kvasset Roads|USA Roads Interstates 18 LineZ 6 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^Interstate Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,3) == "I- " Primary Roads 18 LineZ 8 1 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1100 NotRegExpMatch 7 ^Interstate Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^State Hwy fields.MTFCC == "S1100" && fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte" US Highways 18 LineZ 10 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^US Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,6) == "US Hwy" && fields.FULLNAME.substr(-3,3) != "Alt" State Highways 18 LineZ 11 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^State Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,9) == "State Rte" && fields.FULLNAME.substr(-3,3) != "Alt" State Highways, no label 11 LineZ 10 0 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^State Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,9) == "State Rte" && fields.FULLNAME.substr(-3,3) != "Alt" Secondary Roads 18 LineZ 13 1 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1200 NotRegExpMatch 7 ^State Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^Interstate Hwy fields.MTFCC == "S1200" && ((fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte") || fields.FULLNAME.substr(-3,3) == "Alt") Secondary Roads, no label 13 LineZ 10 0 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1200 NotRegExpMatch 7 ^State Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^Interstate Hwy fields.MTFCC == "S1200" && ((fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte") || fields.FULLNAME.substr(-3,3) == "Alt") Surface Streets 18 LineZ 16 1 Label FillAndOutline 0.5 18 MatchAny Equal 5 S1400 Equal 5 S1630 24 1 1 1 1 22d7a8be-c7d7-11df-8257-0b74fb10cdfb NORTH_DAKOTA Roads Internal shield1 0 1 -1 0 0 ================================================ FILE: tools/GEE/BuildTheBaseGlobe/vector/TigerLineRoads/OHIO.khdsp ================================================ 5 Resources/Vector/Roads/TigerLine2009/OHIO.kvasset Roads|USA Roads Interstates 18 LineZ 6 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^Interstate Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,3) == "I- " Primary Roads 18 LineZ 8 1 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1100 NotRegExpMatch 7 ^Interstate Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^State Hwy fields.MTFCC == "S1100" && fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte" US Highways 18 LineZ 10 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^US Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,6) == "US Hwy" && fields.FULLNAME.substr(-3,3) != "Alt" State Highways 18 LineZ 11 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^State Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,9) == "State Rte" && fields.FULLNAME.substr(-3,3) != "Alt" State Highways, no label 11 LineZ 10 0 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^State Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,9) == "State Rte" && fields.FULLNAME.substr(-3,3) != "Alt" Secondary Roads 18 LineZ 13 1 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1200 NotRegExpMatch 7 ^State Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^Interstate Hwy fields.MTFCC == "S1200" && ((fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte") || fields.FULLNAME.substr(-3,3) == "Alt") Secondary Roads, no label 13 LineZ 10 0 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1200 NotRegExpMatch 7 ^State Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^Interstate Hwy fields.MTFCC == "S1200" && ((fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte") || fields.FULLNAME.substr(-3,3) == "Alt") Surface Streets 18 LineZ 16 1 Label FillAndOutline 0.5 18 MatchAny Equal 5 S1400 Equal 5 S1630 24 1 1 1 1 22d7a8be-c7d7-11df-8257-0b74fb10cdfb OHIO Roads Internal shield1 0 1 -1 0 0 ================================================ FILE: tools/GEE/BuildTheBaseGlobe/vector/TigerLineRoads/OKLAHOMA.khdsp ================================================ 5 Resources/Vector/Roads/TigerLine2009/OKLAHOMA.kvasset Roads|USA Roads Interstates 18 LineZ 6 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^Interstate Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,3) == "I- " Primary Roads 18 LineZ 8 1 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1100 NotRegExpMatch 7 ^Interstate Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^State Hwy fields.MTFCC == "S1100" && fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte" US Highways 18 LineZ 10 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^US Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,6) == "US Hwy" && fields.FULLNAME.substr(-3,3) != "Alt" State Highways 18 LineZ 11 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^State Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,9) == "State Rte" && fields.FULLNAME.substr(-3,3) != "Alt" State Highways, no label 11 LineZ 10 0 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^State Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,9) == "State Rte" && fields.FULLNAME.substr(-3,3) != "Alt" Secondary Roads 18 LineZ 13 1 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1200 NotRegExpMatch 7 ^State Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^Interstate Hwy fields.MTFCC == "S1200" && ((fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte") || fields.FULLNAME.substr(-3,3) == "Alt") Secondary Roads, no label 13 LineZ 10 0 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1200 NotRegExpMatch 7 ^State Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^Interstate Hwy fields.MTFCC == "S1200" && ((fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte") || fields.FULLNAME.substr(-3,3) == "Alt") Surface Streets 18 LineZ 16 1 Label FillAndOutline 0.5 18 MatchAny Equal 5 S1400 Equal 5 S1630 24 1 1 1 1 22d7a8be-c7d7-11df-8257-0b74fb10cdfb OKLAHOMA Roads Internal shield1 0 1 -1 0 0 ================================================ FILE: tools/GEE/BuildTheBaseGlobe/vector/TigerLineRoads/OREGON.khdsp ================================================ 5 Resources/Vector/Roads/TigerLine2009/OREGON.kvasset Roads|USA Roads Interstates 18 LineZ 6 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^Interstate Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,3) == "I- " Primary Roads 18 LineZ 8 1 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1100 NotRegExpMatch 7 ^Interstate Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^State Hwy fields.MTFCC == "S1100" && fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte" US Highways 18 LineZ 10 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^US Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,6) == "US Hwy" && fields.FULLNAME.substr(-3,3) != "Alt" State Highways 18 LineZ 11 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^State Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,9) == "State Rte" && fields.FULLNAME.substr(-3,3) != "Alt" State Highways, no label 11 LineZ 10 0 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^State Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,9) == "State Rte" && fields.FULLNAME.substr(-3,3) != "Alt" Secondary Roads 18 LineZ 13 1 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1200 NotRegExpMatch 7 ^State Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^Interstate Hwy fields.MTFCC == "S1200" && ((fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte") || fields.FULLNAME.substr(-3,3) == "Alt") Secondary Roads, no label 13 LineZ 10 0 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1200 NotRegExpMatch 7 ^State Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^Interstate Hwy fields.MTFCC == "S1200" && ((fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte") || fields.FULLNAME.substr(-3,3) == "Alt") Surface Streets 18 LineZ 16 1 Label FillAndOutline 0.5 18 MatchAny Equal 5 S1400 Equal 5 S1630 24 1 1 1 1 22d7a8be-c7d7-11df-8257-0b74fb10cdfb OREGON Roads Internal shield1 0 1 -1 0 0 ================================================ FILE: tools/GEE/BuildTheBaseGlobe/vector/TigerLineRoads/PENNSYLVANIA.khdsp ================================================ 5 Resources/Vector/Roads/TigerLine2009/PENNSYLVANIA.kvasset Roads|USA Roads Interstates 18 LineZ 6 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^Interstate Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,3) == "I- " Primary Roads 18 LineZ 8 1 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1100 NotRegExpMatch 7 ^Interstate Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^State Hwy fields.MTFCC == "S1100" && fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte" US Highways 18 LineZ 10 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^US Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,6) == "US Hwy" && fields.FULLNAME.substr(-3,3) != "Alt" State Highways 18 LineZ 11 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^State Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,9) == "State Rte" && fields.FULLNAME.substr(-3,3) != "Alt" State Highways, no label 11 LineZ 10 0 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^State Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,9) == "State Rte" && fields.FULLNAME.substr(-3,3) != "Alt" Secondary Roads 18 LineZ 13 1 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1200 NotRegExpMatch 7 ^State Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^Interstate Hwy fields.MTFCC == "S1200" && ((fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte") || fields.FULLNAME.substr(-3,3) == "Alt") Secondary Roads, no label 13 LineZ 10 0 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1200 NotRegExpMatch 7 ^State Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^Interstate Hwy fields.MTFCC == "S1200" && ((fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte") || fields.FULLNAME.substr(-3,3) == "Alt") Surface Streets 18 LineZ 16 1 Label FillAndOutline 0.5 18 MatchAny Equal 5 S1400 Equal 5 S1630 24 1 1 1 1 22d7a8be-c7d7-11df-8257-0b74fb10cdfb PENNSYLVANIA Roads Internal shield1 0 1 -1 0 0 ================================================ FILE: tools/GEE/BuildTheBaseGlobe/vector/TigerLineRoads/RHODE_ISLAND.khdsp ================================================ 5 Resources/Vector/Roads/TigerLine2009/RHODE_ISLAND.kvasset Roads|USA Roads Interstates 18 LineZ 6 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^Interstate Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,3) == "I- " Primary Roads 18 LineZ 8 1 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1100 NotRegExpMatch 7 ^Interstate Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^State Hwy fields.MTFCC == "S1100" && fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte" US Highways 18 LineZ 10 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^US Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,6) == "US Hwy" && fields.FULLNAME.substr(-3,3) != "Alt" State Highways 18 LineZ 11 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^State Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,9) == "State Rte" && fields.FULLNAME.substr(-3,3) != "Alt" State Highways, no label 11 LineZ 10 0 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^State Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,9) == "State Rte" && fields.FULLNAME.substr(-3,3) != "Alt" Secondary Roads 18 LineZ 13 1 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1200 NotRegExpMatch 7 ^State Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^Interstate Hwy fields.MTFCC == "S1200" && ((fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte") || fields.FULLNAME.substr(-3,3) == "Alt") Secondary Roads, no label 13 LineZ 10 0 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1200 NotRegExpMatch 7 ^State Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^Interstate Hwy fields.MTFCC == "S1200" && ((fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte") || fields.FULLNAME.substr(-3,3) == "Alt") Surface Streets 18 LineZ 16 1 Label FillAndOutline 0.5 18 MatchAny Equal 5 S1400 Equal 5 S1630 24 1 1 1 1 22d7a8be-c7d7-11df-8257-0b74fb10cdfb RHODE_ISLAND Roads Internal shield1 0 1 -1 0 0 ================================================ FILE: tools/GEE/BuildTheBaseGlobe/vector/TigerLineRoads/SOUTH_CAROLINA.khdsp ================================================ 5 Resources/Vector/Roads/TigerLine2009/SOUTH_CAROLINA.kvasset Roads|USA Roads Interstates 18 LineZ 6 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^Interstate Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,3) == "I- " Primary Roads 18 LineZ 8 1 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1100 NotRegExpMatch 7 ^Interstate Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^State Hwy fields.MTFCC == "S1100" && fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte" US Highways 18 LineZ 10 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^US Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,6) == "US Hwy" && fields.FULLNAME.substr(-3,3) != "Alt" State Highways 18 LineZ 11 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^State Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,9) == "State Rte" && fields.FULLNAME.substr(-3,3) != "Alt" State Highways, no label 11 LineZ 10 0 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^State Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,9) == "State Rte" && fields.FULLNAME.substr(-3,3) != "Alt" Secondary Roads 18 LineZ 13 1 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1200 NotRegExpMatch 7 ^State Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^Interstate Hwy fields.MTFCC == "S1200" && ((fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte") || fields.FULLNAME.substr(-3,3) == "Alt") Secondary Roads, no label 13 LineZ 10 0 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1200 NotRegExpMatch 7 ^State Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^Interstate Hwy fields.MTFCC == "S1200" && ((fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte") || fields.FULLNAME.substr(-3,3) == "Alt") Surface Streets 18 LineZ 16 1 Label FillAndOutline 0.5 18 MatchAny Equal 5 S1400 Equal 5 S1630 24 1 1 1 1 22d7a8be-c7d7-11df-8257-0b74fb10cdfb SOUTH_CAROLINA Roads Internal shield1 0 1 -1 0 0 ================================================ FILE: tools/GEE/BuildTheBaseGlobe/vector/TigerLineRoads/SOUTH_DAKOTA.khdsp ================================================ 5 Resources/Vector/Roads/TigerLine2009/SOUTH_DAKOTA.kvasset Roads|USA Roads Interstates 18 LineZ 6 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^Interstate Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,3) == "I- " Primary Roads 18 LineZ 8 1 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1100 NotRegExpMatch 7 ^Interstate Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^State Hwy fields.MTFCC == "S1100" && fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte" US Highways 18 LineZ 10 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^US Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,6) == "US Hwy" && fields.FULLNAME.substr(-3,3) != "Alt" State Highways 18 LineZ 11 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^State Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,9) == "State Rte" && fields.FULLNAME.substr(-3,3) != "Alt" State Highways, no label 11 LineZ 10 0 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^State Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,9) == "State Rte" && fields.FULLNAME.substr(-3,3) != "Alt" Secondary Roads 18 LineZ 13 1 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1200 NotRegExpMatch 7 ^State Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^Interstate Hwy fields.MTFCC == "S1200" && ((fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte") || fields.FULLNAME.substr(-3,3) == "Alt") Secondary Roads, no label 13 LineZ 10 0 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1200 NotRegExpMatch 7 ^State Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^Interstate Hwy fields.MTFCC == "S1200" && ((fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte") || fields.FULLNAME.substr(-3,3) == "Alt") Surface Streets 18 LineZ 16 1 Label FillAndOutline 0.5 18 MatchAny Equal 5 S1400 Equal 5 S1630 24 1 1 1 1 22d7a8be-c7d7-11df-8257-0b74fb10cdfb SOUTH_DAKOTA Roads Internal shield1 0 1 -1 0 0 ================================================ FILE: tools/GEE/BuildTheBaseGlobe/vector/TigerLineRoads/TENNESSEE.khdsp ================================================ 5 Resources/Vector/Roads/TigerLine2009/TENNESSEE.kvasset Roads|USA Roads Interstates 18 LineZ 6 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^Interstate Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,3) == "I- " Primary Roads 18 LineZ 8 1 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1100 NotRegExpMatch 7 ^Interstate Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^State Hwy fields.MTFCC == "S1100" && fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte" US Highways 18 LineZ 10 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^US Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,6) == "US Hwy" && fields.FULLNAME.substr(-3,3) != "Alt" State Highways 18 LineZ 11 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^State Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,9) == "State Rte" && fields.FULLNAME.substr(-3,3) != "Alt" State Highways, no label 11 LineZ 10 0 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^State Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,9) == "State Rte" && fields.FULLNAME.substr(-3,3) != "Alt" Secondary Roads 18 LineZ 13 1 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1200 NotRegExpMatch 7 ^State Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^Interstate Hwy fields.MTFCC == "S1200" && ((fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte") || fields.FULLNAME.substr(-3,3) == "Alt") Secondary Roads, no label 13 LineZ 10 0 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1200 NotRegExpMatch 7 ^State Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^Interstate Hwy fields.MTFCC == "S1200" && ((fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte") || fields.FULLNAME.substr(-3,3) == "Alt") Surface Streets 18 LineZ 16 1 Label FillAndOutline 0.5 18 MatchAny Equal 5 S1400 Equal 5 S1630 24 1 1 1 1 22d7a8be-c7d7-11df-8257-0b74fb10cdfb TENNESSEE Roads Internal shield1 0 1 -1 0 0 ================================================ FILE: tools/GEE/BuildTheBaseGlobe/vector/TigerLineRoads/TEXAS.khdsp ================================================ 5 Resources/Vector/Roads/TigerLine2009/TEXAS.kvasset Roads|USA Roads Interstates 18 LineZ 6 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^Interstate Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,3) == "I- " Primary Roads 18 LineZ 8 1 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1100 NotRegExpMatch 7 ^Interstate Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^State Hwy fields.MTFCC == "S1100" && fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte" US Highways 18 LineZ 10 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^US Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,6) == "US Hwy" && fields.FULLNAME.substr(-3,3) != "Alt" State Highways 18 LineZ 11 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^State Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,9) == "State Rte" && fields.FULLNAME.substr(-3,3) != "Alt" State Highways, no label 11 LineZ 10 0 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^State Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,9) == "State Rte" && fields.FULLNAME.substr(-3,3) != "Alt" Secondary Roads 18 LineZ 13 1 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1200 NotRegExpMatch 7 ^State Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^Interstate Hwy fields.MTFCC == "S1200" && ((fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte") || fields.FULLNAME.substr(-3,3) == "Alt") Secondary Roads, no label 13 LineZ 10 0 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1200 NotRegExpMatch 7 ^State Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^Interstate Hwy fields.MTFCC == "S1200" && ((fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte") || fields.FULLNAME.substr(-3,3) == "Alt") Surface Streets 18 LineZ 16 1 Label FillAndOutline 0.5 18 MatchAny Equal 5 S1400 Equal 5 S1630 24 1 1 1 1 22d7a8be-c7d7-11df-8257-0b74fb10cdfb TEXAS Roads Internal shield1 0 1 -1 0 0 ================================================ FILE: tools/GEE/BuildTheBaseGlobe/vector/TigerLineRoads/Tiger2009_road_display_rules.khdsp ================================================ 5 Resources/Vector/Roads/TigerLine2009/XXXXX.kvasset Roads|USA Roads Interstates 18 LineZ 6 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^Interstate Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,3) == "I- " Primary Roads 18 LineZ 8 1 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1100 NotRegExpMatch 7 ^Interstate Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^State Hwy fields.MTFCC == "S1100" && fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte" US Highways 18 LineZ 10 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^US Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,6) == "US Hwy" && fields.FULLNAME.substr(-3,3) != "Alt" State Highways 18 LineZ 11 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^State Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,9) == "State Rte" && fields.FULLNAME.substr(-3,3) != "Alt" State Highways, no label 11 LineZ 10 0 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^State Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,9) == "State Rte" && fields.FULLNAME.substr(-3,3) != "Alt" Secondary Roads 18 LineZ 13 1 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1200 NotRegExpMatch 7 ^State Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^Interstate Hwy fields.MTFCC == "S1200" && ((fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte") || fields.FULLNAME.substr(-3,3) == "Alt") Secondary Roads, no label 13 LineZ 10 0 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1200 NotRegExpMatch 7 ^State Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^Interstate Hwy fields.MTFCC == "S1200" && ((fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte") || fields.FULLNAME.substr(-3,3) == "Alt") Surface Streets 18 LineZ 16 1 Label FillAndOutline 0.5 18 MatchAny Equal 5 S1400 Equal 5 S1630 24 1 1 1 1 22d7a8be-c7d7-11df-8257-0b74fb10cdfb XXXXX Roads Internal shield1 0 1 -1 0 0 ================================================ FILE: tools/GEE/BuildTheBaseGlobe/vector/TigerLineRoads/TigerLine2D2009HighwaysOnly.kmdsp ================================================ Resources/Vector/Roads/TigerLine2009.kvasset Interstate 1 0 fields.FULLNAME.substring(3) Sans Regular 12 0 4 IconFixedSizeStyle shield1 Internal 2 2 2 2 LineZ FillAndOutline 4 0 Circle 4 4 0 0 TopRight MatchAll Equal 5 S1200 RegExpMatch 6 I- * Interstate2 1 0 fields.FULLNAME.substring(3) Sans Regular 12 0 4 IconFixedSizeStyle shield1 Internal 2 2 2 2 LineZ FillAndOutline 4 0 Circle 4 4 0 0 TopRight MatchAll Equal 5 S1100 RegExpMatch 6 I- * US Hwy 1 0 fields.FULLNAME.substring(7) Sans Regular 12 0 4 IconFixedSizeStyle shield2 Internal 2 2 2 2 LineZ FillAndOutline 4 0 Circle 4 4 0 0 TopRight MatchAll RegExpMatch 6 US Hwy* State Hwy 1 0 fields.FULLNAME.substring(10) Sans Regular 12 0 4 IconFixedSizeStyle shield3 Internal 2 2 2 2 LineZ FillAndOutline 4 0 Circle 4 4 0 0 TopRight MatchAll RegExpMatch 6 State Rte* Primary Roads LineZ FillAndOutline 4 0 Circle 4 4 0 0 TopRight MatchAll Equal 5 S1100 NotRegExpMatch 6 US Hwy* NotRegExpMatch 6 State Rte* Secondary Roads LineZ FillAndOutline 4 0 Circle 4 4 0 0 TopRight MatchAll Equal 5 S1200 NotRegExpMatch 6 US Hwy* NotRegExpMatch 6 State Rte* 0 0 ================================================ FILE: tools/GEE/BuildTheBaseGlobe/vector/TigerLineRoads/TigerLineRoads.khdsp ================================================ 32 Resources/Vector/Roads/TigerLine2009.kvasset Roads Interstates 18 LineZ 6 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^Interstate Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,3) == "I- " Primary Roads 18 LineZ 8 1 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1100 NotRegExpMatch 7 ^Interstate Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^State Hwy fields.MTFCC == "S1100" && fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte" US Highways 18 LineZ 10 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^US Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,6) == "US Hwy" && fields.FULLNAME.substr(-3,3) != "Alt" State Highways 18 LineZ 11 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^State Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,9) == "State Rte" && fields.FULLNAME.substr(-3,3) != "Alt" State Highways, no label 11 LineZ 10 0 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^State Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,9) == "State Rte" && fields.FULLNAME.substr(-3,3) != "Alt" Secondary Roads 18 LineZ 13 1 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1200 NotRegExpMatch 7 ^State Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^Interstate Hwy fields.MTFCC == "S1200" && ((fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte") || fields.FULLNAME.substr(-3,3) == "Alt") Secondary Roads, no label 13 LineZ 10 0 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1200 NotRegExpMatch 7 ^State Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^Interstate Hwy fields.MTFCC == "S1200" && ((fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte") || fields.FULLNAME.substr(-3,3) == "Alt") Surface Streets 18 LineZ 16 1 Label FillAndOutline 0.5 18 MatchAny Equal 5 S1400 Equal 5 S1630 24 1 1 1 1 6ff3e4c6-c536-11df-a3d5-0f4a3160c920 USA Roads Internal shield1 0 1 -1 0 0 ================================================ FILE: tools/GEE/BuildTheBaseGlobe/vector/TigerLineRoads/TigerLineRoadsHighwaysOnly.khdsp ================================================ 32 Resources/Vector/Roads/TigerLine2009.kvasset Roads Interstates 18 LineZ 6 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^Interstate Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,3) == "I- " Primary Roads 18 LineZ 8 1 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1100 NotRegExpMatch 7 ^Interstate Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^State Hwy fields.MTFCC == "S1100" && fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte" US Highways 18 LineZ 10 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^US Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,6) == "US Hwy" && fields.FULLNAME.substr(-3,3) != "Alt" State Highways 18 LineZ 11 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^State Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,9) == "State Rte" && fields.FULLNAME.substr(-3,3) != "Alt" State Highways, no label 11 LineZ 10 0 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^State Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,9) == "State Rte" && fields.FULLNAME.substr(-3,3) != "Alt" Secondary Roads 18 LineZ 13 1 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1200 NotRegExpMatch 7 ^State Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^Interstate Hwy fields.MTFCC == "S1200" && ((fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte") || fields.FULLNAME.substr(-3,3) == "Alt") Secondary Roads, no label 13 LineZ 10 0 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1200 NotRegExpMatch 7 ^State Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^Interstate Hwy fields.MTFCC == "S1200" && ((fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte") || fields.FULLNAME.substr(-3,3) == "Alt") 24 1 1 1 1 6ff3e4c6-c536-11df-a3d5-0f4a3160c920 USA Roads Internal shield1 0 1 -1 0 0 ================================================ FILE: tools/GEE/BuildTheBaseGlobe/vector/TigerLineRoads/UTAH.khdsp ================================================ 5 Resources/Vector/Roads/TigerLine2009/UTAH.kvasset Roads|USA Roads Interstates 18 LineZ 6 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^Interstate Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,3) == "I- " Primary Roads 18 LineZ 8 1 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1100 NotRegExpMatch 7 ^Interstate Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^State Hwy fields.MTFCC == "S1100" && fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte" US Highways 18 LineZ 10 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^US Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,6) == "US Hwy" && fields.FULLNAME.substr(-3,3) != "Alt" State Highways 18 LineZ 11 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^State Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,9) == "State Rte" && fields.FULLNAME.substr(-3,3) != "Alt" State Highways, no label 11 LineZ 10 0 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^State Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,9) == "State Rte" && fields.FULLNAME.substr(-3,3) != "Alt" Secondary Roads 18 LineZ 13 1 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1200 NotRegExpMatch 7 ^State Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^Interstate Hwy fields.MTFCC == "S1200" && ((fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte") || fields.FULLNAME.substr(-3,3) == "Alt") Secondary Roads, no label 13 LineZ 10 0 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1200 NotRegExpMatch 7 ^State Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^Interstate Hwy fields.MTFCC == "S1200" && ((fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte") || fields.FULLNAME.substr(-3,3) == "Alt") Surface Streets 18 LineZ 16 1 Label FillAndOutline 0.5 18 MatchAny Equal 5 S1400 Equal 5 S1630 24 1 1 1 1 22d7a8be-c7d7-11df-8257-0b74fb10cdfb UTAH Roads Internal shield1 0 1 -1 0 0 ================================================ FILE: tools/GEE/BuildTheBaseGlobe/vector/TigerLineRoads/VERMONT.khdsp ================================================ 5 Resources/Vector/Roads/TigerLine2009/VERMONT.kvasset Roads|USA Roads Interstates 18 LineZ 6 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^Interstate Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,3) == "I- " Primary Roads 18 LineZ 8 1 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1100 NotRegExpMatch 7 ^Interstate Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^State Hwy fields.MTFCC == "S1100" && fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte" US Highways 18 LineZ 10 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^US Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,6) == "US Hwy" && fields.FULLNAME.substr(-3,3) != "Alt" State Highways 18 LineZ 11 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^State Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,9) == "State Rte" && fields.FULLNAME.substr(-3,3) != "Alt" State Highways, no label 11 LineZ 10 0 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^State Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,9) == "State Rte" && fields.FULLNAME.substr(-3,3) != "Alt" Secondary Roads 18 LineZ 13 1 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1200 NotRegExpMatch 7 ^State Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^Interstate Hwy fields.MTFCC == "S1200" && ((fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte") || fields.FULLNAME.substr(-3,3) == "Alt") Secondary Roads, no label 13 LineZ 10 0 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1200 NotRegExpMatch 7 ^State Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^Interstate Hwy fields.MTFCC == "S1200" && ((fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte") || fields.FULLNAME.substr(-3,3) == "Alt") Surface Streets 18 LineZ 16 1 Label FillAndOutline 0.5 18 MatchAny Equal 5 S1400 Equal 5 S1630 24 1 1 1 1 22d7a8be-c7d7-11df-8257-0b74fb10cdfb VERMONT Roads Internal shield1 0 1 -1 0 0 ================================================ FILE: tools/GEE/BuildTheBaseGlobe/vector/TigerLineRoads/VIRGINIA.khdsp ================================================ 5 Resources/Vector/Roads/TigerLine2009/VIRGINIA.kvasset Roads|USA Roads Interstates 18 LineZ 6 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^Interstate Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,3) == "I- " Primary Roads 18 LineZ 8 1 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1100 NotRegExpMatch 7 ^Interstate Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^State Hwy fields.MTFCC == "S1100" && fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte" US Highways 18 LineZ 10 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^US Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,6) == "US Hwy" && fields.FULLNAME.substr(-3,3) != "Alt" State Highways 18 LineZ 11 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^State Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,9) == "State Rte" && fields.FULLNAME.substr(-3,3) != "Alt" State Highways, no label 11 LineZ 10 0 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^State Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,9) == "State Rte" && fields.FULLNAME.substr(-3,3) != "Alt" Secondary Roads 18 LineZ 13 1 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1200 NotRegExpMatch 7 ^State Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^Interstate Hwy fields.MTFCC == "S1200" && ((fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte") || fields.FULLNAME.substr(-3,3) == "Alt") Secondary Roads, no label 13 LineZ 10 0 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1200 NotRegExpMatch 7 ^State Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^Interstate Hwy fields.MTFCC == "S1200" && ((fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte") || fields.FULLNAME.substr(-3,3) == "Alt") Surface Streets 18 LineZ 16 1 Label FillAndOutline 0.5 18 MatchAny Equal 5 S1400 Equal 5 S1630 24 1 1 1 1 22d7a8be-c7d7-11df-8257-0b74fb10cdfb VIRGINIA Roads Internal shield1 0 1 -1 0 0 ================================================ FILE: tools/GEE/BuildTheBaseGlobe/vector/TigerLineRoads/WASHINGTON.khdsp ================================================ 5 Resources/Vector/Roads/TigerLine2009/WASHINGTON.kvasset Roads|USA Roads Interstates 18 LineZ 6 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^Interstate Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,3) == "I- " Primary Roads 18 LineZ 8 1 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1100 NotRegExpMatch 7 ^Interstate Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^State Hwy fields.MTFCC == "S1100" && fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte" US Highways 18 LineZ 10 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^US Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,6) == "US Hwy" && fields.FULLNAME.substr(-3,3) != "Alt" State Highways 18 LineZ 11 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^State Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,9) == "State Rte" && fields.FULLNAME.substr(-3,3) != "Alt" State Highways, no label 11 LineZ 10 0 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^State Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,9) == "State Rte" && fields.FULLNAME.substr(-3,3) != "Alt" Secondary Roads 18 LineZ 13 1 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1200 NotRegExpMatch 7 ^State Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^Interstate Hwy fields.MTFCC == "S1200" && ((fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte") || fields.FULLNAME.substr(-3,3) == "Alt") Secondary Roads, no label 13 LineZ 10 0 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1200 NotRegExpMatch 7 ^State Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^Interstate Hwy fields.MTFCC == "S1200" && ((fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte") || fields.FULLNAME.substr(-3,3) == "Alt") Surface Streets 18 LineZ 16 1 Label FillAndOutline 0.5 18 MatchAny Equal 5 S1400 Equal 5 S1630 24 1 1 1 1 22d7a8be-c7d7-11df-8257-0b74fb10cdfb WASHINGTON Roads Internal shield1 0 1 -1 0 0 ================================================ FILE: tools/GEE/BuildTheBaseGlobe/vector/TigerLineRoads/WEST_VIRGINIA.khdsp ================================================ 5 Resources/Vector/Roads/TigerLine2009/WEST_VIRGINIA.kvasset Roads|USA Roads Interstates 18 LineZ 6 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^Interstate Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,3) == "I- " Primary Roads 18 LineZ 8 1 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1100 NotRegExpMatch 7 ^Interstate Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^State Hwy fields.MTFCC == "S1100" && fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte" US Highways 18 LineZ 10 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^US Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,6) == "US Hwy" && fields.FULLNAME.substr(-3,3) != "Alt" State Highways 18 LineZ 11 1 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^State Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,9) == "State Rte" && fields.FULLNAME.substr(-3,3) != "Alt" State Highways, no label 11 LineZ 10 0 Shield FillAndOutline 0.5 18 JSExpression RegExpMatch 7 ^State Hwy (fields.MTFCC == "S1100" || fields.MTFCC == "S1200") && fields.FULLNAME.substring(0,9) == "State Rte" && fields.FULLNAME.substr(-3,3) != "Alt" Secondary Roads 18 LineZ 13 1 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1200 NotRegExpMatch 7 ^State Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^Interstate Hwy fields.MTFCC == "S1200" && ((fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte") || fields.FULLNAME.substr(-3,3) == "Alt") Secondary Roads, no label 13 LineZ 10 0 Label FillAndOutline 0.5 18 JSExpression Equal 6 S1200 NotRegExpMatch 7 ^State Hwy NotRegExpMatch 7 ^US Hwy NotRegExpMatch 7 ^Interstate Hwy fields.MTFCC == "S1200" && ((fields.FULLNAME.substring(0,3) != "I- " && fields.FULLNAME.substring(0,6) != "US Hwy" && fields.FULLNAME.substring(0,9) != "State Rte") || fields.FULLNAME.substr(-3,3) == "Alt") Surface Streets 18 LineZ 16 1 Label FillAndOutline 0.5 18 MatchAny Equal 5 S1400 Equal 5 S1630 24 1 1 1 1 22d7a8be-c7d7-11df-8257-0b74fb10cdfb WEST_VIRGINIA Roads Internal shield1 0 1 -1 0 0 ================================================ FILE: tools/GEE/BuildTheBaseGlobe/vector/allCountries.kdx ================================================ Layout { FileType : "delimited" Delimiter : " " Latitude : "4" Longitude : "5" FieldDefinitions { 0 { Name : "geonameid" Type : "int" } 1 { Name : "name" Type : "string" } 2 { Name : "asciiname" Type : "string" } 3 { Name : "alternatenames" Type : "string" } 4 { Name : "latitude" Type : "float" } 5 { Name : "longitude" Type : "float" } 6 { Name : "feature class" Type : "string" } 7 { Name : "feature code" Type : "string" } 8 { Name : "country code" Type : "string" } 9 { Name : "cc2" Type : "string" } 10 { Name : "admin1 code" Type : "string" } 11 { Name : "admin2 code" Type : "string" } 12 { Name : "admin3 code" Type : "string" } 13 { Name : "admin4 code" Type : "string" } 14 { Name : "population" Type : "int" } 15 { Name : "elevation" Type : "int" } 16 { Name : "gtopo30" Type : "int" } 17 { Name : "timezone" Type : "string" } 18 { Name : "modification date" Type : "string" } } } ================================================ FILE: tools/GEE/BuildTheBaseGlobe/vector/usa_state_names.khdsp ================================================ 14 Resources/Vector/Names/GeonamesAllCities.kvasset Borders and Labels|Borders default select all 1 AreaCenter 1 0 16 100 6 MaxFit 0 0 0.5 Original 255 255 255 255 0 0 0 255 Basic 0 0 MatchAll Equal 6 A Equal 7 ADM1 Equal 8 US 24 0 1 1 1 b41d8248-8057-11df-b8e1-595f15c00163 State Names Internal 773 0 1 -1 0 0 ================================================ FILE: tools/GEE/BuildTheBaseGlobe/vector/world_cities.khdsp ================================================ 15 Resources/Vector/Names/GeonamesAllCities.kvasset Borders and Labels|Labels Capitals 1 AreaCenter 0 1 15 100 5 MaxFit 0 0 0.5 Original 255 255 255 255 0 0 0 255 Basic 0 0 MatchAll Equal 7 PPLC State Capitals 1 AreaCenter 0 1 15 100 6 MaxFit 0 0 0.5 Original 255 255 255 255 0 0 0 255 Basic 0 0 MatchAll Equal 7 PPLA Equal 8 US Big Cities 1 AreaCenter 0 1 15 100 6 MaxFit 0 0 0.5 Original 255 255 255 255 0 0 0 255 Basic 0 0 MatchAll RegExpMatch 7 PPL* GEqual 14 500000 Medium Cities 1 AreaCenter 0 1 15 100 8 MaxFit 0 0 0.5 Original 255 255 255 255 0 0 0 255 Basic 0 0 MatchAll RegExpMatch 7 PPL* GEqual 14 200000 Small Cities 1 AreaCenter 0 1 15 100 10 MaxFit 0 0 0.5 Original 255 255 255 255 0 0 0 255 Basic 0 0 MatchAll RegExpMatch 7 PPL* GEqual 14 50000 Towns 1 AreaCenter 0 1 16 100 12 MaxFit 0 0 0.5 Original 255 255 255 255 0 0 0 255 Basic 0 0 MatchAll RegExpMatch 7 PPL* GEqual 14 10000 Other populated places 1 AreaCenter 0 1 16 100 14 MaxFit 0 0 0.5 Original 255 255 255 255 0 0 0 255 Basic 0 0 MatchAll RegExpMatch 7 PPL* 24 0 1 1 1 613751ce-8059-11df-88f6-595f15c00163 World Cities Internal 773 0 1 -1 0 0