From 3feec01b21ff974bc187cc7ea935a750178f20ef Mon Sep 17 00:00:00 2001 From: George Bartolomey Date: Wed, 3 Jul 2024 16:39:00 +0300 Subject: [PATCH 01/18] [#6] Add automated database updater A small parser of unece.org "Trade code download page" added to Makefile to fetch last database's URL to download. Also, the forgejo action added. Action runs every month to update databases and send PR to Forgejo. Signed-off-by: George Bartolomey --- .forgejo/workflows/updatechecker.yml | 17 +++++++++++++++++ Makefile | 5 ++++- 2 files changed, 21 insertions(+), 1 deletion(-) create mode 100644 .forgejo/workflows/updatechecker.yml diff --git a/.forgejo/workflows/updatechecker.yml b/.forgejo/workflows/updatechecker.yml new file mode 100644 index 0000000..7eaca0f --- /dev/null +++ b/.forgejo/workflows/updatechecker.yml @@ -0,0 +1,17 @@ +on: + schedule: + - cron: "2 0 1 * *" +jobs: + checkupdates: + runs-on: docker + steps: + - uses: https://code.forgejo.org/actions/checkout@v3 + - run: make update + - run: | + git config user.name "Snegurochka" + git config user.email "snegurochka@frostfs.info" + git switch -c update-dbs + git add . + git remote set-url origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@git.frostfs.info/TrueCloudLab/frostfs-locode-db + git commit -m "Automatic database update (UN/LOCODE version $(cat tmp/locode-version.txt))" && \ + git push origin HEAD:refs/for/master -o topic=automatic-database-update diff --git a/Makefile b/Makefile index 0415a39..1716325 100644 --- a/Makefile +++ b/Makefile @@ -63,7 +63,10 @@ data/countries.dat.gz: $(DIRS) # IGNORE # See https://unece.org/trade/cefact/UNLOCODE-Download tmp/locode.csv.zip :$(DIRS) - wget -c https://service.unece.org/trade/locode/loc222csv.zip -O tmp/locode.csv.zip + DOWNLOADURL=$$(wget -O - https://unece.org/trade/cefact/UNLOCODE-Download \ + | grep -oP '(?<=href=")\S+loc\d+csv\.zip'); \ + echo "$$DOWNLOADURL" | grep -oP '(?<=loc)\d+' > tmp/locode-version.txt; \ + wget -c "$$DOWNLOADURL" -O tmp/locode.csv.zip data/unlocode-SubdivisionCodes.csv.gz: tmp/locode.csv.zip unzip -p tmp/locode.csv.zip "*SubdivisionCodes.csv" | gzip > data/unlocode-SubdivisionCodes.csv.gz From 7e523f1a2833f64c5f53d6793769c02405d2a790 Mon Sep 17 00:00:00 2001 From: George Bartolomey Date: Mon, 8 Jul 2024 11:12:07 +0300 Subject: [PATCH 02/18] Update common files from template repo Added files from TrueCloudLab/basic repo for pre-commit checks, CI, etc. Signed-off-by: George Bartolomey --- .gitattributes | 2 + .gitlint | 11 +++ .golangci.yml | 64 +++++++++++++++++ .pre-commit-config.yaml | 45 ++++++++++++ CONTRIBUTING.md | 156 ++++++++++++++++++++++++++++++++++++++++ 5 files changed, 278 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitlint create mode 100644 .golangci.yml create mode 100644 .pre-commit-config.yaml create mode 100644 CONTRIBUTING.md diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..c7a3f7a --- /dev/null +++ b/.gitattributes @@ -0,0 +1,2 @@ +/**/*.pb.go -diff -merge +/**/*.pb.go linguist-generated=true diff --git a/.gitlint b/.gitlint new file mode 100644 index 0000000..e7218ac --- /dev/null +++ b/.gitlint @@ -0,0 +1,11 @@ +[general] +fail-without-commits=True +regex-style-search=True +contrib=CC1 + +[title-match-regex] +regex=^\[\#[0-9Xx]+\]\s + +[ignore-by-title] +regex=^Release(.*) +ignore=title-match-regex diff --git a/.golangci.yml b/.golangci.yml new file mode 100644 index 0000000..dba7f0c --- /dev/null +++ b/.golangci.yml @@ -0,0 +1,64 @@ +# This file contains all available configuration options +# with their default values. + +# options for analysis running +run: + # timeout for analysis, e.g. 30s, 5m, default is 1m + timeout: 10m + + # include test files or not, default is true + tests: false + +# output configuration options +output: + # colored-line-number|line-number|json|tab|checkstyle|code-climate, default is "colored-line-number" + format: tab + +# all available settings of specific linters +linters-settings: + exhaustive: + # indicates that switch statements are to be considered exhaustive if a + # 'default' case is present, even if all enum members aren't listed in the + # switch + default-signifies-exhaustive: true + govet: + # report about shadowed variables + check-shadowing: false + staticcheck: + checks: ["all"] + funlen: + lines: 80 # default 60 + statements: 60 # default 40 + gocognit: + min-complexity: 40 # default 30 + +linters: + enable: + # mandatory linters + - govet + - revive + - errcheck + - gosimple + - ineffassign + - staticcheck + - typecheck + - unused + - bidichk + - durationcheck + - exhaustive + - exportloopref + - gofmt + - goimports + - misspell + - whitespace + + # extra linters + - godot + - predeclared + - reassign + - containedctx + - funlen + - gocognit + - contextcheck + disable-all: true + fast: false diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml new file mode 100644 index 0000000..169b7bf --- /dev/null +++ b/.pre-commit-config.yaml @@ -0,0 +1,45 @@ +ci: + autofix_prs: false + +repos: + - repo: https://github.com/jorisroovers/gitlint + rev: v0.19.1 + hooks: + - id: gitlint + stages: [commit-msg] + - id: gitlint-ci + + - repo: https://github.com/pre-commit/pre-commit-hooks + rev: v4.4.0 + hooks: + - id: check-added-large-files + - id: check-case-conflict + - id: check-executables-have-shebangs + - id: check-shebang-scripts-are-executable + - id: check-merge-conflict + - id: check-json + - id: check-xml + - id: check-yaml + - id: trailing-whitespace + args: [--markdown-linebreak-ext=md] + - id: end-of-file-fixer + exclude: ".key$" + + - repo: https://github.com/shellcheck-py/shellcheck-py + rev: v0.9.0.2 + hooks: + - id: shellcheck + + - repo: https://github.com/golangci/golangci-lint + rev: v1.51.2 + hooks: + - id: golangci-lint + + - repo: local + hooks: + - id: go-unit-tests + name: go unit tests + entry: make test + pass_filenames: false + types: [go] + language: system diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..53ff7c8 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,156 @@ +# Contribution guide + +First, thank you for contributing! We love and encourage pull requests from +everyone. Please follow the guidelines: + +- Check the open [issues](https://git.frostfs.info/TrueCloudLab/frostfs-node/issues) and + [pull requests](https://git.frostfs.info/TrueCloudLab/frostfs-node/pulls) for existing + discussions. + +- Open an issue first, to discuss a new feature or enhancement. + +- Write tests, and make sure the test suite passes locally and on CI. + +- Open a pull request, and reference the relevant issue(s). + +- Make sure your commits are logically separated and have good comments + explaining the details of your change. + +- After receiving feedback, amend your commits or add new ones as + appropriate. + +- **Have fun!** + +## Development Workflow + +Start by forking the `frostfs-node` repository, make changes in a branch and then +send a pull request. We encourage pull requests to discuss code changes. Here +are the steps in details: + +### Set up your Forgejo repository +Fork [FrostFS node upstream](https://git.frostfs.info/TrueCloudLab/frostfs-node) source +repository to your own personal repository. Copy the URL of your fork (you will +need it for the `git clone` command below). + +```sh +$ git clone https://git.frostfs.info/TrueCloudLab/frostfs-node +``` + +### Set up git remote as ``upstream`` +```sh +$ cd frostfs-node +$ git remote add upstream https://git.frostfs.info/TrueCloudLab/frostfs-node +$ git fetch upstream +$ git merge upstream/master +... +``` + +### Create your feature branch +Before making code changes, make sure you create a separate branch for these +changes. Maybe you will find it convenient to name branch in +`/-` format. + +``` +$ git checkout -b feature/123-something_awesome +``` + +### Test your changes +After your code changes, make sure + +- To add test cases for the new code. +- To run `make lint` and `make staticcheck-run` +- To squash your commits into a single commit or a series of logically separated + commits run `git rebase -i`. It's okay to force update your pull request. +- To run `make test` and `make all` completes. + +### Commit changes +After verification, commit your changes. This is a [great +post](https://chris.beams.io/posts/git-commit/) on how to write useful commit +messages. Try following this template: + +``` +[#Issue] Summary + +Description + + + + +``` + +``` +$ git commit -sam '[#123] Add some feature' +``` + +### Push to the branch +Push your locally committed changes to the remote origin (your fork) +``` +$ git push origin feature/123-something_awesome +``` + +### Create a Pull Request +Pull requests can be created via Forgejo. Refer to [this +document](https://docs.codeberg.org/collaborating/pull-requests-and-git-flow/) for +detailed steps on how to create a pull request. After a Pull Request gets peer +reviewed and approved, it will be merged. + +## DCO Sign off + +All authors to the project retain copyright to their work. However, to ensure +that they are only submitting work that they have rights to, we are requiring +everyone to acknowledge this by signing their work. + +Any copyright notices in this repository should specify the authors as "the +contributors". + +To sign your work, just add a line like this at the end of your commit message: + +``` +Signed-off-by: Samii Sakisaka + +``` + +This can easily be done with the `--signoff` option to `git commit`. + +By doing this you state that you can certify the following (from [The Developer +Certificate of Origin](https://developercertificate.org/)): + +``` +Developer Certificate of Origin +Version 1.1 + +Copyright (C) 2004, 2006 The Linux Foundation and its contributors. +1 Letterman Drive +Suite D4700 +San Francisco, CA, 94129 + +Everyone is permitted to copy and distribute verbatim copies of this +license document, but changing it is not allowed. + + +Developer's Certificate of Origin 1.1 + +By making a contribution to this project, I certify that: + +(a) The contribution was created in whole or in part by me and I + have the right to submit it under the open source license + indicated in the file; or + +(b) The contribution is based upon previous work that, to the best + of my knowledge, is covered under an appropriate open source + license and I have the right under that license to submit that + work with modifications, whether created in whole or in part + by me, under the same open source license (unless I am + permitted to submit under a different license), as indicated + in the file; or + +(c) The contribution was provided directly to me by some other + person who certified (a), (b) or (c) and I have not modified + it. + +(d) I understand and agree that this project and the contribution + are public and that a record of the contribution (including all + personal information I submit with it, including my sign-off) is + maintained indefinitely and may be redistributed consistent with + this project or the open source license(s) involved. +``` From 840b20538b9283c15bb637791324b0a8022f02d5 Mon Sep 17 00:00:00 2001 From: George Bartolomey Date: Mon, 8 Jul 2024 11:28:19 +0300 Subject: [PATCH 03/18] [#7] Add local tool for building database file Added frostfs-locode-db CLI utility that can generate and view UN/LOCODE database files. Go package git.frostfs.info/TrueCloudLab/frostfs-node/pkg/util/locode copied to this repository to eliminate interdependency between frostfs-node and frostfs-locode-db projects. The process of building database files reduced to starting make command. Signed-off-by: George Bartolomey --- Makefile | 19 ++- go.mod | 21 +++ go.sum | 110 ++++++++++++ locode_generate.go | 96 +++++++++++ locode_info.go | 55 ++++++ main.go | 45 +++++ pkg/locode/column/coordinates.go | 193 +++++++++++++++++++++ pkg/locode/column/country.go | 38 +++++ pkg/locode/column/location.go | 38 +++++ pkg/locode/column/util.go | 9 + pkg/locode/db/airports/calls.go | 194 ++++++++++++++++++++++ pkg/locode/db/airports/db.go | 83 +++++++++ pkg/locode/db/airports/opts.go | 19 +++ pkg/locode/db/boltdb/calls.go | 166 ++++++++++++++++++ pkg/locode/db/boltdb/db.go | 73 ++++++++ pkg/locode/db/boltdb/opts.go | 37 +++++ pkg/locode/db/continent.go | 81 +++++++++ pkg/locode/db/continents/geojson/calls.go | 98 +++++++++++ pkg/locode/db/continents/geojson/db.go | 63 +++++++ pkg/locode/db/continents/geojson/opts.go | 10 ++ pkg/locode/db/country.go | 32 ++++ pkg/locode/db/db.go | 183 ++++++++++++++++++++ pkg/locode/db/location.go | 32 ++++ pkg/locode/db/point.go | 93 +++++++++++ pkg/locode/db/point_test.go | 51 ++++++ pkg/locode/db/record.go | 140 ++++++++++++++++ pkg/locode/record.go | 83 +++++++++ pkg/locode/table/csv/calls.go | 156 +++++++++++++++++ pkg/locode/table/csv/opts.go | 28 ++++ pkg/locode/table/csv/table.go | 75 +++++++++ 30 files changed, 2317 insertions(+), 4 deletions(-) mode change 100644 => 100755 Makefile create mode 100644 go.mod create mode 100644 go.sum create mode 100644 locode_generate.go create mode 100644 locode_info.go create mode 100644 main.go create mode 100644 pkg/locode/column/coordinates.go create mode 100644 pkg/locode/column/country.go create mode 100644 pkg/locode/column/location.go create mode 100644 pkg/locode/column/util.go create mode 100644 pkg/locode/db/airports/calls.go create mode 100644 pkg/locode/db/airports/db.go create mode 100644 pkg/locode/db/airports/opts.go create mode 100644 pkg/locode/db/boltdb/calls.go create mode 100644 pkg/locode/db/boltdb/db.go create mode 100644 pkg/locode/db/boltdb/opts.go create mode 100644 pkg/locode/db/continent.go create mode 100644 pkg/locode/db/continents/geojson/calls.go create mode 100644 pkg/locode/db/continents/geojson/db.go create mode 100644 pkg/locode/db/continents/geojson/opts.go create mode 100644 pkg/locode/db/country.go create mode 100644 pkg/locode/db/db.go create mode 100644 pkg/locode/db/location.go create mode 100644 pkg/locode/db/point.go create mode 100644 pkg/locode/db/point_test.go create mode 100644 pkg/locode/db/record.go create mode 100644 pkg/locode/record.go create mode 100644 pkg/locode/table/csv/calls.go create mode 100644 pkg/locode/table/csv/opts.go create mode 100644 pkg/locode/table/csv/table.go diff --git a/Makefile b/Makefile old mode 100644 new mode 100755 index 1716325..522fb6c --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ #!/usr/bin/make -f VERSION ?= "$(shell git describe --tags --match "v*" --dirty --always --abbrev=8 2>/dev/null || cat VERSION 2>/dev/null || echo "develop")" -FROST ?= frostfs-cli +FROST_LOCODE = ./frostfs-locode-db .PHONY: all clean version help update debpackage @@ -17,7 +17,10 @@ PKG_VERSION ?= $(shell echo $(VERSION) | sed "s/^v//" | \ sed "s/-/~/")-${OS_RELEASE} # Generate locode_db BoltDB file -all: $(DIRS) locode_db +all: $(DIRS) $(FROST_LOCODE) locode_db + +$(FROST_LOCODE): + go build . $(DIRS): @echo "⇒ Ensure dir: $@" @@ -39,8 +42,8 @@ in/unlocode-CodeList.csv: $(DIRS) zcat data/unlocode-CodeList.csv.gz > in/unlocode-CodeList.csv # Generate locode_db BoltDB file -locode_db: in/unlocode-CodeList.csv in/unlocode-SubdivisionCodes.csv in/continents.geojson in/airports.dat in/countries.dat - $(FROST) util locode generate \ +locode_db: in/unlocode-CodeList.csv in/unlocode-SubdivisionCodes.csv in/continents.geojson in/airports.dat in/countries.dat $(FROST_LOCODE) + $(FROST_LOCODE) generate \ --airports in/airports.dat \ --continents in/continents.geojson \ --countries in/countries.dat \ @@ -91,6 +94,13 @@ help: @echo '' @awk '/^#/{ comment = substr($$0,3) } comment && /^[a-zA-Z][a-zA-Z0-9_-]+ ?:/{ print " ", $$1, comment }' $(MAKEFILE_LIST) | column -t -s ':' | grep -v 'IGNORE' | sort -u +# Run tests +test: locode_db + test -n "$$($(FROST_LOCODE) info --db locode_db --locode "US NYC" 2>&1 | grep "New York")" + test -n "$$($(FROST_LOCODE) info --db locode_db --locode "RU LED" 2>&1 | grep "Leningrad")" + test -n "$$($(FROST_LOCODE) info --db locode_db --locode "RU KUF" 2>&1 | grep "Samara")" + test -n "$$($(FROST_LOCODE) info --db locode_db --locode "VN DAN" 2>&1 | grep "Binh Hoa")" + test -n "$$($(FROST_LOCODE) info --db locode_db --locode "FR PAR" 2>&1 | grep "Paris")" # Clean data directory before update clean_data: @@ -104,6 +114,7 @@ clean: rm -f in/* rm -f tmp/* rm -f locode_db + rm -f $(FROST_LOCODE) # Package for Debian debpackage: diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..4b77381 --- /dev/null +++ b/go.mod @@ -0,0 +1,21 @@ +module git.frostfs.info/TrueCloudLab/frostfs-locode-db + +go 1.21 + +require ( + github.com/paulmach/orb v0.11.1 + github.com/spf13/cobra v1.8.1 + github.com/stretchr/testify v1.9.0 + go.etcd.io/bbolt v1.3.10 + golang.org/x/sync v0.7.0 +) + +require ( + github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect + github.com/inconshreveable/mousetrap v1.1.0 // indirect + github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect + github.com/spf13/pflag v1.0.5 // indirect + go.mongodb.org/mongo-driver v1.13.1 // indirect + golang.org/x/sys v0.18.0 // indirect + gopkg.in/yaml.v3 v3.0.1 // indirect +) diff --git a/go.sum b/go.sum new file mode 100644 index 0000000..74c70b4 --- /dev/null +++ b/go.sum @@ -0,0 +1,110 @@ +github.com/cpuguy83/go-md2man/v2 v2.0.4/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46tRHOmNcaadrF8o= +github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc h1:U9qPSI2PIWSS1VwoXQT9A3Wy9MM3WgvqSxFWenqJduM= +github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/gogo/protobuf v1.3.2/go.mod h1:P1XiOD3dCwIKUDQYPy72D8LYyHL2YPYrpS2s69NZV8Q= +github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk= +github.com/golang/snappy v0.0.1/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= +github.com/google/go-cmp v0.5.2/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= +github.com/google/go-cmp v0.5.5 h1:Khx7svrCpmxxtHBq5j2mp/xVjsi8hQMfNLvJFAlrGgU= +github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= +github.com/inconshreveable/mousetrap v1.1.0 h1:wN+x4NVGpMsO7ErUn/mUI3vEoE6Jt13X2s0bqwp9tc8= +github.com/inconshreveable/mousetrap v1.1.0/go.mod h1:vpF70FUmC8bwa3OWnCshd2FqLfsEA9PFc4w1p2J65bw= +github.com/kisielk/errcheck v1.5.0/go.mod h1:pFxgyoBC7bSaBwPgfKdkLd5X25qrDl4LWUI2bnpBCr8= +github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck= +github.com/klauspost/compress v1.13.6/go.mod h1:/3/Vjq9QcHkK5uEr5lBEmyoZ1iFhe47etQ6QUkpK6sk= +github.com/kr/pretty v0.1.0 h1:L/CwN0zerZDmRFUapSPitk6f+Q3+0za1rQkzVuMiMFI= +github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo= +github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= +github.com/kr/text v0.1.0 h1:45sCR5RtlFHMR4UwH9sdQ5TC8v0qDQCHnXt+kaKSTVE= +github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= +github.com/montanaflynn/stats v0.0.0-20171201202039-1bf9dbcd8cbe/go.mod h1:wL8QJuTMNUDYhXwkmfOly8iTdp5TEcJFWZD2D7SIkUc= +github.com/paulmach/orb v0.11.1 h1:3koVegMC4X/WeiXYz9iswopaTwMem53NzTJuTF20JzU= +github.com/paulmach/orb v0.11.1/go.mod h1:5mULz1xQfs3bmQm63QEJA6lNGujuRafwA5S/EnuLaLU= +github.com/paulmach/protoscan v0.2.1/go.mod h1:SpcSwydNLrxUGSDvXvO0P7g7AuhJ7lcKfDlhJCDw2gY= +github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= +github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= +github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 h1:Jamvg5psRIccs7FGNTlIRMkT8wgtp5eCXdBlqhYGL6U= +github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= +github.com/russross/blackfriday/v2 v2.1.0/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM= +github.com/spf13/cobra v1.8.1 h1:e5/vxKd/rZsfSJMUX1agtjeTDf+qv1/JdBF8gg5k9ZM= +github.com/spf13/cobra v1.8.1/go.mod h1:wHxEcudfqmLYa8iTfL+OuZPbBZkmvliBWKIezN3kD9Y= +github.com/spf13/pflag v1.0.5 h1:iy+VFUOCP1a+8yFto/drg2CJ5u0yRoB7fZw3DKv/JXA= +github.com/spf13/pflag v1.0.5/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg= +github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= +github.com/stretchr/testify v1.6.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= +github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsTg= +github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= +github.com/tidwall/pretty v1.0.0/go.mod h1:XNkn88O1ChpSDQmQeStsy+sBenx6DDtFZJxhVysOjyk= +github.com/xdg-go/pbkdf2 v1.0.0/go.mod h1:jrpuAogTd400dnrH08LKmI/xc1MbPOebTwRqcT5RDeI= +github.com/xdg-go/scram v1.1.1/go.mod h1:RaEWvsqvNKKvBPvcKeFjrG2cJqOkHTiyTpzz23ni57g= +github.com/xdg-go/scram v1.1.2/go.mod h1:RT/sEzTbU5y00aCK8UOx6R7YryM0iF1N2MOmC3kKLN4= +github.com/xdg-go/stringprep v1.0.3/go.mod h1:W3f5j4i+9rC0kuIEJL0ky1VpHXQU3ocBgklLGvcBnW8= +github.com/xdg-go/stringprep v1.0.4/go.mod h1:mPGuuIYwz7CmR2bT9j4GbQqutWS1zV24gijq1dTyGkM= +github.com/youmark/pkcs8 v0.0.0-20181117223130-1be2e3e5546d/go.mod h1:rHwXgn7JulP+udvsHwJoVG1YGAP6VLg4y9I5dyZdqmA= +github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= +github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= +github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY= +go.etcd.io/bbolt v1.3.10 h1:+BqfJTcCzTItrop8mq/lbzL8wSGtj94UO/3U31shqG0= +go.etcd.io/bbolt v1.3.10/go.mod h1:bK3UQLPJZly7IlNmV7uVHJDxfe5aK9Ll93e/74Y9oEQ= +go.mongodb.org/mongo-driver v1.11.4/go.mod h1:PTSz5yu21bkT/wXpkS7WR5f0ddqw5quethTUn9WM+2g= +go.mongodb.org/mongo-driver v1.13.1 h1:YIc7HTYsKndGK4RFzJ3covLz1byri52x0IoMB0Pt/vk= +go.mongodb.org/mongo-driver v1.13.1/go.mod h1:wcDf1JBCXy2mOW0bWHwO/IOYqdca1MPCwDtFu/Z9+eo= +golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= +golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= +golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= +golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= +golang.org/x/crypto v0.0.0-20220622213112-05595931fe9d/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4= +golang.org/x/mod v0.2.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= +golang.org/x/mod v0.3.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= +golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4/go.mod h1:jJ57K6gSWd91VN4djpZkiMVwK6gcyfeH4XE8wZrZaV4= +golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= +golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20200226121028-0de0cce0169b/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20201021035429-f5854403a974/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= +golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= +golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= +golang.org/x/net v0.0.0-20220722155237-a158d28d115b/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c= +golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20210220032951-036812b2e83c/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.7.0 h1:YsImfSBoP9QPYL0xyKJPq0gcaJdG3rInoqxTWbfQu9M= +golang.org/x/sync v0.7.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk= +golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210423082822-04245dca01da/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.18.0 h1:DBdB3niSjOA/O0blCZBqDefyWNYveAYMNF1Wum0DYQ4= +golang.org/x/sys v0.18.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= +golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= +golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= +golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= +golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= +golang.org/x/text v0.3.6/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= +golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ= +golang.org/x/text v0.3.8/go.mod h1:E6s5w1FMmriuDzIBO73fBruAKo1PCIq6d2Q6DHfQ8WQ= +golang.org/x/text v0.7.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= +golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= +golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20200619180055-7c47624df98f/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= +golang.org/x/tools v0.0.0-20210106214847-113979e3529a/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= +golang.org/x/tools v0.1.12/go.mod h1:hNGJHUnrk76NpqgfD5Aqm5Crs+Hm0VOH/i9J2+nxYbc= +golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= +golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= +golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= +golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= +google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw= +google.golang.org/protobuf v1.27.1/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= +gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 h1:qIbj1fsPNlZgppZ+VLlY7N33q108Sa+fhmuc+sWQYwY= +gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= +gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= +gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= diff --git a/locode_generate.go b/locode_generate.go new file mode 100644 index 0000000..57ec4f8 --- /dev/null +++ b/locode_generate.go @@ -0,0 +1,96 @@ +package main + +import ( + locodedb "git.frostfs.info/TrueCloudLab/frostfs-locode-db/pkg/locode/db" + airportsdb "git.frostfs.info/TrueCloudLab/frostfs-locode-db/pkg/locode/db/airports" + locodebolt "git.frostfs.info/TrueCloudLab/frostfs-locode-db/pkg/locode/db/boltdb" + continentsdb "git.frostfs.info/TrueCloudLab/frostfs-locode-db/pkg/locode/db/continents/geojson" + csvlocode "git.frostfs.info/TrueCloudLab/frostfs-locode-db/pkg/locode/table/csv" + "github.com/spf13/cobra" +) + +type namesDB struct { + *airportsdb.DB + *csvlocode.Table +} + +const ( + locodeGenerateInputFlag = "in" + locodeGenerateSubDivFlag = "subdiv" + locodeGenerateAirportsFlag = "airports" + locodeGenerateCountriesFlag = "countries" + locodeGenerateContinentsFlag = "continents" + locodeGenerateOutputFlag = "out" +) + +var ( + locodeGenerateInPaths []string + locodeGenerateSubDivPath string + locodeGenerateAirportsPath string + locodeGenerateCountriesPath string + locodeGenerateContinentsPath string + locodeGenerateOutPath string + + locodeGenerateCmd = &cobra.Command{ + Use: "generate", + Short: "Generate UN/LOCODE database for FrostFS", + Run: func(cmd *cobra.Command, _ []string) { + + locodeDB := csvlocode.New( + csvlocode.Prm{ + Path: locodeGenerateInPaths[0], + SubDivPath: locodeGenerateSubDivPath, + }, + csvlocode.WithExtraPaths(locodeGenerateInPaths[1:]...), + ) + + airportDB := airportsdb.New(airportsdb.Prm{ + AirportsPath: locodeGenerateAirportsPath, + CountriesPath: locodeGenerateCountriesPath, + }) + + continentsDB := continentsdb.New(continentsdb.Prm{ + Path: locodeGenerateContinentsPath, + }) + + targetDB := locodebolt.New(locodebolt.Prm{ + Path: locodeGenerateOutPath, + }) + + err := targetDB.Open() + ExitOnErr(cmd, "", err) + + defer targetDB.Close() + + names := &namesDB{ + DB: airportDB, + Table: locodeDB, + } + + err = locodedb.FillDatabase(locodeDB, airportDB, continentsDB, names, targetDB) + ExitOnErr(cmd, "", err) + }, + } +) + +func initUtilLocodeGenerateCmd() { + flags := locodeGenerateCmd.Flags() + + flags.StringSliceVar(&locodeGenerateInPaths, locodeGenerateInputFlag, nil, "List of paths to UN/LOCODE tables (csv)") + _ = locodeGenerateCmd.MarkFlagRequired(locodeGenerateInputFlag) + + flags.StringVar(&locodeGenerateSubDivPath, locodeGenerateSubDivFlag, "", "Path to UN/LOCODE subdivision database (csv)") + _ = locodeGenerateCmd.MarkFlagRequired(locodeGenerateSubDivFlag) + + flags.StringVar(&locodeGenerateAirportsPath, locodeGenerateAirportsFlag, "", "Path to OpenFlights airport database (csv)") + _ = locodeGenerateCmd.MarkFlagRequired(locodeGenerateAirportsFlag) + + flags.StringVar(&locodeGenerateCountriesPath, locodeGenerateCountriesFlag, "", "Path to OpenFlights country database (csv)") + _ = locodeGenerateCmd.MarkFlagRequired(locodeGenerateCountriesFlag) + + flags.StringVar(&locodeGenerateContinentsPath, locodeGenerateContinentsFlag, "", "Path to continent polygons (GeoJSON)") + _ = locodeGenerateCmd.MarkFlagRequired(locodeGenerateContinentsFlag) + + flags.StringVar(&locodeGenerateOutPath, locodeGenerateOutputFlag, "", "Target path for generated database") + _ = locodeGenerateCmd.MarkFlagRequired(locodeGenerateOutputFlag) +} diff --git a/locode_info.go b/locode_info.go new file mode 100644 index 0000000..6263a55 --- /dev/null +++ b/locode_info.go @@ -0,0 +1,55 @@ +package main + +import ( + locodedb "git.frostfs.info/TrueCloudLab/frostfs-locode-db/pkg/locode/db" + locodebolt "git.frostfs.info/TrueCloudLab/frostfs-locode-db/pkg/locode/db/boltdb" + "github.com/spf13/cobra" +) + +const ( + locodeInfoDBFlag = "db" + locodeInfoCodeFlag = "locode" +) + +var ( + locodeInfoDBPath string + locodeInfoCode string + + locodeInfoCmd = &cobra.Command{ + Use: "info", + Short: "Print information about UN/LOCODE from FrostFS database", + Run: func(cmd *cobra.Command, _ []string) { + targetDB := locodebolt.New(locodebolt.Prm{ + Path: locodeInfoDBPath, + }, locodebolt.ReadOnly()) + + err := targetDB.Open() + ExitOnErr(cmd, "", err) + + defer targetDB.Close() + + record, err := locodedb.LocodeRecord(targetDB, locodeInfoCode) + ExitOnErr(cmd, "", err) + + cmd.Printf("Country: %s\n", record.CountryName()) + cmd.Printf("Location: %s\n", record.LocationName()) + cmd.Printf("Continent: %s\n", record.Continent()) + if subDivCode := record.SubDivCode(); subDivCode != "" { + cmd.Printf("Subdivision: [%s] %s\n", subDivCode, record.SubDivName()) + } + + geoPoint := record.GeoPoint() + cmd.Printf("Coordinates: %0.2f, %0.2f\n", geoPoint.Latitude(), geoPoint.Longitude()) + }, + } +) + +func initUtilLocodeInfoCmd() { + flags := locodeInfoCmd.Flags() + + flags.StringVar(&locodeInfoDBPath, locodeInfoDBFlag, "", "Path to FrostFS UN/LOCODE database") + _ = locodeInfoCmd.MarkFlagRequired(locodeInfoDBFlag) + + flags.StringVar(&locodeInfoCode, locodeInfoCodeFlag, "", "UN/LOCODE") + _ = locodeInfoCmd.MarkFlagRequired(locodeInfoCodeFlag) +} diff --git a/main.go b/main.go new file mode 100644 index 0000000..f04cf17 --- /dev/null +++ b/main.go @@ -0,0 +1,45 @@ +package main + +import ( + "fmt" + "os" + + "github.com/spf13/cobra" +) + +var rootCmd = &cobra.Command{ + Use: "frostfs-locode-db", + Short: "Command Line Tool to work with FrostFS' UN/LOCODE databases", + Long: "This tool can be used for generating or accessing FrostFS UN/LOCODE databases.", +} + +func ExitOnErr(cmd *cobra.Command, errFmt string, err error) { + if err == nil { + return + } + + if errFmt != "" { + err = fmt.Errorf(errFmt, err) + } + + const ( + _ = iota + internal + aclDenied + ) + cmd.PrintErrln(err) + if cmd.PersistentPostRun != nil { + cmd.PersistentPostRun(cmd, nil) + } + os.Exit(internal) +} + +func main() { + initUtilLocodeGenerateCmd() + initUtilLocodeInfoCmd() + rootCmd.AddCommand(locodeGenerateCmd, locodeInfoCmd) + err := rootCmd.Execute() + if err != nil { + ExitOnErr(rootCmd, "", err) + } +} diff --git a/pkg/locode/column/coordinates.go b/pkg/locode/column/coordinates.go new file mode 100644 index 0000000..66b0d47 --- /dev/null +++ b/pkg/locode/column/coordinates.go @@ -0,0 +1,193 @@ +package locodecolumn + +import ( + "fmt" + "strings" + + "git.frostfs.info/TrueCloudLab/frostfs-locode-db/pkg/locode" +) + +const ( + minutesDigits = 2 + hemisphereSymbols = 1 +) + +const ( + latDegDigits = 2 + lngDegDigits = 3 +) + +type coordinateCode struct { + degDigits int + value []uint8 +} + +// LongitudeCode represents the value of the longitude +// of the location conforming to UN/LOCODE specification. +type LongitudeCode coordinateCode + +// LongitudeHemisphere represents the hemisphere of the earth +// // along the Greenwich meridian. +type LongitudeHemisphere [hemisphereSymbols]uint8 + +// LatitudeCode represents the value of the latitude +// of the location conforming to UN/LOCODE specification. +type LatitudeCode coordinateCode + +// LatitudeHemisphere represents the hemisphere of the earth +// along the equator. +type LatitudeHemisphere [hemisphereSymbols]uint8 + +func coordinateFromString(s string, degDigits int, hemisphereAlphabet []uint8) (*coordinateCode, error) { + if len(s) != degDigits+minutesDigits+hemisphereSymbols { + return nil, locode.ErrInvalidString + } + + for i := range s[:degDigits+minutesDigits] { + if !isDigit(s[i]) { + return nil, locode.ErrInvalidString + } + } + +loop: + for _, sym := range s[degDigits+minutesDigits:] { + for j := range hemisphereAlphabet { + if hemisphereAlphabet[j] == uint8(sym) { + continue loop + } + } + + return nil, locode.ErrInvalidString + } + + return &coordinateCode{ + degDigits: degDigits, + value: []uint8(s), + }, nil +} + +// LongitudeFromString parses a string and returns the location's longitude. +func LongitudeFromString(s string) (*LongitudeCode, error) { + cc, err := coordinateFromString(s, lngDegDigits, []uint8{'W', 'E'}) + if err != nil { + return nil, err + } + + return (*LongitudeCode)(cc), nil +} + +// LatitudeFromString parses a string and returns the location's latitude. +func LatitudeFromString(s string) (*LatitudeCode, error) { + cc, err := coordinateFromString(s, latDegDigits, []uint8{'N', 'S'}) + if err != nil { + return nil, err + } + + return (*LatitudeCode)(cc), nil +} + +func (cc *coordinateCode) degrees() []uint8 { + return cc.value[:cc.degDigits] +} + +// Degrees returns the longitude's degrees. +func (lc *LongitudeCode) Degrees() (l [lngDegDigits]uint8) { + copy(l[:], (*coordinateCode)(lc).degrees()) + return +} + +// Degrees returns the latitude's degrees. +func (lc *LatitudeCode) Degrees() (l [latDegDigits]uint8) { + copy(l[:], (*coordinateCode)(lc).degrees()) + return +} + +func (cc *coordinateCode) minutes() (mnt [minutesDigits]uint8) { + for i := 0; i < minutesDigits; i++ { + mnt[i] = cc.value[cc.degDigits+i] + } + + return +} + +// Minutes returns the longitude's minutes. +func (lc *LongitudeCode) Minutes() [minutesDigits]uint8 { + return (*coordinateCode)(lc).minutes() +} + +// Minutes returns the latitude's minutes. +func (lc *LatitudeCode) Minutes() [minutesDigits]uint8 { + return (*coordinateCode)(lc).minutes() +} + +// Hemisphere returns the longitude's hemisphere code. +func (lc *LongitudeCode) Hemisphere() LongitudeHemisphere { + return (*coordinateCode)(lc).hemisphere() +} + +// Hemisphere returns the latitude's hemisphere code. +func (lc *LatitudeCode) Hemisphere() LatitudeHemisphere { + return (*coordinateCode)(lc).hemisphere() +} + +func (cc *coordinateCode) hemisphere() (h [hemisphereSymbols]uint8) { + for i := 0; i < hemisphereSymbols; i++ { + h[i] = cc.value[cc.degDigits+minutesDigits+i] + } + + return h +} + +// North returns true for the northern hemisphere. +func (h LatitudeHemisphere) North() bool { + return h[0] == 'N' +} + +// East returns true for the eastern hemisphere. +func (h LongitudeHemisphere) East() bool { + return h[0] == 'E' +} + +// Coordinates represents the coordinates of the location from UN/LOCODE table. +type Coordinates struct { + lat *LatitudeCode + + lng *LongitudeCode +} + +// Latitude returns the location's latitude. +func (c *Coordinates) Latitude() *LatitudeCode { + return c.lat +} + +// Longitude returns the location's longitude. +func (c *Coordinates) Longitude() *LongitudeCode { + return c.lng +} + +// CoordinatesFromString parses a string and returns the location's coordinates. +func CoordinatesFromString(s string) (*Coordinates, error) { + if len(s) == 0 { + return nil, nil + } + + strs := strings.Split(s, " ") + if len(strs) != 2 { + return nil, locode.ErrInvalidString + } + + lat, err := LatitudeFromString(strs[0]) + if err != nil { + return nil, fmt.Errorf("could not parse latitude: %w", err) + } + + lng, err := LongitudeFromString(strs[1]) + if err != nil { + return nil, fmt.Errorf("could not parse longitude: %w", err) + } + + return &Coordinates{ + lat: lat, + lng: lng, + }, nil +} diff --git a/pkg/locode/column/country.go b/pkg/locode/column/country.go new file mode 100644 index 0000000..2986a86 --- /dev/null +++ b/pkg/locode/column/country.go @@ -0,0 +1,38 @@ +package locodecolumn + +import ( + "fmt" + + "git.frostfs.info/TrueCloudLab/frostfs-locode-db/pkg/locode" +) + +const countryCodeLen = 2 + +// CountryCode represents ISO 3166 alpha-2 Country Code. +type CountryCode [countryCodeLen]uint8 + +// Symbols returns digits of the country code. +func (cc *CountryCode) Symbols() [countryCodeLen]uint8 { + return *cc +} + +// CountryCodeFromString parses a string and returns the country code. +func CountryCodeFromString(s string) (*CountryCode, error) { + if l := len(s); l != countryCodeLen { + return nil, fmt.Errorf("incorrect country code length: expect: %d, got: %d", + countryCodeLen, + l, + ) + } + + for i := range s { + if !isUpperAlpha(s[i]) { + return nil, locode.ErrInvalidString + } + } + + cc := CountryCode{} + copy(cc[:], s) + + return &cc, nil +} diff --git a/pkg/locode/column/location.go b/pkg/locode/column/location.go new file mode 100644 index 0000000..8a959bf --- /dev/null +++ b/pkg/locode/column/location.go @@ -0,0 +1,38 @@ +package locodecolumn + +import ( + "fmt" + + "git.frostfs.info/TrueCloudLab/frostfs-locode-db/pkg/locode" +) + +const locationCodeLen = 3 + +// LocationCode represents 3-character code for the location. +type LocationCode [locationCodeLen]uint8 + +// Symbols returns characters of the location code. +func (lc *LocationCode) Symbols() [locationCodeLen]uint8 { + return *lc +} + +// LocationCodeFromString parses a string and returns the location code. +func LocationCodeFromString(s string) (*LocationCode, error) { + if l := len(s); l != locationCodeLen { + return nil, fmt.Errorf("incorrect location code length: expect: %d, got: %d", + locationCodeLen, + l, + ) + } + + for i := range s { + if !isUpperAlpha(s[i]) && !isDigit(s[i]) { + return nil, locode.ErrInvalidString + } + } + + lc := LocationCode{} + copy(lc[:], s) + + return &lc, nil +} diff --git a/pkg/locode/column/util.go b/pkg/locode/column/util.go new file mode 100644 index 0000000..8da1f9a --- /dev/null +++ b/pkg/locode/column/util.go @@ -0,0 +1,9 @@ +package locodecolumn + +func isDigit(sym uint8) bool { + return sym >= '0' && sym <= '9' +} + +func isUpperAlpha(sym uint8) bool { + return sym >= 'A' && sym <= 'Z' +} diff --git a/pkg/locode/db/airports/calls.go b/pkg/locode/db/airports/calls.go new file mode 100644 index 0000000..3f7398b --- /dev/null +++ b/pkg/locode/db/airports/calls.go @@ -0,0 +1,194 @@ +package airportsdb + +import ( + "encoding/csv" + "errors" + "fmt" + "io" + "os" + "strconv" + + "git.frostfs.info/TrueCloudLab/frostfs-locode-db/pkg/locode" + locodedb "git.frostfs.info/TrueCloudLab/frostfs-locode-db/pkg/locode/db" +) + +const ( + _ = iota - 1 + + _ // Airport ID + _ // Name + airportCity + airportCountry + airportIATA + _ // ICAO + airportLatitude + airportLongitude + _ // Altitude + _ // Timezone + _ // DST + _ // Tz database time zone + _ // Type + _ // Source + + airportFldNum +) + +type record struct { + city, + country, + iata, + lat, + lng string +} + +// Get scans the records of the OpenFlights Airport to an in-memory table (once), +// and returns an entry that matches the passed UN/LOCODE record. +// +// Records are matched if they have the same country code and either +// same IATA code or same city name (location name in UN/LOCODE). +// +// Returns locodedb.ErrAirportNotFound if no entry matches. +func (db *DB) Get(locodeRecord locode.Record) (*locodedb.AirportRecord, error) { + if err := db.initAirports(); err != nil { + return nil, err + } + + records := db.mAirports[locodeRecord.LOCODE.CountryCode()] + + for i := range records { + if locodeRecord.LOCODE.LocationCode() != records[i].iata && + locodeRecord.NameWoDiacritics != records[i].city { + continue + } + + lat, err := strconv.ParseFloat(records[i].lat, 64) + if err != nil { + return nil, err + } + + lng, err := strconv.ParseFloat(records[i].lng, 64) + if err != nil { + return nil, err + } + + return &locodedb.AirportRecord{ + CountryName: records[i].country, + Point: locodedb.NewPoint(lat, lng), + }, nil + } + + return nil, locodedb.ErrAirportNotFound +} + +const ( + _ = iota - 1 + + countryName + countryISOCode + _ // dafif_code + + countryFldNum +) + +// CountryName scans the records of the OpenFlights Country table to an in-memory table (once), +// and returns the name of the country by code. +// +// Returns locodedb.ErrCountryNotFound if no entry matches. +func (db *DB) CountryName(code *locodedb.CountryCode) (name string, err error) { + if err = db.initCountries(); err != nil { + return + } + + argCode := code.String() + + for cName, cCode := range db.mCountries { + if cCode == argCode { + name = cName + break + } + } + + if name == "" { + err = locodedb.ErrCountryNotFound + } + + return +} + +func (db *DB) initAirports() (err error) { + db.airportsOnce.Do(func() { + db.mAirports = make(map[string][]record) + + if err = db.initCountries(); err != nil { + return + } + + err = db.scanWords(db.airports, airportFldNum, func(words []string) error { + countryCode := db.mCountries[words[airportCountry]] + if countryCode != "" { + db.mAirports[countryCode] = append(db.mAirports[countryCode], record{ + city: words[airportCity], + country: words[airportCountry], + iata: words[airportIATA], + lat: words[airportLatitude], + lng: words[airportLongitude], + }) + } + + return nil + }) + }) + + return +} + +func (db *DB) initCountries() (err error) { + db.countriesOnce.Do(func() { + db.mCountries = make(map[string]string) + + err = db.scanWords(db.countries, countryFldNum, func(words []string) error { + db.mCountries[words[countryName]] = words[countryISOCode] + + return nil + }) + }) + + return +} + +var errScanInt = errors.New("interrupt scan") + +func (db *DB) scanWords(pm pathMode, num int, wordsHandler func([]string) error) error { + tableFile, err := os.OpenFile(pm.path, os.O_RDONLY, pm.mode) + if err != nil { + return err + } + + defer tableFile.Close() + + r := csv.NewReader(tableFile) + r.ReuseRecord = true + + for { + words, err := r.Read() + if err != nil { + if errors.Is(err, io.EOF) { + break + } + + return err + } else if ln := len(words); ln != num { + return fmt.Errorf("unexpected number of words %d", ln) + } + + if err := wordsHandler(words); err != nil { + if errors.Is(err, errScanInt) { + break + } + + return err + } + } + + return nil +} diff --git a/pkg/locode/db/airports/db.go b/pkg/locode/db/airports/db.go new file mode 100644 index 0000000..acfa3fd --- /dev/null +++ b/pkg/locode/db/airports/db.go @@ -0,0 +1,83 @@ +package airportsdb + +import ( + "fmt" + "io/fs" + "sync" +) + +// Prm groups the required parameters of the DB's constructor. +// +// All values must comply with the requirements imposed on them. +// Passing incorrect parameter values will result in constructor +// failure (error or panic depending on the implementation). +type Prm struct { + // Path to OpenFlights Airport csv table. + // + // Must not be empty. + AirportsPath string + + // Path to OpenFlights Countries csv table. + // + // Must not be empty. + CountriesPath string +} + +// DB is a descriptor of the OpenFlights database in csv format. +// +// For correct operation, DB must be created +// using the constructor (New) based on the required parameters +// and optional components. After successful creation, +// The DB is immediately ready to work through API. +type DB struct { + airports, countries pathMode + + airportsOnce, countriesOnce sync.Once + + mCountries map[string]string + + mAirports map[string][]record +} + +type pathMode struct { + path string + mode fs.FileMode +} + +const invalidPrmValFmt = "invalid parameter %s (%T):%v" + +func panicOnPrmValue(n string, v any) { + panic(fmt.Sprintf(invalidPrmValFmt, n, v, v)) +} + +// New creates a new instance of the DB. +// +// Panics if at least one value of the parameters is invalid. +// +// The created DB does not require additional +// initialization and is completely ready for work. +func New(prm Prm, opts ...Option) *DB { + switch { + case prm.AirportsPath == "": + panicOnPrmValue("AirportsPath", prm.AirportsPath) + case prm.CountriesPath == "": + panicOnPrmValue("CountriesPath", prm.CountriesPath) + } + + o := defaultOpts() + + for i := range opts { + opts[i](o) + } + + return &DB{ + airports: pathMode{ + path: prm.AirportsPath, + mode: o.airportMode, + }, + countries: pathMode{ + path: prm.CountriesPath, + mode: o.countryMode, + }, + } +} diff --git a/pkg/locode/db/airports/opts.go b/pkg/locode/db/airports/opts.go new file mode 100644 index 0000000..3799d9e --- /dev/null +++ b/pkg/locode/db/airports/opts.go @@ -0,0 +1,19 @@ +package airportsdb + +import ( + "io/fs" +) + +// Option sets an optional parameter of DB. +type Option func(*options) + +type options struct { + airportMode, countryMode fs.FileMode +} + +func defaultOpts() *options { + return &options{ + airportMode: fs.ModePerm, // 0777 + countryMode: fs.ModePerm, // 0777 + } +} diff --git a/pkg/locode/db/boltdb/calls.go b/pkg/locode/db/boltdb/calls.go new file mode 100644 index 0000000..d130097 --- /dev/null +++ b/pkg/locode/db/boltdb/calls.go @@ -0,0 +1,166 @@ +package locodebolt + +import ( + "encoding/json" + "errors" + "fmt" + "os" + "path/filepath" + + locodedb "git.frostfs.info/TrueCloudLab/frostfs-locode-db/pkg/locode/db" + "go.etcd.io/bbolt" +) + +// Open opens an underlying BoltDB instance. +// +// Timeout of BoltDB opening is 3s (only for Linux or Darwin). +// +// Opens BoltDB in read-only mode if DB is read-only. +func (db *DB) Open() error { + // copy-paste from metabase: + // consider universal Open/Close for BoltDB wrappers + + err := os.MkdirAll(filepath.Dir(db.path), db.mode|0o110) + if err != nil { + return fmt.Errorf("could not create dir for BoltDB: %w", err) + } + + db.bolt, err = bbolt.Open(db.path, db.mode, db.boltOpts) + if err != nil { + return fmt.Errorf("could not open BoltDB: %w", err) + } + + return nil +} + +// Close closes an underlying BoltDB instance. +// +// Must not be called before successful Open call. +func (db *DB) Close() error { + return db.bolt.Close() +} + +func countryBucketKey(cc *locodedb.CountryCode) ([]byte, error) { + return []byte(cc.String()), nil +} + +func locationBucketKey(lc *locodedb.LocationCode) ([]byte, error) { + return []byte(lc.String()), nil +} + +type recordJSON struct { + CountryName string + LocationName string + SubDivName string + SubDivCode string + Latitude float64 + Longitude float64 + Continent string +} + +func recordValue(r locodedb.Record) ([]byte, error) { + p := r.GeoPoint() + + rj := &recordJSON{ + CountryName: r.CountryName(), + LocationName: r.LocationName(), + SubDivName: r.SubDivName(), + SubDivCode: r.SubDivCode(), + Latitude: p.Latitude(), + Longitude: p.Longitude(), + Continent: r.Continent().String(), + } + + return json.Marshal(rj) +} + +func recordFromValue(data []byte) (*locodedb.Record, error) { + rj := new(recordJSON) + + if err := json.Unmarshal(data, rj); err != nil { + return nil, err + } + + r := new(locodedb.Record) + r.SetCountryName(rj.CountryName) + r.SetLocationName(rj.LocationName) + r.SetSubDivName(rj.SubDivName) + r.SetSubDivCode(rj.SubDivCode) + r.SetGeoPoint(locodedb.NewPoint(rj.Latitude, rj.Longitude)) + + cont := locodedb.ContinentFromString(rj.Continent) + r.SetContinent(&cont) + + return r, nil +} + +// Put saves the record by key in an underlying BoltDB instance. +// +// Country code from the key is used for allocating the 1st level buckets. +// Records are stored in country buckets by the location code from the key. +// The records are stored in internal binary JSON format. +// +// Must not be called before successful Open call. +// Must not be called in read-only mode: behavior is undefined. +func (db *DB) Put(key locodedb.Key, rec locodedb.Record) error { + return db.bolt.Batch(func(tx *bbolt.Tx) error { + countryKey, err := countryBucketKey(key.CountryCode()) + if err != nil { + return err + } + + bktCountry, err := tx.CreateBucketIfNotExists(countryKey) + if err != nil { + return fmt.Errorf("could not create country bucket: %w", err) + } + + locationKey, err := locationBucketKey(key.LocationCode()) + if err != nil { + return err + } + + cont, err := recordValue(rec) + if err != nil { + return err + } + + return bktCountry.Put(locationKey, cont) + }) +} + +var errRecordNotFound = errors.New("record not found") + +// Get reads the record by key from underlying BoltDB instance. +// +// Returns an error if no record is presented by key in DB. +// +// Must not be called before successful Open call. +func (db *DB) Get(key locodedb.Key) (rec *locodedb.Record, err error) { + err = db.bolt.View(func(tx *bbolt.Tx) error { + countryKey, err := countryBucketKey(key.CountryCode()) + if err != nil { + return err + } + + bktCountry := tx.Bucket(countryKey) + if bktCountry == nil { + return errRecordNotFound + } + + locationKey, err := locationBucketKey(key.LocationCode()) + if err != nil { + return err + } + + data := bktCountry.Get(locationKey) + if data == nil { + return errRecordNotFound + } + + rec, err = recordFromValue(data) + + return err + }) + + return +} diff --git a/pkg/locode/db/boltdb/db.go b/pkg/locode/db/boltdb/db.go new file mode 100644 index 0000000..3d09a79 --- /dev/null +++ b/pkg/locode/db/boltdb/db.go @@ -0,0 +1,73 @@ +package locodebolt + +import ( + "fmt" + "io/fs" + + "go.etcd.io/bbolt" +) + +// Prm groups the required parameters of the DB's constructor. +// +// All values must comply with the requirements imposed on them. +// Passing incorrect parameter values will result in constructor +// failure (error or panic depending on the implementation). +type Prm struct { + // Path to BoltDB file with FrostFS location database. + // + // Must not be empty. + Path string +} + +// DB is a descriptor of the FrostFS BoltDB location database. +// +// For correct operation, DB must be created +// using the constructor (New) based on the required parameters +// and optional components. +// +// After successful creation, +// DB must be opened through Open call. After successful opening, +// DB is ready to work through API (until Close call). +// +// Upon completion of work with the DB, it must be closed +// by Close method. +type DB struct { + path string + + mode fs.FileMode + + boltOpts *bbolt.Options + + bolt *bbolt.DB +} + +const invalidPrmValFmt = "invalid parameter %s (%T):%v" + +func panicOnPrmValue(n string, v any) { + panic(fmt.Sprintf(invalidPrmValFmt, n, v, v)) +} + +// New creates a new instance of the DB. +// +// Panics if at least one value of the parameters is invalid. +// +// The created DB requires calling the Open method in order +// to initialize required resources. +func New(prm Prm, opts ...Option) *DB { + switch { + case prm.Path == "": + panicOnPrmValue("Path", prm.Path) + } + + o := defaultOpts() + + for i := range opts { + opts[i](o) + } + + return &DB{ + path: prm.Path, + mode: o.mode, + boltOpts: o.boltOpts, + } +} diff --git a/pkg/locode/db/boltdb/opts.go b/pkg/locode/db/boltdb/opts.go new file mode 100644 index 0000000..db0cccd --- /dev/null +++ b/pkg/locode/db/boltdb/opts.go @@ -0,0 +1,37 @@ +package locodebolt + +import ( + "io/fs" + "os" + "time" + + "go.etcd.io/bbolt" +) + +// Option sets an optional parameter of DB. +type Option func(*options) + +type options struct { + mode fs.FileMode + + boltOpts *bbolt.Options +} + +func defaultOpts() *options { + return &options{ + mode: os.ModePerm, // 0777 + boltOpts: &bbolt.Options{ + Timeout: 3 * time.Second, + }, + } +} + +// ReadOnly enables read-only mode of the DB. +// +// Do not call DB.Put method on instances with +// this option: the behavior is undefined. +func ReadOnly() Option { + return func(o *options) { + o.boltOpts.ReadOnly = true + } +} diff --git a/pkg/locode/db/continent.go b/pkg/locode/db/continent.go new file mode 100644 index 0000000..863af7b --- /dev/null +++ b/pkg/locode/db/continent.go @@ -0,0 +1,81 @@ +package locodedb + +// Continent is an enumeration of Earth's continent. +type Continent uint8 + +const ( + // ContinentUnknown is an undefined Continent value. + ContinentUnknown = iota + + // ContinentEurope corresponds to Europe. + ContinentEurope + + // ContinentAfrica corresponds to Africa. + ContinentAfrica + + // ContinentNorthAmerica corresponds to North America. + ContinentNorthAmerica + + // ContinentSouthAmerica corresponds to South America. + ContinentSouthAmerica + + // ContinentAsia corresponds to Asia. + ContinentAsia + + // ContinentAntarctica corresponds to Antarctica. + ContinentAntarctica + + // ContinentOceania corresponds to Oceania. + ContinentOceania +) + +// Is checks if c is the same continent as c2. +func (c *Continent) Is(c2 Continent) bool { + return *c == c2 +} + +func (c Continent) String() string { + switch c { + case ContinentUnknown: + fallthrough + default: + return "Unknown" + case ContinentEurope: + return "Europe" + case ContinentAfrica: + return "Africa" + case ContinentNorthAmerica: + return "North America" + case ContinentSouthAmerica: + return "South America" + case ContinentAsia: + return "Asia" + case ContinentAntarctica: + return "Antarctica" + case ContinentOceania: + return "Oceania" + } +} + +// ContinentFromString returns Continent value +// corresponding to the passed string representation. +func ContinentFromString(str string) Continent { + switch str { + default: + return ContinentUnknown + case "Europe": + return ContinentEurope + case "Africa": + return ContinentAfrica + case "North America": + return ContinentNorthAmerica + case "South America": + return ContinentSouthAmerica + case "Asia": + return ContinentAsia + case "Antarctica": + return ContinentAntarctica + case "Oceania": + return ContinentOceania + } +} diff --git a/pkg/locode/db/continents/geojson/calls.go b/pkg/locode/db/continents/geojson/calls.go new file mode 100644 index 0000000..b5a58d1 --- /dev/null +++ b/pkg/locode/db/continents/geojson/calls.go @@ -0,0 +1,98 @@ +package continentsdb + +import ( + "fmt" + "os" + + locodedb "git.frostfs.info/TrueCloudLab/frostfs-locode-db/pkg/locode/db" + "github.com/paulmach/orb" + "github.com/paulmach/orb/geojson" + "github.com/paulmach/orb/planar" +) + +const continentProperty = "Continent" + +// PointContinent goes through all polygons and returns the continent +// in which the point is located. +// +// Returns locodedb.ContinentUnknown if no entry matches. +// +// All GeoJSON feature are parsed from file once and stored in memory. +func (db *DB) PointContinent(point *locodedb.Point) (*locodedb.Continent, error) { + var err error + + db.once.Do(func() { + err = db.init() + }) + + if err != nil { + return nil, err + } + + planarPoint := orb.Point{point.Longitude(), point.Latitude()} + + var ( + continent string + minDst float64 + ) + + for _, feature := range db.features { + if multiPolygon, ok := feature.Geometry.(orb.MultiPolygon); ok { + if planar.MultiPolygonContains(multiPolygon, planarPoint) { + continent = feature.Properties.MustString(continentProperty) + break + } + } else if polygon, ok := feature.Geometry.(orb.Polygon); ok { + if planar.PolygonContains(polygon, planarPoint) { + continent = feature.Properties.MustString(continentProperty) + break + } + } + distance := planar.DistanceFrom(feature.Geometry, planarPoint) + if minDst == 0 || minDst > distance { + minDst = distance + continent = feature.Properties.MustString(continentProperty) + } + } + + c := continentFromString(continent) + + return &c, nil +} + +func (db *DB) init() error { + data, err := os.ReadFile(db.path) + if err != nil { + return fmt.Errorf("could not read data file: %w", err) + } + + features, err := geojson.UnmarshalFeatureCollection(data) + if err != nil { + return fmt.Errorf("could not unmarshal GeoJSON feature collection: %w", err) + } + + db.features = features.Features + + return nil +} + +func continentFromString(c string) locodedb.Continent { + switch c { + default: + return locodedb.ContinentUnknown + case "Africa": + return locodedb.ContinentAfrica + case "Asia": + return locodedb.ContinentAsia + case "Europe": + return locodedb.ContinentEurope + case "North America": + return locodedb.ContinentNorthAmerica + case "South America": + return locodedb.ContinentSouthAmerica + case "Antarctica": + return locodedb.ContinentAntarctica + case "Australia", "Oceania": + return locodedb.ContinentOceania + } +} diff --git a/pkg/locode/db/continents/geojson/db.go b/pkg/locode/db/continents/geojson/db.go new file mode 100644 index 0000000..ee43bd8 --- /dev/null +++ b/pkg/locode/db/continents/geojson/db.go @@ -0,0 +1,63 @@ +package continentsdb + +import ( + "fmt" + "sync" + + "github.com/paulmach/orb/geojson" +) + +// Prm groups the required parameters of the DB's constructor. +// +// All values must comply with the requirements imposed on them. +// Passing incorrect parameter values will result in constructor +// failure (error or panic depending on the implementation). +type Prm struct { + // Path to polygons of Earth's continents in GeoJSON format. + // + // Must not be empty. + Path string +} + +// DB is a descriptor of the Earth's polygons in GeoJSON format. +// +// For correct operation, DB must be created +// using the constructor (New) based on the required parameters +// and optional components. After successful creation, +// The DB is immediately ready to work through API. +type DB struct { + path string + + once sync.Once + + features []*geojson.Feature +} + +const invalidPrmValFmt = "invalid parameter %s (%T):%v" + +func panicOnPrmValue(n string, v any) { + panic(fmt.Sprintf(invalidPrmValFmt, n, v, v)) +} + +// New creates a new instance of the DB. +// +// Panics if at least one value of the parameters is invalid. +// +// The created DB does not require additional +// initialization and is completely ready for work. +func New(prm Prm, opts ...Option) *DB { + switch { + case prm.Path == "": + panicOnPrmValue("Path", prm.Path) + } + + o := defaultOpts() + + for i := range opts { + opts[i](o) + } + + return &DB{ + path: prm.Path, + } +} diff --git a/pkg/locode/db/continents/geojson/opts.go b/pkg/locode/db/continents/geojson/opts.go new file mode 100644 index 0000000..59831fc --- /dev/null +++ b/pkg/locode/db/continents/geojson/opts.go @@ -0,0 +1,10 @@ +package continentsdb + +// Option sets an optional parameter of DB. +type Option func(*options) + +type options struct{} + +func defaultOpts() *options { + return &options{} +} diff --git a/pkg/locode/db/country.go b/pkg/locode/db/country.go new file mode 100644 index 0000000..b4f8e6c --- /dev/null +++ b/pkg/locode/db/country.go @@ -0,0 +1,32 @@ +package locodedb + +import ( + "fmt" + + locodecolumn "git.frostfs.info/TrueCloudLab/frostfs-locode-db/pkg/locode/column" +) + +// CountryCode represents a country code for +// the storage in the FrostFS location database. +type CountryCode locodecolumn.CountryCode + +// CountryCodeFromString parses a string UN/LOCODE country code +// and returns a CountryCode. +func CountryCodeFromString(s string) (*CountryCode, error) { + cc, err := locodecolumn.CountryCodeFromString(s) + if err != nil { + return nil, fmt.Errorf("could not parse country code: %w", err) + } + + return CountryFromColumn(cc) +} + +// CountryFromColumn converts a UN/LOCODE country code to a CountryCode. +func CountryFromColumn(cc *locodecolumn.CountryCode) (*CountryCode, error) { + return (*CountryCode)(cc), nil +} + +func (c *CountryCode) String() string { + syms := (*locodecolumn.CountryCode)(c).Symbols() + return string(syms[:]) +} diff --git a/pkg/locode/db/db.go b/pkg/locode/db/db.go new file mode 100644 index 0000000..a4a09d1 --- /dev/null +++ b/pkg/locode/db/db.go @@ -0,0 +1,183 @@ +package locodedb + +import ( + "errors" + "fmt" + "runtime" + + "git.frostfs.info/TrueCloudLab/frostfs-locode-db/pkg/locode" + "golang.org/x/sync/errgroup" +) + +// SourceTable is an interface of the UN/LOCODE table. +type SourceTable interface { + // Must iterate over all entries of the table + // and pass next entry to the handler. + // + // Must return handler's errors directly. + IterateAll(func(locode.Record) error) error +} + +// DB is an interface of FrostFS location database. +type DB interface { + // Must save the record by key in the database. + Put(Key, Record) error + + // Must return the record by key from the database. + Get(Key) (*Record, error) +} + +// AirportRecord represents the entry in FrostFS airport database. +type AirportRecord struct { + // Name of the country where airport is located. + CountryName string + + // Geo point where airport is located. + Point *Point +} + +// ErrAirportNotFound is returned by AirportRecord readers +// when the required airport is not found. +var ErrAirportNotFound = errors.New("airport not found") + +// AirportDB is an interface of FrostFS airport database. +type AirportDB interface { + // Must return the record by UN/LOCODE table record. + // + // Must return ErrAirportNotFound if there is no + // related airport in the database. + Get(locode.Record) (*AirportRecord, error) +} + +// ContinentsDB is an interface of FrostFS continent database. +type ContinentsDB interface { + // Must return continent of the geo point. + PointContinent(*Point) (*Continent, error) +} + +var ErrSubDivNotFound = errors.New("subdivision not found") + +var ErrCountryNotFound = errors.New("country not found") + +// NamesDB is an interface of the FrostFS location namespace. +type NamesDB interface { + // Must resolve a country code to a country name. + // + // Must return ErrCountryNotFound if there is no + // country with the provided code. + CountryName(*CountryCode) (string, error) + + // Must resolve (country code, subdivision code) to + // a subdivision name. + // + // Must return ErrSubDivNotFound if either country or + // subdivision is not presented in database. + SubDivName(*CountryCode, string) (string, error) +} + +// FillDatabase generates the FrostFS location database based on the UN/LOCODE table. +func FillDatabase(table SourceTable, airports AirportDB, continents ContinentsDB, names NamesDB, db DB) error { + var errG errgroup.Group + + // Pick some sane default, after this the performance stopped increasing. + errG.SetLimit(runtime.NumCPU() * 4) + _ = table.IterateAll(func(tableRecord locode.Record) error { + errG.Go(func() error { + return processTableRecord(tableRecord, airports, continents, names, db) + }) + return nil + }) + return errG.Wait() +} + +func processTableRecord(tableRecord locode.Record, airports AirportDB, continents ContinentsDB, names NamesDB, db DB) error { + if tableRecord.LOCODE.LocationCode() == "" { + return nil + } + + dbKey, err := NewKey(tableRecord.LOCODE) + if err != nil { + return err + } + + dbRecord, err := NewRecord(tableRecord) + if err != nil { + if errors.Is(err, errParseCoordinates) { + return nil + } + + return err + } + + geoPoint := dbRecord.GeoPoint() + countryName := "" + + if geoPoint == nil { + airportRecord, err := airports.Get(tableRecord) + if err != nil { + if errors.Is(err, ErrAirportNotFound) { + return nil + } + + return err + } + + geoPoint = airportRecord.Point + countryName = airportRecord.CountryName + } + + dbRecord.SetGeoPoint(geoPoint) + + if countryName == "" { + countryName, err = names.CountryName(dbKey.CountryCode()) + if err != nil { + if errors.Is(err, ErrCountryNotFound) { + return nil + } + + return err + } + } + + dbRecord.SetCountryName(countryName) + + if subDivCode := dbRecord.SubDivCode(); subDivCode != "" { + subDivName, err := names.SubDivName(dbKey.CountryCode(), subDivCode) + if err != nil { + if errors.Is(err, ErrSubDivNotFound) { + return nil + } + + return err + } + + dbRecord.SetSubDivName(subDivName) + } + + continent, err := continents.PointContinent(geoPoint) + if err != nil { + return fmt.Errorf("could not calculate continent geo point: %w", err) + } else if continent.Is(ContinentUnknown) { + return nil + } + + dbRecord.SetContinent(continent) + + return db.Put(*dbKey, *dbRecord) +} + +// LocodeRecord returns the record from the FrostFS location database +// corresponding to the string representation of UN/LOCODE. +func LocodeRecord(db DB, sLocode string) (*Record, error) { + lc, err := locode.FromString(sLocode) + if err != nil { + return nil, fmt.Errorf("could not parse locode: %w", err) + } + + key, err := NewKey(*lc) + if err != nil { + return nil, err + } + + return db.Get(*key) +} diff --git a/pkg/locode/db/location.go b/pkg/locode/db/location.go new file mode 100644 index 0000000..1b08375 --- /dev/null +++ b/pkg/locode/db/location.go @@ -0,0 +1,32 @@ +package locodedb + +import ( + "fmt" + + locodecolumn "git.frostfs.info/TrueCloudLab/frostfs-locode-db/pkg/locode/column" +) + +// LocationCode represents a location code for +// the storage in the FrostFS location database. +type LocationCode locodecolumn.LocationCode + +// LocationCodeFromString parses a string UN/LOCODE location code +// and returns a LocationCode. +func LocationCodeFromString(s string) (*LocationCode, error) { + lc, err := locodecolumn.LocationCodeFromString(s) + if err != nil { + return nil, fmt.Errorf("could not parse location code: %w", err) + } + + return LocationFromColumn(lc) +} + +// LocationFromColumn converts a UN/LOCODE country code to a LocationCode. +func LocationFromColumn(cc *locodecolumn.LocationCode) (*LocationCode, error) { + return (*LocationCode)(cc), nil +} + +func (l *LocationCode) String() string { + syms := (*locodecolumn.LocationCode)(l).Symbols() + return string(syms[:]) +} diff --git a/pkg/locode/db/point.go b/pkg/locode/db/point.go new file mode 100644 index 0000000..db47a63 --- /dev/null +++ b/pkg/locode/db/point.go @@ -0,0 +1,93 @@ +package locodedb + +import ( + "fmt" + "strconv" + + locodecolumn "git.frostfs.info/TrueCloudLab/frostfs-locode-db/pkg/locode/column" +) + +// Point represents a 2D geographic point. +type Point struct { + lat, lng float64 +} + +// NewPoint creates, initializes and returns a new Point. +func NewPoint(lat, lng float64) *Point { + return &Point{ + lat: lat, + lng: lng, + } +} + +// Latitude returns the Point's latitude. +func (p Point) Latitude() float64 { + return p.lat +} + +// Longitude returns the Point's longitude. +func (p Point) Longitude() float64 { + return p.lng +} + +// PointFromCoordinates converts a UN/LOCODE coordinates to a Point. +func PointFromCoordinates(crd *locodecolumn.Coordinates) (*Point, error) { + if crd == nil { + return nil, nil + } + + cLat := crd.Latitude() + cLatDeg := cLat.Degrees() + cLatMnt := cLat.Minutes() + + lat, err := toDecimal(cLatDeg[:], cLatMnt[:]) + if err != nil { + return nil, fmt.Errorf("could not parse latitude: %w", err) + } + + if !cLat.Hemisphere().North() { + lat = -lat + } + + cLng := crd.Longitude() + cLngDeg := cLng.Degrees() + cLngMnt := cLng.Minutes() + + lng, err := toDecimal(cLngDeg[:], cLngMnt[:]) + if err != nil { + return nil, fmt.Errorf("could not parse longitude: %w", err) + } + + if !cLng.Hemisphere().East() { + lng = -lng + } + + return &Point{ + lat: lat, + lng: lng, + }, nil +} + +func toDecimal(intRaw, minutesRaw []byte) (float64, error) { + integer, err := strconv.ParseFloat(string(intRaw), 64) + if err != nil { + return 0, fmt.Errorf("could not parse integer part: %w", err) + } + + decimal, err := minutesToDegrees(minutesRaw) + if err != nil { + return 0, fmt.Errorf("could not parse decimal part: %w", err) + } + + return integer + decimal, nil +} + +// minutesToDegrees converts minutes to decimal part of a degree. +func minutesToDegrees(raw []byte) (float64, error) { + minutes, err := strconv.ParseFloat(string(raw), 64) + if err != nil { + return 0, err + } + + return minutes / 60, nil +} diff --git a/pkg/locode/db/point_test.go b/pkg/locode/db/point_test.go new file mode 100644 index 0000000..9531110 --- /dev/null +++ b/pkg/locode/db/point_test.go @@ -0,0 +1,51 @@ +package locodedb + +import ( + "testing" + + locodecolumn "git.frostfs.info/TrueCloudLab/frostfs-locode-db/pkg/locode/column" + "github.com/stretchr/testify/require" +) + +func TestPointFromCoordinates(t *testing.T) { + testCases := []struct { + latGot, longGot string + latWant, longWant float64 + }{ + { + latGot: "5915N", + longGot: "01806E", + latWant: 59.25, + longWant: 18.10, + }, + { + latGot: "1000N", + longGot: "02030E", + latWant: 10.00, + longWant: 20.50, + }, + { + latGot: "0145S", + longGot: "03512W", + latWant: -01.75, + longWant: -35.20, + }, + } + + var ( + crd *locodecolumn.Coordinates + point *Point + err error + ) + + for _, test := range testCases { + crd, err = locodecolumn.CoordinatesFromString(test.latGot + " " + test.longGot) + require.NoError(t, err) + + point, err = PointFromCoordinates(crd) + require.NoError(t, err) + + require.Equal(t, test.latWant, point.Latitude()) + require.Equal(t, test.longWant, point.Longitude()) + } +} diff --git a/pkg/locode/db/record.go b/pkg/locode/db/record.go new file mode 100644 index 0000000..2699b0f --- /dev/null +++ b/pkg/locode/db/record.go @@ -0,0 +1,140 @@ +package locodedb + +import ( + "errors" + "fmt" + + "git.frostfs.info/TrueCloudLab/frostfs-locode-db/pkg/locode" + locodecolumn "git.frostfs.info/TrueCloudLab/frostfs-locode-db/pkg/locode/column" +) + +// Key represents the key in FrostFS location database. +type Key struct { + cc *CountryCode + + lc *LocationCode +} + +// NewKey calculates Key from LOCODE. +func NewKey(lc locode.LOCODE) (*Key, error) { + country, err := CountryCodeFromString(lc.CountryCode()) + if err != nil { + return nil, fmt.Errorf("could not parse country: %w", err) + } + + location, err := LocationCodeFromString(lc.LocationCode()) + if err != nil { + return nil, fmt.Errorf("could not parse location: %w", err) + } + + return &Key{ + cc: country, + lc: location, + }, nil +} + +// CountryCode returns the location's country code. +func (k *Key) CountryCode() *CountryCode { + return k.cc +} + +// LocationCode returns the location code. +func (k *Key) LocationCode() *LocationCode { + return k.lc +} + +// Record represents the entry in FrostFS location database. +type Record struct { + countryName string + + locationName string + + subDivName string + + subDivCode string + + p *Point + + cont *Continent +} + +var errParseCoordinates = errors.New("invalid coordinates") + +// NewRecord calculates the Record from the UN/LOCODE table record. +func NewRecord(r locode.Record) (*Record, error) { + crd, err := locodecolumn.CoordinatesFromString(r.Coordinates) + if err != nil { + return nil, fmt.Errorf("%w: %v", errParseCoordinates, err) + } + + point, err := PointFromCoordinates(crd) + if err != nil { + return nil, fmt.Errorf("could not parse geo point: %w", err) + } + + return &Record{ + locationName: r.NameWoDiacritics, + subDivCode: r.SubDiv, + p: point, + }, nil +} + +// CountryName returns the country name. +func (r *Record) CountryName() string { + return r.countryName +} + +// SetCountryName sets the country name. +func (r *Record) SetCountryName(name string) { + r.countryName = name +} + +// LocationName returns the location name. +func (r *Record) LocationName() string { + return r.locationName +} + +// SetLocationName sets the location name. +func (r *Record) SetLocationName(name string) { + r.locationName = name +} + +// SubDivCode returns the subdivision code. +func (r *Record) SubDivCode() string { + return r.subDivCode +} + +// SetSubDivCode sets the subdivision code. +func (r *Record) SetSubDivCode(name string) { + r.subDivCode = name +} + +// SubDivName returns the subdivision name. +func (r *Record) SubDivName() string { + return r.subDivName +} + +// SetSubDivName sets the subdivision name. +func (r *Record) SetSubDivName(name string) { + r.subDivName = name +} + +// GeoPoint returns geo point of the location. +func (r *Record) GeoPoint() *Point { + return r.p +} + +// SetGeoPoint sets geo point of the location. +func (r *Record) SetGeoPoint(p *Point) { + r.p = p +} + +// Continent returns the location continent. +func (r *Record) Continent() *Continent { + return r.cont +} + +// SetContinent sets the location continent. +func (r *Record) SetContinent(c *Continent) { + r.cont = c +} diff --git a/pkg/locode/record.go b/pkg/locode/record.go new file mode 100644 index 0000000..7db746f --- /dev/null +++ b/pkg/locode/record.go @@ -0,0 +1,83 @@ +package locode + +import ( + "errors" + "fmt" + "strings" +) + +// LOCODE represents code from UN/LOCODE coding scheme. +type LOCODE [2]string + +// Record represents a single record of the UN/LOCODE table. +type Record struct { + // Change Indicator. + Ch string + + // Combination of a 2-character country code and a 3-character location code. + LOCODE LOCODE + + // Name of the locations which has been allocated a UN/LOCODE. + Name string + + // Names of the locations which have been allocated a UN/LOCODE without diacritic signs. + NameWoDiacritics string + + // ISO 1-3 character alphabetic and/or numeric code for the administrative division of the country concerned. + SubDiv string + + // 8-digit function classifier code for the location. + Function string + + // Status of the entry by a 2-character code. + Status string + + // Last date when the location was updated/entered. + Date string + + // The IATA code for the location if different from location code in column LOCODE. + IATA string + + // Geographical coordinates (latitude/longitude) of the location, if there is any. + Coordinates string + + // Some general remarks regarding the UN/LOCODE in question. + Remarks string +} + +// ErrInvalidString is the error of incorrect string format of the LOCODE. +var ErrInvalidString = errors.New("invalid string format in UN/Locode") + +// FromString parses string and returns LOCODE. +// +// If string has incorrect format, ErrInvalidString returns. +func FromString(s string) (*LOCODE, error) { + const ( + locationSeparator = " " + locodePartsNumber = 2 + ) + + words := strings.Split(s, locationSeparator) + if ln := len(words); ln != locodePartsNumber { + return nil, fmt.Errorf( + "incorrect locode: it must consist of %d codes separated with a witespase, got: %d", + locodePartsNumber, + ln, + ) + } + + l := new(LOCODE) + copy(l[:], words) + + return l, nil +} + +// CountryCode returns a string representation of country code. +func (l *LOCODE) CountryCode() string { + return l[0] +} + +// LocationCode returns a string representation of location code. +func (l *LOCODE) LocationCode() string { + return l[1] +} diff --git a/pkg/locode/table/csv/calls.go b/pkg/locode/table/csv/calls.go new file mode 100644 index 0000000..5ce0e7b --- /dev/null +++ b/pkg/locode/table/csv/calls.go @@ -0,0 +1,156 @@ +package csvlocode + +import ( + "encoding/csv" + "errors" + "io" + "os" + "strings" + + "git.frostfs.info/TrueCloudLab/frostfs-locode-db/pkg/locode" + locodedb "git.frostfs.info/TrueCloudLab/frostfs-locode-db/pkg/locode/db" +) + +var errInvalidRecord = errors.New("invalid table record") + +// IterateAll scans a table record one-by-one, parses a UN/LOCODE record +// from it and passes it to f. +// +// Returns f's errors directly. +func (t *Table) IterateAll(f func(locode.Record) error) error { + const wordsPerRecord = 12 + + return t.scanWords(t.paths, wordsPerRecord, func(words []string) error { + lc, err := locode.FromString(strings.Join(words[1:3], " ")) + if err != nil { + return err + } + + record := locode.Record{ + Ch: words[0], + LOCODE: *lc, + Name: words[3], + NameWoDiacritics: words[4], + SubDiv: words[5], + Function: words[6], + Status: words[7], + Date: words[8], + IATA: words[9], + Coordinates: words[10], + Remarks: words[11], + } + + return f(record) + }) +} + +const ( + _ = iota - 1 + + subDivCountry + subDivSubdivision + subDivName + _ // subDivLevel + + subDivFldNum +) + +type subDivKey struct { + countryCode, + subDivCode string +} + +type subDivRecord struct { + name string +} + +// SubDivName scans a table record to an in-memory table (once), +// and returns the subdivision name of the country and the subdivision codes match. +// +// Returns locodedb.ErrSubDivNotFound if no entry matches. +func (t *Table) SubDivName(countryCode *locodedb.CountryCode, code string) (string, error) { + if err := t.initSubDiv(); err != nil { + return "", err + } + + rec, ok := t.mSubDiv[subDivKey{ + countryCode: countryCode.String(), + subDivCode: code, + }] + if !ok { + return "", locodedb.ErrSubDivNotFound + } + + return rec.name, nil +} + +func (t *Table) initSubDiv() (err error) { + t.subDivOnce.Do(func() { + t.mSubDiv = make(map[subDivKey]subDivRecord) + + err = t.scanWords([]string{t.subDivPath}, subDivFldNum, func(words []string) error { + t.mSubDiv[subDivKey{ + countryCode: words[subDivCountry], + subDivCode: words[subDivSubdivision], + }] = subDivRecord{ + name: words[subDivName], + } + + return nil + }) + }) + + return +} + +var errScanInt = errors.New("interrupt scan") + +func (t *Table) scanWords(paths []string, fpr int, wordsHandler func([]string) error) error { + var ( + rdrs = make([]io.Reader, 0, len(t.paths)) + closers = make([]io.Closer, 0, len(t.paths)) + ) + + for i := range paths { + file, err := os.OpenFile(paths[i], os.O_RDONLY, t.mode) + if err != nil { + return err + } + + rdrs = append(rdrs, file) + closers = append(closers, file) + } + + defer func() { + for i := range closers { + _ = closers[i].Close() + } + }() + + r := csv.NewReader(io.MultiReader(rdrs...)) + r.ReuseRecord = true + r.FieldsPerRecord = fpr + + for { + words, err := r.Read() + if err != nil { + if errors.Is(err, io.EOF) { + break + } + + return err + } else if len(words) != fpr { + return errInvalidRecord + } + + if err := wordsHandler(words); err != nil { + if errors.Is(err, errScanInt) { + break + } + + return err + } + } + + return nil +} diff --git a/pkg/locode/table/csv/opts.go b/pkg/locode/table/csv/opts.go new file mode 100644 index 0000000..68e4428 --- /dev/null +++ b/pkg/locode/table/csv/opts.go @@ -0,0 +1,28 @@ +package csvlocode + +import ( + "io/fs" +) + +// Option sets an optional parameter of Table. +type Option func(*options) + +type options struct { + mode fs.FileMode + + extraPaths []string +} + +func defaultOpts() *options { + return &options{ + mode: 0o700, + } +} + +// WithExtraPaths returns an option to add extra paths +// to UN/LOCODE tables in csv format. +func WithExtraPaths(ps ...string) Option { + return func(o *options) { + o.extraPaths = append(o.extraPaths, ps...) + } +} diff --git a/pkg/locode/table/csv/table.go b/pkg/locode/table/csv/table.go new file mode 100644 index 0000000..b84c2b7 --- /dev/null +++ b/pkg/locode/table/csv/table.go @@ -0,0 +1,75 @@ +package csvlocode + +import ( + "fmt" + "io/fs" + "sync" +) + +// Prm groups the required parameters of the Table's constructor. +// +// All values must comply with the requirements imposed on them. +// Passing incorrect parameter values will result in constructor +// failure (error or panic depending on the implementation). +type Prm struct { + // Path to UN/LOCODE csv table. + // + // Must not be empty. + Path string + + // Path to csv table of UN/LOCODE Subdivisions. + // + // Must not be empty. + SubDivPath string +} + +// Table is a descriptor of the UN/LOCODE table in csv format. +// +// For correct operation, Table must be created +// using the constructor (New) based on the required parameters +// and optional components. After successful creation, +// The Table is immediately ready to work through API. +type Table struct { + paths []string + + mode fs.FileMode + + subDivPath string + + subDivOnce sync.Once + + mSubDiv map[subDivKey]subDivRecord +} + +const invalidPrmValFmt = "invalid parameter %s (%T):%v" + +func panicOnPrmValue(n string, v any) { + panic(fmt.Sprintf(invalidPrmValFmt, n, v, v)) +} + +// New creates a new instance of the Table. +// +// Panics if at least one value of the parameters is invalid. +// +// The created Table does not require additional +// initialization and is completely ready for work. +func New(prm Prm, opts ...Option) *Table { + switch { + case prm.Path == "": + panicOnPrmValue("Path", prm.Path) + case prm.SubDivPath == "": + panicOnPrmValue("SubDivPath", prm.SubDivPath) + } + + o := defaultOpts() + + for i := range opts { + opts[i](o) + } + + return &Table{ + paths: append(o.extraPaths, prm.Path), + mode: o.mode, + subDivPath: prm.SubDivPath, + } +} From 2cb22574b9541fc79f78952ab021fc4d7d65c96d Mon Sep 17 00:00:00 2001 From: George Bartolomey Date: Mon, 8 Jul 2024 11:33:25 +0300 Subject: [PATCH 04/18] [#7] Update documentation Documentation updated to match current database build process. Unnecessary prerequisites removed, Go language dependency added. Usage examples updated. Signed-off-by: George Bartolomey --- CONTRIBUTING.md | 14 +++++++------- README.md | 16 ++++++++-------- 2 files changed, 15 insertions(+), 15 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 53ff7c8..736798f 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -3,8 +3,8 @@ First, thank you for contributing! We love and encourage pull requests from everyone. Please follow the guidelines: -- Check the open [issues](https://git.frostfs.info/TrueCloudLab/frostfs-node/issues) and - [pull requests](https://git.frostfs.info/TrueCloudLab/frostfs-node/pulls) for existing +- Check the open [issues](https://git.frostfs.info/TrueCloudLab/frostfs-locode-db/issues) and + [pull requests](https://git.frostfs.info/TrueCloudLab/frostfs-locode-db/pulls) for existing discussions. - Open an issue first, to discuss a new feature or enhancement. @@ -23,23 +23,23 @@ everyone. Please follow the guidelines: ## Development Workflow -Start by forking the `frostfs-node` repository, make changes in a branch and then +Start by forking the `frostfs-locode-db` repository, make changes in a branch and then send a pull request. We encourage pull requests to discuss code changes. Here are the steps in details: ### Set up your Forgejo repository -Fork [FrostFS node upstream](https://git.frostfs.info/TrueCloudLab/frostfs-node) source +Fork [FrostFS node upstream](https://git.frostfs.info/TrueCloudLab/frostfs-locode-db) source repository to your own personal repository. Copy the URL of your fork (you will need it for the `git clone` command below). ```sh -$ git clone https://git.frostfs.info/TrueCloudLab/frostfs-node +$ git clone https://git.frostfs.info/TrueCloudLab/frostfs-locode-db ``` ### Set up git remote as ``upstream`` ```sh -$ cd frostfs-node -$ git remote add upstream https://git.frostfs.info/TrueCloudLab/frostfs-node +$ cd frostfs-locode-db +$ git remote add upstream https://git.frostfs.info/TrueCloudLab/frostfs-locode-db $ git fetch upstream $ git merge upstream/master ... diff --git a/README.md b/README.md index 1cc0b23..f362c54 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ following sources: ## Prerequisites -- Latest [frostfs-cli](https://git.frostfs.info/TrueCloudLab/frostfs-node) tool +- Go 1.21 ## Quick start @@ -41,13 +41,13 @@ $ make ## Building -Then run frost-cli command to generate boltDB file. +Then run frost-cli command to generate UN/LOCODE database. ``` -$ frostfs-cli util locode generate --help -generate UN/LOCODE database for FrostFS +$ ./frostfs-locode-db generate +Generate UN/LOCODE database for FrostFS Usage: - frostfs-cli util locode generate [flags] + frostfs-locode-db generate [flags] Flags: --airports string Path to OpenFlights airport database (csv) @@ -58,7 +58,7 @@ Flags: --out string Target path for generated database --subdiv string Path to UN/LOCODE subdivision database (csv) -$ ./frostfs-cli util locode generate \ +$ ./frostfs-locode-db generate \ --airports airports.dat \ --continents continents.geojson \ --countries countries.dat \ @@ -69,9 +69,9 @@ $ ./frostfs-cli util locode generate \ **Database generation might take some time!** -You can test generated database with `frostfs-cli`. +You can test generated database with `frostfs-locode-db`. ``` -$ frostfs-cli util locode info --db locode_db --locode 'RU LED' +$ frostfs-locode-db info --db locode_db --locode 'RU LED' Country: Russia Location: Saint Petersburg (ex Leningrad) Continent: Europe From 65761deb5c0dc622b1d4ae2562f64f0b469b6035 Mon Sep 17 00:00:00 2001 From: George Bartolomey Date: Mon, 8 Jul 2024 11:38:20 +0300 Subject: [PATCH 05/18] [#7] Update Debian package frostfs-locode-db binary added to a file installation list. frostfs-node binary dependency removed from the package. Signed-off-by: George Bartolomey --- debian/control | 2 +- debian/frostfs-locode-db.install | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/debian/control b/debian/control index 711ded1..b5fb8a7 100644 --- a/debian/control +++ b/debian/control @@ -2,7 +2,7 @@ Source: frostfs-locode-db Section: misc Priority: optional Maintainer: TrueCloudLabs -Build-Depends: debhelper-compat (= 13), git, devscripts, wget, frostfs-cli +Build-Depends: debhelper-compat (= 13), git, devscripts, wget Standards-Version: 4.5.1 Homepage: https://frostfs.info/ Vcs-Git: https://git.frostfs.info/TrueCloudLab/frostfs-locode-db.git diff --git a/debian/frostfs-locode-db.install b/debian/frostfs-locode-db.install index 0146177..ecba197 100644 --- a/debian/frostfs-locode-db.install +++ b/debian/frostfs-locode-db.install @@ -1 +1,2 @@ -locode_db var/lib/frostfs/ir +locode_db var/lib/frostfs/ir +frostfs-locode-db usr/bin/frostfs-locode-db \ No newline at end of file From abf6f2ab75c8babbce2970e868cf1020fa361879 Mon Sep 17 00:00:00 2001 From: Evgenii Stratonikov Date: Mon, 30 Sep 2024 13:57:14 +0300 Subject: [PATCH 06/18] Release v0.5.0 Signed-off-by: Evgenii Stratonikov --- CHANGELOG.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index d19ca82..a8fab51 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,12 @@ # Changelog Changelog for FrostFS LOCODE database +## 0.5.0 - 2023-09-30 + +The package now contains tool to generate database to be used +by FrostFS inner ring nodes. The dependency on the `frostfs-cli` +is removed from the debian package. + ## 0.4.0 - 2023-04-24 Now we can build UN/LOCODE DB without Internet connection and with a From 59516714d1f4cb601af4f2f345eed87fc2ddae4c Mon Sep 17 00:00:00 2001 From: George Bartolomey Date: Sun, 15 Sep 2024 12:00:30 +0300 Subject: [PATCH 07/18] [#14] Use quadtree to find continent Signed-off-by: George Bartolomey --- pkg/locode/db/continents/geojson/calls.go | 64 ++++++++++++++++++----- pkg/locode/db/continents/geojson/db.go | 3 ++ 2 files changed, 53 insertions(+), 14 deletions(-) diff --git a/pkg/locode/db/continents/geojson/calls.go b/pkg/locode/db/continents/geojson/calls.go index b5a58d1..a766cbd 100644 --- a/pkg/locode/db/continents/geojson/calls.go +++ b/pkg/locode/db/continents/geojson/calls.go @@ -8,6 +8,7 @@ import ( "github.com/paulmach/orb" "github.com/paulmach/orb/geojson" "github.com/paulmach/orb/planar" + "github.com/paulmach/orb/quadtree" ) const continentProperty = "Continent" @@ -36,22 +37,24 @@ func (db *DB) PointContinent(point *locodedb.Point) (*locodedb.Continent, error) minDst float64 ) - for _, feature := range db.features { - if multiPolygon, ok := feature.Geometry.(orb.MultiPolygon); ok { - if planar.MultiPolygonContains(multiPolygon, planarPoint) { + pointer := db.tree.Matching(planarPoint, func(p orb.Pointer) bool { + return planar.PolygonContains( + p.(*geojson.Feature).Geometry.(orb.Polygon), + planarPoint, + ) + }) + + if pointer != nil { + continent = pointer.(*geojson.Feature).Properties.MustString(continentProperty) + } + + if continent == "" { + for _, feature := range db.features { + distance := planar.DistanceFrom(feature.Geometry, planarPoint) + if minDst == 0 || minDst > distance { + minDst = distance continent = feature.Properties.MustString(continentProperty) - break } - } else if polygon, ok := feature.Geometry.(orb.Polygon); ok { - if planar.PolygonContains(polygon, planarPoint) { - continent = feature.Properties.MustString(continentProperty) - break - } - } - distance := planar.DistanceFrom(feature.Geometry, planarPoint) - if minDst == 0 || minDst > distance { - minDst = distance - continent = feature.Properties.MustString(continentProperty) } } @@ -73,6 +76,39 @@ func (db *DB) init() error { db.features = features.Features + err = db.buildQuadtree() + if err != nil { + return fmt.Errorf("could not build quadtree: %w", err) + } + + return nil +} + +func (db *DB) buildQuadtree() error { + db.tree = quadtree.New(orb.Bound{ + Min: orb.Point{-180, -180}, + Max: orb.Point{180, 180}, + }) + + for _, feature := range db.features { + var multiPolygon orb.MultiPolygon + + if polygon, ok := feature.Geometry.(orb.Polygon); ok { + multiPolygon = append(multiPolygon, polygon) + } else { + multiPolygon = feature.Geometry.(orb.MultiPolygon) + } + + for _, polygon := range multiPolygon { + newFeature := geojson.NewFeature(polygon) + newFeature.Properties = feature.Properties.Clone() + err := db.tree.Add(newFeature) + if err != nil { + return err + } + } + } + return nil } diff --git a/pkg/locode/db/continents/geojson/db.go b/pkg/locode/db/continents/geojson/db.go index ee43bd8..244da02 100644 --- a/pkg/locode/db/continents/geojson/db.go +++ b/pkg/locode/db/continents/geojson/db.go @@ -5,6 +5,7 @@ import ( "sync" "github.com/paulmach/orb/geojson" + "github.com/paulmach/orb/quadtree" ) // Prm groups the required parameters of the DB's constructor. @@ -31,6 +32,8 @@ type DB struct { once sync.Once features []*geojson.Feature + + tree *quadtree.Quadtree } const invalidPrmValFmt = "invalid parameter %s (%T):%v" From f99cc90185e2993d42fc7dc49412e8e30f186eff Mon Sep 17 00:00:00 2001 From: George Bartolomey Date: Sun, 15 Sep 2024 12:01:53 +0300 Subject: [PATCH 08/18] [#14] locode_generate: Increase number of CPUs Signed-off-by: George Bartolomey --- pkg/locode/db/db.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/locode/db/db.go b/pkg/locode/db/db.go index a4a09d1..90b19ed 100644 --- a/pkg/locode/db/db.go +++ b/pkg/locode/db/db.go @@ -80,7 +80,7 @@ func FillDatabase(table SourceTable, airports AirportDB, continents ContinentsDB var errG errgroup.Group // Pick some sane default, after this the performance stopped increasing. - errG.SetLimit(runtime.NumCPU() * 4) + errG.SetLimit(runtime.NumCPU() * 16) _ = table.IterateAll(func(tableRecord locode.Record) error { errG.Go(func() error { return processTableRecord(tableRecord, airports, continents, names, db) From e3d2c661e1ed2621a7d22391cdc62905f2987efc Mon Sep 17 00:00:00 2001 From: George Bartolomey Date: Sun, 15 Sep 2024 12:02:27 +0300 Subject: [PATCH 09/18] [#14] Add locode_generate benchmark Signed-off-by: George Bartolomey --- locode_generate_test.go | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 locode_generate_test.go diff --git a/locode_generate_test.go b/locode_generate_test.go new file mode 100644 index 0000000..e568756 --- /dev/null +++ b/locode_generate_test.go @@ -0,0 +1,30 @@ +package main + +import ( + "flag" + "testing" +) + +var ( + in = flag.String(locodeGenerateInputFlag, "", "List of paths to UN/LOCODE tables (csv)") + subdiv = flag.String(locodeGenerateSubDivFlag, "", "Path to UN/LOCODE subdivision database (csv)") + airports = flag.String(locodeGenerateAirportsFlag, "", "Path to OpenFlights airport database (csv)") + countries = flag.String(locodeGenerateCountriesFlag, "", "Path to OpenFlights country database (csv)") + continents = flag.String(locodeGenerateContinentsFlag, "", "Path to continent polygons (GeoJSON)") + out = flag.String(locodeGenerateOutputFlag, "", "Target path for generated database") +) + +func BenchmarkLocodeGenerate(b *testing.B) { + locodeGenerateInPaths = append(locodeGenerateInPaths, *in) + locodeGenerateSubDivPath = *subdiv + locodeGenerateAirportsPath = *airports + locodeGenerateCountriesPath = *countries + locodeGenerateContinentsPath = *continents + locodeGenerateOutPath = *out + + b.ResetTimer() + + for i := 0; i < b.N; i++ { + locodeGenerateCmd.Run(locodeGenerateCmd, []string{}) + } +} From 3a73e1c89c1859485bfd829fd970c52c595efb59 Mon Sep 17 00:00:00 2001 From: Vitaliy Potyarkin Date: Wed, 6 Nov 2024 12:30:42 +0300 Subject: [PATCH 10/18] [#18] Stop using obsolete .github directory This commit is a part of multi-repo cleanup effort: https://git.frostfs.info/TrueCloudLab/frostfs-infra/issues/136 Signed-off-by: Vitaliy Potyarkin --- .../ISSUE_TEMPLATE/bug_report.md | 0 .../ISSUE_TEMPLATE/config.yml | 0 .../ISSUE_TEMPLATE/feature_request.md | 0 {.github => .forgejo}/logo.svg | 0 .forgejo/workflows/dco.yml | 26 +++++++++++++++++++ .github/CODEOWNERS | 1 - .github/workflows/dco.yml | 21 --------------- CODEOWNERS | 1 + README.md | 2 +- 9 files changed, 28 insertions(+), 23 deletions(-) rename {.github => .forgejo}/ISSUE_TEMPLATE/bug_report.md (100%) rename {.github => .forgejo}/ISSUE_TEMPLATE/config.yml (100%) rename {.github => .forgejo}/ISSUE_TEMPLATE/feature_request.md (100%) rename {.github => .forgejo}/logo.svg (100%) create mode 100644 .forgejo/workflows/dco.yml delete mode 100644 .github/CODEOWNERS delete mode 100644 .github/workflows/dco.yml create mode 100644 CODEOWNERS diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.forgejo/ISSUE_TEMPLATE/bug_report.md similarity index 100% rename from .github/ISSUE_TEMPLATE/bug_report.md rename to .forgejo/ISSUE_TEMPLATE/bug_report.md diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.forgejo/ISSUE_TEMPLATE/config.yml similarity index 100% rename from .github/ISSUE_TEMPLATE/config.yml rename to .forgejo/ISSUE_TEMPLATE/config.yml diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.forgejo/ISSUE_TEMPLATE/feature_request.md similarity index 100% rename from .github/ISSUE_TEMPLATE/feature_request.md rename to .forgejo/ISSUE_TEMPLATE/feature_request.md diff --git a/.github/logo.svg b/.forgejo/logo.svg similarity index 100% rename from .github/logo.svg rename to .forgejo/logo.svg diff --git a/.forgejo/workflows/dco.yml b/.forgejo/workflows/dco.yml new file mode 100644 index 0000000..3af372f --- /dev/null +++ b/.forgejo/workflows/dco.yml @@ -0,0 +1,26 @@ +# yamllint disable rule:truthy + +name: DCO check +on: + pull_request: + +jobs: + dco: + name: DCO + runs-on: docker + container: + image: node:22-bookworm + steps: + - uses: actions/checkout@v3 + with: + fetch-depth: 0 + + - name: Setup Go + uses: actions/setup-go@v3 + with: + go-version: '1.22' + + - name: Run commit format checker + uses: https://git.frostfs.info/TrueCloudLab/dco-go@v3 + with: + from: 'origin/${{ github.event.pull_request.base.ref }}' diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS deleted file mode 100644 index 29c4211..0000000 --- a/.github/CODEOWNERS +++ /dev/null @@ -1 +0,0 @@ -* @alexvanin @realloc @fyrchik @anatoly-bogatyrev diff --git a/.github/workflows/dco.yml b/.github/workflows/dco.yml deleted file mode 100644 index 40ed8fc..0000000 --- a/.github/workflows/dco.yml +++ /dev/null @@ -1,21 +0,0 @@ -name: DCO check - -on: - pull_request: - branches: - - master - -jobs: - commits_check_job: - runs-on: ubuntu-latest - name: Commits Check - steps: - - name: Get PR Commits - id: 'get-pr-commits' - uses: tim-actions/get-pr-commits@master - with: - token: ${{ secrets.GITHUB_TOKEN }} - - name: DCO Check - uses: tim-actions/dco@master - with: - commits: ${{ steps.get-pr-commits.outputs.commits }} diff --git a/CODEOWNERS b/CODEOWNERS new file mode 100644 index 0000000..4690d7e --- /dev/null +++ b/CODEOWNERS @@ -0,0 +1 @@ +.* @alexvanin @realloc @fyrchik @a.bogatyrev diff --git a/README.md b/README.md index f362c54..7245e38 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@

-NeoFS +FrostFS logo

UN/LOCODE database for ForstFS From c0812d5ad6c98ba0a6eb65856b7014eba621b9d7 Mon Sep 17 00:00:00 2001 From: Vitaliy Potyarkin Date: Thu, 12 Dec 2024 11:47:22 +0300 Subject: [PATCH 11/18] [#20] Use selfhosted actions mirror https://git.frostfs.info/TrueCloudLab/frostfs-infra/issues/152 Signed-off-by: Vitaliy Potyarkin --- .forgejo/workflows/updatechecker.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.forgejo/workflows/updatechecker.yml b/.forgejo/workflows/updatechecker.yml index 7eaca0f..73d216e 100644 --- a/.forgejo/workflows/updatechecker.yml +++ b/.forgejo/workflows/updatechecker.yml @@ -5,7 +5,7 @@ jobs: checkupdates: runs-on: docker steps: - - uses: https://code.forgejo.org/actions/checkout@v3 + - uses: actions/checkout@v3 - run: make update - run: | git config user.name "Snegurochka" From 16ff77e35c6557622479a3ddb43f594ca2470313 Mon Sep 17 00:00:00 2001 From: Airat Arifullin Date: Wed, 22 Jan 2025 21:55:48 +0300 Subject: [PATCH 12/18] [#21] Makefile: Introduce UN/LOCODE overrides and copy it by the recipe * Introduce `unlocode-CodeList_overrides.csv` that contains missing details for locodes from the main `unlocode-CodeList.csv` file; * Fix `Makefile`; * Add info to `README.md`. Signed-off-by: Airat Arifullin --- Makefile | 5 +- README.md | 2 + data/unlocode-CodeList_overrides.csv | 21460 +++++++++++++++++++++++++ 3 files changed, 21466 insertions(+), 1 deletion(-) create mode 100644 data/unlocode-CodeList_overrides.csv diff --git a/Makefile b/Makefile index 522fb6c..0e6b28a 100755 --- a/Makefile +++ b/Makefile @@ -41,8 +41,11 @@ in/unlocode-SubdivisionCodes.csv: $(DIRS) in/unlocode-CodeList.csv: $(DIRS) zcat data/unlocode-CodeList.csv.gz > in/unlocode-CodeList.csv +in/unlocode-CodeList_overrides.csv: $(DIRS) + cp data/unlocode-CodeList_overrides.csv in/unlocode-CodeList_overrides.csv + # Generate locode_db BoltDB file -locode_db: in/unlocode-CodeList.csv in/unlocode-SubdivisionCodes.csv in/continents.geojson in/airports.dat in/countries.dat $(FROST_LOCODE) +locode_db: in/unlocode-CodeList.csv in/unlocode-SubdivisionCodes.csv in/continents.geojson in/airports.dat in/countries.dat in/unlocode-CodeList_overrides.csv $(FROST_LOCODE) $(FROST_LOCODE) generate \ --airports in/airports.dat \ --continents in/continents.geojson \ diff --git a/README.md b/README.md index 7245e38..fab330a 100644 --- a/README.md +++ b/README.md @@ -16,6 +16,8 @@ This repository tools generate UN/LOCODE database for FrostFS using data from following sources: - [UN/LOCODE](https://unece.org/trade/cefact/UNLOCODE-Download) database in CSV format, licensed under the [ODC Public Domain Dedication and Licence (PDDL)](http://opendatacommons.org/licenses/pddl/1-0/) +- [Improved UN/LOCODE](https://raw.githubusercontent.com/cristan/improved-un-locodes/86b2e96f17289ddb62f52dcfcfac520bc1ca002b/data/code-list-improved.csv) database + that contains more details about LOCODEs (like coordinates) which may miss in UN/LOCODE database. - [OpenFlight Airports and Countries](https://raw.githubusercontent.com/jpatokal/openflights/master/data/) databases, licensed under the [GNU AGPL-3.0 diff --git a/data/unlocode-CodeList_overrides.csv b/data/unlocode-CodeList_overrides.csv new file mode 100644 index 0000000..e63e320 --- /dev/null +++ b/data/unlocode-CodeList_overrides.csv @@ -0,0 +1,21460 @@ +,AE,AAN,Al Ain,Al Ain,,---4----,AI,9601,,2413N 05545E, +,AE,AJM,Ajman,Ajman,,1-3-----,RL,0103,QAJ,2524N 05527E, +,AE,ARZ,Arzanah Island,Arzanah Island,,0-------,RQ,9506,,2447N 05234E, +,AE,DAS,Das Island,Das Island,,1-------,RL,0003,,2509N 05253E, +,AE,DUJ,The Palm Jumeirah,The Palm Jumeirah,DU,1-------,RQ,0901,,2508N 05509E, +,AE,JEA,Jebel Ali,Jebel Ali,,1-------,QQ,8103,,2502N 05508E, +,AE,JED,Jebel Dhanna,Jebel Dhanna,,1-------,QQ,8103,,2410N 05236E, +,AE,MAS,Masfut,Masfut,,0-------,RQ,9307,,2449N 05604E, +,AE,MBS,Mubarras Island,Mubarras Island,,1-------,RQ,9506,,2435N 05319E, +,AE,NHD,Minhad,Minhad,,---4----,AI,9506,,2502N 05522E, +,AE,PRA,Port Rashid,Port Rashid,,1-------,RQ,9506,,2516N 05516E, +,AF,BIN,Bamian,Bamian,,--34----,AI,0907,,3449N 06750E, +,AF,DAZ,Darwaz,Darwaz,,---4----,AI,9601,,3824N 07049E, +,AF,FAH,Farah,Farah,,---4----,AI,9912,,3222N 06207E, +,AF,FBD,Faizabad,Faizabad,,---4----,AI,9601,,3707N 07035E, +,AF,GRG,Gardez,Gardez,,---4----,AI,9912,,3336N 06913E, +,AF,GZI,Ghazni,Ghazni,,---4----,AI,9912,,3333N 06825E, +,AF,HEA,Herat,Herat,,---4----,AI,9601,,3421N 06213E, +,AF,HRT,Hairatan,Hairatan,,0-------,RQ,9705,,3713N 06725E, +,AF,JAA,Jalalabad,Jalalabad,,---4----,AI,9912,,3426N 07028E, +,AF,KBL,Kabul,Kabul,,--345---,AI,9601,,3432N 06911E, +,AF,KDH,Kandahar,Kandahar,,--34----,AI,9601,,3137N 06543E, +,AF,KHT,Khost,Khost,,---4----,AI,9912,,3320N 06955E, +,AF,KWH,Khwahan,Khwahan,,---4----,AI,9912,,3753N 07013E, +,AF,LQN,Qala Nau,Qala Nau,,---4----,AI,9601,,3459N 06308E, +,AF,MAS,Mashad,Mashad,,0-------,RQ,8910,,3649N 07006E, +,AF,MMZ,Maimana,Maimana,,---4----,AI,9601,,3555N 06447E, +,AF,SBF,Sardeh Band,Sardeh Band,,---4----,AI,9912,,3318N 06838E, +,AF,SGA,Sheghnan,Sheghnan,,---4----,AI,9601,,3734N 07129E, +,AF,TGH,Torghundi,Torghundi,,0-------,RQ,9705,,3515N 06217E, +,AF,TII,Tirinkot,Tirinkot,,---4----,AI,9601,,3237N 06553E, +,AF,TQN,Taluqan,Taluqan,,---4----,AI,9912,,3644N 06932E, +,AF,UND,Kunduz,Kunduz,,---4----,AI,9601,,3643N 06852E, +,AF,ZAJ,Zaranj,Zaranj,,---4----,AI,9912,,3057N 06152E, +,AG,ANU,Antigua,Antigua,,1---5---,AI,9601,,1705N 06148W, +,AG,BBQ,Barbuda,Barbuda,,1-------,AI,9601,,1707N 06151W, +,AI,AXA,Anguilla,Anguilla,,---45---,AI,9601,,1813N 06302W, +,AI,BLP,Blowing Point,Blowing Point,,1-------,QQ,8110,,1811N 06306W, +,AI,RBY,Road Bay,Road Bay,,--3-----,RL,0001,,1812N 06306W, +,AL,DRZ,Durr�s,Durres,,1-------,RL,0103,,4119N 01927E, +,AL,TIA,Tirana,Tirana,,---45---,AI,9601,,4120N 01949E, +,AM,AHU,Akhuryan,Akhuryan,,-2------,QQ,8012,,4047N 04354E, +,AM,JER,Jermuk,Jermuk,VD,1----6--,RL,1007,,3950N 04540E, +,AO,ANL,Andulo,Andulo,,---4----,AI,9912,,1129S 01642E, +,AO,ARZ,N'Zeto,N'Zeto,,---4----,AI,9912,,0714S 01252E, +,AO,AZZ,Ambriz,Ambriz,,1--4----,AI,9601,,0751S 01306E, +,AO,BDD,Barra do Dande,Barra do Dande,,1-------,RL,0103,,0828S 01322E, +,AO,BUG,Benguela,Benguela,,1--4----,AI,9601,,1235S 01324E, +,AO,CAB,Cabinda,Cabinda,,1--4----,AI,9601,,0533S 01212E, +,AO,CAV,Cazombo,Cazombo,,---4----,AI,9601,,1154S 02254E, +,AO,CBT,Catumbela,Catumbela,,---4----,AI,9912,,1226S 01333E, +,AO,CFF,Cafunfo,Cafunfo,,---4----,AI,9912,,0846S 01800E, +,AO,CNZ,Cangamba,Cangamba,,---4----,AI,9912,,1342S 01952E, +,AO,CTI,Cuito Cuanavale,Cuito Cuanavale,,---4----,AI,9912,,1510S 01910E, +,AO,DGR,Dombe Grande,Dombe Grande,,1-------,RL,0103,,1257S 01306E, +,AO,DRC,Dirico,Dirico,,---4----,AI,9912,,1759S 02047E, +,AO,DUE,Dundo,Dundo,,---4----,AI,9912,,0723S 02050E, +,AO,GGC,Lumbala,Lumbala,,---4----,AI,9912,,1406S 02126E, +,AO,GXG,Negage,Negage,,---4----,AI,9912,,0746S 01516E, +,AO,JMB,Jamba,Jamba,,---4----,AI,9601,,1727S 02236E, +,AO,KNP,Capanda,Capanda,,---4----,AI,9912,,0946S 01527E, +,AO,LAA,Landana (Cacongo),Landana (Cacongo),,1-------,RL,0103,,0513S 01208E, +,AO,LAD,Luanda,Luanda,,1--45---,AI,9601,,0850S 01315E, +,AO,LBZ,Lukapa,Lukapa,,---4----,AI,9912,,0825S 02044E, +,AO,LOB,Lobito,Lobito,,1---5---,RL,0103,,1221S 01333E, +,AO,LUC,Lucira,Lucira,,1-3-----,RL,0103,,1352S 01231E, +,AO,LUO,Luena,Luena,,---4----,AI,9912,,1147S 01955E, +,AO,LZM,Luzamba,Luzamba,,---4----,AI,9912,,0909S 01803E, +,AO,MAL,Malongo,Malongo,,0-------,RQ,9012,,0524S 01213E, +,AO,MEG,Malange,Malange,,---4----,AI,9601,,0806S 01901E, +,AO,MLO,Malembo,Malembo,,--3-----,RL,9811,,0520S 01211E, +,AO,MSZ,Namibe,Namibe,,1--4----,AI,9506,,1512S 01209E, +,AO,NDD,Sumbe,Sumbe,,1-34----,AI,9506,,1112S 01350E, +,AO,NOV,Huambo,Huambo,,---4----,AI,9912,,1247S 01544E, +,AO,NZA,Nzagi,Nzagi,,---4----,AI,9912,,0823S 01518E, +,AO,PAT,Palanca Terminal,Palanca Terminal,,1-------,RQ,9506,,0657S 01224E, +,AO,PBN,Porto Amboim,Porto Amboim,,1-------,AI,9601,,1044S 01345E, +,AO,PGI,Chitato,Chitato,,---4----,AI,9912,,0721S 02049E, +,AO,PLE,Porto Alexandre (Tombua),Porto Alexandre (Tombua),,1-3-----,RL,0103,,1548S 01151E, +,AO,SDD,Lubango,Lubango,,---4----,AI,9912,,1455S 01329E, +,AO,SPP,Menongue,Menongue,,---4----,AI,9912,,1440S 01741E, +,AO,SSY,M'banza Congo,M'banza Congo,,---4----,AI,9912,,0616S 01415E, +,AO,SVP,Kuito,Kuito,,---4----,AI,9912,,1223S 01657E, +,AO,SZA,Soyo,Soyo,,1--4----,AI,9912,,0608S 01222E, +,AO,UAL,Luau,Luau,,---4----,AI,9912,,1042S 02214E, +,AO,VHC,Saurimo,Saurimo,,---4----,AI,9912,,0940S 02024E, +,AO,VPE,Ongiva,Ongiva,,---4----,AI,9912,,1704S 01544E, +,AO,XGN,Xangongo,Xangongo,,---4----,AI,9912,,1645S 01459E, +,AR,AEP,Jorge Newbury Apt/Buenos Aires,Jorge Newbury Apt/Buenos Aires,B,---4----,AI,9405,,3434S 05825W, +,AR,AFA,San Rafael,San Rafael,M,---4----,AI,9601,,3437S 06820W, +,AR,AOL,Paso de los Libres,Paso de los Libres,W,---4----,AI,9601,,2943S 05705W, +,AR,APZ,Zapala,Zapala,Q,---4----,AI,9912,,3854S 07004W, +,AR,ATU,Atucha,Atucha,B,--3-----,RL,9811,,3358S 05912W, +,AR,BQS,Barranqueras,Barranqueras,H,1-------,AI,9401,,2729S 05855W, +,AR,CCT,Colonia Catriel,Colonia Catriel,R,---4----,AI,9912,,3753S 06748W, +,AR,CHL,Choele Choel,Choele Choel,R,1----6--,RL,1107,,3918S 06539W, +,AR,CLX,Clorinda,Clorinda,F,---4----,AI,9912,,2514S 05752W, +,AR,CNQ,Corrientes,Corrientes,W,1--4----,AI,9601,,2728S 05850W, +,AR,CNT,Charata,Charata,H,---4----,AI,9912,,2713S 06111W, +,AR,COC,Concordia,Concordia,E,---4----,AI,9601,,3124S 05801W, +,AR,CPG,Carmen de Patagones,Carmen de Patagones,B,---4----,AI,9912,,4048S 06259W, +,AR,CRD,Comodoro Rivadavia,Comodoro Rivadavia,U,1--4----,AI,9601,,4552S 06729W, +,AR,CRR,Ceres,Ceres,S,---4----,AI,9912,,2953S 06157W, +,AR,CRY,Colonia Caroya,Colonia Caroya,X,1----6--,RL,1107,,3101S 06404W, +,AR,CTC,Catamarca,Catamarca,K,---4----,AI,9601,,2828S 06547W, +,AR,CUA,Cuatreros/Bahia Blanca,Cuatreros/Bahia Blanca,B,1-------,AI,9401,,3845S 06223W, +,AR,CVH,Caviahue,Caviahue,Q,---4----,AI,9912,,3751S 07104W, +,AR,CVI,Caleta Olivia,Caleta Olivia,Z,1--4----,AI,9601,,4628S 06734W, +,AR,DME,Diamante,Diamante,R,1-------,AI,9401,,3204S 06039W, +,AR,ELO,Eldorado,Eldorado,N,---4----,AI,9912,,2624S 05438W, +,AR,EQS,Esquel,Esquel,U,---4----,AI,9601,,4255S 07119W, +,AR,FMA,Formosa,Formosa,P,1--4----,AI,9601,,2611S 05810W, +,AR,FVB,Florencio Varela,Florencio Varela,B,-----6--,RL,1107,,3448S 05817W, +,AR,GGS,Gobernador Gregores,Gobernador Gregores,Z,---4----,AI,9601,,4846S 07014W, +,AR,GPO,General Pico,General Pico,L,---4----,AI,9601,,3540S 06345W, +,AR,HOS,Chos Malal,Chos Malal,Q,---4----,AI,9912,,3723S 07016W, +,AR,IGB,Ingeniero Jacobacci,Ingeniero Jacobacci,R,---4----,AI,9912,,4120S 06933W, +,AR,ING,Lago Argentino,Lago Argentino,Z,---4----,AI,9601,,5021S 07217W, +,AR,IRJ,La Rioja,La Rioja,F,---4----,AI,9601,,2925S 06651W, +,AR,JLS,Jose Leon Suarez,Jose Leon Suarez,B,1-------,RQ,0901,,3432S 05835W, +,AR,JUJ,Jujuy,Jujuy,Y,---4----,AI,9601,,2411S 06518W, +,AR,LCM,La Cumbre,La Cumbre,X,---4----,AI,9912,,3059S 06430W, +,AR,LHS,Las Heras,Las Heras,Z,---4----,AI,9912,,4635S 06856W, +,AR,LLS,Las Lomitas,Las Lomitas,P,---4----,AI,9912,,2442S 06036W, +,AR,LMD,Los Menucos,Los Menucos,R,---4----,AI,9912,,4051S 06805W, +,AR,MCS,Monte Caseros,Monte Caseros,W,---4----,AI,9912,,3015S 05738W, +,AR,MDX,Mercedes,Mercedes,W,---4----,AI,9912,,2911S 05805W, +,AR,MDZ,Mendoza,Mendoza,M,---4----,AI,9601,,3253S 06851W, +,AR,MJR,Miramar,Miramar,B,---4----,AI,9912,,3816S 05750W, +,AR,MQD,Maquinchao,Maquinchao,R,---4----,AI,9912,,4115S 06841W, +,AR,NEC,Necochea,Necochea,B,1--4----,AI,9601,,3833S 05844W, +,AR,OES,San Antonio Oeste,San Antonio Oeste,R,---4----,AI,9912,,4044S 06456W, +,AR,OLN,Colonia Sarmiento,Colonia Sarmiento,U,---4----,AI,9912,,2439S 05926W, +,AR,ORA,Oran,Oran,A,--3-----,RL,9805,,2308S 06419W, +,AR,OYA,Goya,Goya,W,1--4----,AI,9601,,2909S 05916W, +,AR,PBG,Puerto Belgrano/Bahia Blanca,Puerto Belgrano/Bahia Blanca,B,1-------,AI,9401,,3853S 06205W, +,AR,PCY,Pilcomayo,Pilcomayo,P,1-------,AI,9401,,2503S 05808W, +,AR,PGV,Puerto Galvan/Bahia Blanca,Puerto Galvan/Bahia Blanca,B,1-------,AI,9401,,3847S 06218W, +,AR,PLO,Punta Loyola,Punta Loyola,,1-------,RQ,9801,,5137S 06901W, +,AR,PMQ,Perito Moreno,Perito Moreno,Z,---4----,AI,9601,,4635S 07056W, +,AR,PNL,Puerto Nacional/Bahia Blanca,Puerto Nacional/Bahia Blanca,B,1-------,AI,9401,,3843S 06217W, +,AR,POC,Pocitos,Pocitos,A,----5---,AI,0004,,2203S 06342W, +,AR,PQU,Punta Quilla,Punta Quilla,,1-------,RQ,9506,,5007S 06825W, +,AR,PSS,Posadas,Posadas,N,1--4----,AI,9601,,2722S 05554W, +,AR,QLV,Olivos,Olivos,B,---4----,AI,9912,,3431S 05829W, +,AR,QPQ,Pinamar,Pinamar,B,---4----,AI,9912,,3707S 05651W, +,AR,RAM,Ramallo,Ramallo,B,1-------,RQ,9506,,3329S 06000W, +,AR,RDS,Rinc�n de los Sauces,Rincon de los Sauces,Q,---4----,AI,9912,,3723S 06856W, +,AR,REL,Trelew,Trelew,U,---4----,AI,9601,,4315S 06519W, +,AR,RES,Resistencia,Resistencia,H,---4----,AI,9601,,2736S 05912W, +,AR,RSA,Santa Rosa,Santa Rosa,L,---4----,AI,9601,,3637S 06417W, +,AR,SAL,Salto,Salto,B,1----6--,RL,1107,,3418S 06015W, +,AR,SDE,Santiago del Estero,Santiago del Estero,G,---4----,AI,9601,,2747S 06416W, +,AR,SFE,San Fernando,San Fernando,B,1-------,RQ,9506,,3427S 05834W, +,AR,SGV,Sierra Grande,Sierra Grande,R,---4----,AI,9912,,4136S 06521W, +,AR,SLA,Salta,Salta,A,---4----,AI,9601,,2445S 06532W, +,AR,SLO,San Lorenzo,San Lorenzo,L,1-------,AI,9401,,3245S 06045W, +,AR,SMT,San Mateo,San Mateo,G,--3-----,RQ,0201,,2829S 05557W, +,AR,SST,Santa Teresita,Santa Teresita,B,---4----,AI,9912,,3439S 05925W, +,AR,TDL,Tandil,Tandil,B,---4----,AI,9912,,3720S 05908W, +,AR,TTG,Tartagal,Tartagal,A,---4----,AI,9912,,2231S 06348W, +,AR,UAQ,San Juan,San Juan,J,---4----,AI,9601,,3132S 06832W, +,AR,VCF,Valcheta,Valcheta,R,---4----,AI,9912,,4036S 06560W, +,AR,VDM,Viedma,Viedma,R,---4----,AI,9601,,4049S 06260W, +,AR,VDR,Villa Dolores,Villa Dolores,X,---4----,AI,9912,,3157S 06511W, +,AR,VGS,General Villegas,General Villegas,B,---4----,AI,9912,,3502S 06301W, +,AR,VLG,Villa Gesell,Villa Gesell,B,---4----,AI,9601,,3715S 05658W, +,AR,VMD,Villa Mercedes,Villa Mercedes,J,1----6--,RL,1107,,3133S 06833W, +,AR,VTT,Villa del Totoral,Villa del Totoral,X,1----6--,RL,1107,,3042S 06404W, +,AR,XMV,Pichanal,Pichanal,A,---4----,AI,9912,,2319S 06414W, +,AR,XMX,Ledesma,Ledesma,Y,---4----,AI,9912,,2350S 06447W, +,AR,XOS,Mosconi,Mosconi,A,---4----,AI,9912,,2236S 06349W, +,AR,XPD,San Pedro,San Pedro,Y,1--4----,AI,9601,,2414S 06452W, +,AS,FTI,Fitiuta,Fitiuta,,---4----,AI,9912,,1413S 16925W, +,AS,OFU,Ofu,Ofu,,---4----,AI,9912,,1411S 16940W, +,AS,TAV,Tau,Tau,,---4----,AI,9912,,1414S 16929W, +,AT,AHN,Antiesenhofen,Antiesenhofen,,0-------,RQ,9307,,4821N 01324E, +,AT,AMK,Altenmarkt,Altenmarkt,,--3-----,RQ,9501,,4801N 01560E, +,AT,ANF,Anif,Anif,,--3-----,RQ,9806,,4745N 01304E, +,AT,ASP,Aspern,Aspern,,0-------,RQ,9004,,4813N 01629E, +,AT,BBH,B�rnbach,Barnbach,,--3-----,RQ,0101,,4704N 01508E, +,AT,BGC,Bad Gleichenberg,Bad Gleichenberg,,--3-----,RL,0001,,4652N 01554E, +,AT,BKL,Bruck an der Leitha,Bruck an der Leitha,,--3-----,RQ,9806,,4802N 01645E, +,AT,BKZ,Bad Kreuzen,Bad Kreuzen,,--3-----,RQ,9705,,4816N 01448E, +,AT,BNF,Berndorf,Berndorf,,--3-----,RQ,9501,,4757N 01607E, +,AT,BRL,Br�ckl,Bruckl,,--3-----,RQ,0101,,4645N 01432E, +,AT,EEZ,Eisenerz,Eisenerz,,--3-----,RQ,0101,,4733N 01453E, +,AT,ENA,Enns,Enns,,--3-----,RQ,9501,,4813N 01429E, +,AT,FLH,Ferlach,Ferlach,,--3-----,RQ,9705,,4632N 01418E, +,AT,FLT,Frohnleiten,Frohnleiten,,--3-----,RQ,9705,,4716N 01520E, +,AT,FRN,Frankenmarkt,Frankenmarkt,,-23-----,RQ,9709,,4759N 01325E, +,AT,FRT,Frastanz,Frastanz,,--3-----,RL,0201,,4711N 00936E, +,AT,FST,Feistritz,Feistritz,,--3-----,RQ,9501,,4736N 01603E, +,AT,FTH,Furth bei G�ttweig,Furth bei Gottweig,,--3-----,RQ,0201,,4822N 01537E, +,AT,GAN,Garsten,Garsten,,--3-----,RQ,9501,,4801N 01424E, +,AT,GSD,Gleisdorf,Gleisdorf,,--3-----,RQ,9501,,4706N 01543E, +,AT,HAD,Haid,Haid,,-23-----,RQ,9705,,4835N 01458E, +,AT,HAU,Hohenau an der March,Hohenau an der March,,--3-----,RL,0201,,4836N 01654E, +,AT,HLL,Hallein,Hallein,,-23-----,RQ,9704,,4741N 01306E, +,AT,HMG,Hermagor,Hermagor,,--3-----,RQ,9501,,4637N 01321E, +,AT,HOL,Hollabrunn,Hollabrunn,,--3-----,RQ,0201,,4833N 01604E, +,AT,HRD,Hard,Hard,,--3-----,RL,0001,,4729N 00941E, +,AT,JDN,Judenburg,Judenburg,,--3-----,RQ,9501,,4710N 01440E, +,AT,JUN,Jungholz,Jungholz,,----5---,AI,9805,,4734N 01027E, +,AT,KBG,Korneuburg,Korneuburg,,--3-----,RL,9811,,4821N 01619E, +,AT,KDF,Kalsdorf,Kalsdorf,,--3-----,RL,0001,,4658N 01529E, +,AT,KDM,Kraubath an der Mur,Kraubath an der Mur,,--3-----,RL,9805,,4718N 01456E, +,AT,KFB,Kapfenberg,Kapfenberg,,--3-----,RQ,9501,,4726N 01517E, +,AT,KFS,Kufstein,Kufstein,,--3-----,RQ,9705,,4735N 01210E, +,AT,KLD,Kr�llendorf,Krollendorf,,-23-----,RQ,9705,,4803N 01448E, +,AT,KMG,Kemating,Kemating,,--3-----,RL,0001,,4809N 01326E, +,AT,KMS,Kremsm�nster,Kremsmunster,,--3-----,RQ,9705,,4803N 01408E, +,AT,KNB,Kennelbach,Kennelbach,,--3-----,RQ,9704,,4729N 00946E, +,AT,KYB,Kematen Ybbs,Kematen Ybbs,,--3-----,RL,9805,,4803N 01446E, +,AT,LBN,Leoben,Leoben,,--3-----,RQ,0101,,4723N 01506E, +,AT,LCU,Lochau,Lochau,,--3-----,RQ,9501,,4732N 00945E, +,AT,LEC,Lech,Lech,8,-----6--,RL,1107,,4713N 01008E, +,AT,LEZ,Lienz,Lienz,,-23-----,RQ,9705,,4650N 01246E, +,AT,LFD,L�ngenfeld,Langenfeld,,--3-----,RQ,9806,,4704N 01058E, +,AT,LMB,Lambach,Lambach,,--3-----,RQ,9704,,4806N 01352E, +,AT,LTN,Lustenau,Lustenau,,--3-----,RQ,9705,,4726N 00940E, +,AT,LUT,Lauterach,Lauterach,,--3-----,RQ,9506,QLX,4728N 00944E, +,AT,LZG,Lenzing,Lenzing,,-23-----,RQ,9705,,4758N 01336E, +,AT,LZN,Liezen,Liezen,,--3-----,RQ,9705,,4734N 01415E, +,AT,MEL,Melk,Melk,,--3-----,RQ,9501,,4814N 01520E, +,AT,MHK,Mauerkirchen,Mauerkirchen,,--3-----,RQ,9307,,4811N 01308E, +,AT,MIF,Micheldorf in K�rnten,Micheldorf in Karnten,,--3-----,RQ,0201,,4655N 01426E, +,AT,MIK,Miklauzhof,Miklauzhof,,0-------,RL,9501,,4632N 01436E, +,AT,MIT,Mittelberg,Mittelberg,,----5---,AI,9805,,4720N 01008E, +,AT,MTH,Mattighofen,Mattighofen,,--3-----,RQ,9501,,4806N 01309E, +,AT,MUN,M�nzkirchen,Munzkirchen,,--3-----,RL,1107,,4829N 01334E, +,AT,NES,Neusiedl,Neusiedl,,--3-----,RQ,0201,,4819N 01558E, +,AT,NSL,Niedernsill,Niedernsill,,--3-----,RQ,0101,,4717N 01239E, +,AT,NUA,Neudau,Neudau,,-23-----,RQ,9709,,4711N 01606E, +,AT,OBU,Oberneukirchen,Oberneukirchen,4,1-------,RQ,1301,,4828N 01414E, +,AT,OHD,Obdach,Obdach,,--3-----,RQ,9501,,4704N 01442E, +,AT,OWT,Oberwart,Oberwart,,--3-----,RQ,9806,,4717N 01613E, +,AT,PDF,Parndorf,Parndorf,,--3-----,RQ,9705,,4760N 01652E, +,AT,PER,Perg,Perg,,--3-----,RQ,9501,,4815N 01438E, +,AT,PHG,Pasching,Pasching,,--3-----,RQ,9705,,4815N 01412E, +,AT,PRH,Pernhofen,Pernhofen,,0-------,RQ,9307,,4843N 01617E, +,AT,PUF,Purkersdorf,Purkersdorf,,--3-----,RQ,0201,,4812N 01611E, +,AT,PUR,Purgstall,Purgstall,,--3-----,RL,0201,,4846N 01543E, +,AT,RAB,Raab,Raab,,--3-----,RQ,9501,,4821N 01339E, +,AT,RIE,Ried,Ried,,--3-----,RQ,9501,,4703N 01040E, +,AT,RKL,Rankweil,Rankweil,,--3-----,RQ,9501,,4716N 00938E, +,AT,RTT,Rottenmann,Rottenmann,,--3-----,RQ,9705,,4731N 01422E, +,AT,RTV,Gallbrunn,Gallbrunn,,1----6--,RL,1107,,4723N 01540E, +,AT,RWL,Rekawinkel,Rekawinkel,,--3-----,RL,9901,,4811N 01601E, +,AT,RXG,Randegg,Randegg,,-23-----,RQ,9709,,4801N 01458E, +,AT,RZL,Riezlern,Riezlern,,----5---,AI,9805,,4722N 01011E, +,AT,SAR,Stift Ardagger,Stift Ardagger,,--3-----,RL,9811,,4810N 01451E, +,AT,SCH,Schwertberg,Schwertberg,,0-------,RQ,9004,,4816N 01435E, +,AT,SCW,Schwarzach,Schwarzach,,0-------,RQ,9705,,4727N 00946E, +,AT,SEN,Steinabrunn,Steinabrunn,,--3-----,RQ,9811,,4831N 01613E, +,AT,SER,Steyr,Steyr,,--3-----,RQ,9501,,4802N 01425E, +,AT,SIN,Sillian,Sillian,,-23-----,RQ,0101,,4645N 01225E, +,AT,SJB,Sankt Jakob Breitenau,Sankt Jakob Breitenau,,--3-----,RQ,1101,,4724N 01526E, +,AT,SLL,Sollenau,Sollenau,,--3-----,RQ,9501,,4754N 01615E, +,AT,SML,Sankt Michael ob Bleiburg,Sankt Michael ob Bleiburg,,--3-----,RQ,1101,,4635N 01445E, +,AT,SST,Schwanenstadt,Schwanenstadt,,--3-----,RL,0002,,4803N 01346E, +,AT,STA,Stainach,Stainach,,0-------,RQ,9506,,4734N 01404E, +,AT,STS,Sankt Stefan,Sankt Stefan,,-23-----,RQ,1101,,4648N 01451E, +,AT,STV,Sankt Valentin,Sankt Valentin,,--3-----,RQ,1101,,4810N 01433E, +,AT,STZ,Stainz,Stainz,,-23-----,RL,9805,,4654N 01516E, +,AT,SVT,Sankt Paul,Sankt Paul,,--3-----,RQ,1101,,4644N 01338E, +,AT,TBH,Treibach,Treibach,,--3-----,RQ,9501,,4652N 01428E, +,AT,TEC,Tenneck,Tenneck,,--3-----,RQ,0201,,4730N 01311E, +,AT,TEL,Telfs,Telfs,,--3-----,RL,9805,,4718N 01104E, +,AT,TFN,Treffen,Treffen,,--3-----,RQ,0201,,4640N 01351E, +,AT,TNZ,Ternitz,Ternitz,,0-------,RQ,9307,,4742N 01601E, +,AT,TOL,Th�rl,Thorl,6,--3-----,RQ,0212,,4731N 01513E, +,AT,TRW,Tribuswinkel,Tribuswinkel,,0-------,RQ,9307,,4800N 01616E, +,AT,TSK,Traiskirchen,Traiskirchen,,--3-----,RQ,9501,,4801N 01618E, +,AT,ULF,Ulmerfeld,Ulmerfeld,,--3-----,RQ,9501,,4805N 01450E, +,AT,UTD,Uttendorf,Uttendorf,,--3-----,RQ,9501,,4717N 01234E, +,AT,VLH,Villach,Villach,,--3-----,RQ,9501,,4637N 01351E, +,AT,VOE,V�ls,Vols,,--3-----,RQ,9704,,4715N 01120E, +,AT,VTB,Voitsberg,Voitsberg,,--3-----,RQ,9705,,4703N 01509E, +,AT,WAR,Warth,Warth,,--3-----,RQ,0201,,4739N 01607E, +,AT,WBG,Wieselburg,Wieselburg,,--3-----,RL,9811,,4808N 01508E, +,AT,WCE,Walchsee,Walchsee,,--3-----,RQ,9501,,4739N 01219E, +,AT,WLZ,Wulzeshofen,Wulzeshofen,,0-------,RQ,9307,,4843N 01618E, +,AT,WMP,Wimpassing,Wimpassing,,0-------,RQ,9307,,4742N 01601E, +,AT,WNF,Wiener Neudorf,Wiener Neudorf,,--3-----,RL,9811,,4805N 01619E, +,AT,WNR,Wiener Neustadt,Wiener Neustadt,,--3-----,RQ,9501,,4749N 01615E, +,AT,WSS,Weissenstein,Weissenstein,,0-------,RQ,9307,,4641N 01343E, +,AT,WTN,Wattens,Wattens,,--3-----,RQ,9705,,4718N 01135E, +,AT,ZTW,Zeltweg,Zeltweg,,--3-----,RQ,0101,,4711N 01445E, +,AU,AAB,Arrabury,Arrabury,QLD,---4----,AI,9912,,2646S 14102E, +,AU,ABG,Abingdon,Abingdon,QLD,---4----,AI,9601,,1736S 14311E, +,AU,ABH,Alpha,Alpha,QLD,---4----,AI,9601,,2339S 14638E, +,AU,ABL,Amberley,Amberley,QLD,---4----,AC,9709,,2738S 15242E, +,AU,ABM,Bamaga,Bamaga,QLD,---4----,AI,9912,,1053S 14223E, +,AU,ADA,Adelaide Apt,Adelaide Apt,SA,---4----,AC,9511,,3457S 13832E, +,AU,ADO,Andamooka,Andamooka,SA,---4----,AI,9601,,3027S 13710E, +,AU,AGW,Agnew,Agnew,QLD,---4----,AI,9601,,2801S 12031E, +,AU,AGY,Argyle Downs,Argyle Downs,WA,---4----,AI,9912,,1630S 12855E, +,AU,ALA,Auldana,Auldana,SA,-----6--,RQ,0901,,3455S 13841E, +,AU,ALH,Albany,Albany,WA,1--4----,AC,9511,,3501S 11753E, +,AU,AMT,Amata,Amata,NT,---4----,AI,9912,,2609S 13109E, +,AU,AMX,Ammaroo,Ammaroo,NT,---4----,AI,9912,,2152S 13460E, +,AU,ANZ,Angus Downs,Angus Downs,NT,---4----,AI,9912,,2502S 13216E, +,AU,ARD,Ardrossan,Ardrossan,SA,1-------,AC,9511,,3425S 13755E, +,AU,ARL,Arundel,Arundel,QLD,--3-----,RQ,0207,,2756S 15322E, +,AU,ARM,Armidale,Armidale,NSW,---4----,AI,9601,,3031S 15140E, +,AU,ARY,Ararat,Ararat,VIC,---4----,AI,9912,,3717S 14256E, +,AU,ASP,Alice Springs,Alice Springs,NT,---4----,AI,9601,,2342S 13353E, +,AU,AUD,Augustus Downs,Augustus Downs,QLD,---4----,AI,9912,,1833S 13952E, +,AU,AUU,Aurukun Mission,Aurukun Mission,QLD,---4----,AI,9912,,1321S 14143E, +,AU,AVG,Auvergne,Auvergne,NT,---4----,AI,9912,,1541S 13000E, +,AU,AVV,Avalon,Avalon,VIC,---4----,AC,9701,,3805S 14426E, +,AU,AWN,Alton Downs,Alton Downs,SA,---4----,AI,9912,,2607S 13857E, +,AU,AWP,Austral Downs,Austral Downs,NT,---4----,AI,9912,,2030S 13746E, +,AU,AXC,Aramac,Aramac,QLD,---4----,AI,9601,,2258S 14515E, +,AU,AXL,Alexandria,Alexandria,NT,---4----,AI,9601,,1902S 13639E, +,AU,AYD,Alroy Downs,Alroy Downs,NT,---4----,AI,9912,,1921S 13602E, +,AU,AYL,Anthony Lagoon,Anthony Lagoon,NT,---4----,AI,9912,,1759S 13532E, +,AU,AYR,Ayr,Ayr,QLD,---4----,AI,9912,,1935S 14724E, +,AU,BAH,Ballast Head,Ballast Head,SA,1-------,AC,8203,,3545S 13746E, +,AU,BAK,Bakers Creek,Bakers Creek,QLD,--3-----,UR,9701,,2113S 14909E, +,AU,BBE,Big Bell,Big Bell,WA,---4----,AI,9912,,2720S 11740E, +,AU,BCH,Beachport,Beachport,SA,1-------,AC,9511,,3729S 14001E, +,AU,BCI,Barcaldine,Barcaldine,QLD,---4----,AI,9601,,2333S 14517E, +,AU,BCK,Bolwarra,Bolwarra,QLD,---4----,AI,9912,,1728S 14403E, +,AU,BCZ,Bickerton Island,Bickerton Island,NT,---4----,AI,9912,,1346S 13611E, +,AU,BDB,Bundaberg,Bundaberg,QLD,1--4----,AC,9511,,2452S 15221E, +,AU,BDD,Badu Island,Badu Island,QLD,---4----,AI,9912,,1007S 14208E, +,AU,BDG,Bendigo,Bendigo,VIC,--34----,AI,9701,BXG,3646S 14417E, +,AU,BDS,Beaudesert,Beaudesert,QLD,0-------,RQ,9601,,2759S 15260E, +,AU,BEE,Beagle Bay,Beagle Bay,WA,---4----,AI,9912,,1659S 12240E, +,AU,BEL,Bell Bay,Bell Bay,TAS,123-----,AC,9511,,4108S 14652E, +,AU,BEO,Belmont,Belmont,NSW,---4----,AI,9912,,3302S 15140E, +,AU,BEU,Bedourie,Bedourie,QLD,---4----,AI,9912,,2422S 13928E, +,AU,BFC,Bloomfield,Bloomfield,QLD,---4----,AI,9912,,1557S 14512E, +,AU,BGN,Bennetts Green,Bennetts Green,NSW,--3-----,RQ,0901,,3260S 15142E, +,AU,BGR,Bridgewater,Bridgewater,TAS,-23-----,RQ,0901,,4244S 14714E, +,AU,BHQ,Broken Hill,Broken Hill,NSW,---4----,AI,9601,,3158S 14127E, +,AU,BHS,Bathurst,Bathurst,NSW,---4----,AI,9601,,3325S 14935E, +,AU,BHT,Brighton Downs,Brighton Downs,QLD,---4----,AI,9912,,2322S 14134E, +,AU,BIP,Bulimba,Bulimba,QLD,---4----,AI,9601,,2727S 15304E, +,AU,BIW,Billiluna,Billiluna,WA,---4----,AI,9912,,1953S 12727E, +,AU,BKP,Barkly Downs,Barkly Downs,QLD,---4----,AI,9912,,2028S 13828E, +,AU,BKQ,Blackall,Blackall,QLD,---4----,AI,9601,,2425S 14528E, +,AU,BLN,Benalla,Benalla,VIC,-2------,RL,9901,,3633S 14559E, +,AU,BLO,Biloela,Biloela,QLD,--34----,AC,9511,,2424S 15031E, +,AU,BLS,Bollon,Bollon,QLD,---4----,AI,9601,,2802S 14729E, +,AU,BLT,Blackwater,Blackwater,QLD,---4----,AI,9601,,2335S 14853E, +,AU,BME,Broome,Broome,WA,1--4----,AI,9601,,1757S 12213E, +,AU,BMP,Brampton,Brampton,QLD,---4----,AC,8203,,2049S 14917E, +,AU,BMW,Broadmeadows,Broadmeadows,VIC,1-------,AC,9511,,3740S 14456E, +,AU,BND,Bundall,Bundall,QLD,0-------,RQ,9506,,2801S 15324E, +,AU,BNK,Ballina,Ballina,NSW,1--4----,AC,9511,,2851S 15329E, +,AU,BOX,Borroloola,Borroloola,NT,---4----,AI,9912,,1604S 13618E, +,AU,BQA,Ballarat,Ballarat,VIC,-23-----,UR,9701,,3734S 14352E, +,AU,BQL,Boulia,Boulia,QLD,---4----,AI,9912,,2254S 13954E, +,AU,BQW,Balgo Hills,Balgo Hills,WA,---4----,AI,9601,,2008S 12759E, +,AU,BRA,Brisbane Apt,Brisbane Apt,QLD,---4----,AC,9511,,2724S 15307E, +,AU,BRJ,Bright,Bright,VIC,---4----,AI,9912,,3644S 14658E, +,AU,BRK,Bourke,Bourke,NSW,---4----,AI,9601,,3005S 14557E, +,AU,BRT,Bathurst Island,Bathurst Island,NT,1--4----,AI,9601,,1135S 13025E, +,AU,BSJ,Bairnsdale,Bairnsdale,VIC,---4----,AI,9601,,3750S 14738E, +,AU,BTB,Botany Bay,Botany Bay,NSW,1-------,AC,9511,,3359S 15111E, +,AU,BTD,Brunette Downs,Brunette Downs,NT,---4----,AI,9912,,1838S 13557E, +,AU,BTX,Betoota,Betoota,QLD,---4----,AI,9912,,2542S 14045E, +,AU,BUS,Busselton,Busselton,WA,1-------,AC,8203,,3339S 11521E, +,AU,BUY,Bunbury,Bunbury,WA,1--4----,AC,9511,,3320S 11538E, +,AU,BVI,Birdsville,Birdsville,QLD,---4----,AC,9511,,2554S 13921E, +,AU,BVW,Batavia Downs,Batavia Downs,QLD,---4----,AI,9912,,1240S 14240E, +,AU,BVZ,Beverley Springs,Beverley Springs,WA,---4----,AI,9912,,1635S 12530E, +,AU,BWB,Barrow Island,Barrow Island,WA,1--4----,AC,9511,,2046S 11525E, +,AU,BWQ,Brewarrina,Brewarrina,NSW,---4----,AI,9601,,2958S 14652E, +,AU,BWT,Burnie,Burnie,TAS,1--4----,AC,9511,,4103S 14554E, +,AU,BWU,Bankstown,Bankstown,NSW,---4----,AC,9511,,3355S 15102E, +,AU,BYP,Beauty Point,Beauty Point,TAS,1-------,AC,9511,,4109S 14649E, +,AU,BYX,Baniyala,Baniyala,NT,---4----,AI,9912,,1312S 13614E, +,AU,BZD,Balranald,Balranald,NSW,---4----,AI,9912,,3438S 14334E, +,AU,CAZ,Cobar,Cobar,NSW,---4----,AI,9601,,3130S 14550E, +,AU,CBC,Cherrabun,Cherrabun,WA,---4----,AI,9601,,1859S 12531E, +,AU,CBI,Cape Barren Island,Cape Barren Island,TAS,---4----,AI,9912,,4022S 14802E, +,AU,CBN,Campbelltown,Campbelltown,NSW,--3-----,RL,9811,,3404S 15049E, +,AU,CBR,Canberra,Canberra,ACT,12345---,AA,1807,,3518S 14906E, +,AU,CBX,Condobolin,Condobolin,NSW,---4----,AI,9601,,3305S 14709E, +,AU,CBY,Canobie,Canobie,QLD,---4----,AI,9912,,1929S 14056E, +,AU,CCL,Chinchilla,Chinchilla,QLD,---4----,AI,9912,,2645S 15037E, +,AU,CCU,Cape Cuvier,Cape Cuvier,WA,1-------,AC,9511,,2414S 11324E, +,AU,CCW,Cowell,Cowell,SA,---4----,AI,9912,,3341S 13655E, +,AU,CDA,Cooinda,Cooinda,NT,---4----,AI,9912,,1254S 13231E, +,AU,CDQ,Croydon,Croydon,QLD,---4----,AI,9601,,1831S 14158E, +,AU,CDU,Camden,Camden,NSW,---4----,AI,9912,,3401S 15043E, +,AU,CED,Ceduna,Ceduna,SA,---4----,AI,9601,,3208S 13340E, +,AU,CES,Cessnock,Cessnock,NSW,---4----,AI,9912,,3250S 15121E, +,AU,CFH,Clifton Hills,Clifton Hills,SA,---4----,AI,9912,,2712S 13914E, +,AU,CFP,Carpentaria Downs,Carpentaria Downs,QLD,---4----,AI,9912,,1843S 14419E, +,AU,CFS,Coffs Harbour,Coffs Harbour,NSW,1--4----,AC,9511,,3018S 15307E, +,AU,CGV,Caiguna,Caiguna,WA,---4----,AI,9912,,3216S 12529E, +,AU,CHA,Chatswood,Chatswood,NSW,1-3-----,RQ,9806,,3348S 15111E, +,AU,CHB,Catherine Hill Bay,Catherine Hill Bay,NSW,1-------,AC,9511,,3309S 15138E, +,AU,CHV,Challis Venture (oil terminal),Challis Venture (oil terminal),NT,1-------,AC,9701,,1207S 12501E, +,AU,CIE,Collie,Collie,WA,---4----,AI,9912,,3322S 11609E, +,AU,CKI,Croker Island,Croker Island,NT,---4----,AI,9601,,1110S 13232E, +,AU,CLH,Coolah,Coolah,NSW,---4----,AI,9912,,3149S 14943E, +,AU,CLN,Cape Leeuwin,Cape Leeuwin,WA,1-------,AC,9511,,3423S 11508E, +,AU,CLR,Clarence River,Clarence River,NSW,1-------,AC,9511,,2921S 15242E, +,AU,CLT,Cape Lambert,Cape Lambert,WA,1-------,AC,9511,,2036S 11711E, +,AU,CMA,Cunnamulla,Cunnamulla,QLD,---4----,AI,9601,,2760S 14547E, +,AU,CMD,Cootamundra,Cootamundra,NSW,---4----,AI,9601,,3438S 14802E, +,AU,CML,Camooweal,Camooweal,QLD,---4----,AI,9601,,1955S 13807E, +,AU,CMQ,Clermont,Clermont,QLD,---4----,AI,9601,,2250S 14709E, +,AU,CNB,Coonamble,Coonamble,NSW,---4----,AI,9912,,3052S 14816E, +,AU,CNC,Coconut Island,Coconut Island,QLD,---4----,AI,9912,,1003S 14304E, +,AU,CNJ,Cloncurry,Cloncurry,QLD,---4----,AI,9601,,2042S 14030E, +,AU,CNS,Cairns,Cairns,QLD,1--4----,AC,9511,,1655S 14546E, +,AU,COJ,Coonabarabran,Coonabarabran,NSW,---4----,AI,9912,,3116S 14916E, +,AU,COP,Cossack Pioneer (oil terminal),Cossack Pioneer (oil terminal),WA,1-------,AC,9701,,1935S 11627E, +,AU,COY,Coolawanyah,Coolawanyah,WA,---4----,AI,9912,,2148S 11748E, +,AU,CPD,Coober Pedy,Coober Pedy,SA,---4----,AI,9601,,2901S 13445E, +,AU,CPN,Cape Preston,Cape Preston,WA,1-------,AC,9511,,2051S 11612E, +,AU,CPS,Coopers Plains,Coopers Plains,QLD,--3-----,RL,9805,,2734S 15302E, +,AU,CQP,Cape Flattery,Cape Flattery,QLD,1-------,AI,9401,,1459S 14521E, +,AU,CRB,Collarenebri,Collarenebri,NSW,---4----,AI,9912,,2933S 14835E, +,AU,CRJ,Coorabie,Coorabie,SA,---4----,AI,9912,,3150S 13207E, +,AU,CRP,Carole Park,Carole Park,QLD,-----6--,RL,1107,,2737S 15256E, +,AU,CRY,Carlton Hill,Carlton Hill,WA,---4----,AI,9912,,1529S 12832E, +,AU,CSI,Casino,Casino,NSW,---4----,AI,9601,,2852S 15303E, +,AU,CTL,Charleville,Charleville,QLD,---4----,AI,9601,,2624S 14615E, +,AU,CTN,Cooktown,Cooktown,QLD,1--4----,AC,9511,,1522S 14454E, +,AU,CTR,Cattle Creek,Cattle Creek,NT,---4----,AI,9912,,1749S 13140E, +,AU,CUD,Caloundra,Caloundra,QLD,---4----,AI,9601,,2648S 15308E, +,AU,CUG,Cudal,Cudal,NSW,---4----,AI,9912,,3317S 14844E, +,AU,CUQ,Coen,Coen,QLD,---4----,AI,9912,,1349S 14321E, +,AU,CUY,Cue,Cue,WA,---4----,AI,9601,,2713S 11757E, +,AU,CVC,Cleve,Cleve,SA,---4----,AI,9601,,3340S 13617E, +,AU,CVQ,Carnarvon,Carnarvon,WA,1--4----,AC,9511,,2453S 11339E, +,AU,CWR,Cowarie,Cowarie,SA,---4----,AI,9912,,2728S 13825E, +,AU,CWT,Cowra,Cowra,NSW,---4----,AI,9601,,3349S 14842E, +,AU,CWW,Corowa,Corowa,NSW,---4----,AI,9601,,3560S 14623E, +,AU,CXQ,Christmas Creek,Christmas Creek,WA,---4----,AI,9912,,2223S 11946E, +,AU,CXT,Charters Towers,Charters Towers,QLD,---4----,AI,9601,,2004S 14616E, +,AU,CYG,Corryong,Corryong,VIC,---4----,AI,9912,,3612S 14754E, +,AU,CZY,Cluny,Cluny,QLD,---4----,AI,9912,,2430S 13935E, +,AU,DAA,Darra,Darra,QLD,1-------,AC,9511,,2734S 15257E, +,AU,DAJ,Dauan Island,Dauan Island,QLD,---4----,AI,9912,,0925S 14232E, +,AU,DAM,Dampier,Dampier,WA,1-------,AC,9511,,2040S 11643E, +,AU,DBO,Dubbo,Dubbo,NSW,---4----,AI,9601,,3215S 14836E, +,AU,DBY,Dalby,Dalby,QLD,---4----,AI,9912,,2711S 15116E, +,AU,DDI,Daydream Is,Daydream Is,QLD,---4----,AC,8203,,2015S 14849E, +,AU,DDN,Delta Downs,Delta Downs,QLD,---4----,AI,9912,,2720S 15053E, +,AU,DFE,Longwood,Longwood,SA,1-------,RL,1107,,3503S 13844E, +,AU,DFP,Drumduff,Drumduff,QLD,---4----,AI,9912,,1603S 14301E, +,AU,DGE,Mudgee,Mudgee,NSW,---4----,AI,9601,,3236S 14935E, +,AU,DHD,Durham Downs,Durham Downs,QLD,---4----,AI,9912,,2607S 14905E, +,AU,DHL,Daisy Hill,Daisy Hill,QLD,--3-----,RQ,0101,,2738S 15310E, +,AU,DKI,Dunk Island,Dunk Island,QLD,---4----,AI,9601,,3314S 15134E, +,AU,DKV,Docker River,Docker River,NT,---4----,AI,9912,,2452S 12905E, +,AU,DLK,Dulkaninna,Dulkaninna,SA,---4----,AI,9912,,2907S 13838E, +,AU,DLV,Delissaville,Delissaville,NT,---4----,AI,9912,,1232S 13042E, +,AU,DMD,Doomadgee,Doomadgee,QLD,---4----,AI,9912,,1745S 13844E, +,AU,DNB,Dunbar,Dunbar,QLD,---4----,AI,9912,,2808S 14738E, +,AU,DND,Dandenong,Dandenong,VIC,--3-----,RL,9805,,3800S 14511E, +,AU,DNM,Denham,Denham,WA,---4----,AI,9601,,2556S 11332E, +,AU,DNQ,Deniliquin,Deniliquin,NSW,---4----,AI,9601,,3532S 14458E, +,AU,DOX,Dongara,Dongara,WA,---4----,AI,9912,,2915S 11456E, +,AU,DPO,Devonport,Devonport,TAS,1--4----,AC,9511,,4111S 14622E, +,AU,DRB,Derby,Derby,WA,1--4----,AC,9511,,1718S 12338E, +,AU,DRN,Dirranbandi,Dirranbandi,QLD,---4----,AI,9601,,2835S 14814E, +,AU,DVP,Davenport Downs,Davenport Downs,QLD,---4----,AI,9912,,2409S 14106E, +,AU,DVR,Daly River,Daly River,NT,---4----,AI,9912,,1335S 13038E, +,AU,DXD,Dixie,Dixie,QLD,---4----,AI,9912,,1523S 14320E, +,AU,DYA,Dysart,Dysart,QLD,---4----,AI,9912,,2232S 14819E, +,AU,DYM,Diamantina Lakes,Diamantina Lakes,QLD,---4----,AI,9912,,2356S 14118E, +,AU,DYW,Daly Waters,Daly Waters,NT,---4----,AI,9912,,1616S 13323E, +,AU,EBH,Edinburgh,Edinburgh,SA,---4----,AC,9709,,3443S 13838E, +,AU,ECH,Echuca,Echuca,VIC,---4----,AC,9601,,3608S 14445E, +,AU,EDB,Edithburgh,Edithburgh,SA,1-------,AC,8203,,3505S 13744E, +,AU,EDD,Erldunda,Erldunda,NT,---4----,AI,9912,,2513S 13311E, +,AU,EDR,Edward River,Edward River,QLD,---4----,AI,9912,,1455S 14225E, +,AU,EIH,Einasleigh,Einasleigh,QLD,---4----,AI,9912,,1831S 14406E, +,AU,EKD,Elkedra,Elkedra,NT,---4----,AI,9912,,2113S 13458E, +,AU,ELC,Elcho Island,Elcho Island,NT,---4----,AI,9601,,1155S 13548E, +,AU,ELE,Electrona,Electrona,TAS,1-------,AC,8203,,4303S 14716E, +,AU,EMD,Emerald,Emerald,QLD,---4----,AI,9601,,2332S 14810E, +,AU,EPR,Esperance,Esperance,WA,1--4----,AC,9511,,3351S 12154E, +,AU,ERB,Ernabella,Ernabella,SA,---4----,AI,9912,,2617S 13208E, +,AU,ETD,Etadunna,Etadunna,SA,---4----,AI,9912,,2852S 13834E, +,AU,EUC,Eucla,Eucla,WA,---4----,AI,9912,,3141S 12853E, +,AU,EVD,Eva Downs,Eva Downs,NT,---4----,AI,9912,,1800S 13452E, +,AU,EVH,Evans Head,Evans Head,NSW,---4----,AI,9912,,2907S 15326E, +,AU,EXM,Exmouth Gulf,Exmouth Gulf,WA,1--4----,AI,9601,,2236S 11412E, +,AU,FBN,Fairbarn,Fairbarn,ACT,---4----,AC,9709,,3518S 14912E, +,AU,FIK,Finke,Finke,NT,---4----,AI,9912,,2535S 13435E, +,AU,FIS,Fisherman Islands,Fisherman Islands,QLD,123-----,UR,9701,,3008S 11457E, +,AU,FLC,Falls Creek,Falls Creek,VIC,---4----,AI,9912,,3653S 14715E, +,AU,FLS,Flinders Island,Flinders Island,TAS,---4----,AI,9601,,3960S 14805E, +,AU,FLY,Finley,Finley,NSW,---4----,AI,9601,,3539S 14535E, +,AU,FOS,Forrest,Forrest,WA,---4----,AI,9912,,3051S 12807E, +,AU,FOT,Forster,Forster,NSW,---4----,AI,9912,,3211S 15231E, +,AU,FRB,Forbes,Forbes,NSW,---4----,AI,9912,,3323S 14757E, +,AU,FRE,Fremantle,Fremantle,WA,1--4----,AC,9511,JFM,3203S 11546E, +,AU,FSL,Fossil Downs,Fossil Downs,WA,---4----,AI,9912,,1808S 12547E, +,AU,GAH,Gayndah,Gayndah,QLD,---4----,AI,9601,,2538S 15138E, +,AU,GBL,Goulburn Island,Goulburn Island,NT,---4----,AI,9601,,1136S 13327E, +,AU,GBN,Gisborne,Gisborne,VIC,--3-----,RQ,0901,,3729S 14435E, +,AU,GBP,Gamboola,Gamboola,QLD,---4----,AI,9912,,1625S 14329E, +,AU,GBV,Gibb River,Gibb River,WA,---4----,AI,9912,,1609S 12625E, +,AU,GDD,Gordon Downs,Gordon Downs,WA,---4----,AI,9912,,1840S 12836E, +,AU,GDF,Guildford,Guildford,NSW,--3-----,RL,0001,,3351S 15060E, +,AU,GEE,George Town,George Town,TAS,1--4----,AC,9701,,4106S 14649E, +,AU,GET,Geraldton,Geraldton,WA,1--4----,AC,9511,,2846S 11437E, +,AU,GEX,Geelong,Geelong,VIC,1--4----,AC,9511,,3809S 14422E, +,AU,GFE,Grenfell,Grenfell,NSW,---4----,AI,9912,,3354S 14810E, +,AU,GFF,Griffith,Griffith,NSW,---4----,AI,9601,,3417S 14603E, +,AU,GFN,Grafton,Grafton,NSW,---4----,AI,9601,,2941S 15256E, +,AU,GGD,Gregory Downs,Gregory Downs,QLD,---4----,AI,9912,,1839S 13915E, +,AU,GIC,Boigu Island,Boigu Island,QLD,---4----,AI,9912,,0916S 14213E, +,AU,GKL,Great Keppel Island,Great Keppel Island,QLD,---4----,AI,9601,,2310S 15057E, +,AU,GLG,Glengyle,Glengyle,QLD,---4----,AI,9912,,2447S 13936E, +,AU,GLI,Glen Innes,Glen Innes,NSW,---4----,AI,9601,,2944S 15144E, +,AU,GLL,Glebe Island,Glebe Island,NSW,123-----,UR,9701,,3352S 15111E, +,AU,GLM,Glenormiston,Glenormiston,QLD,---4----,AI,9912,,2255S 13848E, +,AU,GLT,Gladstone,Gladstone,QLD,1--4----,AC,9511,,2351S 15115E, +,AU,GLY,Goldsworthy,Goldsworthy,WA,---4----,AI,9601,,2021S 11932E, +,AU,GOO,Goondiwindi,Goondiwindi,QLD,---4----,AI,9601,,2828S 15017E, +,AU,GOS,Gosford,Gosford,NSW,---4----,AI,9506,,3325S 15120E, +,AU,GOV,Gove,Gove,NT,1--4----,AC,9511,,1217S 13651E, +,AU,GPN,Garden Point,Garden Point,NT,---4----,AI,9601,,1124S 13025E, +,AU,GRH,Greenhead,Greenhead,WA,1-------,AC,9511,,3003S 11458E, +,AU,GRV,Griffin Venture (oil terminal),Griffin Venture (oil terminal),WA,1-------,AC,9701,,2113S 11438E, +,AU,GSC,Gascoyne Junction,Gascoyne Junction,WA,---4----,AI,9601,,2503S 11513E, +,AU,GSN,Mount Gunson,Mount Gunson,SA,---4----,AI,9912,,3126S 13706E, +,AU,GTE,Groote Eylandt,Groote Eylandt,NT,1--4----,AC,9511,,1359S 13635E, +,AU,GTS,Granites,Granites,NT,---4----,AI,9912,,2033S 13018E, +,AU,GTT,Georgetown,Georgetown,QLD,---4----,AI,9912,,1817S 14333E, +,AU,GTY,Kingsford,Kingsford,NSW,1----6--,RL,1407,,3355S 15114E, +,AU,GUH,Gunnedah,Gunnedah,NSW,---4----,AI,9912,,3101S 15012E, +,AU,GUL,Goulburn,Goulburn,NSW,---4----,AI,9912,,3445S 14943E, +,AU,GVP,Greenvale,Greenvale,QLD,---4----,AI,9912,,1856S 14500E, +,AU,GYL,Argyle,Argyle,WA,---4----,AI,9912,,3333S 11547E, +,AU,GYP,Gympie,Gympie,QLD,---4----,AI,9912,,2611S 15240E, +,AU,HAP,Long Island,Long Island,QLD,---4----,AI,9912,,2211S 14954E, +,AU,HAT,Heathlands,Heathlands,QLD,---4----,AI,9912,,1145S 14235E, +,AU,HCQ,Halls Creek,Halls Creek,WA,---4----,AI,9912,,1901S 12744E, +,AU,HGD,Hughenden,Hughenden,QLD,---4----,AI,9601,,2051S 14412E, +,AU,HID,Horn Island,Horn Island,QLD,---4----,AI,9601,,1036S 14217E, +,AU,HIG,Highbury,Highbury,QLD,---4----,AI,9912,,1620S 14300E, +,AU,HIH,Hook Island,Hook Island,QLD,---4----,AI,9912,,2007S 14855E, +,AU,HIP,Headingly,Headingly,QLD,---4----,AI,9912,,2119S 13817E, +,AU,HIS,Hayman Island,Hayman Island,QLD,---4----,AI,9601,,2003S 14853E, +,AU,HLL,Hillside,Hillside,WA,---4----,AI,9912,,3254S 11713E, +,AU,HLM,Hallam,Hallam,VIC,-23-----,RL,0601,,3800S 14516E, +,AU,HLS,Saint Helens,Saint Helens,TAS,---4----,AI,1101,,4119S 14815E, +,AU,HLT,Hamilton,Hamilton,VIC,---4----,AI,9601,,3745S 14201E, +,AU,HMG,Hermannsburg,Hermannsburg,NT,---4----,AI,9912,,2357S 13247E, +,AU,HOK,Hooker Creek,Hooker Creek,NT,---4----,AI,9601,,1820S 13038E, +,AU,HPE,Hope Vale,Hope Vale,QLD,---4----,AI,9912,,1508S 14512E, +,AU,HPT,Hay Point,Hay Point,QLD,1-------,AC,0907,,2118S 14916E, +,AU,HRN,Heron Island,Heron Island,QLD,---4----,AI,9912,,2327S 15155E, +,AU,HRY,Henbury,Henbury,NT,---4----,AI,9912,,2434S 13309E, +,AU,HSM,Horsham,Horsham,VIC,---4----,AI,9912,,3643S 14212E, +,AU,HTI,Hamilton Island,Hamilton Island,QLD,---4----,AC,9701,,2021S 14857E, +,AU,HTU,Hopetoun,Hopetoun,VIC,---4----,AI,9912,,3544S 14222E, +,AU,HVB,Hervey Bay,Hervey Bay,QLD,---4----,AI,9601,,2518S 15251E, +,AU,HWK,Hawker,Hawker,SA,---4----,AI,9912,,3153S 13825E, +,AU,HXX,Hay,Hay,NSW,---4----,AI,9601,,3431S 14451E, +,AU,IDK,Indulkana,Indulkana,SA,---4----,AI,9912,,2658S 13320E, +,AU,IFF,Iffley,Iffley,QLD,---4----,AI,9912,,1852S 14112E, +,AU,IFL,Innisfail,Innisfail,QLD,---4----,AI,9601,,1731S 14602E, +,AU,IGH,Ingham,Ingham,QLD,---4----,AI,9912,,1839S 14610E, +,AU,IKP,Inkerman,Inkerman,QLD,---4----,AI,9912,,1943S 14730E, +,AU,INJ,Injune,Injune,QLD,---4----,AI,9912,,2551S 14834E, +,AU,INM,Innamincka,Innamincka,SA,---4----,AI,9912,,2745S 14044E, +,AU,IPS,Ipswich,Ipswich,QLD,1-------,AC,9511,,2737S 15246E, +,AU,IRG,Lockhart River,Lockhart River,QLD,---4----,AI,9912,,1301S 14313E, +,AU,ISA,Mount Isa,Mount Isa,QLD,---4----,AI,9601,,2044S 13930E, +,AU,ISI,Isisford,Isisford,QLD,---4----,AI,9601,,2416S 14426E, +,AU,IVR,Inverell,Inverell,NSW,---4----,AI,9912,,2926S 15111E, +,AU,IVW,Inverway,Inverway,NT,---4----,AI,9912,,1751S 12938E, +,AU,JAB,Jabiru,Jabiru,NT,---4----,AI,9601,,1240S 13250E, +,AU,JAD,Jandakot,Jandakot,WA,---4----,AI,9912,,3206S 11552E, +,AU,JCK,Julia Creek,Julia Creek,QLD,---4----,AI,9601,,2039S 14145E, +,AU,JHQ,Shute Harbour,Shute Harbour,QLD,---4----,AI,9912,,2017S 14847E, +,AU,JUN,Jundah,Jundah,QLD,---4----,AI,9912,,2450S 14304E, +,AU,JUR,Jurien Bay,Jurien Bay,WA,---4----,AI,9912,,3018S 11502E, +,AU,KAX,Kalbarri,Kalbarri,WA,---4----,AI,9912,,2743S 11410E, +,AU,KBB,Kirkimbie,Kirkimbie,NT,---4----,AI,9912,,1744S 12915E, +,AU,KBD,Kimberley Downs,Kimberley Downs,WA,---4----,AI,9912,,1724S 12421E, +,AU,KBJ,Kings Canyon,Kings Canyon,NT,---4----,AI,9912,,2415S 13134E, +,AU,KBY,Streaky Bay,Streaky Bay,SA,---4----,AI,9912,,3248S 13413E, +,AU,KCE,Collinsville,Collinsville,QLD,---4----,AI,9601,,2033S 14750E, +,AU,KCS,Kings Creek Station,Kings Creek Station,NT,---4----,AI,9912,,2424S 13149E, +,AU,KDB,Kambalda,Kambalda,WA,---4----,AI,9912,,3112S 12140E, +,AU,KDS,Kamaran Downs,Kamaran Downs,QLD,---4----,AI,9912,,2420S 13917E, +,AU,KFG,Kalkurung,Kalkurung,NT,---4----,AI,9912,,1726S 13048E, +,AU,KGC,Kingscote,Kingscote,SA,1--4----,AC,9511,,3539S 13738E, +,AU,KGI,Kalgoorlie,Kalgoorlie,WA,---4----,AI,9601,,3045S 12128E, +,AU,KGR,Kulgera,Kulgera,NT,---4----,AI,9912,,2550S 13318E, +,AU,KGY,Kingaroy,Kingaroy,QLD,---4----,AI,9912,,2632S 15150E, +,AU,KIT,Kingston,Kingston,SA,1-------,AC,9511,,3650S 13951E, +,AU,KLP,Klein Point,Klein Point,SA,1-------,AC,0907,,3458S 13747E, +,AU,KNI,Katanning,Katanning,WA,---4----,AI,9912,,3337S 11742E, +,AU,KNS,King Is,King Is,TAS,---4----,AI,9601,,3952S 14359E, +,AU,KNX,Kununurra,Kununurra,WA,---4----,AI,9601,,1546S 12844E, +,AU,KOI,Koolan Island,Koolan Island,WA,1-------,AC,9511,,1608S 12346E, +,AU,KPP,Kalpowar,Kalpowar,QLD,---4----,AI,9912,,2442S 15122E, +,AU,KPS,Kempsey,Kempsey,NSW,---4----,AI,9601,,3105S 15251E, +,AU,KQB,Koonibba,Koonibba,SA,---4----,AI,9912,,3153S 13327E, +,AU,KRA,Kerang,Kerang,VIC,---4----,AI,9912,,3544S 14355E, +,AU,KSV,Springvale,Springvale,QLD,---4----,AI,9912,,2722S 15111E, +,AU,KTA,Karratha,Karratha,WA,---4----,AI,9601,,2044S 11651E, +,AU,KTR,Katherine,Katherine,NT,1--4----,AC,9511,,1428S 13216E, +,AU,KUR,Kurnell,Kurnell,NSW,1-------,AC,9511,,3401S 15111E, +,AU,KWI,Kwinana,Kwinana,WA,1-------,AC,9511,,3214S 11549E, +,AU,KWM,Kowanyama,Kowanyama,QLD,---4----,AI,9912,,1516S 14149E, +,AU,KYI,Yalata Mission,Yalata Mission,SA,---4----,AI,9912,,3129S 13151E, +,AU,LAB,Lady Barron,Lady Barron,TAS,1-------,AC,9511,,4013S 14815E, +,AU,LCN,Balcanoona,Balcanoona,SA,---4----,AI,9912,,3032S 13918E, +,AU,LDC,Lindeman Island,Lindeman Island,QLD,---4----,AI,9912,,2027S 14903E, +,AU,LDH,Lord Howe Is,Lord Howe Is,NSW,1--4----,AC,9511,,3131S 15904E, +,AU,LDW,Lansdowne,Lansdowne,WA,---4----,AI,9912,,1737S 12645E, +,AU,LEA,Learmonth,Learmonth,WA,---4----,AI,9601,,2214S 11405E, +,AU,LER,Leinster,Leinster,WA,---4----,AI,9912,,2755S 12042E, +,AU,LFP,Lakefield,Lakefield,QLD,---4----,AI,9912,,1448S 14411E, +,AU,LGH,Leigh Creek,Leigh Creek,SA,---4----,AI,9601,,3036S 13824E, +,AU,LHG,Lightning Ridge,Lightning Ridge,NSW,---4----,AI,9912,,2926S 14759E, +,AU,LIB,Limbunya,Limbunya,NT,---4----,AI,9912,,1714S 12953E, +,AU,LIV,Liverpool,Liverpool,NSW,--3-----,RL,9901,,3355S 15056E, +,AU,LKU,Torrensville,Torrensville,SA,1-------,RL,1107,,3455S 13834E, +,AU,LLG,Chillagoe,Chillagoe,QLD,---4----,AI,9912,,1706S 14440E, +,AU,LLL,Lissadell,Lissadell,WA,---4----,AI,9601,,1641S 12833E, +,AU,LME,Bangholme,Bangholme,VIC,1-------,RQ,0901,,3803S 14510E, +,AU,LNH,Lake Nash,Lake Nash,NT,---4----,AI,9912,,2059S 13751E, +,AU,LNO,Leonora,Leonora,WA,---4----,AI,9601,,2825S 12100E, +,AU,LOA,Lorraine,Lorraine,QLD,---4----,AI,9912,,1900S 13954E, +,AU,LOC,Lock,Lock,SA,---4----,AI,9912,,3334S 13545E, +,AU,LRE,Longreach,Longreach,QLD,---4----,AI,9601,,2326S 14416E, +,AU,LST,Launceston,Launceston,TAS,1--4----,AC,9511,,4126S 14708E, +,AU,LSY,Lismore,Lismore,NSW,---4----,AI,9912,,2848S 15316E, +,AU,LTB,Latrobe,Latrobe,TAS,---4----,AI,9912,,4114S 14633E, +,AU,LTP,Lyndhurst,Lyndhurst,QLD,---4----,AI,9912,,1915S 14422E, +,AU,LUC,Lucinda,Lucinda,QLD,1-------,AC,9511,,1832S 14620E, +,AU,LUU,Laura,Laura,QLD,---4----,AI,9912,,1527S 14405E, +,AU,LVO,Laverton,Laverton,WA,---4----,AI,9601,,2838S 12224E, +,AU,LWH,Lawn Hill,Lawn Hill,QLD,---4----,AI,9912,,1835S 13835E, +,AU,LYT,Lady Elliot Island,Lady Elliot Island,QLD,---4----,AI,9601,,2407S 15243E, +,AU,LZR,Lizard Island,Lizard Island,QLD,---4----,AI,9601,,1440S 14528E, +,AU,MBB,Marble Bar,Marble Bar,WA,---4----,AI,9601,,2110S 11945E, +,AU,MBF,Mount Buffalo,Mount Buffalo,VIC,---4----,AI,9912,,3644S 14646E, +,AU,MBH,Maryborough,Maryborough,QLD,1--4----,AC,9511,,2532S 15242E, +,AU,MBN,Mount Barnett,Mount Barnett,WA,---4----,AI,1101,,1639S 12557E, +,AU,MBW,Moorabbin,Moorabbin,VIC,---4----,AI,9912,,3756S 14503E, +,AU,MCV,Mcarthur River,Mcarthur River,NT,---4----,AI,9912,,1722S 13540E, +,AU,MCY,Maroochydore Apt/Sunshine Coast,Maroochydore Apt/Sunshine Coast,QLD,---4----,AC,9701,,2636S 15305E, +,AU,MDA,Merinda,Merinda,QLD,-23-----,UR,9701,,2001S 14810E, +,AU,MEB,Essendon Apt/Melbourne,Essendon Apt/Melbourne,VIC,---4----,AI,9601,,3744S 14454E, +,AU,MET,Moreton,Moreton,QLD,---4----,AI,9912,,2712S 15324E, +,AU,MFP,Manners Creek,Manners Creek,NT,---4----,AI,9912,,2207S 13759E, +,AU,MGB,Mount Gambier,Mount Gambier,SA,-234----,AC,9511,,3749S 14047E, +,AU,MGT,Milingimbi,Milingimbi,NT,---4----,AI,9912,,1206S 13455E, +,AU,MHO,Mount House,Mount House,WA,---4----,AI,9912,,1703S 12542E, +,AU,MHU,Mount Hotham,Mount Hotham,VIC,---4----,AI,9912,,3659S 14709E, +,AU,MIB,Milner Bay,Milner Bay,NT,1-------,AC,9511,,1351S 13625E, +,AU,MIH,Mitchell Plateau,Mitchell Plateau,WA,---4----,AI,9601,,1435S 12605E, +,AU,MIL,Milperra,Milperra,NSW,1-3-----,RQ,0901,,3356S 15059E, +,AU,MIM,Merimbula,Merimbula,NSW,---4----,AI,9601,,3653S 14955E, +,AU,MIN,Minnipa,Minnipa,SA,---4----,AI,9601,,3251S 13509E, +,AU,MIY,Mittiebah,Mittiebah,NT,---4----,AI,9912,,1848S 13705E, +,AU,MJK,Monkey Mia,Monkey Mia,WA,---4----,AI,9912,,2548S 11342E, +,AU,MJP,Manjimup,Manjimup,WA,---4----,AI,9912,,3438S 11617E, +,AU,MKR,Meekatharra,Meekatharra,WA,---4----,AI,9912,,2636S 11829E, +,AU,MKV,Mount Cavenagh,Mount Cavenagh,NT,---4----,AI,1101,,2557S 13313E, +,AU,MLR,Millicent,Millicent,SA,---4----,AI,9912,,3736S 14021E, +,AU,MMM,Middlemount,Middlemount,QLD,---4----,AI,9912,,2249S 14842E, +,AU,MNE,Mungeranie,Mungeranie,SA,---4----,AI,9912,,2801S 13907E, +,AU,MNG,Maningrida,Maningrida,NT,---4----,AI,9601,,1203S 13414E, +,AU,MNQ,Monto,Monto,QLD,---4----,AI,9912,,2450S 15107E, +,AU,MNW,Macdonald Downs,Macdonald Downs,NT,---4----,AI,9912,,2251S 13508E, +,AU,MOO,Moomba,Moomba,SA,---4----,AI,9912,,2807S 14013E, +,AU,MOU,Mourilyan,Mourilyan,QLD,1-------,AC,9511,,1734S 14603E, +,AU,MOV,Moranbah,Moranbah,QLD,---4----,AI,9601,,2200S 14803E, +,AU,MQA,Mandora,Mandora,WA,---4----,AI,9912,,1945S 12051E, +,AU,MQE,Marqua,Marqua,NT,---4----,AI,9912,,2248S 13717E, +,AU,MQL,Mildura,Mildura,VIC,---4----,AI,9601,,3412S 14209E, +,AU,MRG,Mareeba,Mareeba,QLD,---4----,AI,9912,,1659S 14525E, +,AU,MRP,Marla,Marla,SA,---4----,AI,9912,,2718S 13337E, +,AU,MRS,Melrose,Melrose,SA,1-------,AC,9511,,3250S 13811E, +,AU,MRT,Moroak,Moroak,NT,---4----,AI,9912,,1449S 13342E, +,AU,MRZ,Moree,Moree,NSW,---4----,AI,9601,,2928S 14950E, +,AU,MTD,Mount Sandford,Mount Sandford,NT,---4----,AI,1101,,1700S 13032E, +,AU,MTL,Maitland,Maitland,NSW,---4----,AI,9912,,3244S 15133E, +,AU,MTQ,Mitchell,Mitchell,QLD,---4----,AI,9601,,2628S 14758E, +,AU,MUP,Mulga Park,Mulga Park,NT,---4----,AI,9912,,2554S 13140E, +,AU,MUQ,Muccan,Muccan,WA,---4----,AI,9912,,2038S 12003E, +,AU,MVH,Macksville,Macksville,NSW,---4----,AI,9912,,3042S 15255E, +,AU,MVK,Mulka,Mulka,SA,---4----,AI,9912,,2823S 13855E, +,AU,MVU,Musgrave,Musgrave,QLD,---4----,AI,9912,,2639S 15305E, +,AU,MWB,Morawa,Morawa,WA,---4----,AI,9912,,2902S 11602E, +,AU,MWT,Moolawatana,Moolawatana,SA,---4----,AI,9912,,2956S 13949E, +,AU,MXD,Marion Downs,Marion Downs,QLD,---4----,AI,9912,,2322S 13939E, +,AU,MXQ,Mitchell River,Mitchell River,QLD,---4----,AI,9912,,1508S 12547E, +,AU,MXU,Mullewa,Mullewa,WA,---4----,AI,9912,,2832S 11531E, +,AU,MYA,Moruya,Moruya,NSW,---4----,AI,9912,,3555S 15005E, +,AU,MYF,Mayfield,Mayfield,NSW,0-------,RQ,9701,,3254S 15144E, +,AU,MYI,Murray Island,Murray Island,QLD,---4----,AI,9912,,0955S 14403E, +,AU,MYO,Myroodah,Myroodah,WA,---4----,AI,9912,,1807S 12416E, +,AU,NAA,Narrabri,Narrabri,NSW,---4----,AI,9601,,3020S 14947E, +,AU,NAC,Naracoorte,Naracoorte,SA,---4----,AI,9912,,3657S 14044E, +,AU,NBH,Nambucca Heads,Nambucca Heads,NSW,---4----,AI,9912,,3039S 15260E, +,AU,NBR,Nambour,Nambour,QLD,---4----,AI,9912,,2638S 15258E, +,AU,NDS,Sandstone,Sandstone,WA,---4----,AI,9912,,2825S 11915E, +,AU,NGA,Young,Young,NSW,---4----,AI,9601,,3419S 14818E, +,AU,NIF,Nifty,Nifty,WA,---4----,AI,9912,,2139S 12134E, +,AU,NKB,Noonkanbah,Noonkanbah,WA,---4----,AI,9912,,1830S 12450E, +,AU,NLF,Darnley Island,Darnley Island,QLD,---4----,AI,9912,,0935S 14346E, +,AU,NLL,Nullagine,Nullagine,WA,---4----,AI,9601,,2153S 12006E, +,AU,NLS,Nicholson,Nicholson,WA,---4----,AI,9912,,1802S 12854E, +,AU,NMR,Nappa Merry,Nappa Merry,QLD,---4----,AI,9912,,2736S 14106E, +,AU,NOA,Nowra,Nowra,NSW,---4----,AI,9601,,3452S 15036E, +,AU,NOO,Nuriootpa,Nuriootpa,SA,0-------,AC,9511,,3428S 13860E, +,AU,NPP,Napperby,Napperby,NT,---4----,AI,9912,,2232S 13245E, +,AU,NRA,Narrandera,Narrandera,NSW,---4----,AI,9601,,3436S 14642E, +,AU,NRG,Narrogin,Narrogin,WA,---4----,AI,9912,,3256S 11711E, +,AU,NRY,Newry,Newry,NT,---4----,AI,9912,,1549S 12919E, +,AU,NSA,Noosa,Noosa,QLD,---4----,AI,9912,,2619S 15256E, +,AU,NSD,Newstead,Newstead,QLD,--3-----,RQ,9806,,2727S 15303E, +,AU,NSM,Norseman,Norseman,WA,---4----,AI,9601,,3212S 12147E, +,AU,NSO,Scone,Scone,NSW,---4----,AI,9601,,3203S 15052E, +,AU,NSV,Noosaville,Noosaville,QLD,---4----,AI,9912,,2624S 15304E, +,AU,NTL,Newcastle,Newcastle,NSW,1--4----,AI,9601,,3256S 15147E, +,AU,NTN,Normanton,Normanton,QLD,---4----,AI,9912,,1754S 14056E, +,AU,NUB,Numbulwar,Numbulwar,NT,---4----,AI,9601,,1417S 13545E, +,AU,NUR,Nullarbor,Nullarbor,SA,---4----,AI,9912,,3127S 13054E, +,AU,NWM,Newman,Newman,WA,0-------,RQ,9601,,2321S 11944E, +,AU,NYN,Nyngan,Nyngan,NSW,---4----,AI,9601,,3134S 14712E, +,AU,OAG,Orange,Orange,NSW,---4----,AI,9912,,3317S 14906E, +,AU,OBA,Oban,Oban,QLD,---4----,AI,9601,,2114S 13903E, +,AU,ODD,Oodnadatta,Oodnadatta,SA,---4----,AI,9601,,2733S 13527E, +,AU,ODL,Cordillo Downs,Cordillo Downs,SA,---4----,AI,9912,,2626S 14034E, +,AU,ODR,Ord River,Ord River,WA,---4----,AI,9912,,1747S 12819E, +,AU,OKB,Orchid Beach,Orchid Beach,QLD,---4----,AI,9601,,2458S 15319E, +,AU,OKR,Yorke Island,Yorke Island,QLD,---4----,AI,9601,,0945S 14324E, +,AU,OKY,Oakey,Oakey,QLD,---4----,AI,9912,,2727S 15143E, +,AU,OLP,Olympic Dam,Olympic Dam,SA,---4----,AI,9912,,3026S 13653E, +,AU,ONG,Mornington,Mornington,QLD,---4----,AI,9912,,2044S 13930E, +,AU,ONR,Monkira,Monkira,QLD,---4----,AI,9912,,2450S 14033E, +,AU,OOR,Mooraberree,Mooraberree,QLD,---4----,AI,9912,,2514S 14059E, +,AU,OPI,Oenpelli,Oenpelli,NT,---4----,AI,9601,,1219S 13303E, +,AU,ORR,Yorketown,Yorketown,SA,---4----,AI,9912,,3501S 13736E, +,AU,OSB,Osborne Island,Osborne Island,WA,1-------,AC,9511,,1421S 12557E, +,AU,OXO,Orientos,Orientos,QLD,---4----,AI,9912,,2804S 14132E, +,AU,OXY,Morney,Morney,QLD,---4----,AI,9912,,2522S 14128E, +,AU,OYN,Ouyen,Ouyen,VIC,---4----,AI,9912,,3504S 14219E, +,AU,PAE,Port Adelaide,Port Adelaide,SA,1-------,AC,9511,,3450S 13831E, +,AU,PAU,Port Arthur,Port Arthur,TAS,1-------,AC,9511,,4309S 14751E, +,AU,PBO,Paraburdoo,Paraburdoo,WA,---4----,AI,9601,,2312S 11740E, +,AU,PBT,Port Botany,Port Botany,NSW,123-----,AC,9511,,3358S 15113E, +,AU,PBY,Port Bonython,Port Bonython,SA,1-------,AC,9511,,3258S 13744E, +,AU,PCE,Pearce,Pearce,WA,---4----,AC,9709,,3138S 11554E, +,AU,PCK,Point Cook,Point Cook,VIC,--3-----,RQ,0901,,3754S 14445E, +,AU,PCT,Port Curtis,Port Curtis,QLD,1-------,AC,9511,,2326S 15032E, +,AU,PDE,Pandie Pandie,Pandie Pandie,SA,---4----,AI,9912,,2626S 13946E, +,AU,PDN,Parndana,Parndana,SA,---4----,AI,9912,,3547S 13715E, +,AU,PEA,Penneshaw,Penneshaw,SA,---4----,AI,9601,,3543S 13756E, +,AU,PEL,Pelican Point,Pelican Point,SA,123-----,AC,9511,,3756S 14025E, +,AU,PEP,Peppimenarti,Peppimenarti,NT,---4----,AI,9912,,1409S 13005E, +,AU,PEX,Exmouth,Exmouth,WA,1-------,AC,9511,,2218S 11409E, +,AU,PEY,Penong,Penong,SA,---4----,AI,9912,,3156S 13301E, +,AU,PGI,Port Giles,Port Giles,SA,1-------,AC,9511,,3501S 13746E, +,AU,PHE,Port Hedland,Port Hedland,WA,1--4----,AC,9511,,2019S 11835E, +,AU,PHU,Port Huon,Port Huon,TAS,1-------,AC,9511,,4309S 14658E, +,AU,PJK,Port Jackson,Port Jackson,NSW,1-3-----,AC,9511,,3351S 15114E, +,AU,PKE,Parkes,Parkes,NSW,---4----,AI,9601,,3308S 14811E, +,AU,PKL,Port Kembla,Port Kembla,NSW,1--4----,AC,9511,,3428S 15054E, +,AU,PKT,Port Keats,Port Keats,NT,---4----,AI,9912,,1414S 12931E, +,AU,PLA,Port Latta,Port Latta,TAS,1-------,AC,9511,,4051S 14523E, +,AU,PLO,Port Lincoln,Port Lincoln,SA,1--4----,AC,9511,,3443S 13552E, +,AU,PMK,Palm Island,Palm Island,QLD,1--4----,AC,9511,,1844S 14636E, +,AU,PPI,Port Pirie,Port Pirie,SA,1--4----,AC,9511,,3311S 13800E, +,AU,PPP,Proserpine,Proserpine,QLD,---4----,AI,9601,,2024S 14835E, +,AU,PQQ,Port Macquarie,Port Macquarie,NSW,1--4----,AC,9511,,3126S 15255E, +,AU,PRC,Price,Price,SA,1-------,AC,9511,,3417S 13760E, +,AU,PRD,Pardoo,Pardoo,WA,---4----,AI,9912,,2007S 11947E, +,AU,PRM,Parramatta,Parramatta,NSW,0-------,AC,9511,,3348S 15101E, +,AU,PSM,Point Samson,Point Samson,WA,1-------,AC,9511,,2038S 11712E, +,AU,PST,Port Stanvac,Port Stanvac,SA,1-------,AC,9511,,3507S 13829E, +,AU,PTE,Port Stephens,Port Stephens,NSW,---4----,AI,9912,,3244S 15156E, +,AU,PTI,Port Douglas,Port Douglas,QLD,1--4----,AC,9511,,1629S 14528E, +,AU,PTJ,Portland,Portland,VIC,1--4----,AC,9511,,3821S 14136E, +,AU,PTL,Port Alma,Port Alma,QLD,1-------,AC,9511,,2335S 15047E, +,AU,PUG,Port Augusta,Port Augusta,SA,1--4----,AC,9511,,3229S 13746E, +,AU,PWI,Point Wilson,Point Wilson,VIC,1-------,AC,9511,,3801S 14432E, +,AU,PWL,Port Walcott,Port Walcott,WA,1-------,AC,9511,,2039S 11712E, +,AU,QDN,Eden,Eden,NSW,1--4----,AC,9511,,3704S 14954E, +,AU,RAB,Rapid Bay,Rapid Bay,SA,1-------,AC,9511,,3532S 13811E, +,AU,RAM,Ramingining,Ramingining,NT,---4----,AI,9601,,1220S 13456E, +,AU,RBC,Robinvale,Robinvale,VIC,---4----,AI,9912,,3435S 14246E, +,AU,RBS,Orbost,Orbost,VIC,---4----,AI,9912,,3742S 14827E, +,AU,RBU,Roebourne,Roebourne,WA,1--4----,AC,9511,,2046S 11709E, +,AU,RBY,Rosebery/Sydney,Rosebery/Sydney,NSW,--3-----,RL,0006,,3355S 15112E, +,AU,RCE,Redcliffe,Redcliffe,WA,--3-----,RQ,0101,,3156S 11557E, +,AU,RCH,Richmond,Richmond,NSW,---4----,AC,9709,,3336S 15045E,More than one place with this name +,AU,RCM,Richmond,Richmond,QLD,1--4----,AC,9511,,2106S 14908E, +,AU,RCN,American River,American River,SA,---4----,AI,9912,,3547S 13746E, +,AU,RDA,Rockhampton Downs,Rockhampton Downs,NT,---4----,AI,9912,,1900S 13511E, +,AU,RDN,Risdon,Risdon,TAS,1-3-----,AC,9511,,4249S 14719E, +,AU,RKY,Rokeby,Rokeby,QLD,---4----,AI,9912,,4254S 14726E, +,AU,RLP,Rosella Plains,Rosella Plains,QLD,---4----,AI,9912,,1825S 14428E, +,AU,RMA,Roma,Roma,QLD,---4----,AI,9912,,2634S 14847E, +,AU,RMK,Renmark,Renmark,SA,---4----,AI,9601,,3410S 14045E, +,AU,ROH,Robinhood,Robinhood,QLD,---4----,AI,9912,,1857S 14336E, +,AU,ROK,Rockhampton,Rockhampton,QLD,1--4----,AC,9511,,2323S 15031E, +,AU,RPB,Roper Bar,Roper Bar,NT,---4----,AI,9912,,1444S 13426E, +,AU,RPM,Ngukurr,Ngukurr,NT,---4----,AI,9912,,1444S 13444E, +,AU,RPV,Roper Valley,Roper Valley,NT,---4----,AI,9912,,1451S 13360E, +,AU,RRE,Marree,Marree,SA,---4----,AI,9912,,2939S 13804E, +,AU,RRV,Robinson River,Robinson River,NT,---4----,AI,9912,,1646S 13659E, +,AU,RSE,Au-Rose Bay,Au-Rose Bay,NSW,---4----,AI,9912,,3352S 15115E, +,AU,RTP,Rutland Plains,Rutland Plains,QLD,---4----,AI,9912,,1543S 14136E, +,AU,RTS,Rottnest Island,Rottnest Island,WA,1--4----,AC,9511,,3200S 11530E, +,AU,RTY,Merty,Merty,SA,---4----,AI,9912,,2833S 14026E, +,AU,SBR,Saibai Island,Saibai Island,QLD,---4----,AI,9601,,0924S 14241E, +,AU,SBY,Salisbury/Brisbane,Salisbury/Brisbane,QLD,--3-----,RL,0003,,2733S 15302E, +,AU,SCG,Spring Creek,Spring Creek,QLD,---4----,AI,9912,,2758S 15203E, +,AU,SFP,Surfers Paradise,Surfers Paradise,QLD,---4----,AI,9912,,2760S 15325E, +,AU,SGO,Saint George,Saint George,QLD,---4----,AI,1101,,2802S 14835E, +,AU,SGP,Shay Gap,Shay Gap,WA,---4----,AI,9601,,2030S 12006E, +,AU,SHB,Shark Bay,Shark Bay,WA,1-------,AC,9511,,2620S 11419E, +,AU,SHQ,Southport,Southport,QLD,---4----,AI,9912,,2758S 15324E, +,AU,SHT,Shepparton,Shepparton,VIC,-234----,AC,9511,,3623S 14524E, +,AU,SHU,Smith Point,Smith Point,NT,---4----,AI,9912,,1108S 13209E, +,AU,SIO,Smithton,Smithton,TAS,---4----,AI,9601,,4050S 14508E, +,AU,SIX,Singleton,Singleton,NSW,---4----,AI,9912,,3234S 15110E, +,AU,SKY,Skye,Skye,SA,1----6--,RL,0901,,3455S 13842E, +,AU,SNH,Stanthorpe,Stanthorpe,QLD,---4----,AI,9601,,2839S 15156E, +,AU,SOI,South Molle Island,South Molle Island,QLD,---4----,AI,9601,,2016S 14850E, +,AU,SQC,Southern Cross,Southern Cross,WA,---4----,AI,9912,,3114S 11920E, +,AU,SQP,Starcke,Starcke,QLD,---4----,AI,9912,,1437S 14446E, +,AU,SRM,Sandringham,Sandringham,QLD,---4----,AI,9912,,2313S 15033E, +,AU,SRN,Strahan,Strahan,TAS,1--4----,AC,9511,,4209S 14520E, +,AU,SRR,Stradbroke Island,Stradbroke Island,QLD,---4----,AI,9912,,2750S 15325E, +,AU,SSH,Sellicks Hill,Sellicks Hill,SA,1-------,RQ,0901,,3520S 13830E, +,AU,SSK,Sturt Creek,Sturt Creek,WA,---4----,AI,9912,,1919S 12743E, +,AU,SSP,Silver Plains,Silver Plains,QLD,---4----,AI,9912,,1342S 14335E, +,AU,STA,Stanley,Stanley,TAS,1-------,AC,9511,,4046S 14518E, +,AU,STF,Stephen Island,Stephen Island,QLD,---4----,AI,9912,,0930S 14333E, +,AU,STH,Strathmore,Strathmore,QLD,---4----,AI,9912,,1752S 14234E, +,AU,SWB,Shaw River,Shaw River,WA,---4----,AI,9912,,2043S 11920E, +,AU,SWC,Stawell,Stawell,VIC,---4----,AI,9912,,3704S 14246E, +,AU,SWH,Swan Hill,Swan Hill,VIC,---4----,AI,9912,,3520S 14334E, +,AU,SWR,South West Rocks,South West Rocks,NSW,1-------,AC,9511,,3054S 15302E, +,AU,SXE,Sale,Sale,VIC,---4----,AI,9601,,3807S 14704E, +,AU,SYU,Sue Island,Sue Island,QLD,---4----,AI,9912,,1012S 14249E, +,AU,TAN,Tangalooma,Tangalooma,QLD,---4----,AI,9912,,2711S 15322E, +,AU,TAQ,Tarcoola,Tarcoola,SA,---4----,AI,9912,,3043S 13434E, +,AU,TBK,Timber Creek,Timber Creek,NT,---4----,AI,9912,,1539S 13029E, +,AU,TBL,Tableland,Tableland,WA,---4----,AI,9912,,1712S 12705E, +,AU,TCA,Tennant Creek,Tennant Creek,NT,---4----,AI,9601,,1939S 13411E, +,AU,TCW,Tocumwal,Tocumwal,NSW,---4----,AI,9912,,3549S 14534E, +,AU,TDR,Theodore,Theodore,QLD,---4----,AI,9912,,2457S 15005E, +,AU,TEF,Telfer,Telfer,WA,---4----,AI,9912,,2142S 12214E, +,AU,TEM,Temora,Temora,NSW,--34----,RL,9805,,3423S 14728E, +,AU,TGH,Tharbogang,Tharbogang,NSW,-----6--,RQ,0901,,3415S 14559E, +,AU,TGN,Traralgon,Traralgon,VIC,---4----,AI,9912,,3812S 14632E, +,AU,THE,Thevenard,Thevenard,SA,1-------,AC,9511,,3209S 13339E, +,AU,THG,Thangool,Thangool,QLD,---4----,AI,9601,,2435S 15033E, +,AU,TIN,Tindal,Tindal,NT,---4----,AC,9709,,1430S 13224E, +,AU,TIS,Thursday Island,Thursday Island,QLD,1--4----,AC,9511,,1035S 14213E, +,AU,TKY,Turkey Creek,Turkey Creek,WA,---4----,AI,9912,,1702S 12813E, +,AU,TME,Tullamarine,Tullamarine,VIC,--3-----,RQ,9806,,3742S 14452E, +,AU,TMW,Tamworth,Tamworth,NSW,---4----,AI,9601,,3105S 15056E, +,AU,TPR,Tom Price,Tom Price,WA,---4----,AI,9912,,2241S 11748E, +,AU,TRB,Trial Bay,Trial Bay,NSW,1-------,AC,9511,,3052S 15303E, +,AU,TRO,Taree,Taree,NSW,---4----,AI,9601,,3155S 15228E, +,AU,TSV,Townsville,Townsville,QLD,1--4----,AI,9601,,1915S 14649E, +,AU,TUM,Tumut,Tumut,NSW,---4----,AI,9601,,3518S 14813E, +,AU,TWB,Toowoomba,Toowoomba,QLD,---4----,AC,8203,,2734S 15157E, +,AU,TWN,Tewantin,Tewantin,QLD,---4----,AI,9912,,2624S 15302E, +,AU,TWP,Torwood,Torwood,QLD,---4----,AI,9912,,1738S 14339E, +,AU,TXR,Tanbar,Tanbar,QLD,---4----,AI,9912,,2550S 14155E, +,AU,TYB,Tibooburra,Tibooburra,NSW,---4----,AI,9912,,2926S 14201E, +,AU,TYG,Thylungra,Thylungra,QLD,---4----,AI,9912,,2606S 14327E, +,AU,TYP,Tobermorey,Tobermorey,NT,---4----,AI,9912,,2230S 13745E, +,AU,UBB,Mabuiag Island,Mabuiag Island,QLD,---4----,AI,9912,,0957S 14211E, +,AU,UBU,Kalumburu,Kalumburu,WA,---4----,AI,9912,,1418S 12639E, +,AU,UEE,Queenstown,Queenstown,TAS,---4----,AI,9601,,4205S 14533E, +,AU,UIR,Quirindi,Quirindi,NSW,---4----,AI,9601,,3130S 15041E, +,AU,ULP,Quilpie,Quilpie,QLD,---4----,AI,9601,,2609S 14345E, +,AU,ULT,Ultimo,Ultimo,NSW,1-3-----,RQ,0901,,3353S 15112E, +,AU,ULV,Ulverstone,Ulverstone,TAS,0-------,AC,9511,,4109S 14610E, +,AU,UMR,Woomera,Woomera,SA,---4----,AC,9801,,3112S 13650E, +,AU,URN,Urangan,Urangan,QLD,1-------,AC,9511,,2517S 15254E, +,AU,USL,Useless Loop,Useless Loop,WA,1-------,AC,9511,,2607S 11325E, +,AU,UTB,Muttaburra,Muttaburra,QLD,---4----,AI,9601,,2236S 14433E, +,AU,VAR,Varanus Island,Varanus Island,WA,1-------,AC,9511,,2039S 11535E, +,AU,VCD,Victoria River Downs,Victoria River Downs,NT,---4----,AI,9601,,1624S 13100E, +,AU,VIB,Boronia,Boronia,VIC,1-------,RQ,0901,,3751S 14517E, +,AU,VIT,Wishart,Wishart,VIC,1-------,RQ,0901,,2733S 15306E, +,AU,WAL,Wallaroo,Wallaroo,SA,1-------,AC,9511,,3356S 13738E, +,AU,WAU,Wauchope,Wauchope,NSW,---4----,AI,9912,,3127S 15244E, +,AU,WAV,Wave Hill,Wave Hill,NT,---4----,AI,9601,,1755S 13030E, +,AU,WAZ,Warwick,Warwick,QLD,1--4----,AC,9511,,2813S 15202E, +,AU,WBY,Willoughby,Willoughby,NSW,--3-----,RQ,9806,,3348S 15111E, +,AU,WCL,Wacol,Wacol,QLD,--3-----,RQ,9806,,2735S 15255E, +,AU,WDD,Woodend,Woodend,VIC,--3-----,RQ,0901,,3721S 14432E, +,AU,WDI,Wondai,Wondai,QLD,---4----,AI,9912,,2619S 15152E, +,AU,WEH,Wetherhill,Wetherhill,NSW,--3-----,RQ,0101,,3351S 15053E, +,AU,WEI,Weipa,Weipa,QLD,1--4----,AC,9511,,1238S 14152E, +,AU,WEP,Westernport,Westernport,VIC,1-------,AC,9511,,3825S 14515E, +,AU,WEW,Wee Waa,Wee Waa,NSW,---4----,AI,9912,,3013S 14926E, +,AU,WGE,Walgett,Walgett,NSW,---4----,AI,9601,,3001S 14807E, +,AU,WGT,Wangaratta,Wangaratta,VIC,---4----,AI,9912,,3621S 14619E, +,AU,WIN,Winton,Winton,QLD,---4----,AI,9601,,2223S 14302E, +,AU,WIO,Wilcannia,Wilcannia,NSW,---4----,AI,9912,,3134S 14322E, +,AU,WKB,Warracknabeal,Warracknabeal,VIC,---4----,AI,9912,,3615S 14224E, +,AU,WLA,Wallal,Wallal,WA,---4----,AI,9912,,2636S 14610E, +,AU,WLC,Walcha,Walcha,NSW,---4----,AI,9912,,3112S 15145E, +,AU,WLG,Wallangarra,Wallangarra,QLD,-23-----,UR,9701,,2854S 15155E, +,AU,WLL,Wollogorang,Wollogorang,QLD,---4----,AI,9601,,3453S 14931E, +,AU,WLM,Williamtown,Williamtown,NSW,---4----,AC,9701,,3249S 15151E, +,AU,WLO,Waterloo,Waterloo,NT,---4----,AI,9912,,1638S 12920E, +,AU,WLS,Wallis,Wallis,,-23-----,RQ,9705,,3213S 15229E, +,AU,WMB,Warrnambool,Warrnambool,VIC,1--4----,AC,9511,,3823S 14229E, +,AU,WME,Mount Keith,Mount Keith,WA,---4----,AI,9912,,2713S 12033E, +,AU,WND,Windarra,Windarra,WA,---4----,AI,9912,,3332S 15009E, +,AU,WNR,Windorah,Windorah,QLD,---4----,AI,9601,,2525S 14239E, +,AU,WNY,Wynyard,Wynyard,TAS,---4----,AC,8203,,4059S 14544E, +,AU,WOD,Wodonga,Wodonga,VIC,0-------,AC,9511,,3607S 14653E, +,AU,WOG,Woodgreen,Woodgreen,NT,---4----,AI,9912,,2226S 13357E, +,AU,WOL,Wollongong,Wollongong,NSW,---4----,AI,9601,,3425S 15054E, +,AU,WON,Wondoola,Wondoola,QLD,---4----,AI,9912,,1834S 14054E, +,AU,WOT,Wonthaggi,Wonthaggi,VIC,1-------,AC,9511,,3836S 14535E, +,AU,WPS,Wattle Park,Wattle Park,SA,-----6--,RL,0901,,3456S 13841E, +,AU,WRW,Warrawagine,Warrawagine,WA,---4----,AI,9912,,2051S 12042E, +,AU,WSY,Airlie Beach,Airlie Beach,QLD,---4----,AI,9912,,2016S 14843E, +,AU,WUD,Wudinna,Wudinna,SA,---4----,AI,9601,,3303S 13528E, +,AU,WUN,Wiluna,Wiluna,WA,---4----,AI,9601,,2636S 12013E, +,AU,WWI,Woodie Woodie,Woodie Woodie,WA,---4----,AI,9912,,2139S 12112E, +,AU,WWY,West Wyalong,West Wyalong,NSW,---4----,AI,9601,,3355S 14712E, +,AU,WYA,Whyalla,Whyalla,SA,1--4----,AC,9511,,3302S 13735E, +,AU,WYN,Wyndham,Wyndham,WA,1--4----,AC,9511,,1529S 12807E, +,AU,XCO,Colac,Colac,VIC,---4----,AI,9912,,3820S 14335E, +,AU,XMC,Mallacoota,Mallacoota,VIC,---4----,AI,9912,,3734S 14945E, +,AU,XML,Minlaton,Minlaton,SA,---4----,AI,9912,,3446S 13736E, +,AU,XMY,Yam Island,Yam Island,QLD,---4----,AI,9912,,0954S 14246E, +,AU,XTG,Thargomindah,Thargomindah,QLD,---4----,AI,9912,,2760S 14349E, +,AU,XTO,Taroom,Taroom,QLD,---4----,AI,9912,,2538S 14948E, +,AU,XTR,Tara,Tara,QLD,---4----,AI,9912,,2715S 15026E, +,AU,YAM,Yampi,Yampi,WA,1-------,AC,9511,,1643S 12415E, +,AU,YBA,Yamba,Yamba,NSW,1-------,RQ,9801,,2926S 15322E, +,AU,YLG,Yalgoo,Yalgoo,WA,---4----,AI,9912,,2829S 11653E, +,AU,YUE,Yuendumu,Yuendumu,NT,---4----,AI,9601,,2215S 13148E, +,AU,ZBO,Bowen,Bowen,QLD,1--4----,AC,9511,,2001S 14815E, +,AU,ZGL,South Galway,South Galway,QLD,---4----,AI,9912,,2540S 14206E, +,AU,ZVG,Springvale,Springvale,WA,---4----,AI,9601,,3756S 14509E, +,AW,ORJ,Oranjestad,Oranjestad,,1---5---,AI,9401,,1231N 07003W, +,AW,SNL,Sint Nicolaas,Sint Nicolaas,,1-------,AI,9401,,1226N 06955W, +,AZ,BAK,Baku,Baku,,12-45---,AI,2007,,4023N 04950E, +,AZ,DJU,Djulfa,Djulfa,,-2------,AI,9207,,3857N 04538E, +,BA,OMO,Mostar,Mostar,,---4----,AI,9601,,4321N 01748E, +,BA,PJR,Prnjavor,Prnjavor,,--3-----,RQ,0407,,4452N 01740E, +,BA,UJV,Ugljevik,Ugljevik,,--3-----,RQ,0901,,4442N 01860E, +,BA,ZCA,Zenica,Zenica,,--3-----,RQ,0101,,4412N 01755E, +,BB,BGI,Bridgetown,Bridgetown,,1--45---,AI,9601,,1306N 05937W, +,BB,SAP,Saint Philip,Saint Philip,10,-----6--,RL,1107,,1307N 05928W, +,BD,AKH,Akhaura,Akhaura,,----5---,AI,9805,,2352N 09113E, +,BD,BZL,Barisal,Barisal,,1--4----,AI,1807,,2242N 09022E, +,BD,CHL,Chalna,Chalna,,1-------,QQ,8103,,2236N 08931E, +,BD,CLA,Cumilla,Cumilla,,---4----,AI,1807,,2328N 09111E, +,BD,IRD,Ishurdi,Ishurdi,,---4----,AI,9601,,2409N 08904E, +,BD,JSR,Jashore,Jashore,,---4----,AI,1807,,2310N 08913E, +,BD,KAM,Kamalapur/Dhaka,Kamalapur/Dhaka,,--3-----,RQ,9709,,2307N 09041E, +,BD,KHL,Khulna,Khulna,,1-------,AI,9601,,2249N 08934E, +,BD,LAK,Laksham,Laksham,,----5---,AI,9805,,2321N 09109E, +,BD,MGL,Mongla,Mongla,,1-------,RQ,9601,,2228N 08936E, +,BD,MYM,Mymensingh,Mymensingh,,----5---,AI,9805,,2445N 09025E, +,BD,NAR,Narayanganj,Narayanganj,,123-----,QQ,8103,,2337N 09030E, +,BD,PAN,Pabna,Pabna,,--3-----,RL,9901,,2400N 08915E, +,BD,PAR,Parbatipur,Parbatipur,,----5---,AI,9805,,2534N 08904E, +,BD,RAU,Rangpur,Rangpur,,---4----,AI,9912,,2545N 08914E, +,BD,RJH,Rajshahi,Rajshahi,,---4----,AI,9912,,2422N 08836E, +,BD,SAJ,Sirajganj,Sirajganj,,---4----,AI,9912,,2427N 08942E, +,BD,SDW,Sandwip,Sandwip,,---4----,AI,9912,,2230N 09129E, +,BD,SPD,Saidpur,Saidpur,,---4----,AI,9912,,2317N 09049E, +,BD,TKR,Thakurgaon,Thakurgaon,,---4----,AI,9601,,2605N 08817E, +,BD,ZHM,Shamshernagar,Shamshernagar,,---4----,AI,9912,,2424N 09155E, +,BD,ZYL,Sylhet,Sylhet,,---4----,AI,9601,,2454N 09152E, +,BE,AVG,Anvaing,Anvaing,WAL,1-3-----,RQ,0901,,5041N 00337E, +,BE,IAI,Denderhoutem,Denderhoutem,VOV,1-3-----,RQ,0901,,5052N 00401E, +,BE,SKA,Sint Katelijne Waver,Sint Katelijne Waver,,1-3-----,RQ,0901,,5104N 00432E, +,BE,SKM,Serskamp,Serskamp,VOV,-23-----,RL,0607,,5059N 00356E, +,BE,TRG,Thorembais-les-Beguines,Thorembais-les-Beguines,WBR,1-3-----,RQ,0901,,5039N 00449E, +,BE,TTJ,Heultje,Heultje,BRU,1-3-----,RQ,0901,,5105N 00450E, +,BE,WAH,Hoves,Hoves,WAL,1-3-----,RQ,0901,,5040N 00402E, +,BF,ABD,Aribinda,Aribinda,,---4----,AI,9912,XAR,1417N 00048W, +,BF,ARL,Arly,Arly,,---4----,AI,9912,,1135N 00128E, +,BF,BNR,Banfora,Banfora,,---4----,AI,9912,,1039N 00445W, +,BF,BOU,Boulsa,Boulsa,,---4----,AI,9912,XBO,1240N 00034W, +,BF,DIP,Diapaga,Diapaga,,---4----,AI,9912,,1204N 00147E, +,BF,DJI,Djibo,Djibo,,---4----,AI,9912,XDJ,1406N 00138W, +,BF,DOR,Dori,Dori,,---4----,AI,9912,,1402N 00002W, +,BF,GAO,Gaoua,Gaoua,,---4----,AI,9912,XGA,1020N 00311W, +,BF,GOG,Gorom-Gorom,Gorom-Gorom,,---4----,AI,9912,XGG,1427N 00014W, +,BF,KAN,Kantchari,Kantchari,,---4----,AI,9912,XKA,1229N 00131E, +,BF,KAY,Kaya,Kaya,,---4----,AI,9912,XKY,1305N 00105W, +,BF,NOU,Nouna,Nouna,,---4----,AI,9912,XNU,1244N 00349W, +,BF,OUA,Ouagadougou,Ouagadougou,,---45---,AI,9601,,1222N 00132W, +,BF,OUG,Ouahigouya,Ouahigouya,,---4----,AI,9912,,1335N 00225W, +,BF,PAM,Pama,Pama,,---4----,AI,9912,XPA,1115N 00043E, +,BF,PUP,Po,Po,,---4----,AI,9601,,1218N 00237W, +,BF,SEB,Sebba,Sebba,,---4----,AI,9912,XSE,1327N 00032E, +,BF,TEG,Tenkodogo,Tenkodogo,,---4----,AI,9912,,1147N 00022W, +,BF,TMQ,Tambao,Tambao,,---4----,AI,9912,,1447N 00002E, +,BF,TUQ,Tougan,Tougan,,---4----,AI,9912,,1304N 00304W, +,BG,AND,Asenovgrad,Asenovgrad,,--3-----,RL,0001,,4200N 02453E, +,BG,BOJ,Burgas,Burgas,,1-------,AC,8201,,4230N 02728E, +,BG,BRE,Bregovo,Bregovo,,--3-----,QQ,8201,,4409N 02238E, +,BG,BRF,Botevgrad,Botevgrad,,--3-----,RL,0001,,4254N 02348E, +,BG,BRK,Berkovitza,Berkovitza,,-23-----,RQ,9705,,4314N 02308E, +,BG,BRZ,Breznik,Breznik,02,--3-----,RQ,0901,,4244N 02255E, +,BG,BYL,Byala,Byala,03,--3-----,RL,0901,,4253N 02753E, +,BG,CPA,Chepelare,Chepelare,,--3-----,RL,0001,,4144N 02441E, +,BG,CPW,Chirpan,Chirpan,,--3-----,RL,0001,,4212N 02520E, +,BG,DBS,Debelec,Debelec,,--3-----,RL,0001,,4303N 02537E, +,BG,DLV,Dulovo,Dulovo,,--3-----,RL,0001,,4349N 02708E, +,BG,DMN,Dragoman,Dragoman,,--3-----,RL,0001,,4255N 02256E, +,BG,DNJ,Devnya,Devnya,,--3-----,RL,0001,,4313N 02733E, +,BG,DOD,Dobrich,Dobrich,,--3-----,RL,0001,,4334N 02750E, +,BG,DSP,Dospat,Dospat,,--3-----,RQ,9705,,4139N 02410E, +,BG,DTG,Dimitrovgrad,Dimitrovgrad,,--3-----,RL,0001,,4203N 02535E, +,BG,ETS,Etropole,Etropole,,--3-----,RL,0001,,4250N 02360E, +,BG,GAV,Gabrovo,Gabrovo,,--3-----,RL,0001,,4252N 02519E, +,BG,GOD,Godech,Godech,22,-----6--,RL,1107,,4301N 02303E, +,BG,GOV,Gorna Oryahovica,Gorna Oryahovica,04,--3-----,AA,1007,,4308N 02542E, +,BG,HKV,Haskovo,Haskovo,,---4----,AI,9912,,4156N 02533E, +,BG,IOV,Iovkovo,Iovkovo,,--3-----,QQ,8201,,4347N 02808E, +,BG,IPR,Isperikh,Isperikh,,--3-----,RL,0001,,4371N 02683E, +,BG,IVL,Ivailovgrad,Ivailovgrad,,--3-----,RL,0001,,4129N 02600E, +,BG,JAM,Jambol,Jambol,,---4----,AI,9912,,4229N 02631E, +,BG,KAL,Kalotina,Kalotina,,--3-----,QQ,8201,,4260N 02252E, +,BG,KAR,Kardam,Kardam,,-2------,QQ,8201,,4345N 02806E, +,BG,KJG,Kjustendil,Kjustendil,,--3-----,RL,0001,,4217N 02241E, +,BG,KOL,Kulata,Kulata,,-23-----,AC,8201,,4123N 02322E, +,BG,KPH,Kaspichan,Kaspichan,,--3-----,RL,0001,,4319N 02710E, +,BG,KVO,Karlovo,Karlovo,,--3-----,RL,0001,,4238N 02448E, +,BG,KZK,Kazanlak,Kazanlak,24,--3-----,AA,1007,,4237N 02524E, +,BG,KZN,Kazanluk,Kazanluk,,--3-----,RQ,9705,,4237N 02524E, +,BG,LOM,Lom,Lom,,0-------,AC,8201,,4349N 02314E, +,BG,LSD,Levski,Levski,,--3-----,RL,0001,,4322N 02509E, +,BG,LVP,Lovech,Lovech,,--3-----,RL,0001,,4308N 02443E, +,BG,MEL,Melnik,Melnik,,0-------,RQ,8910,,4131N 02324E, +,BG,NPZ,Novi Pazar,Novi Pazar,,--3-----,RL,0001,,4321N 02712E, +,BG,NZG,Nova Zagora,Nova Zagora,,--3-----,RL,0001,,4230N 02601E, +,BG,ORE,Orehovo,Orehovo,,--3-----,AA,1007,,4152N 02437E, +,BG,OZA,Montana,Montana,,--3-----,RL,0001,,4325N 02313E, +,BG,PAV,Pavlikeni,Pavlikeni,02,--3-----,RQ,0901,,4314N 02518E, +,BG,PDA,Provadiya,Provadiya,,--3-----,RL,0001,,4310N 02727E, +,BG,PDV,Plovdiv,Plovdiv,,---4----,AI,9601,,4209N 02445E, +,BG,PEC,Peshtera,Peshtera,,--3-----,RL,0001,,4202N 02418E, +,BG,PEG,Petrich,Petrich,,--3-----,RL,0001,,4124N 02312E, +,BG,PNZ,Pernik,Pernik,,--3-----,RL,0001,,4237N 02302E, +,BG,POK,Popovo,Popovo,,--3-----,RL,0001,,4321N 02614E, +,BG,POR,Pomorie,Pomorie,,--3-----,RL,0001,,4234N 02737E, +,BG,PRS,Perushtitsa,Perushtitsa,,0-------,RQ,9705,,4203N 02433E, +,BG,PSC,Preslav,Preslav,,--3-----,RL,0001,,4310N 02649E, +,BG,PVN,Pleven,Pleven,,---4----,AI,9912,,4325N 02437E, +,BG,PZA,Pazardzhik,Pazardzhik,,--3-----,RL,0001,,4211N 02420E, +,BG,RDI,Radomir,Radomir,,--3-----,RL,0001,,4233N 02258E, +,BG,RGL,Razgrad,Razgrad,,--3-----,RL,0001,,4332N 02631E, +,BG,SBP,Sopot,Sopot,,--3-----,RL,0001,,4239N 02445E, +,BG,SDM,Sandanski,Sandanski,,--3-----,RL,0001,,4134N 02317E, +,BG,SDV,Stanke Dimitrov,Stanke Dimitrov,,--3-----,RQ,9705,,4216N 02307E, +,BG,SLP,Sliven,Sliven,,--3-----,RL,0001,,4241N 02619E, +,BG,SLS,Silistra,Silistra,,1--4----,AI,9601,,4407N 02716E, +,BG,SLU,Sevlievo,Sevlievo,,--3-----,RL,0001,,4302N 02506E, +,BG,SOM,Somovit,Somovit,,1-------,QQ,8201,,4341N 02446E, +,BG,SUW,Shumen,Shumen,,--3-----,RL,0001,,4316N 02655E, +,BG,SUZ,Suhindol,Suhindol,,--3-----,RL,0001,,4311N 02510E, +,BG,SVI,Svistov,Svistov,,1-------,AC,8201,,4337N 02521E, +,BG,SWG,Svilengrad,Svilengrad,,-23-----,AC,8201,,4146N 02612E, +,BG,SZR,Stara Zagora,Stara Zagora,,--34----,AI,9601,,4225N 02538E, +,BG,TGA,Topolovgrad,Topolovgrad,,--3-----,RL,0001,,4205N 02620E, +,BG,TJM,Trojan,Trojan,,--3-----,RL,0001,,4253N 02443E, +,BG,TOL,Tolbuhin,Tolbuhin,,--3-----,AC,8201,,4334N 02750E, +,BG,TPL,Topoli,Topoli,03,--3-----,AA,1007,,4313N 02749E, +,BG,TRP,Tutrakan,Tutrakan,,--3-----,RL,0001,,4403N 02637E, +,BG,VAR,Varna,Varna,,1--4----,AI,9601,,4312N 02755E, +,BG,VAS,Varshets,Varshets,02,--3-----,RQ,0901,,4312N 02317E, +,BG,VAZ,Varna-Zapad,Varna-Zapad,,1-------,QQ,8201,,4312N 02739E, +,BG,VBS,Bjala Slatina,Bjala Slatina,06,--3--6--,RL,0901,,4328N 02357E, +,BG,VID,Vidin,Vidin,,1234----,AI,9601,,4359N 02253E, +,BG,VLE,Velingrad,Velingrad,,--3-----,RL,0001,,4202N 02360E, +,BG,VRE,Vraca,Vraca,,--3-----,RL,0001,,4312N 02333E, +,BG,VTT,Veliko Tarnovo,Veliko Tarnovo,,--3-----,RL,0001,,4305N 02538E, +,BG,ZLA,Zlatarevo,Zlatarevo,,--3-----,AC,8201,,4124N 02258E, +,BG,ZLH,Zlatograd,Zlatograd,,--3-----,RL,0001,,4123N 02506E, +,BI,BJM,Bujumbura,Bujumbura,,---45---,AI,9601,,0322S 02922E, +,BI,GID,Gitega,Gitega,,---4----,AI,9601,,0326S 02955E, +,BI,KRE,Kirundo,Kirundo,,---4----,AI,9912,,0235S 03006E, +,BJ,COO,Cotonou,Cotonou,,1--45---,AI,9601,,0622N 00226E, +,BJ,DJA,Djougou,Djougou,,---4----,AI,9912,,0943N 00140E, +,BJ,KDC,Kandi,Kandi,,---4----,AI,9912,,1108N 00256E, +,BJ,NAE,Natitingou,Natitingou,,---4----,AI,9912,,1018N 00123E, +,BJ,PKO,Parakou,Parakou,,---4----,AI,9912,,0920N 00238E, +,BM,BDA,Hamilton,Hamilton,,1--45---,AI,9601,,3218N 06447W, +,BM,KWF,Kings Wharf,Kings Wharf,,1-3-----,RQ,0901,,3219N 06450W, +,BN,KUB,Kuala Belait,Kuala Belait,,1--4----,AI,9401,,0435N 11412E, +,BN,LUM,Lumut,Lumut,,1-------,QQ,8103,,0440N 11427E, +,BN,MUA,Muara,Muara,,1-------,QQ,8103,,0502N 11504E, +,BN,SER,Seria,Seria,,1-------,QQ,8103,,0437N 11420E, +,BO,SRB,Santa Rosa,Santa Rosa,,---4----,AI,9912,,1253S 06637W, +,BS,ASD,"Andros Town, Andros Island","Andros Town, Andros Island",,1--4----,AI,9601,,2443N 07747W, +,BS,AXP,Spring Point,Spring Point,,---4----,AI,9912,,2226N 07359W, +,BS,BIM,Bimini,Bimini,,---4----,AI,9601,,2542N 07916W, +,BS,CAT,Cat Island,Cat Island,,---4----,AI,9912,,2420N 07537W, +,BS,CCZ,"Chub Cay, Berry Islands","Chub Cay, Berry Islands",,1--4----,AI,9601,,2525N 07750W, +,BS,CLP,Clifton Point,Clifton Point,,1-------,RQ,9506,,2500N 07732W, +,BS,CRI,Crooked Island,Crooked Island,,1--4----,AI,9401,,2245N 07414W, +,BS,CXY,Cat Cays,Cat Cays,,---4----,AI,9912,,2533N 07917W, +,BS,DCT,Duncan Town,Duncan Town,,---4----,AI,9912,,2212N 07544W, +,BS,ELH,North Eleuthera,North Eleuthera,,---4----,AI,9601,,2523N 07647W, +,BS,FPO,"Freeport, Grand Bahama","Freeport, Grand Bahama",,1--4----,AI,9601,,2631N 07840W, +,BS,GBI,Grand Bahama,Grand Bahama,,---4----,AI,9912,,2640N 07816W, +,BS,GGT,"George Town, Great Exuma Island","George Town, Great Exuma Island",,1--4----,AI,9601,,2330N 07546W, +,BS,GHB,"Governors Harbour, Eleuthera","Governors Harbour, Eleuthera",,1--4----,AI,9601,,2512N 07630W, +,BS,IGA,Inagua,Inagua,,1--4----,AI,9601,,2114N 07319W, +,BS,MAT,Matthew Town,Matthew Town,,1-------,RQ,9506,,2057N 07340W, +,BS,MYG,Mayaguana Island,Mayaguana Island,,1--4----,AI,9601,,2223N 07254W, +,BS,NMC,Norman's Cay,Norman's Cay,,---4----,AI,9912,,2437N 07649W, +,BS,OCE,Ocean Cay,Ocean Cay,,1-------,RQ,9506,,2525N 07912W, +,BS,PID,Paradise Island,Paradise Island,,---4----,AI,9912,,2505N 07718W, +,BS,PPO,Powell Point,Powell Point,,---4----,AI,9912,,2450N 07621W, +,BS,PWN,Pitts Town,Pitts Town,,---4----,AI,9912,,2250N 07421W, +,BS,RCY,Rum Cay,Rum Cay,,---4----,AI,9912,,2350N 07456W, +,BS,SRP,South Riding Point,South Riding Point,,1-------,RQ,9506,,2637N 07813W, +,BS,TCB,"Treasure Cay, Great Abaco Island","Treasure Cay, Great Abaco Island",,1--4----,AI,9601,,2641N 07718W, +,BS,TYM,Staniel Cay,Staniel Cay,,---4----,AI,9912,,2410N 07626W, +,BS,TZN,South Andros,South Andros,,---4----,AI,9912,,2354N 07727W, +,BS,WKR,Walker's Cay,Walker's Cay,,1--4----,AI,9601,,2716N 07824W, +,BS,ZSA,San Salvador Island,San Salvador Island,,1--4----,AI,9601,,2402N 07429W, +,BT,PBH,Paro,Paro,,---4----,AI,9912,,2724N 08925E, +,BT,PHU,Phuntsholing,Phuntsholing,,----5---,AI,9808,,2651N 08922E, +,BW,BBK,Kasane,Kasane,,---4----,AI,9912,,1748S 02509E, +,BW,GNZ,Ghanzi,Ghanzi,,--34----,RL,9901,,2142S 02139E, +,BW,HUK,Hukuntsi,Hukuntsi,,---4----,AI,9912,,2360S 02146E, +,BW,JWA,Jwaneng,Jwaneng,,---4----,AI,9912,,2436S 02444E, +,BW,LOQ,Lobatse,Lobatse,,---4----,AI,9912,,2513S 02541E, +,BW,MUB,Maun,Maun,,---4----,AI,9601,,1959S 02325E, +,BW,ORP,Orapa,Orapa,,---4----,AI,9601,,2120S 02522E, +,BW,PKW,Selebi-Phikwe,Selebi-Phikwe,,---4----,AI,9912,,2159S 02750E, +,BW,SWX,Shakawe,Shakawe,,---4----,AI,9912,,1822S 02150E, +,BW,TBY,Tsabong,Tsabong,,---4----,AI,9912,,2601S 02224E, +,BY,BQT,Brest,Brest,,-23-----,AI,9401,,5206N 02341E, +,BY,DZK,Dzerzhinsk,Dzerzhinsk,,--3-----,RL,0002,,5341N 02708E, +,BY,GME,Gomel,Gomel,,---4----,AI,9912,,5225N 03101E, +,BY,GNA,Grodna,Grodna,,---4----,AI,9912,,5341N 02350E, +,BY,MVQ,Mogilev,Mogilev,,-2-4----,AI,2007,,5355N 03021E, +,BY,SVS,Svisloch,Svisloch,,-2------,QQ,9207,,5302N 02406E, +,BY,VTB,Vitebsk,Vitebsk,,---4----,AI,9912,,5512N 03012E, +,BZ,BZE,Belize City,Belize City,,1--45---,AI,9601,,1730N 08812W, +,BZ,CZH,Corozal,Corozal,,---4----,AI,9601,,1824N 08823W, +,BZ,MDB,Melinda,Melinda,,---4----,AI,9601,,1660N 08819W, +,BZ,ORZ,Orange Walk,Orange Walk,,---4----,AI,9601,,1805N 08834W, +,BZ,PND,Punta Gorda,Punta Gorda,,---4----,AI,9601,,1606N 08848W, +,BZ,SPR,San Pedro,San Pedro,,---4----,AI,9601,,1755N 08758W, +,BZ,SVK,Silver Creek,Silver Creek,,---4----,AI,9601,,1617N 08853W, +,CA,AAL,Alert Bay,Alert Bay,BC,1-------,AI,0001,YAL,5035N 12655W, +,CA,ABB,Abbotsford,Abbotsford,BC,--3-----,RL,9901,YXX,4903N 12220W, +,CA,AGI,Agincourt,Agincourt,ON,-23-----,RL,0001,,4348N 07919W, +,CA,AHL,Apple Hill,Apple Hill,ON,1-------,RQ,0901,,4513N 07446W, +,CA,AJU,Anjou,Anjou,QC,-23-----,RL,0003,,4536N 07333W, +,CA,AJX,Ajax,Ajax,ON,--3-----,RQ,9501,,4351N 07901W, +,CA,ALT,Alton,Alton,ON,--3-----,RL,0001,,4352N 08004W, +,CA,AMA,Alliston,Alliston,ON,--3-----,RQ,9501,,4409N 07952W, +,CA,AMH,Amherstburg,Amherstburg,ON,1-------,AS,9506,,4206N 08307W, +,CA,ANC,Ancaster,Ancaster,ON,--3-----,RL,9805,,4314N 07959W, +,CA,ART,Arthabaska,Arthabaska,QC,--3-----,RQ,9501,,4606N 07149W, +,CA,AUR,Aurora,Aurora,ON,--3-----,RQ,9501,,4360N 07928W, +,CA,AYL,Aylmer,Aylmer,ON,--3-----,RQ,9501,,4246N 08059W, +,CA,BAD,Baddeck,Baddeck,NS,1-------,RQ,9506,,4606N 06045W, +,CA,BAF,Banff,Banff,AB,--3-----,RL,9901,YBA,5111N 11534W, +,CA,BAM,Bamberton,Bamberton,BC,1-------,RQ,9506,,4836N 12332W, +,CA,BAR,Barrie,Barrie,ON,--3-----,RQ,9501,,4423N 07941W, +,CA,BAS,Bayside,Bayside,ON,0-------,RQ,9307,,4339N 07922W, +,CA,BAT,Bathurst,Bathurst,NB,1--4----,AS,0001,ZBF,4737N 06539W, +,CA,BAY,Bayside (St Roberts),Bayside (St Roberts),NB,1-------,AS,9905,,4508N 06706W, +,CA,BBB,Blubber Bay,Blubber Bay,BC,1-------,AS,0001,XBB,4948N 12437W, +,CA,BBY,Blind Bay,Blind Bay,BC,1-------,AS,0001,,5053N 11924W, +,CA,BCK,Brockville,Brockville,ON,1-------,AC,8103,XBR,4435N 07541W, +,CA,BCL,Bon Conseil,Bon Conseil,QC,-2------,RQ,0101,,4560N 07224W, +,CA,BCO,Baie Comeau,Baie Comeau,QC,1--4----,AS,0001,YBC,4913N 06811W, +,CA,BCT,Bancroft,Bancroft,ON,1-3-----,RQ,0901,,4503N 07751W, +,CA,BDT,Burdett,Burdett,AB,--3-----,RQ,0101,,4950N 11131W, +,CA,BED,Bedford,Bedford,QC,--3-----,RQ,9501,,4507N 07259W, +,CA,BEH,Beaver Harbour,Beaver Harbour,NB,1-------,RQ,9506,,4504N 06645W, +,CA,BEL,Belledune,Belledune,NB,1-------,AS,9905,,4754N 06549W, +,CA,BER,Berthierville,Berthierville,QC,--3-----,RQ,9501,,4605N 07310W, +,CA,BEU,Beauceville,Beauceville,QC,--3-----,RQ,9501,,4613N 07046W, +,CA,BGT,Bagotville,Bagotville,QC,1-------,AC,8103,,4820N 07053W, +,CA,BHD,Bond Head,Bond Head,ON,--3-----,RL,1107,,4405N 07941W, +,CA,BKN,Brooklyn,Brooklyn,NS,1-------,RQ,9506,,4500N 06401W, +,CA,BLA,Blainville,Blainville,QC,-23-----,RL,0001,,4541N 07353W, +,CA,BLC,Bella Coola,Bella Coola,BC,1-------,AS,9905,QBC,5222N 12645W, +,CA,BLH,Blacks Harbour,Blacks Harbour,NB,1-3-----,AS,9905,,4504N 06647W, +,CA,BLL,Beloeil,Beloeil,QC,123-----,AS,9905,,4534N 07312W, +,CA,BLR,Blind River,Blind River,ON,1-------,RQ,9506,,4611N 08257W, +,CA,BLT,Bolton,Bolton,ON,--3-----,RL,9805,,4353N 07944W, +,CA,BLV,Belleville,Belleville,ON,1-3-----,AS,9905,XVV,4410N 07723W, +,CA,BMT,Blue Mountain,Blue Mountain,ON,--3-----,RQ,8607,,4529N 06226W, +,CA,BOE,Bonnyville,Bonnyville,AB,-23-----,RL,9901,YBY,5416N 11044W, +,CA,BRA,Bradford,Bradford,ON,--3-----,RQ,9501,,4407N 07934W, +,CA,BRI,Britannia Beach,Britannia Beach,BC,1-------,RL,0001,,4938N 12312W, +,CA,BRL,Burlington,Burlington,ON,1-3-----,AS,9905,,4319N 07948W, +,CA,BRN,Brantford,Brantford,ON,--3-----,RQ,9501,YBR,4308N 08016W, +,CA,BRO,Brossard,Brossard,QC,--3-----,RQ,9501,,4527N 07328W, +,CA,BRP,Brampton,Brampton,,--3-----,RQ,9705,XPN,4341N 07946W, +,CA,BRT,Broughton Is,Broughton Is,NU,1--4----,AS,0001,YVM,6733N 06401W, +,CA,BRV,Iles de Boucherville,Iles de Boucherville,QC,-2------,RQ,0101,,4537N 07328W, +,CA,BRW,Bridgewater,Bridgewater,NS,1-------,RQ,9506,,4423N 06431W, +,CA,BSN,Batiscan,Batiscan,QC,--3-----,RL,9811,,4630N 07215W, +,CA,BTH,Bath,Bath,ON,1-------,AS,0001,,4411N 07647W, +,CA,BTT,Britt,Britt,ON,1-------,AS,0001,,4546N 08033W, +,CA,BUC,Buckingham,Buckingham,QC,--3-----,RQ,9501,,4535N 07525W, +,CA,BUR,Burgessville,Burgessville,ON,--3-----,RQ,9501,,4301N 08039W, +,CA,BWV,Bowmanville,Bowmanville,ON,1-------,AS,9905,,4355N 07841W, +,CA,CAE,Camrose,Camrose,AB,--3-----,RL,0001,,5301N 11250W, +,CA,CAN,Candiac,Candiac,SK,--3-----,RQ,9501,,5013N 10315W, +,CA,CAP,Cap-Pele,Cap-Pele,NB,0-------,RQ,9307,,4613N 06416W, +,CA,CAQ,Caraquet,Caraquet,NB,1-------,AS,9905,,4747N 06457W, +,CA,CCB,Cowichan Bay,Cowichan Bay,BC,1-------,AS,9905,,4845N 12338W, +,CA,CDN,Cardinal,Cardinal,ON,1-------,AS,0001,,4447N 07523W, +,CA,CDO,Cape Dorset,Cape Dorset,NU,1--4----,AS,0001,YTE,6414N 07633W, +,CA,CDS,Cardston,Cardston,AB,--3-----,RL,9901,,4912N 11319W, +,CA,CGN,Carignan,Carignan,QC,--3-----,RQ,0101,,4526N 07321W, +,CA,CHI,Chicoutimi,Chicoutimi,QC,1-------,AS,9905,,4824N 07104W, +,CA,CHM,Chemainus,Chemainus,BC,1-------,AS,9905,XHS,4855N 12343W, +,CA,CHN,Chatham,Chatham,NB,123-----,AS,9905,YCH,4700N 06530W, +,CA,CHO,Chomedey,Chomedey,QC,--3-----,RQ,9501,,4532N 07345W, +,CA,CHP,Chippawa,Chippawa,ON,--3-----,RL,9805,,4304N 07903W, +,CA,CHR,Chandler,Chandler,QC,12------,AS,9905,XDL,4821N 06441W, +,CA,CHY,Chambly,Chambly,QC,-23-----,RL,0001,,4527N 07318W, +,CA,CLB,Colborne,Colborne,ON,1-3-----,AS,9905,,4400N 07753W, +,CA,CLC,Clarke City,Clarke City,QC,1-------,AS,9905,,5011N 06638W, +,CA,CLI,Clinton,Clinton,ON,-23-----,RL,0001,,4337N 08132W, +,CA,CLP,Clam Point,Clam Point,NS,0-------,RQ,9307,,4330N 06534W, +,CA,CLR,Clyde River,Clyde River,NU,1--4----,AS,0001,YCY,7029N 06841W, +,CA,CLT,Carleton,Carleton,QC,1-------,RQ,9506,XON,4806N 06607W, +,CA,COC,Contrecoeur,Contrecoeur,QC,123-----,RL,0001,,4551N 07314W, +,CA,COL,Collingwood,Collingwood,ON,1-------,AS,9905,,4430N 08013W, +,CA,COM,Campbellton,Campbellton,NB,1-------,AC,8103,XAZ,4800N 06641W, +,CA,COP,Coppermine,Coppermine,NU,1-------,RL,0001,,6750N 11506W, +,CA,COQ,Coquitlam,Coquitlam,BC,--3-----,RQ,9501,,4917N 12248W, +,CA,COR,Corunna,Corunna,ON,1-------,AS,9905,,4253N 08227W, +,CA,COU,Courtenay,Courtenay,BC,1-------,AS,9905,YCA,4941N 12460W, +,CA,COX,Comox,Comox,BC,1-------,RQ,9506,YQQ,4940N 12456W, +,CA,CPB,Campobello,Campobello,NB,1-------,AS,0001,,4454N 06655W, +,CA,CPT,Canaport,Canaport,NB,1-------,RQ,9506,,4513N 06559W, +,CA,CQA,Coteau du Lac,Coteau du Lac,QC,1-3-----,RQ,0901,,4518N 07411W, +,CA,CRO,Crofton,Crofton,BC,1-------,AS,9905,,4852N 12339W, +,CA,CRR,Courtright,Courtright,ON,1-------,AS,0001,,4249N 08228W, +,CA,CSC,C�te-Sainte-Catherine,Cote-Sainte-Catherine,QC,1-------,AS,1101,,4530N 07338W, +,CA,CSN,Clarkson,Clarkson,ON,1-------,AS,9905,,4331N 07938W, +,CA,CST,Chester,Chester,NS,1-------,RQ,9506,,4432N 06414W, +,CA,CUM,Cumberland Bay,Cumberland Bay,NB,1-3-----,RQ,0901,,4602N 06552W, +,CA,CWI,Cornwallis Is,Cornwallis Is,NU,1-------,AS,0001,,7508N 09459W, +,CA,CWK,Chilliwack,Chilliwack,BC,--3-----,RQ,9501,YCW,4910N 12157W, +,CA,CWL,Cornwall,Cornwall,ON,1-------,AS,9905,YCC,4501N 07444W, +,CA,DAS,Great Bear Lake,Great Bear Lake,NT,---4----,AI,0001,,6600N 12100W, +,CA,DBL,Debolt,Debolt,AB,--3-----,RQ,0201,,5513N 11801W, +,CA,DEB,Deception Bay,Deception Bay,QC,1-------,RQ,9506,YGY,6209N 07442W, +,CA,DGF,Douglas Lake,Douglas Lake,BC,---4----,AI,0001,,5010N 12012W, +,CA,DHS,Dalhousie,Dalhousie,NB,1-------,AS,9905,,4804N 06622W, +,CA,DIG,Digby,Digby,NS,1-------,AC,8103,YDG,4437N 06546W, +,CA,DNC,Donnacona,Donnacona,QC,--3-----,RL,1107,,4641N 07144W, +,CA,DOR,Dorval,Dorval,QC,-234----,RQ,9501,YUL,4527N 07345W, +,CA,DPP,Dieppe,Dieppe,NB,--3-----,RQ,9704,,4606N 06444W, +,CA,DRU,Drummondville,Drummondville,QC,--3-----,RQ,9501,XDM,4553N 07230W, +,CA,DRY,Dryden,Dryden,ON,-234----,RL,0001,YHD,4947N 09250W, +,CA,DUD,Dundas,Dundas,ON,--3-----,RQ,9501,,4316N 07957W, +,CA,DUR,Durham,Durham,ON,-23-----,RL,0001,,4402N 07852W, +,CA,DVW,Downsview,Downsview,ON,--3-----,RQ,9501,,4344N 07929W, +,CA,EDM,Edmonton,Edmonton,AB,---4----,AI,9601,YEA,5333N 11329W, +,CA,EDS,Edson,Edson,AB,---4----,RQ,9307,YET,5335N 11627W, +,CA,EEK,Belleisle Creek,Belleisle Creek,NB,1-------,RQ,0901,,4543N 06545W, +,CA,EIW,Wellington,Wellington,PE,1-3-----,RQ,0901,,4627N 06400W, +,CA,ELM,Elmira,Elmira,ON,-23-----,RQ,9501,,4336N 08033W, +,CA,EMD,Elmwood,Elmwood,ON,--3-----,RQ,9501,,4414N 07638W, +,CA,ENE,Erieau,Erieau,ON,1-------,AS,0001,,4216N 08156W, +,CA,ERI,Erin,Erin,ON,--3-----,RQ,9501,,4347N 08004W, +,CA,ESQ,Esquimalt,Esquimalt,BC,1-------,AS,0001,YPF,4826N 12325W, +,CA,ESS,Essex,Essex,ON,-23-----,RL,0001,,4206N 08253W, +,CA,EST,Estevan,Estevan,SK,--3-----,RL,9901,YEN,4909N 10259W, +,CA,ETC,Etobicoke,Etobicoke,ON,--3-----,RQ,9705,,4339N 07934W, +,CA,FAL,Fort Albany,Fort Albany,ON,1-------,AI,0001,YFA,5213N 08141W, +,CA,FER,Fort Erie,Fort Erie,ON,--3-----,RQ,9501,,4255N 07855W, +,CA,FGS,Fergus,Fergus,,--3-----,RQ,9705,,4342N 08023W, +,CA,FLV,Florenceville,Florenceville,NB,--3-----,RQ,9501,,4627N 06736W, +,CA,FNE,Fort Nelson,Fort Nelson,BC,--34----,RL,9901,YYE,5848N 12242W, +,CA,FRO,Frontier,Frontier,SK,--3-----,RQ,0001,,4908N 10849W, +,CA,FRV,Forestville,Forestville,QC,1-------,AS,9905,YFE,4844N 06905W, +,CA,FSI,Fort Simpson,Fort Simpson,NT,1--4----,AI,0001,YFS,6152N 12121W, +,CA,FSM,Fort Smith,Fort Smith,NT,1--4----,AI,0001,YSM,6000N 11153W, +,CA,FWC,Fenwick,Fenwick,ON,--3-----,RQ,9501,,4301N 07922W, +,CA,GBT,Godbout,Godbout,QC,1-3-----,AS,9905,,4919N 06736W, +,CA,GCA,Gros Cacouna,Gros Cacouna,QC,1-------,AS,9905,,4756N 06931W, +,CA,GCR,Gloucester,Gloucester,ON,--3-----,RQ,0101,,4522N 07532W, +,CA,GDN,Golden,Golden,BC,--3-----,RQ,0101,,5118N 11658W, +,CA,GDW,Goodwood,Goodwood,ON,--3-----,RQ,9501,,4402N 07912W, +,CA,GGS,Ganges,Ganges,BC,1-------,AS,0001,YGG,4851N 12330W, +,CA,GJI,Grand Bend,Grand Bend,ON,--3-----,RL,9805,,4319N 08145W, +,CA,GLP,Guelph,Guelph,ON,-23-----,RQ,9705,XIA,4333N 08015W, +,CA,GOH,Goderich,Goderich,ON,1-------,AS,9905,,4345N 08143W, +,CA,GOR,Gold River,Gold River,BC,1-------,AS,0001,,4947N 12603W, +,CA,GRA,Granby,Granby,QC,-23-----,RQ,9307,,4524N 07243W, +,CA,GRE,Greenfield Park,Greenfield Park,QC,--3-----,RL,0001,,4530N 07329W, +,CA,GRS,Grindstone,Grindstone,QC,1-------,AS,0001,,4721N 06155W, +,CA,GYB,Guysborough,Guysborough,NS,--3-----,RQ,9501,,4527N 06136W, +,CA,HAB,Hall Beach,Hall Beach,NU,1-------,AS,0001,YUX,6848N 08115W, +,CA,HAL,Halifax,Halifax,NS,1--4----,AS,9905,YHC,4439N 06335W, +,CA,HAM,Hamilton,Hamilton,ON,1--4----,AS,9905,YHM,4315N 07952W, +,CA,HAW,Hawkesbury,Hawkesbury,ON,-23-----,RL,0001,,4537N 07436W, +,CA,HBG,Hillsburgh,Hillsburgh,ON,--3-----,RQ,0901,,4347N 08009W, +,CA,HBV,Hebbville,Hebbville,NS,0-------,RQ,9307,,4421N 06433W, +,CA,HGS,Hagersville,Hagersville,ON,--3-----,RQ,9501,,4258N 08003W, +,CA,HID,Hilda,Hilda,AB,1-3-----,RQ,0901,,5029N 11002W, +,CA,HJU,Haines Junction,Haines Junction,YT,--34----,RL,9901,YHT,6045N 13731W, +,CA,HOR,Hornby,Hornby,ON,-23-----,RL,0001,,4334N 07950W, +,CA,HPT,Hantsport,Hantsport,NS,1-------,AS,9905,,4504N 06411W, +,CA,HRR,Harriston,Harriston,ON,--3-----,RL,9805,,4355N 08052W, +,CA,HSN,Haley Station,Haley Station,ON,--3-----,RQ,0901,,4534N 07647W, +,CA,HSP,Havre-Saint-Pierre,Havre-Saint-Pierre,QC,1--4----,AS,1101,YGV,5015N 06336W, +,CA,HST,Holstein,Holstein,ON,--3-----,RQ,0901,,4404N 08046W, +,CA,HUN,Huntsville,Huntsville,ON,--3-----,RL,9805,,4520N 07913W, +,CA,HWS,Howe Sound,Howe Sound,BC,1-------,AS,0001,,4929N 12327W, +,CA,HYO,Holyrood,Holyrood,ON,--3-----,RQ,0901,,4402N 08128W, +,CA,IBV,Iberville,Iberville,QC,--3-----,RN,9811,,4519N 07304W, +,CA,IDO,Ilderton,Ilderton,ON,--3-----,RQ,0901,,4305N 08123W, +,CA,IGS,Ingersoll,Ingersoll,ON,--34----,RQ,9501,XIB,4302N 08053W, +,CA,ILF,Ilford,Ilford,MB,---4----,AI,0001,,5604N 09536W, +,CA,IOC,Ioco,Ioco,BC,1-------,AS,9905,,4918N 12252W, +,CA,ION,Iona,Iona,NS,1-------,AS,9905,,4558N 06048W, +,CA,IPE,Ile Perrot,Ile Perrot,QC,--3-----,RQ,9501,,4603N 07159W, +,CA,IUM,Summit Lake,Summit Lake,BC,---4----,AI,0001,,5417N 12239W, +,CA,JOF,Joffre,Joffre,AB,--3-----,RQ,9501,,5220N 11332W, +,CA,JOL,Joliette,Joliette,QC,--34----,RQ,9501,XJL,4601N 07327W, +,CA,JPR,Jasper,Jasper,AB,--34----,RL,9901,YJA,5253N 11805W, +,CA,JST,Jordan Station,Jordan Station,ON,0-------,RQ,9307,,4310N 07922W, +,CA,KAC,Kincardine,Kincardine,ON,--34----,RL,9805,YKD,4411N 08138W, +,CA,KAN,Kanata,Kanata,ON,-23-----,RQ,9307,,4519N 07554W, +,CA,KES,Kelsey,Kelsey,MB,---4----,AI,0001,,5344N 10126W, +,CA,KFS,Kingsey Falls,Kingsey Falls,QC,--3-----,RQ,9805,,4551N 07204W, +,CA,KIF,Kingfisher Lake,Kingfisher Lake,ON,---4----,AI,0001,,5302N 08949W, +,CA,KIK,Kirkland,Kirkland,QC,--3-----,RQ,9501,,4527N 07352W, +,CA,KIN,Kingston,Kingston,ON,1--4----,AS,9905,YGK,4414N 07629W, +,CA,KLY,Killarney,Killarney,ON,1-------,AS,0001,,4606N 08125W, +,CA,KMK,Komoka,Komoka,ON,-2------,RQ,0101,,4257N 08126W, +,CA,KML,Kamloops,Kamloops,BC,--34----,RQ,9501,YKA,5041N 12020W, +,CA,KNY,Kinoosao,Kinoosao,SK,---4----,AI,0001,,5705N 10201W, +,CA,KOL,Kola,Kola,MB,--3-----,RQ,0901,,4951N 10122W, +,CA,KTC,Kitchener,Kitchener,ON,---4----,AC,8103,YKF,4327N 08030W, +,CA,KTM,Kitimat,Kitimat,BC,1-------,AS,9905,,5403N 12839W, +,CA,KVL,Kingsville,Kingsville,ON,1-------,AS,0001,,4202N 08244W, +,CA,KWI,King William Is,King William Is,NU,1-------,AS,0001,,6911N 09729W, +,CA,LAC,Lachine/Montreal,Lachine/Montreal,QC,1-3-----,RL,2107,,4526N 07341W, +,CA,LAD,Ladysmith,Ladysmith,BC,12------,AI,9701,XCH,4860N 12349W, +,CA,LAL,L'ancienne-Lorette,L'ancienne-Lorette,QC,--3-----,RQ,0101,,4648N 07122W, +,CA,LAV,Laval,Laval,QC,-23-----,RL,0001,,4535N 07345W, +,CA,LAW,Lakeview,Lakeview,ON,1-------,AS,0001,,4334N 07935W, +,CA,LCH,Lachute,Lachute,QC,1-3-----,AS,9905,,4539N 07420W, +,CA,LCI,Les C�dres,Les Cedres,QC,--3-----,RL,0001,,4519N 07403W, +,CA,LCO,Lacolle,Lacolle,QC,1-3-----,AS,9905,,4505N 07322W, +,CA,LCS,Lancaster,Lancaster,ON,--3-----,RL,1107,,4508N 07430W, +,CA,LDN,Ladner,Ladner,BC,1-3-----,AS,9905,,4906N 12305W, +,CA,LEN,Lennoxville,Lennoxville,QC,--3-----,RQ,9501,,4522N 07151W, +,CA,LGT,Langton,Langton,ON,0-------,RQ,9307,,4245N 08035W, +,CA,LIC,Little Current,Little Current,ON,1-------,AS,0001,,4559N 08156W, +,CA,LIN,Little Narrows,Little Narrows,NS,1-------,AS,9905,,4560N 06059W, +,CA,LIV,Liverpool,Liverpool,NS,1-------,AS,9905,,4402N 06443W, +,CA,LMN,Leamington,Leamington,ON,123-----,AS,9905,,4203N 08236W, +,CA,LNG,Langley,Langley,BC,1-3-----,AS,9905,,4906N 12239W, +,CA,LOD,London,London,ON,-234----,AI,9506,YXU,4259N 08115W, +,CA,LOR,L'Orignal,L'Orignal,ON,--3-----,RL,9805,,4537N 07442W, +,CA,LRA,Leaf Rapids,Leaf Rapids,MB,--34----,RL,9901,YLR,5628N 10001W, +,CA,LSL,La Salette,La Salette,ON,--3-----,RQ,0901,,4254N 08030W, +,CA,LTB,Lethbridge,Lethbridge,AB,---4----,RQ,9307,YQL,4942N 11250W, +,CA,LTW,Listowel,Listowel,ON,-23-----,AC,0001,,4344N 08057W, +,CA,LUN,Lunenburg,Lunenburg,NS,1-------,AS,9905,,4423N 06419W, +,CA,MAD,Madoc,Madoc,ON,--3-----,RQ,9501,,4435N 07730W, +,CA,MAL,Malton,Malton,ON,--3-----,RQ,0101,,4343N 07939W, +,CA,MAN,Mansonville,Mansonville,QC,0-------,RQ,9307,,4503N 07224W, +,CA,MAR,Marathon,Marathon,ON,1--4----,AS,9905,YSP,4843N 08622W, +,CA,MDB,Meldrum Bay,Meldrum Bay,ON,1-------,AS,0001,,4556N 08307W, +,CA,MEG,Mount Elgin,Mount Elgin,ON,-2------,RQ,0101,,4258N 08048W, +,CA,MET,Meteghan,Meteghan,NS,1-------,AS,9506,,4411N 06610W, +,CA,MGT,Sainte-Marguerite,Sainte-Marguerite,QC,1-3-----,RQ,1101,,4631N 07056W, +,CA,MHB,Mahone Bay,Mahone Bay,NS,1-3-----,AS,9905,,4427N 06423W, +,CA,MID,Midland,Midland,ON,1-3-----,RQ,9506,,4445N 07953W, +,CA,MIH,Michipicoten,Michipicoten,ON,1-------,AS,9905,,4758N 08456W, +,CA,MIL,Milton,Milton,ON,--3-----,RQ,9501,,4331N 07953W, +,CA,MIR,Miramichi,Miramichi,NB,1-3-----,RL,0001,,4702N 06528W, +,CA,MKH,Markham,Markham,ON,--3-----,RL,0001,,4351N 07920W, +,CA,MNE,Matane,Matane,QC,1--4----,AS,9905,YME,4851N 06732W, +,CA,MNT,Moncton,Moncton,NB,1--4----,AC,8103,YQM,4606N 06448W, +,CA,MOB,Morrisburg,Morrisburg,ON,1-------,AS,0001,,4454N 07511W, +,CA,MON,Monkton,Monkton,ON,--3-----,RQ,9501,,4335N 08105W, +,CA,MOR,Morden,Morden,MB,--3-----,RQ,9501,,4912N 09806W, +,CA,MOU,Moosonee,Moosonee,ON,1--4----,AI,0001,YMO,5116N 08039W, +,CA,MRB,Mirabel,Mirabel,QC,---4----,RQ,9307,YMX,4539N 07404W, +,CA,MRI,Maple Ridge,Maple Ridge,BC,1-------,AS,9905,,4913N 12236W, +,CA,MRT,Saint-Martin,Saint-Martin,,--3-----,RQ,1101,,4558N 07039W, +,CA,MSA,Muskrat Dam,Muskrat Dam,ON,---4----,AI,0001,,5324N 09147W, +,CA,MSH,Mont-Saint-Hilaire,Mont-Saint-Hilaire,QC,-23-----,RL,1101,,4534N 07312W, +,CA,MSS,Masset,Masset,BC,1--4----,AI,9506,ZMT,5401N 13209W, +,CA,MTQ,Mactaquac,Mactaquac,NB,1-3-----,RQ,0901,,4556N 06653W, +,CA,MTR,Montreal,Montreal,QC,1--45---,AS,9905,YMQ,4530N 07334W, +,CA,MUL,Mulgrave,Mulgrave,NS,1-------,AS,0001,,4536N 06123W, +,CA,NAP,Napierville,Napierville,QC,--3-----,RQ,9501,,4511N 07324W, +,CA,NCT,Newcastle,Newcastle,NB,1-------,AS,9905,,4708N 06532W, +,CA,NDK,New Denmark,New Denmark,NB,--3-----,RQ,9501,,4660N 06736W, +,CA,NEA,New Annan,New Annan,PE,0-------,RQ,9307,,4625N 06342W, +,CA,NGL,New Glasgow,New Glasgow,NS,1-------,AS,9905,,4535N 06239W, +,CA,NGY,New Germany,New Germany,NS,--3-----,RQ,9501,,4433N 06444W, +,CA,NIA,Niagara Falls,Niagara Falls,ON,1234----,AS,9905,XLV,4306N 07904W, +,CA,NNE,Nanoose Bay,Nanoose Bay,BC,1-3-----,RL,0001,,4916N 12412W, +,CA,NNO,Nanaimo,Nanaimo,BC,1--4----,AS,9905,YCD,4910N 12356W, +,CA,NON,Shannon,Shannon,QC,1-3-----,RQ,0901,,4653N 07131W, +,CA,NRC,New Richmond,New Richmond,QC,12-4----,AS,9905,XEM,4810N 06552W, +,CA,NRN,Noranda,Noranda,QC,--3-----,RQ,9501,,4815N 07901W, +,CA,NSY,North Sydney,North Sydney,NS,1-------,AS,0001,,4613N 06015W, +,CA,NVK,Nanisivik,Nanisivik,NU,1--4----,AS,0212,YSR,7302N 08432W, +,CA,NWC,Norwich (Ontario),Norwich (Ontario),ON,--3-----,RL,9805,,4259N 08036W, +,CA,NWE,New Westminster,New Westminster,BC,1-------,AS,9905,,4912N 12255W, +,CA,NWM,Newmarket,Newmarket,ON,--3-----,RL,9901,,4403N 07928W, +,CA,NYK,North York,North York,ON,--3-----,RQ,9705,,4345N 07927W, +,CA,OAK,Oakville,Oakville,ON,1--4----,AS,9905,XOK,4327N 07940W, +,CA,OAL,Oak Lake,Oak Lake,MB,--3-----,RQ,0901,,4946N 10038W, +,CA,OFA,Ocean Falls,Ocean Falls,BC,1--4----,AI,0001,ZOF,5221N 12741W, +,CA,ONT,Orton,Orton,ON,-----6--,RL,1107,,4944N 11316W, +,CA,OPE,Port Hope,Port Hope,ON,1-34----,AS,9905,XPH,4357N 07818W, +,CA,ORA,Orangeville,Orangeville,ON,-23-----,RQ,9501,,4355N 08006W, +,CA,ORI,Orillia,Orillia,ON,--3-----,RQ,9501,,4437N 07925W, +,CA,ORM,Ormstown,Ormstown,QC,--3-----,RQ,9501,,4508N 07360W, +,CA,ORT,Northbrook,Northbrook,ON,--3-----,RQ,9008,,4444N 07710W, +,CA,OSH,Oshawa,Oshawa,ON,1--4----,AS,9905,YOO,4354N 07852W, +,CA,OTT,Ottawa,Ottawa,ON,1--4----,AC,8103,YOW,4525N 07541W, +,CA,OWS,Owen Sound,Owen Sound,ON,1-34----,AS,9905,YOS,4434N 08057W, +,CA,PAB,Port Alberni,Port Alberni,BC,1--4----,AS,9905,YPB,4914N 12448W, +,CA,PAC,Port Alice,Port Alice,BC,1-------,AS,9905,,5026N 12729W, +,CA,PAR,Parrsboro,Parrsboro,NS,123-----,RL,0001,,4524N 06420W, +,CA,PAS,Paspebiac,Paspebiac,QC,1-------,AS,9905,,4802N 06515W, +,CA,PCK,Pickering,Pickering,ON,--3-----,RL,0001,,4350N 07905W, +,CA,PCO,Port Colborne,Port Colborne,ON,1-------,AS,9905,,4253N 07915W, +,CA,PCR,Port Credit,Port Credit,ON,1-------,AS,9905,,4333N 07935W, +,CA,PDI,Pond Inlet,Pond Inlet,NU,1--4----,AS,0001,YIO,7242N 07757W, +,CA,PDO,Saint-Pierre-de-l'�le-d'Orl�ans,Saint-Pierre-de-l'Ile-d'Orleans,QC,1-3-----,RQ,1101,,4653N 07104W, +,CA,PDV,Port Dover,Port Dover,ON,123-----,RL,0001,,4247N 08012W, +,CA,PEH,Pender Harbour,Pender Harbour,BC,1--4----,AS,0001,YPT,4958N 12350W, +,CA,PEM,Pembroke,Pembroke,ON,---4----,RQ,9307,YTA,4550N 07707W, +,CA,PHW,Port Hawkesbury,Port Hawkesbury,NS,1--4----,AS,9905,YPS,4537N 06121W, +,CA,PHY,Port Hardy,Port Hardy,BC,1--4----,AS,9905,YZT,5043N 12730W, +,CA,PIC,Picton,Picton,ON,1-------,AS,9905,,4400N 07708W, +,CA,PIW,Pikwitonei,Pikwitonei,MB,---4----,AI,0001,,5535N 09709W, +,CA,PLA,Plattsville,Plattsville,ON,0-------,RQ,9307,,4318N 08037W, +,CA,PML,Port Mellon,Port Mellon,BC,1-------,AS,9905,,4931N 12330W, +,CA,PMO,Port Moody/Vancouver,Port Moody/Vancouver,BC,123-----,RL,0001,,4917N 12250W, +,CA,PMW,Port Medway,Port Medway,NS,0-------,RQ,9506,,4407N 06435W, +,CA,PNE,Port Nelson,Port Nelson,MB,1-------,RL,0001,,5703N 09236W, +,CA,PNT,Pangnirtung,Pangnirtung,NU,1-------,AS,0001,YXP,6609N 06543W, +,CA,POA,Port Arthur,Port Arthur,ON,1-------,AS,9905,,4826N 08913W, +,CA,POP,Pointe-au-Pic,Pointe-au-Pic,QC,1-------,AS,0001,,4738N 07009W, +,CA,POR,Portage,Portage,PE,--3-----,RQ,9501,,4640N 06404W, +,CA,POU,Pouce Coupe,Pouce Coupe,BC,1-3-----,RQ,0901,,5543N 12008W, +,CA,POW,Powell River,Powell River,BC,1--4----,AS,9905,YPW,4950N 12431W, +,CA,PPC,Pointe au Pic,Pointe au Pic,QC,1-------,AS,9905,,4738N 07009W, +,CA,PRE,Prescott,Prescott,ON,1--4----,AS,9905,XII,4443N 07531W, +,CA,PRG,Prince George,Prince George,BC,1--4----,AS,0001,YXS,5355N 12245W, +,CA,PRP,Port Perry,Port Perry,ON,1-3-----,RQ,9805,,4406N 07857W, +,CA,PRR,Prince Rupert,Prince Rupert,BC,1--4----,AS,9905,YPR,5419N 13020W, +,CA,PRS,Parry Sound,Parry Sound,ON,1--4----,AS,9905,YPD,4521N 08002W, +,CA,PSI,Port Simpson,Port Simpson,BC,1-------,AS,9905,,5433N 13026W, +,CA,PST,Port Stanley,Port Stanley,ON,1-------,AS,9905,,4240N 08113W, +,CA,PTA,Tahsis,Tahsis,BC,1--4----,AS,9905,ZTS,4955N 12640W, +,CA,PTC,Port Coquitlam,Port Coquitlam,BC,--3-----,RQ,9501,,4916N 12247W, +,CA,PTE,Port Edward,Port Edward,BC,1-------,AS,9905,,5413N 13018W, +,CA,PTM,Port Maitland,Port Maitland,NS,0-------,AS,9905,,4359N 06609W, +,CA,PTN,Portneuf,Portneuf,QC,1-------,AS,0001,,4642N 07153W, +,CA,PTO,Pictou,Pictou,NS,1-------,AS,9905,,4541N 06242W, +,CA,PUG,Pugwash,Pugwash,NS,1-------,AS,9905,,4551N 06340W, +,CA,QCS,Saint-Bernard-de-Michaudville,Saint-Bernard-de-Michaudville,QC,1-3-----,RQ,1101,,4550N 07304W, +,CA,QTS,Quatsino,Quatsino,BC,1-------,AS,0001,,5033N 12751W, +,CA,QUE,Quebec,Quebec,QC,1--4----,AS,9905,YQB,4649N 07113W, +,CA,RBC,Richmond,Richmond,BC,----5---,AI,0001,,4910N 12308W, +,CA,RDN,Rodney,Rodney,ON,-23-----,RL,9903,,4234N 08141W, +,CA,REG,Regina,Regina,SK,---4----,AC,8103,YQR,5027N 10437W, +,CA,REP,Repentigny,Repentigny,QC,--3-----,RL,0001,,4544N 07327W, +,CA,REX,Rexdale/Toronto,Rexdale/Toronto,ON,--3-----,RL,0001,,4343N 07934W, +,CA,RHI,Richmond Hill,Richmond Hill,ON,--3-----,RQ,9501,,4353N 07926W, +,CA,RIC,Richelieu,Richelieu,QC,--3-----,RQ,9501,,4518N 07315W, +,CA,RIM,Rimouski,Rimouski,QC,1--4----,AS,9905,YXK,4827N 06832W, +,CA,ROU,Rougemont,Rougemont,QC,0-------,RQ,9307,,4527N 07304W, +,CA,RQQ,Rockton,Rockton,ON,0-------,RQ,9307,,4318N 08008W, +,CA,RSN,Robertson,Robertson,PE,--3-----,RQ,8607,,4611N 06237W, +,CA,RST,Restoule,Restoule,ON,--3-----,RQ,0407,,4602N 07943W, +,CA,RTW,Ridgetown,Ridgetown,ON,--3-----,RL,9201,,4226N 08153W, +,CA,RUS,Ruskin,Ruskin,BC,123-----,RL,0001,,4912N 12227W, +,CA,RUV,Ruthven,Ruthven,ON,0-------,RQ,9307,,4203N 08240W, +,CA,SAD,Saint-Andrews,Saint-Andrews,NB,1-------,AS,1101,,4504N 06703W, +,CA,SAK,Saskatoon,Saskatoon,SK,-234----,RQ,9506,YXE,5208N 10640W, +,CA,SAL,Salford,Salford,ON,--3-----,RQ,9805,,4260N 08050W, +,CA,SAP,Saint-Apollinaire,Saint-Apollinaire,QC,-23-----,RL,1101,,4637N 07131W, +,CA,SAY,Sayabec,Sayabec,QC,--3-----,RQ,9501,,4834N 06741W, +,CA,SBD,Saint-Bernard,Saint-Bernard,QC,1-3-----,RQ,1101,,4630N 07108W, +,CA,SBO,Saint-Bruno-de-Montarville,Saint-Bruno-de-Montarville,QC,-23-----,RL,1101,,4532N 07320W, +,CA,SBR,Sherbrooke,Sherbrooke,QC,---4----,AC,8103,YSC,4524N 07153W, +,CA,SBU,Shelburne,Shelburne,NS,1-------,AS,9905,,4346N 06519W, +,CA,SCB,Scarborough,Scarborough,ON,--3-----,RQ,9705,,4346N 07915W, +,CA,SCM,Saint-C�me,Saint-Come,QC,--3-----,RL,1101,,4616N 07346W, +,CA,SCO,Sainte-Clothilde,Sainte-Clothilde,QC,--3-----,RQ,1101,,4557N 07214W, +,CA,SDA,Saint-Damase,Saint-Damase,QC,--3-----,RQ,1101,,4532N 07301W, +,CA,SDY,Sidney,Sidney,BC,1-------,AS,0001,,4839N 12324W, +,CA,SEL,Selkirk,Selkirk,MB,1-3-----,AS,9905,,5009N 09653W, +,CA,SFH,Seaforth,Seaforth,,-2------,RQ,9705,,4440N 06316W, +,CA,SHA,Shawinigan,Shawinigan,QC,--34----,RQ,9501,XFL,4632N 07245W, +,CA,SHE,Shediac,Shediac,NB,1-------,AS,9905,,4613N 06433W, +,CA,SHP,Shippegan,Shippegan,NB,1-------,AS,9905,,4745N 06445W, +,CA,SHV,Shannonville,Shannonville,ON,1-3-----,RQ,0901,,4412N 07714W, +,CA,SIC,Simcoe,Simcoe,ON,1-------,AC,8103,,4250N 08018W, +,CA,SID,Saint-Isidore,Saint-Isidore,ON,1-3-----,RQ,1101,,4635N 07105W, +,CA,SKI,Charlotte (Skidegate),Charlotte (Skidegate),BC,1-------,AS,9905,,5315N 13206W, +,CA,SLE,Saint-L�onard,Saint-Leonard,QC,--3-----,RQ,1101,,4535N 07336W, +,CA,SMF,Smiths Falls,Smiths Falls,ON,--3-----,RQ,9501,,4454N 07601W, +,CA,SNI,Sarnia,Sarnia,ON,1--4----,AS,9905,YZR,4258N 08224W, +,CA,SOM,Sombra,Sombra,ON,1-------,AS,0001,,4243N 08229W, +,CA,SOO,Sooke,Sooke,BC,1-------,AS,0001,,4823N 12344W, +,CA,SOR,Sorel,Sorel,QC,1-------,AS,9905,,4603N 07306W, +,CA,SOU,Souris,Souris,PE,1-------,AS,9905,,4621N 06215W, +,CA,SPR,Spragge,Spragge,ON,1-------,AS,9905,,4612N 08238W, +,CA,SPW,Sparwood,Sparwood,BC,--3-----,RQ,9901,,4944N 11453W, +,CA,SQA,Squamish,Squamish,BC,1--4----,AS,9905,YSE,4942N 12309W, +,CA,SRR,Sorrento,Sorrento,BC,--3-----,RL,9805,,5051N 11917W, +,CA,SSM,Sault-Sainte-Marie,Sault-Sainte-Marie,ON,1--4----,AS,1101,YAM,4631N 08419W, +,CA,SSP,Sandspit,Sandspit,BC,1--4----,AS,0001,YZP,5315N 13150W, +,CA,SSQ,La Sarre,La Sarre,QC,---4----,AI,0001,,4848N 07912W, +,CA,ST6,Sorel-Tracy,Sorel-Tracy,QC,1----6--,RL,1107,,4603N 07306W, +,CA,STC,Stoney Creek,Stoney Creek,ON,1-3-----,AS,9905,,4313N 07945W, +,CA,STG,Saint-George,Saint-George,ON,--3-----,RL,1101,,4508N 06650W, +,CA,STH,Saint-Thomas,Saint-Thomas,ON,12-4----,AS,1101,YQS,4206N 08305W, +,CA,STR,Stratford,Stratford,ON,-234----,RQ,9506,XFD,4322N 08059W, +,CA,STS,Saint-Stephen,Saint-Stephen,NB,1-------,AS,1101,,4512N 06717W, +,CA,STT,Strathroy,Strathroy,ON,--34----,RQ,9501,XTY,4254N 08133W, +,CA,STW,Stewart,Stewart,BC,1--4----,AS,9905,ZST,5556N 12959W, +,CA,STY,Stayner,Stayner,ON,--3-----,RQ,9501,,4425N 08005W, +,CA,SUD,Sudbury,Sudbury,ON,1--4----,AS,9905,YSB,4630N 08059W, +,CA,SUM,Summerside,Summerside,PE,1--4----,AS,9905,YSU,4624N 06347W, +,CA,SUS,Sussex,Sussex,NB,-23-----,RQ,9501,,4543N 06529W, +,CA,SUY,Surrey,Surrey,BC,1-------,AS,9905,,4911N 12251W, +,CA,SVE,Sainte-Veronique,Sainte-Veronique,QC,--3-----,RL,1101,,4631N 07459W, +,CA,SVV,Massueville,Massueville,QC,--3--6--,RQ,0901,,4555N 07256W, +,CA,SYD,Sydney,Sydney,NS,1--4----,AS,9905,YQY,4608N 06012W, +,CA,TAB,Tabusintac,Tabusintac,NB,--3-----,RQ,9501,,4720N 06501W, +,CA,TAD,Tadoussac,Tadoussac,QC,1-------,AS,9905,,4809N 06943W, +,CA,TAH,Tagish,Tagish,YT,--3-----,RL,9901,,6019N 13416W, +,CA,TAS,Tasu,Tasu,BC,1--4----,AI,0001,YTU,5246N 13202W, +,CA,TAV,Tavistock,Tavistock,ON,--3-----,RQ,9501,,4319N 08050W, +,CA,TEC,Tecumseh,Tecumseh,ON,-23-----,RL,0001,,4219N 08253W, +,CA,TEX,Texada Island,Texada Island,BC,1-------,AS,9905,,4939N 12422W, +,CA,THD,Thorold,Thorold,ON,1-3-----,AS,9905,,4307N 07912W, +,CA,THE,Thetford Mines,Thetford Mines,QC,-23-----,RL,0001,,4605N 07118W, +,CA,THL,Thornhill,Thornhill,ON,1-3-----,AS,9905,,4349N 07925W, +,CA,THU,Thunder Bay,Thunder Bay,ON,1--4----,AS,9905,YQT,4824N 08916W, +,CA,TLB,Tilbury Is,Tilbury Is,BC,1-------,AS,0001,,4909N 12301W, +,CA,TNG,Tingwick,Tingwick,QC,1-3-----,RQ,0901,,4553N 07157W, +,CA,TNS,Tungsten,Tungsten,NT,---4----,AI,0001,,6158N 12814W, +,CA,TOR,Toronto,Toronto,ON,1--45---,AS,9905,YTO,4339N 07923W, +,CA,TOT,Tottenham,Tottenham,ON,--3-----,RQ,9501,,4401N 07948W, +,CA,TRA,Tracadie,Tracadie,NB,--3-----,RQ,9501,,4731N 06455W, +,CA,TRB,Trinity Bay,Trinity Bay,NL,1-------,AS,0501,,4831N 05304W, +,CA,TRC,Tracy,Tracy,QC,1-------,AS,9905,,4603N 07307W, +,CA,TRR,Trois-Rivieres (Three Rivers),Trois-Rivieres (Three Rivers),QC,1--4----,AS,9905,YRQ,4621N 07233W, +,CA,TRU,Truro,Truro,NS,--34----,RL,9805,XLZ,4522N 06318W, +,CA,TRY,Troy,Troy,ON,--3-----,RL,9811,,4316N 08011W, +,CA,TTC,Trenton,Trenton,ON,1--4----,AS,9905,YTR,4406N 07735W, +,CA,TUC,Tucks,Tucks,BC,-23-----,RQ,0207,,4642N 05336W, +,CA,TUK,Tuktoyaktuk,Tuktoyaktuk,NT,1--4----,AS,9905,YUB,6927N 13302W, +,CA,TUX,Tumbler Ridge,Tumbler Ridge,BC,---4----,AI,0001,,5508N 12060W, +,CA,UNV,Unionville,Unionville,ON,--3-----,RL,0001,,4352N 07919W, +,CA,VAN,Vancouver,Vancouver,BC,1--45---,AS,9905,YVR,4916N 12307W, +,CA,VER,Vernon,Vernon,BC,---4----,RQ,9307,YVE,5016N 11916W, +,CA,VND,Vananda,Vananda,BC,1-------,AS,0001,,4945N 12433W, +,CA,WAI,Watson Is,Watson Is,BC,1-------,AS,0001,,5056N 12649W, +,CA,WAL,Wallaceburg,Wallaceburg,ON,123-----,AS,9905,,4236N 08223W, +,CA,WAT,Watson Lake,Watson Lake,YT,---4----,AS,9905,YQH,6004N 12842W, +,CA,WDB,Woodbridge,Woodbridge,ON,--3-----,RL,9805,,4347N 07936W, +,CA,WDS,Woodstock,Woodstock,NB,-23-----,RQ,9501,,4609N 06734W, +,CA,WEL,Welland,Welland,ON,1-------,AS,9905,,4260N 07915W, +,CA,WEP,Welshpool,Welshpool,NB,1-------,AS,0001,,4453N 06657W, +,CA,WET,Wetaskiwin,Wetaskiwin,AB,--3-----,RQ,9501,,5258N 11322W, +,CA,WEY,Weymouth,Weymouth,NS,1-------,AS,9905,,4424N 06560W, +,CA,WHF,Whitefish,Whitefish,ON,1-------,AS,0001,,4623N 08119W, +,CA,WHI,Whitby,Whitby,ON,123-----,RL,0001,,4353N 07857W, +,CA,WIG,Wingham,Wingham,ON,1-3-----,RQ,0901,,4353N 08119W, +,CA,WIL,Willowdale,Willowdale,ON,--3-----,RQ,9501,,4346N 07925W, +,CA,WIN,Winona,Winona,ON,--3-----,RL,0001,,4312N 07939W, +,CA,WLO,West Lorne,West Lorne,ON,-23-----,RL,0001,,4236N 08136W, +,CA,WND,Windsor,Windsor,ON,1--4----,AS,9905,YQG,4219N 08302W, +,CA,WNH,Wanham,Wanham,AB,--3-----,RQ,9811,,5544N 11823W, +,CA,WNN,Wunnummin Lake,Wunnummin Lake,ON,---4----,AI,0001,,5256N 08910W, +,CA,WNP,Winnipeg,Winnipeg,MB,1--4----,AC,8103,YWG,4954N 09708W, +,CA,WOO,Woodfibre,Woodfibre,BC,1-------,AS,9905,,4940N 12315W, +,CA,WPC,Pincher Creek,Pincher Creek,AB,---4----,AI,0001,,4929N 11357W, +,CA,WSK,Woodstock,Woodstock,ON,-234----,RL,0001,XIP,4308N 08045W, +,CA,WTF,Watford,Watford,ON,--34----,RQ,9501,XWA,4257N 08153W, +,CA,WTL,Waterloo,Waterloo,ON,--3-----,RQ,9501,,4328N 08031W, +,CA,WTR,Waterdown,Waterdown,ON,--3-----,RQ,9501,,4320N 07954W, +,CA,WYN,Wynyard,Wynyard,SK,--3-----,RL,9901,,5146N 10411W, +,CA,XGR,Kangiqsualujjuaq,Kangiqsualujjuaq,QC,---4----,AI,0002,,5842N 06557W, +,CA,XKS,Kasabonika,Kasabonika,ON,---4----,AI,0002,,5338N 08841W, +,CA,XSI,South Indian Lake,South Indian Lake,MB,---4----,AI,0002,,5647N 09856W, +,CA,XTJ,Saint-Jules,Saint-Jules,QC,--3-----,RQ,1101,,4613N 07057W, +,CA,XTL,Tadoule Lake,Tadoule Lake,MB,---4----,AI,0002,,5843N 09829W, +,CA,YAC,Cat Lake,Cat Lake,ON,---4----,AI,0002,,5143N 09150W, +,CA,YAD,Moose Lake,Moose Lake,MB,---4----,AI,0002,,5342N 10019W, +,CA,YAE,Alta Lake,Alta Lake,BC,---4----,AI,0002,,5007N 12259W, +,CA,YAJ,Lyall Harbour,Lyall Harbour,BC,---4----,AI,0002,,4848N 12310W, +,CA,YAQ,Maple Bay,Maple Bay,BC,---4----,AI,0002,,4849N 12337W, +,CA,YAT,Attawapiskat,Attawapiskat,ON,---4----,AI,0002,,5255N 08226W, +,CA,YAW,Shearwater,Shearwater,NS,---4----,AI,0002,,4438N 06331W, +,CA,YAX,Angling Lake,Angling Lake,ON,---4----,AI,0002,,5351N 08932W, +,CA,YAZ,Tofino,Tofino,BC,---4----,AI,0002,,4909N 12554W, +,CA,YBE,Uranium City,Uranium City,SK,---4----,AI,0002,,5934N 10837W, +,CA,YBG,Bagotville Apt,Bagotville Apt,QC,---4----,AI,9601,,4820N 07060W, +,CA,YBH,Bull Harbour,Bull Harbour,BC,---4----,AI,0002,,5055N 12756W, +,CA,YBN,Borden,Borden,ON,---4----,AI,0002,,4416N 07956W, +,CA,YBT,Brochet,Brochet,MB,---4----,AI,0002,,5753N 10140W, +,CA,YCE,Centralia,Centralia,ON,---4----,AI,0002,,4317N 08128W, +,CA,YCG,Castlegar,Castlegar,BC,---4----,AI,0002,,4919N 11740W, +,CA,YCI,Caribou Island,Caribou Island,ON,---4----,AI,0002,,4722N 08549W, +,CA,YCK,Colville Lake,Colville Lake,NT,---4----,AI,0002,,6702N 12606W, +,CA,YCL,Charlo,Charlo,NB,---4----,AI,0002,,4760N 06618W, +,CA,YCN,Cochrane,Cochrane,ON,---4----,AI,0002,,4904N 08101W, +,CA,YCP,Co-Op Point,Co-Op Point,MB,---4----,AI,0002,,5310N 09725W, +,CA,YCQ,Chetwynd,Chetwynd,BC,---4----,AI,0002,,5542N 12138W, +,CA,YCR,Cross Lake,Cross Lake,MB,---4----,AI,0002,,5437N 09747W, +,CA,YCT,Coronation,Coronation,AB,---4----,AI,0002,,5206N 11127W, +,CA,YCV,Cartierville,Cartierville,QC,---4----,AI,0002,,4533N 07341W, +,CA,YCX,Gagetown,Gagetown,NB,---4----,AI,0002,,4546N 06610W, +,CA,YDA,Dawson City,Dawson City,YT,--34----,AI,2101,,6404N 13926W, +,CA,YDC,Drayton Valley,Drayton Valley,AB,---4----,AI,0002,,5313N 11459W, +,CA,YDJ,Hatchet Lake,Hatchet Lake,SK,---4----,AI,0002,,4434N 06344W, +,CA,YDK,Main Duck Island,Main Duck Island,ON,---4----,AI,0002,,4356N 07638W, +,CA,YDL,Dease Lake,Dease Lake,BC,---4----,AI,0002,,5826N 12960W, +,CA,YDN,Dauphin,Dauphin,MB,---4----,AI,0002,,5109N 10003W, +,CA,YDO,Dolbeau,Dolbeau,QC,---4----,AI,0002,,4853N 07214W, +,CA,YDQ,Dawson Creek,Dawson Creek,BC,---4----,AI,0002,,5546N 12014W, +,CA,YDR,Broadview,Broadview,SK,---4----,AI,0002,,5023N 10235W, +,CA,YDV,Bloodvein,Bloodvein,MB,---4----,AI,0002,,5147N 09642W, +,CA,YEL,Elliot Lake,Elliot Lake,ON,---4----,AI,0002,,4622N 08239W, +,CA,YEM,Manitowaning,Manitowaning,ON,---4----,AI,0002,,4545N 08149W, +,CA,YER,Fort Severn,Fort Severn,ON,---4----,AI,0002,,5560N 08738W, +,CA,YEV,Inuvik,Inuvik,NT,---4----,AI,0002,,6822N 13343W, +,CA,YEY,Amos,Amos,QC,---4----,AI,0002,,4834N 07807W, +,CA,YFB,Frobisher Bay Apt,Frobisher Bay Apt,NT,---4----,AI,9601,,6345N 06833W, +,CA,YFH,Fort Hope,Fort Hope,ON,---4----,AI,0002,,5133N 08754W, +,CA,YFO,Flin Flon,Flin Flon,MB,---4----,AI,0002,,5446N 10153W, +,CA,YFR,Fort Resolution,Fort Resolution,NT,---4----,AI,0002,,6110N 11340W, +,CA,YFX,Fox Harbour (St Lewis),Fox Harbour (St Lewis),NL,---4----,AI,0501,,4719N 05354W, +,CA,YGA,Gagnon,Gagnon,QC,---4----,AI,0002,,5148N 06808W, +,CA,YGB,Gillies Bay,Gillies Bay,BC,---4----,AI,0002,,4941N 12429W, +,CA,YGC,Grande Cache,Grande Cache,AB,---4----,AI,0002,,5353N 11907W, +,CA,YGH,Fort Good Hope,Fort Good Hope,NT,---4----,AI,0002,,6615N 12837W, +,CA,YGM,Gimli,Gimli,MB,---4----,AI,0002,,5038N 09659W, +,CA,YGQ,Geraldton,Geraldton,ON,---4----,AI,0002,,4943N 08657W, +,CA,YGR,Iles de la Madeleine,Iles de la Madeleine,QC,---4----,AI,0002,,4719N 06153W, +,CA,YGX,Gillam,Gillam,MB,---4----,AI,0002,,5621N 09442W, +,CA,YHB,Hudson Bay,Hudson Bay,SK,---4----,AI,0002,,5251N 10224W, +,CA,YHE,Hope,Hope,BC,---4----,AI,0002,,4923N 12126W, +,CA,YHF,Hearst,Hearst,ON,---4----,AI,0002,,4941N 08340W, +,CA,YHI,Holman,Holman,NT,---4----,AI,0002,,7044N 11746W, +,CA,YHM,Hamilton Apt,Hamilton Apt,ON,---45---,AI,9601,,4310N 07956W,IMPC +,CA,YHN,Hornepayne,Hornepayne,ON,---4----,AI,0002,,4913N 08447W, +,CA,YHR,Chevery,Chevery,QC,---4----,AI,0002,,5028N 05937W, +,CA,YHS,Sechelt,Sechelt,BC,---4----,AI,0002,,4928N 12346W, +,CA,YHY,Hay River,Hay River,NT,---4----,AI,0002,,6049N 11547W, +,CA,YHZ,Halifax Apt,Halifax Apt,NS,---45---,AI,8103,,4452N 06332W,IMPC +,CA,YIB,Atikokan,Atikokan,ON,---4----,AI,0002,,4846N 09137W, +,CA,YIF,Pakuashipi,Pakuashipi,QC,---4----,AI,0002,,5112N 05846W, +,CA,YIK,Ivujivik,Ivujivik,QC,---4----,AI,0002,,6225N 07755W, +,CA,YJF,Fort Liard,Fort Liard,NT,---4----,AI,0002,,6014N 12328W, +,CA,YKC,Collins Bay,Collins Bay,SK,---4----,AI,0002,,4415N 07637W, +,CA,YKG,Kangirsuk,Kangirsuk,QC,---4----,AI,0002,,6001N 07001W, +,CA,YKK,Kitkatla,Kitkatla,BC,---4----,AI,0002,,5348N 13023W, +,CA,YKL,Schefferville,Schefferville,QC,---4----,AI,0002,,5448N 06649W, +,CA,YKQ,Waskaganish,Waskaganish,QC,---4----,AI,0002,,5111N 07846W, +,CA,YKT,Klemtu,Klemtu,BC,1--4----,AI,2101,,5235N 12831W, +,CA,YKU,Chisasibi,Chisasibi,QC,---4----,AI,0002,,5339N 07820W, +,CA,YKX,Kirkland Lake,Kirkland Lake,ON,---4----,AI,0002,,4809N 08002W, +,CA,YKY,Kindersley,Kindersley,SK,---4----,AI,0002,,5128N 10909W, +,CA,YLA,Langara,Langara,BC,---4----,AI,0002,,5413N 13300W, +,CA,YLB,Lac Biche,Lac Biche,AB,---4----,AI,0002,,5446N 11159W, +,CA,YLC,Kimmirut/Lake Harbour,Kimmirut/Lake Harbour,NT,---4----,AI,0002,,6251N 06952W, +,CA,YLD,Chapleau,Chapleau,ON,---4----,AI,0002,,4750N 08325W, +,CA,YLH,Lansdowne House,Lansdowne House,ON,---4----,AI,0002,,5213N 08753W, +,CA,YLJ,Meadow Lake,Meadow Lake,SK,---4----,AI,0002,,5408N 10826W, +,CA,YLP,Mingan,Mingan,QC,---4----,AI,0002,,5016N 06409W, +,CA,YLQ,La Tuque,La Tuque,QC,---4----,AI,0002,,4726N 07247W, +,CA,YLS,Lebel-sur-Quevillon,Lebel-sur-Quevillon,QC,---4----,AI,0002,,4903N 07659W, +,CA,YLX,Long Point,Long Point,ON,---4----,AI,0002,,4235N 08026W, +,CA,YLY,Lytton,Lytton,BC,---4----,AI,0002,,5014N 12135W, +,CA,YMA,Mayo,Mayo,YT,---4----,AI,0002,,6336N 13554W, +,CA,YMB,Merritt,Merritt,BC,---4----,AI,0002,,5007N 12047W, +,CA,YMG,Manitouwadge,Manitouwadge,ON,---4----,AI,0002,,4907N 08550W, +,CA,YMI,Minaki,Minaki,ON,---4----,AI,0002,,4959N 09440W, +,CA,YMR,Merry Island,Merry Island,BC,---4----,AI,0002,,4928N 12355W, +,CA,YMT,Chibougamau,Chibougamau,QC,---4----,AI,0002,,4955N 07422W, +,CA,YMW,Maniwaki,Maniwaki,QC,---4----,AI,0002,,4623N 07559W, +,CA,YNA,Natashquan,Natashquan,QC,---4----,AI,0002,,5011N 06149W, +,CA,YNC,Wemindji,Wemindji,QC,---4----,AI,0002,,5301N 07845W, +,CA,YNE,Norway House,Norway House,MB,---4----,AI,0002,,5358N 09750W, +,CA,YNH,Hudson Hope,Hudson Hope,BC,---4----,AI,0002,,5602N 12155W, +,CA,YNI,Nitchequon,Nitchequon,QC,---4----,AI,0002,,5312N 07054W, +,CA,YNM,Matagami,Matagami,QC,---4----,AI,0002,,4945N 07738W, +,CA,YNO,North Spirit Lake,North Spirit Lake,ON,---4----,AI,0002,,5230N 09301W, +,CA,YNR,Arnes,Arnes,MB,---4----,AI,0002,,5048N 09660W, +,CA,YOC,Old Crow,Old Crow,YT,---4----,AI,0002,,6734N 13950W, +,CA,YOD,Cold Lake,Cold Lake,AB,---4----,AI,0002,,5428N 11012W, +,CA,YOE,Falher,Falher,AB,---4----,AI,0002,,5544N 11712W, +,CA,YOG,Ogoki,Ogoki,ON,---4----,AI,0002,,5138N 08555W, +,CA,YOH,Oxford House,Oxford House,MB,---4----,AI,0002,,5457N 09516W, +,CA,YOJ,High Level,High Level,AB,---4----,AI,0002,,5831N 11708W, +,CA,YOY,Valcartier,Valcartier,QC,---4----,AI,0002,,4656N 07128W, +,CA,YPC,Paulatuk,Paulatuk,NT,---4----,AI,0002,,6921N 12404W, +,CA,YPE,Peace River,Peace River,AB,---4----,AI,0002,,5614N 11717W, +,CA,YPH,Inukjuak,Inukjuak,QC,---4----,AI,0002,,5827N 07807W, +,CA,YPJ,Aupauluk,Aupauluk,QC,---4----,AI,0002,,5918N 06936W, +,CA,YPL,Pickle Lake,Pickle Lake,ON,---4----,AI,0002,,5128N 09012W, +,CA,YPM,Pikangikum,Pikangikum,ON,---4----,AI,0002,,5148N 09360W, +,CA,YPO,Peawanuck,Peawanuck,ON,---4----,AI,0002,,5501N 08525W, +,CA,YPP,Pine Point,Pine Point,NT,---4----,AI,0002,,6050N 11428W, +,CA,YPY,Fort Chipewyan,Fort Chipewyan,AB,---4----,AI,0002,,5843N 11109W, +,CA,YPZ,Burns Lake,Burns Lake,BC,---4----,AI,0002,,5414N 12546W, +,CA,YQA,Muskoka,Muskoka,ON,---4----,AI,0002,,4509N 07921W, +,CA,YQB,Quebec Apt,Quebec Apt,QC,---45---,AI,9601,,4648N 07123W,IMPC +,CA,YQD,The Pas,The Pas,MB,---4----,AI,0002,,5349N 10114W, +,CA,YQE,Kimberley,Kimberley,BC,---4----,AI,0002,,4941N 11559W, +,CA,YQK,Kenora,Kenora,ON,---4----,AI,0002,,4946N 09429W, +,CA,YQN,Nakina,Nakina,ON,---4----,AI,0002,,5011N 08643W, +,CA,YQR,Regina Apt,Regina Apt,SK,---45---,AI,9601,,5026N 10440W,IMPC +,CA,YQU,Grande Prairie,Grande Prairie,AB,---4----,AI,0002,,5510N 11848W, +,CA,YQV,Yorkton,Yorkton,SK,---4----,AI,0002,,5113N 10228W, +,CA,YQW,North Battleford,North Battleford,SK,---4----,AI,0002,,5247N 10818W, +,CA,YRH,Yarmouth,Yarmouth,NS,1--4----,AS,9905,YQI,4350N 06607W, +,CA,YRJ,Roberval,Roberval,QC,---4----,AI,0002,,4831N 07213W, +,CA,YRM,Rocky Mountain House,Rocky Mountain House,AB,---4----,AI,0002,,5223N 11455W, +,CA,YRN,Rivers Inlet,Rivers Inlet,BC,---4----,AI,0002,,5141N 12714W, +,CA,YRR,Stuart Island,Stuart Island,BC,---4----,AI,0002,,5023N 12507W, +,CA,YRV,Revelstoke,Revelstoke,BC,---4----,AI,0002,,5060N 11812W, +,CA,YSA,Sable Island,Sable Island,NS,---4----,AI,0002,,4359N 05945W, +,CA,YSD,Suffield,Suffield,AB,---4----,AI,0002,,5013N 11110W, +,CA,YSF,Stony Rapids,Stony Rapids,SK,---4----,AI,0002,,5915N 10550W, +,CA,YSI,Sans Souci,Sans Souci,ON,---4----,AI,0002,,4510N 08008W, +,CA,YSL,Saint-L�onard,Saint-Leonard,NB,---4----,AI,1101,,4710N 06755W, +,CA,YSN,Salmon Arm,Salmon Arm,BC,---4----,AI,0002,,5042N 11917W, +,CA,YSQ,Spring Island,Spring Island,BC,---4----,AI,0002,,5114N 05550W, +,CA,YSS,Slate Island,Slate Island,ON,---4----,AI,0002,,4938N 09429W, +,CA,YSW,Salluit,Salluit,QC,---4----,AI,0002,,6212N 07538W, +,CA,YSX,Shearwater,Shearwater,BC,---4----,AI,0002,,5209N 12805W, +,CA,YSY,Sachs Harbour,Sachs Harbour,NT,---4----,AI,0002,,7159N 12515W, +,CA,YSZ,Squirrel Cove,Squirrel Cove,BC,---4----,AI,0002,,5007N 12455W, +,CA,YTB,Hartley Bay,Hartley Bay,BC,---4----,AI,0002,,5326N 12915W, +,CA,YTD,Thicket Portage,Thicket Portage,MB,---4----,AI,0002,,5519N 09741W, +,CA,YTF,Alma,Alma,QC,---4----,AI,0002,,4833N 07139W, +,CA,YTG,Sullivan Bay,Sullivan Bay,BC,---4----,AI,0002,,5053N 12650W, +,CA,YTH,Thompson,Thompson,MB,---4----,AI,0002,,5545N 09752W, +,CA,YTI,Triple Island,Triple Island,BC,---4----,AI,0002,,5416N 13050W, +,CA,YTJ,Terrace Bay,Terrace Bay,ON,---4----,AI,0002,,4847N 08706W, +,CA,YTO,Metropolitan Area Apt/Toronto,Metropolitan Area Apt/Toronto,ON,---45---,AI,1101,,4341N 07938W, +,CA,YTS,Timmins,Timmins,ON,--34----,AI,1307,,4829N 08120W, +,CA,YTT,Tisdale,Tisdale,SK,---4----,AI,0002,,5251N 10403W, +,CA,YTX,Telegraph Creek,Telegraph Creek,BC,---4----,AI,0002,,5754N 13109W, +,CA,YUF,Pelly Bay,Pelly Bay,NT,---4----,AI,0002,,6832N 08949W, +,CA,YUL,Montreal-Dorval Apt,Montreal-Dorval Apt,QC,---4----,AC,8103,,4528N 07344W, +,CA,YVB,Bonaventure,Bonaventure,QC,---4----,AI,0002,,4803N 06530W, +,CA,YVC,La Ronge,La Ronge,SK,---4----,AI,0002,,5506N 10517W, +,CA,YVG,Vermilion,Vermilion,AB,---4----,AI,0002,,5321N 11051W, +,CA,YVQ,Norman Wells,Norman Wells,NT,---4----,AI,0002,,6517N 12650W, +,CA,YVR,Vancouver Apt,Vancouver Apt,BC,---45---,AI,9601,,4908N 12303W,IMPC +,CA,YVT,Buffalo Narrows,Buffalo Narrows,SK,---4----,AI,0002,,5552N 10829W, +,CA,YVV,Wiarton,Wiarton,ON,---4----,AI,0002,,4445N 08108W, +,CA,YVZ,Deer Lake,Deer Lake,ON,---4----,AI,0002,,5238N 09404W, +,CA,YWA,Petawawa,Petawawa,ON,---4----,AI,0002,,4554N 07717W, +,CA,YWB,Kangiqsujuaq,Kangiqsujuaq,QC,---4----,AI,0002,,6136N 07157W, +,CA,YWG,Winnipeg Apt,Winnipeg Apt,MB,---45---,AI,9601,,4955N 09714W,IMPC +,CA,YWL,Williams Lake,Williams Lake,BC,---4----,AI,0002,,5208N 12208W, +,CA,YWN,Winisk,Winisk,ON,---4----,AI,0002,,5417N 08715W, +,CA,YWP,Webequie,Webequie,ON,---4----,AI,0002,,5259N 08723W, +,CA,YWR,White River,White River,ON,--34----,AI,2101,,4836N 08517W, +,CA,YWS,Whistler,Whistler,BC,---4----,AI,0002,,5007N 12257W, +,CA,YWY,Wrigley,Wrigley,NT,---4----,AI,0002,,6312N 12324W, +,CA,YXC,Cranbrook,Cranbrook,BC,---4----,AI,0002,,4931N 11546W, +,CA,YXI,Killaloe,Killaloe,ON,---4----,AI,0002,,4533N 07725W, +,CA,YXL,Sioux Lookout,Sioux Lookout,ON,---4----,AI,0002,,5007N 09212W, +,CA,YXR,Earlton,Earlton,ON,---4----,AI,0002,,4743N 07949W, +,CA,YXT,Terrace,Terrace,BC,---4----,AI,0002,,5431N 12836W, +,CA,YXY,Whitehorse,Whitehorse,YT,---4----,AI,0002,,6043N 13503W, +,CA,YXZ,Wawa,Wawa,ON,---4----,AI,0002,,4760N 08446W, +,CA,YYC,Calgary Apt,Calgary Apt,AB,---45---,AI,9601,,5107N 11401W,IMPC +,CA,YYD,Smithers,Smithers,BC,---4----,AI,0002,,5447N 12711W, +,CA,YYI,Rivers,Rivers,MB,---4----,AI,0002,,5002N 10014W, +,CA,YYL,Lynn Lake,Lynn Lake,MB,---4----,AI,0002,,5651N 10103W, +,CA,YYM,Cowley,Cowley,AB,---4----,AI,0002,,4934N 11404W, +,CA,YYN,Swift Current,Swift Current,SK,---4----,AI,0002,,5017N 10748W, +,CA,YYU,Kapuskasing,Kapuskasing,ON,---4----,AI,0002,,4925N 08226W, +,CA,YYY,Mont Joli,Mont Joli,QC,---4----,AI,0002,,4835N 06811W, +,CA,YZA,Ashcroft,Ashcroft,BC,---4----,AI,0002,,5043N 12117W, +,CA,YZE,Gore Bay,Gore Bay,ON,---4----,AI,0002,,4555N 08228W, +,CA,YZF,Yellowknife,Yellowknife,NT,---4----,AI,0002,,6227N 11423W, +,CA,YZH,Slave Lake,Slave Lake,AB,---4----,AI,0002,,5517N 11446W, +,CA,YZW,Teslin,Teslin,YT,---4----,AI,0002,,6010N 13243W, +,CA,YZX,Greenwood,Greenwood,NS,---4----,AI,0002,,4458N 06457W, +,CA,ZAC,York Landing,York Landing,MB,---4----,AI,0002,,5605N 09606W, +,CA,ZBM,Bromont,Bromont,QC,---4----,AI,0002,,4519N 07239W, +,CA,ZEB,Zeballos,Zeballos,BC,1-------,RL,0001,,4959N 12651W, +,CA,ZFA,Faro,Faro,YT,---4----,AI,0002,,6214N 13321W, +,CA,ZFD,Fond du Lac,Fond du Lac,SK,---4----,AI,0002,,5920N 10711W, +,CA,ZFN,Tulita/Fort Norman,Tulita/Fort Norman,NT,---4----,AI,0002,,6454N 12534W, +,CA,ZFW,Fairview,Fairview,AB,---4----,AI,0002,,5604N 11824W, +,CA,ZGF,Grand Forks,Grand Forks,BC,---4----,AI,0002,,4902N 11826W, +,CA,ZGR,Little Grand Rapids,Little Grand Rapids,MB,---4----,AI,0002,,5201N 09527W, +,CA,ZHP,High Prairie,High Prairie,AB,---4----,AI,0002,,5526N 11629W, +,CA,ZJG,Jenpeg,Jenpeg,MB,---4----,AI,0002,,5432N 09802W, +,CA,ZJN,Swan River,Swan River,MB,---4----,AI,0002,,5206N 10116W, +,CA,ZKG,Kegaska,Kegaska,QC,---4----,AI,0002,,5011N 06116W, +,CA,ZNU,Namu,Namu,BC,---4----,AI,0002,,5152N 12752W, +,CA,ZPB,Sachigo Lake,Sachigo Lake,ON,---4----,AI,0002,,5352N 09211W, +,CA,ZRJ,Round Lake,Round Lake,ON,---4----,AI,0002,,4430N 06501W, +,CA,ZSJ,Sandy Lake,Sandy Lake,ON,---4----,AI,0002,,5304N 09319W, +,CA,ZSP,Saint-Paul,Saint-Paul,QC,---4----,AI,1101,,4559N 07327W, +,CA,ZTM,Shamattawa,Shamattawa,MB,---4----,AI,0002,,5552N 09205W, +,CA,ZUC,Ignace,Ignace,ON,---4----,AI,0002,,4925N 09141W, +,CA,ZWL,Wollaston Lake,Wollaston Lake,SK,---4----,AI,0002,,5807N 10310W, +,CD,BAN,Basongo,Basongo,,---4----,AI,9912,,0420S 02022E, +,CD,BDT,Gbadolite,Gbadolite,,---4----,AI,9912,,0417N 02060E, +,CD,BDV,Moba,Moba,,---4----,AI,9912,,0703S 02946E, +,CD,BKY,Bukavu,Bukavu,,---4----,AI,9501,,0230S 02852E, +,CD,BMB,Bumba,Bumba,,---4----,AI,9501,,0211N 02228E, +,CD,BNB,Boende,Boende,,---4----,AI,9912,,0017S 02053E, +,CD,BNC,Beni,Beni,,---4----,AI,9912,,0029N 02911E, +,CD,BOA,Boma,Boma,,1--4----,AI,9501,,0551S 01303E, +,CD,BSU,Basankusu,Basankusu,,---4----,AI,9501,,0113N 01948E, +,CD,BUX,Bunia,Bunia,,---4----,AI,9501,,0134N 03015E, +,CD,BZU,Buta,Buta,,---4----,AI,9912,,0248N 02444E, +,CD,FBM,Lubumbashi,Lubumbashi,,-2-45---,AI,9501,,1140S 02729E, +,CD,FDU,Bandundu,Bandundu,,---4----,AI,9501,,0319S 01723E, +,CD,FIH,Kinshasa,Kinshasa,,1--45---,AI,9501,,0419S 01519E, +,CD,FKI,Kisangani,Kisangani,,---4----,AI,9501,,0031N 02512E, +,CD,FMI,Kalemie,Kalemie,,---4----,AI,9501,,0557S 02912E, +,CD,GDJ,Gandajika,Gandajika,,---4----,AI,9912,,0644S 02357E, +,CD,GMA,Gemena,Gemena,,---4----,AI,9501,,0315N 01947E, +,CD,GOM,Goma,Goma,,---4----,AI,9501,,0140S 02914E, +,CD,IDF,Idiofa,Idiofa,,---4----,AI,9912,,0458S 01935E, +,CD,IKL,Ikela,Ikela,,---4----,AI,9501,,0007N 02206E, +,CD,INO,Inongo,Inongo,,---4----,AI,9501,,0156S 01817E, +,CD,IRP,Isiro,Isiro,,---4----,AI,9501,,0246N 02737E, +,CD,KAP,Kapanga,Kapanga,,---4----,AI,9912,,1138S 02733E, +,CD,KBN,Kabinda,Kabinda,,---4----,AI,9912,,0608S 02429E, +,CD,KBO,Kabalo,Kabalo,,---4----,AI,9912,,0603S 02655E, +,CD,KEC,Kasenga,Kasenga,,---4----,AI,9912,,1139S 02733E, +,CD,KGA,Kananga,Kananga,,---4----,AI,9501,,0554S 02225E, +,CD,KIL,Kilwa,Kilwa,,---4----,AI,9912,,1140S 02728E, +,CD,KKW,Kikwit,Kikwit,,---4----,AI,9501,,0502S 01849E, +,CD,KLI,Kota Koli,Kota Koli,,---4----,AI,9912,,0409N 02139E, +,CD,KLY,Kalima,Kalima,,---4----,AI,9912,,0234S 02637E, +,CD,KMN,Kamina,Kamina,,---4----,AI,9501,,0844S 02500E, +,CD,KND,Kindu,Kindu,,---4----,AI,9912,,0257S 02555E, +,CD,KNM,Kaniama,Kaniama,,---4----,AI,9912,,0731S 02410E, +,CD,KOO,Kongolo,Kongolo,,---4----,AI,9501,,0422S 02906E, +,CD,KRZ,Kiri,Kiri,,---4----,AI,9912,,0019N 02918E, +,CD,KWZ,Kolwezi,Kolwezi,,---4----,AI,9912,,1043S 02528E, +,CD,LBO,Lusambo,Lusambo,,---4----,AI,9912,,0607S 02337E, +,CD,LIE,Libenge,Libenge,,---4----,AI,9501,,0339N 01838E, +,CD,LIQ,Lisala,Lisala,,---4----,AI,9501,,0209N 02131E, +,CD,LJA,Lodja,Lodja,,---4----,AI,9501,,0331S 02336E, +,CD,LUS,Lusanga,Lusanga,,---4----,AI,9912,,0450S 01844E, +,CD,LZA,Luiza,Luiza,,---4----,AI,9912,,0712S 02224E, +,CD,LZI,Luozi,Luozi,,---4----,AI,9912,,0457S 01408E, +,CD,MAT,Matadi,Matadi,,1--4----,AI,9501,,0550S 01328E, +,CD,MDK,Mbandaka,Mbandaka,,---4----,AI,9501,,0003N 01815E, +,CD,MEW,Mweka,Mweka,,---4----,AI,9912,,0451S 02134E, +,CD,MNB,Moanda,Moanda,,---4----,AI,9501,,0556S 01223E, +,CD,MNO,Manono,Manono,,---4----,AI,9501,,0718S 02724E, +,CD,NIO,Nioki,Nioki,,---4----,AI,9501,,0243S 01741E, +,CD,NKL,Nkolo,Nkolo,,---4----,AI,9912,,0129S 01650E, +,CD,NLO,N'dolo,N'dolo,,---4----,AI,9912,,0419S 01520E, +,CD,PFR,Ilebo,Ilebo,,---4----,AI,9912,,0420S 02035E, +,CD,PUN,Punia,Punia,,---4----,AI,9912,,0128S 02626E, +,CD,PWO,Pweto,Pweto,,---4----,AI,9912,,0828S 02854E, +,CD,TSH,Tshikapa,Tshikapa,,---4----,AI,9501,,0625S 02047E, +,CD,UVI,Uvira,Uvira,,----5---,AI,9805,,0324S 02908E, +,CD,YAN,Yangambi,Yangambi,,---4----,AI,9912,,0046N 02428E, +,CF,AIG,Yalinga,Yalinga,,---4----,AI,9912,,0631N 02315E, +,CF,ALI,Alindao,Alindao,,----5---,AI,9808,,0503N 02113E, +,CF,BAB,Baboua,Baboua,,----5---,AI,9808,,0548N 01450E, +,CF,BAO,Baoro,Baoro,,----5---,AI,9808,,0542N 01557E, +,CF,BBY,Bambari,Bambari,,---45---,AI,9808,,0546N 02041E, +,CF,BCF,Bouca,Bouca,,---4----,AI,9912,,0631N 01817E, +,CF,BGF,Bangui,Bangui,,---45---,AI,9601,,0422N 01835E, +,CF,BGU,Bangassou,Bangassou,,---4----,AI,9601,,0445N 02249E, +,CF,BIV,Bria,Bria,,---45---,AI,9808,,0632N 02159E, +,CF,BMF,Bakouma,Bakouma,,---4----,AI,9912,,0542N 02247E, +,CF,BOD,Boda,Boda,,----5---,AI,9808,,0419N 01728E, +,CF,BOP,Bouar,Bouar,,---45---,AI,9601,,0556N 01536E, +,CF,BOZ,Bozoum,Bozoum,,---45---,AI,9808,,0619N 01623E, +,CF,BSN,Bossangoa,Bossangoa,,--345---,AI,9808,,0630N 01727E, +,CF,BTG,Batangafo,Batangafo,,---45---,AI,9808,,0718N 01817E, +,CF,CRF,Carnot,Carnot,,---45---,AI,9808,,0457N 01552E, +,CF,DEK,Dekoa,Dekoa,,----5---,AI,9808,,0619N 01905E, +,CF,GDA,Gounda,Gounda,,---4----,AI,9912,,0459N 02125E, +,CF,GDI,Gordil,Gordil,,---4----,AI,9912,,0937N 02141E, +,CF,GRI,Grimari,Grimari,,----5---,AI,9808,,0544N 02003E, +,CF,IMO,Zemio,Zemio,,---4----,AI,9912,,0501N 02508E, +,CF,IRO,Birao,Birao,,---45---,AI,9601,,1018N 02247E, +,CF,KAB,Kaga Bandoro,Kaga Bandoro,,----5---,AI,9808,,0660N 01911E, +,CF,KEM,Kemb�,Kembe,,----5---,AI,9808,,0437N 02153E, +,CF,KOL,Koumala,Koumala,,---4----,AI,9912,,0830N 02115E, +,CF,MOB,Mobaye,Mobaye,,----5---,AI,9808,,0420N 02111E, +,CF,MON,Mongoumba,Mongoumba,,----5---,AI,9808,,0338N 01836E, +,CF,NDL,Nd�l�,Ndele,,---45---,AI,9808,,0825N 02039E, +,CF,NOL,Nola,Nola,,----5---,AI,9808,,0331N 01603E, +,CF,OBO,Obo,Obo,,----5---,AI,9808,,0524N 02630E, +,CF,ODA,Ouadda,Ouadda,,---4----,AI,9912,,0804N 02224E, +,CF,PAO,Paoua,Paoua,,----5---,AI,9808,,0714N 01626E, +,CF,RFA,Rafai,Rafai,,---4----,AI,9912,,0458N 02356E, +,CF,SIB,Sibut,Sibut,,----5---,AI,9808,,0544N 01905E, +,CG,ANJ,Zanaga,Zanaga,,---4----,AI,9912,,0251S 01349E, +,CG,BOE,Boundji,Boundji,,---4----,AI,9912,,0102S 01521E, +,CG,BTB,Betou,Betou,,---4----,AI,9912,,0326N 01836E, +,CG,BZV,Brazzaville,Brazzaville,,---45---,AI,9601,,0416S 01516E, +,CG,DIS,Loubomo,Loubomo,,---4----,AI,9601,,0412S 01241E, +,CG,DJE,Djeno Terminal,Djeno Terminal,,1-------,RQ,9506,,0455S 01156E, +,CG,DJM,Djambala,Djambala,,---4----,AI,9601,,0232S 01445E, +,CG,EWO,Ewo,Ewo,,---4----,AI,9601,,0052S 01449E, +,CG,GMM,Gamboma,Gamboma,,---4----,AI,9601,,0152S 01553E, +,CG,ION,Impfondo,Impfondo,,---4----,AI,9601,,0137N 01804E, +,CG,KMK,Makabana,Makabana,,-2-4----,AI,9601,,0329S 01236E, +,CG,KNJ,Kindamba,Kindamba,,---4----,AI,9912,,0344S 01431E, +,CG,LKC,Lekana,Lekana,,---4----,AI,9912,,0145S 01455E, +,CG,MKJ,Makoua,Makoua,,---4----,AI,9601,,0000S 01537E, +,CG,MSX,Mossendjo,Mossendjo,,---4----,AI,9912,,0257S 01243E, +,CG,MUY,Mouyondzi,Mouyondzi,,---4----,AI,9912,,0360S 01355E, +,CG,NKY,Nkayi,Nkayi,,---4----,AI,9601,,0411S 01317E, +,CG,OKG,Okoyo,Okoyo,,---4----,AI,9912,,0128S 01504E, +,CG,OUE,Ouesso,Ouesso,,1--4----,AI,9601,,0137N 01603E, +,CH,AAR,Aarau,Aarau,AG,--3-----,RQ,9705,ZDA,4724N 00803E, +,CH,ARB,Altdorf,Altdorf,,--3-----,RQ,9501,,4653N 00838E,SH? UR? +,CH,ATT,Pratteln,Pratteln,BL,--3-----,RQ,9008,,4731N 00742E, +,CH,BAL,Balgach,Balgach,SG,--3-----,RQ,9806,,4724N 00936E, +,CH,BAR,Baar,Baar,ZG,--3-----,RQ,9705,,4712N 00832E, +,CH,BBL,Bremblens,Bremblens,VD,--3-----,RQ,9705,,4633N 00631E, +,CH,BEH,Hilterfingen,Hilterfingen,BE,--3-----,RQ,0901,,4644N 00740E, +,CH,BGF,Burgdorf,Burgdorf,BE,--3-----,RL,0001,ZDP,4703N 00737E, +,CH,BGN,Bargen,Bargen,SH,--3----B,RL,0501,,4748N 00837E, +,CH,BGZ,Breganzona,Breganzona,TI,--3-----,RL,0501,,4600N 00856E, +,CH,BIA,Biasca,Biasca,TI,--3-----,RQ,9501,,4622N 00858E, +,CH,BIE,Biel,Biel,BE,-23-----,RQ,9004,,4708N 00715E, +,CH,BLE,Bleienbach,Bleienbach,BE,0-------,RQ,9307,,4711N 00745E, +,CH,BLN,B�chslen,Buchslen,FR,--3-----,RL,9806,,4657N 00711E, +,CH,BNX,Bernex,Bernex,GE,--3-----,RL,0101,,4610N 00604E, +,CH,BOV,Boveresse,Boveresse,NE,--3--6--,RL,0501,,4655N 00636E, +,CH,BRN,Bern,Bern,BE,-234----,AI,9601,,4657N 00727E, +,CH,BSL,Basel,Basel,BS,12345---,RL,8103,,4733N 00735E, +,CH,BUB,Bubendorf,Bubendorf,BL,--3-----,RQ,9501,,4727N 00744E, +,CH,BUL,Bulle,Bulle,FR,--3-----,RL,9811,,4637N 00703E, +,CH,CAD,Cadenazzo,Cadenazzo,TI,--3-----,RQ,9501,,4609N 00857E, +,CH,CGM,Corg�mont,Corgemont,BE,--3-----,RL,1107,,4712N 00709E, +,CH,CHI,Chiasso,Chiasso,TI,-23-5---,RQ,9506,,4550N 00902E, +,CH,CHR,Chur,Chur,GR,--3-----,RL,0001,ZDT,4651N 00932E, +,CH,COI,Cointrin,Cointrin,GE,--34----,RL,0907,,4614N 00606E, +,CH,CRI,Crissier,Crissier,VD,--3-----,RQ,9307,,4633N 00635E, +,CH,CRT,Cortaillod,Cortaillod,NE,--3-----,RQ,9705,,4657N 00651E, +,CH,CSM,Chezard-St-Martin,Chezard-St-Martin,NE,--3-----,RQ,0901,,4704N 00655E, +,CH,CUG,Cugy,Cugy,VD,--3-----,RL,9901,,4635N 00638E, +,CH,DGS,Degersheim,Degersheim,SG,--3-----,RQ,9705,,4722N 00912E, +,CH,DIE,Dietikon,Dietikon,ZH,--3-----,RL,0002,ZDX,4724N 00824E, +,CH,DIG,D�dingen,Dudingen,FR,--3-----,RQ,9705,,4651N 00711E, +,CH,DIN,Dulliken,Dulliken,SO,--3-----,RL,0101,,4721N 00757E, +,CH,DLS,Daillens,Daillens,VD,--3-----,RL,0601,,4637N 00633E, +,CH,DMT,Domat,Domat,GR,-23-----,RQ,9705,,4650N 00927E, +,CH,DON,D�llikon,Dallikon,ZH,--3-----,RL,0101,,4726N 00826E, +,CH,EBH,Embrach,Embrach,ZH,--3-----,RL,0101,,4730N 00836E, +,CH,ECH,Echandens,Echandens,VD,--3-----,RL,0401,,4632N 00632E, +,CH,EIN,Ebikon,Ebikon,LU,--3-----,RL,9811,,4705N 00820E, +,CH,EKO,Eschlikon,Eschlikon,ZH,--3-----,RQ,9705,,4734N 00845E, +,CH,FAH,Flaach,Flaach,ZH,--3-----,RQ,9806,,4735N 00836E, +,CH,FBH,Freienbach,Freienbach,SZ,--3-----,RL,0101,,4712N 00846E, +,CH,FCH,Forch,Forch,ZH,-23-----,RQ,9705,,4720N 00839E, +,CH,FEY,Fey,Fey,VD,--3-----,RL,0501,,4641N 00641E, +,CH,FKD,Frenkendorf,Frenkendorf,BL,-2------,RQ,8909,,4730N 00743E, +,CH,FLU,Flums,Flums,SG,--3-----,RL,9803,,4706N 00921E, +,CH,FRB,Fribourg,Fribourg,FR,--3-----,RQ,9705,,4648N 00710E, +,CH,FRN,Frauenfeld,Frauenfeld,TG,--3-----,RQ,9705,,4733N 00854E, +,CH,FTN,Frutigen,Frutigen,BE,-23-----,RQ,9806,,4635N 00739E, +,CH,FWG,Fahrwangen,Fahrwangen,AG,--3-----,RL,9805,,4718N 00814E, +,CH,GAN,Gansingen,Gansingen,AG,--3-----,RL,0501,,4733N 00808E, +,CH,GBS,Giubiasco,Giubiasco,TI,--3-----,RQ,9705,,4610N 00901E, +,CH,GDW,Geroldswil,Geroldswil,ZH,--3-----,RL,9805,,4725N 00825E, +,CH,GEB,Gebenstorf,Gebenstorf,AG,--3-----,RL,1107,,4729N 00814E, +,CH,GES,Salgesch,Salgesch,,--3-----,RL,1107,,4619N 00734E, +,CH,GFG,Gerlafingen,Gerlafingen,SO,--3-----,RQ,9705,,4710N 00735E, +,CH,GFN,Glattfelden,Glattfelden,ZH,--3-----,RL,0101,,4734N 00830E, +,CH,GFR,Grafenried,Grafenried,BE,--3-----,RQ,9705,,4705N 00731E, +,CH,GKR,Gelterkinden,Gelterkinden,BL,-23-----,RL,9805,,4728N 00751E, +,CH,GPM,Granges-pr�s-Marnand,Granges-pres-Marnand,VD,--3-----,RL,0501,,4646N 00653E, +,CH,GSR,Genestrerio,Genestrerio,TI,--3-----,RQ,9704,,4551N 00858E, +,CH,GUE,G�mligen,Gumligen,BE,--3-----,RL,1107,,4656N 00731E, +,CH,GVA,Gen�ve,Geneve,GE,-2345---,AI,9601,,4612N 00609E, +,CH,HAU,Hausen bei Brugg,Hausen bei Brugg,AG,--3-----,RL,0201,,4728N 00813E, +,CH,HOR,Horn,Horn,TG,--3-----,RL,1107,,4730N 00928E, +,CH,ILL,Illnau-Effretikon,Illnau-Effretikon,ZH,--3-----,RL,1107,,4726N 00843E, +,CH,JJO,Melide,Melide,,1----6--,RL,1107,,4557N 00857E, +,CH,KLR,Kirchleerau,Kirchleerau,AG,--3-----,RQ,9704,,4717N 00804E, +,CH,KRZ,Kreuzlingen,Kreuzlingen,TG,1-------,RQ,9705,,4739N 00910E, +,CH,KSS,Kussnacht,Kussnacht,SZ,1-------,RQ,0901,,4705N 00826E, +,CH,LAU,Lausanne,Lausanne,VD,-23-5---,RQ,9307,,4631N 00638E, +,CH,LBG,Lenzburg,Lenzburg,AG,-23-----,RQ,9705,,4723N 00811E, +,CH,LBR,Brislach,Brislach,BL,--3-----,RQ,0901,,4725N 00733E, +,CH,LCR,La Croix-de-Rozon,La Croix-de-Rozon,GE,--3----B,RL,0501,,4609N 00608E, +,CH,LEN,Koblenz,Koblenz,AG,--3-----,RQ,9008,,4737N 00814E, +,CH,LOE,Lamone,Lamone,TI,--3-----,RL,0101,,4603N 00856E, +,CH,LON,Locarno,Locarno,TI,--3-----,RL,9805,,4610N 00848E, +,CH,LUG,Lugano,Lugano,TI,-234----,AI,9506,,4600N 00857E, +,CH,LYS,Lyss,Lyss,BE,--3-----,RQ,9501,,4704N 00718E, +,CH,MDL,Madetswil,Madetswil,ZH,--3-----,RL,0501,,4725N 00848E, +,CH,MET,Mettmenstetten,Mettmenstetten,ZH,--3-----,RQ,9501,,4715N 00828E, +,CH,MEZ,Mezzovico,Mezzovico,TI,0-------,RQ,9307,,4605N 00855E, +,CH,MGY,Martigny,Martigny,VS,--3-----,RL,9805,,4606N 00704E, +,CH,MON,Monthey,Monthey,VS,--3-----,RQ,9501,,4615N 00657E, +,CH,MOS,Morges,Morges,VD,--3-----,RL,9811,CJQ,4631N 00630E, +,CH,MTR,Moutier,Moutier,BE,--3-----,RQ,9705,,4717N 00722E, +,CH,MUT,Muttenz,Muttenz,BL,--3-----,RQ,9501,,4732N 00739E, +,CH,MUZ,Muzzano,Muzzano,TI,--3-----,RL,0901,,4560N 00855E, +,CH,NBK,Nebikon,Nebikon,LU,--3-----,RL,9805,,4711N 00758E, +,CH,NEU,Neuendorf,Neuendorf,SO,--3-----,RQ,9501,,4718N 00748E, +,CH,NKN,N�nikon,Nanikon,ZH,--3-----,RL,0101,,4722N 00842E, +,CH,NLZ,Niederlenz,Niederlenz,AG,--3-----,RQ,9705,,4724N 00811E, +,CH,NOT,Nottwil,Nottwil,LU,-23-----,RL,0901,,4708N 00808E, +,CH,NTT,Niederglatt,Niederglatt,,0-------,RQ,9012,,4730N 00830E,SG? ZH? +,CH,NUN,Niederurnen,Niederurnen,GL,--3-----,RQ,9806,,4708N 00903E, +,CH,NWG,Niederweningen,Niederweningen,ZH,--3-----,RQ,9705,,4730N 00823E, +,CH,OBE,Oberuzwil,Oberuzwil,SG,0-------,RQ,9307,,4726N 00907E, +,CH,OFG,Otelfingen,Otelfingen,ZH,--3-----,RL,0901,,4728N 00823E, +,CH,OGI,Ober�geri,Oberageri,ZG,--3-----,RQ,9806,,4708N 00837E, +,CH,OHI,Oberhasli,Oberhasli,BE,--3-----,RL,0901,,4728N 00830E, +,CH,OLT,Olten,Olten,SO,--3-----,RQ,8607,,4721N 00754E, +,CH,ORN,Oberrieden,Oberrieden,ZH,--3-----,RL,0003,,4717N 00835E, +,CH,PLY,Pully,Pully,VD,--3-----,RL,0101,,4631N 00640E, +,CH,QGL,Sankt Gallen,Sankt Gallen,SG,--34----,RQ,1101,,4726N 00923E, +,CH,RAM,Ramsen,Ramsen,SH,--3-----,RQ,9008,,4742N 00849E, +,CH,RBG,Reichenburg,Reichenburg,SZ,--3-----,RL,9805,,4710N 00859E, +,CH,RCT,Rancate,Rancate,TI,--3-----,RQ,9705,,4552N 00858E, +,CH,RFD,Rheinfelden,Rheinfelden,AG,-23-----,RQ,9705,,4733N 00748E, +,CH,RFZ,Rafz,Rafz,ZH,-23-----,RQ,9705,,4737N 00832E, +,CH,RGF,Regensdorf,Regensdorf,ZH,-23-----,RQ,9705,,4726N 00828E, +,CH,RGG,Br�gg,Brugg,BE,--3-----,RL,1107,,4708N 00717E, +,CH,RHW,Renens,Renens,VD,--3-----,RL,9805,,4632N 00636E, +,CH,RMF,Remaufens,Remaufens,FR,--3-----,RL,0501,,4632N 00653E, +,CH,ROM,Romont,Romont,FR,--3-----,RQ,9501,,4642N 00655E, +,CH,RTH,R�thi,Ruthi,SG,--3-----,RL,1107,,4718N 00932E, +,CH,RTI,R�ti,Ruti,,--3-----,RQ,9705,,4715N 00851E,BE? GL? +,CH,RUE,R�egsauschachen,Ruegsauschachen,BE,--3-----,RL,0501,,4701N 00740E, +,CH,RUI,R�ti,Ruti,ZH,--3-----,RL,9811,,4715N 00851E, +,CH,RWL,Roggliswil,Roggliswil,LU,--3-----,RL,0507,,4713N 00753E, +,CH,SAF,Safenwil,Safenwil,AG,--3-----,RQ,9501,,4719N 00759E, +,CH,SAN,Stans,Stans,NW,--3-----,RQ,9705,,4657N 00822E, +,CH,SBD,Sant'Abbondio,Sant'Abbondio,TI,--3-----,RL,0507,,4607N 00846E, +,CH,SBO,Stabio,Stabio,TI,--3-----,RQ,9705,,4626N 00858E, +,CH,SCH,Schaffhausen,Schaffhausen,SH,--3-----,RQ,9501,,4742N 00838E, +,CH,SCZ,Schwyz,Schwyz,SZ,--3-----,RL,0101,ZKK,4701N 00839E, +,CH,SGE,Sulgen,Sulgen,TG,-23-----,RQ,9705,,4733N 00911E, +,CH,SHR,Schlieren,Schlieren,ZH,-23-----,RQ,9709,,4724N 00827E, +,CH,SMR,Steinmaur,Steinmaur,ZH,--3-----,RL,9806,,4730N 00827E, +,CH,SNN,Sarnen,Sarnen,OW,-23-----,RQ,9705,,4654N 00815E, +,CH,STM,Sankt Margrethen,Sankt Margrethen,SG,--3-----,RQ,1101,,4727N 00938E, +,CH,SVN,Sevelen,Sevelen,SG,--3-----,RL,9811,,4707N 00929E, +,CH,TEN,Tenero,Tenero,TI,0-------,RQ,9307,,4611N 00851E, +,CH,TFN,Teufen,Teufen,AR,--3-----,RQ,1701,,4724N 00924E, +,CH,THA,Thayngen,Thayngen,SH,--3-----,RQ,9008,,4745N 00842E, +,CH,TWL,Thalwil,Thalwil,ZH,--3-----,RQ,9705,,4718N 00834E, +,CH,TWN,T�gerwilen,Tagerwilen,TG,--3-----,RL,0101,,4739N 00908E, +,CH,UZW,Uzwil,Uzwil,SG,--3-----,RQ,9705,,4726N 00908E, +,CH,VAL,Vallorbe,Vallorbe,VD,--3-----,RQ,9501,,4643N 00623E, +,CH,VEN,Vendlincourt,Vendlincourt,JU,--3-----,RQ,9501,,4727N 00709E, +,CH,VFN,Vauffelin,Vauffelin,BE,--3-----,RQ,9811,,4711N 00718E, +,CH,VIS,Visp,Visp,VS,--3-----,RQ,9501,,4617N 00753E, +,CH,VPR,Chavannes-pr�s-Renens,Chavannes-pres-Renens,VD,-23-----,RL,0901,,4632N 00634E, +,CH,VVY,Vouvry,Vouvry,VS,--3-----,RQ,9501,,4620N 00653E, +,CH,WGN,Wangen,Wangen,,--3-----,RQ,9704,,4711N 00854E,BE?SO?SZ?ZH? 4 places with this name +,CH,WHL,Wohlen,Wohlen,AG,--3-----,RL,9705,,4721N 00817E, +,CH,WIN,Winterthur,Winterthur,ZH,--3-----,RQ,9501,,4730N 00844E, +,CH,WTG,Wettingen,Wettingen,AG,--3-----,RL,9811,ZLF,4728N 00820E, +,CH,YHM,Courtaman,Courtaman,FR,--3-----,RL,9805,,4652N 00708E, +,CH,ZJA,Le Locle,Le Locle,,----5---,RQ,9601,,4703N 00645E, +,CH,ZKZ,Vevey,Vevey,VD,-23-----,RQ,9012,,4628N 00651E, +,CH,ZLM,Zug,Zug,ZG,-2------,RL,9812,,4710N 00831E, +,CH,ZRH,Zurich,Zurich,ZH,---45---,AI,9601,,4722N 00832E, +,CH,ZWI,Zetzwil,Zetzwil,AG,--3-----,RL,0401,,4717N 00809E, +,CI,ASK,Yamoussoukro,Yamoussoukro,,---4----,AI,9601,,0649N 00517W, +,CI,BDK,Bondoukou,Bondoukou,,---4----,AI,9601,,0802N 00248W, +,CI,BYK,Bouak�,Bouake,,---4----,AI,0212,,0741N 00502W, +,CI,DJO,Daloa,Daloa,,---4----,AI,9601,,0653N 00627W, +,CI,HGO,Korhogo,Korhogo,,---4----,AI,9601,,0927N 00538W, +,CI,MJC,Man,Man,,---4----,AI,9601,,0725N 00733W, +,CI,OGO,Abengourou,Abengourou,,---4----,AI,9601,,0644N 00330W, +,CI,SEQ,Seguela,Seguela,,---4----,RQ,0901,,0758N 00641W, +,CI,TXU,Tabou,Tabou,,---4----,AI,9601,,0425N 00722W, +,CI,ZSS,Sassandra,Sassandra,,1--4----,AI,9601,,0457N 00606W, +,CK,AIT,Aitutaki,Aitutaki,,1--45---,AI,9601,,1852S 15947W, +,CK,AIU,Atiu,Atiu,,1--4----,AI,9601,,1960S 15807W, +,CK,ARU,Arutunga,Arutunga,,1-------,RQ,9506,,1852S 15948W, +,CK,MGS,Mangaia,Mangaia,,1--4----,AI,9601,,2155S 15755W, +,CK,MOI,Mitiaro Island,Mitiaro Island,,1--4----,AI,9601,,1951S 15743W, +,CK,MUK,Mauke Island,Mauke Island,,---4----,AI,9601,,2009S 15721W, +,CK,RAR,Rarotonga,Rarotonga,,1--45---,AI,9601,,2114S 15947W, +,CL,PPD,Punta Padrones,Punta Padrones,,1----6--,RL,1107,,2703S 07051W, +,CM,BFX,Bafoussam,Bafoussam,,--34----,AI,9903,,0529N 01025E, +,CM,BLC,Bali,Bali,,---4----,AI,9601,,0553N 01001E, +,CM,BUA,Buea,Buea,,--3-----,RL,9903,,0409N 00914E, +,CM,CMO,Campo,Campo,,0-------,RQ,9506,,0223N 00950E, +,CM,DLA,Douala,Douala,,1--45---,AI,9601,,0403N 00942E, +,CM,DSC,Dschang,Dschang,,---4----,AI,9601,,0527N 01003E, +,CM,EBW,Ebolowa,Ebolowa,,---4----,RQ,0901,,0243N 01115E, +,CM,KBI,Kribi,Kribi,,1--4----,AI,9601,,0252N 00954E, +,CM,KOB,Koutaba,Koutaba,,---4----,AI,9601,,0539N 01046E, +,CM,KOL,Kole Terminal,Kole Terminal,,1-------,RQ,9012,,0415N 00833E, +,CM,LIT,Limboh Terminal,Limboh Terminal,,1-------,RQ,9506,,0359N 00909E, +,CM,MMF,Mamfe,Mamfe,,---4----,AI,9601,,0545N 00919E, +,CM,MVR,Maroua,Maroua,,---4----,AI,9601,,1043N 01425E, +,CM,OUR,Batouri,Batouri,,---4----,AI,9601,,0426N 01422E, +,CM,TKC,Tiko,Tiko,,1--4----,AI,9601,,0405N 00922E, +,CN,AKA,Ankang,Ankang,SN,-234----,RL,2107,,3243N 10859E, +,CN,AYS,Anyang,Anyang,HA,-----6--,AS,1407,,3606N 11420E, +,CN,BAH,Bahe,Bahe,HB,1-------,RL,1401,,3026N 11501E, +,CN,BHE,Buhe,Buhe,HB,1-------,RL,1401,,3017N 11214E, +,CN,BHT,Tieshan,Tieshan,GX,1-------,RL,1401,,3012N 11453E, +,CN,BIC,Beicun,Beicun,GD,1-------,AS,1401,,2232N 11234E, +,CN,BIN,Binzhou,Binzhou,SD,--3-----,RL,9901,,3723N 11758E, +,CN,BIY,Beiyao,Beiyao,GD,1-------,RL,1401,,4152N 11836E, +,CN,BJD,Beijingdong Railway Station,Beijingdong Railway Station,BJ,-2------,AS,1601,,3954N 11629E, +,CN,BJX,Beijingxi Railway Station,Beijingxi Railway Station,BJ,-2------,AS,1601,,3954N 11619E, +,CN,BJZ,Beijing Railway Station,Beijing Railway Station,BJ,-2------,AS,1601,,3957N 11630E, +,CN,BLI,Bali,Bali,HB,1-------,RL,1401,,2508N 11253E, +,CN,BLO,Bailuo,Bailuo,HB,1-------,RL,1401,,2933N 11312E, +,CN,BSE,Baise,Baise,GX,1-------,RL,1401,,2354N 10637E, +,CN,BSI,Baishi,Baishi,HL,1-------,RL,1401,,3548N 11638E, +,CN,BUJ,Buji,Buji,GD,-23-----,RL,9805,,2237N 11407E, +,CN,BUR,Burang,Burang,XZ,--3-----,AS,1601,,3018N 08110E, +,CN,BXS,Benxi,Benxi,LN,-----6--,AS,1407,,4118N 12346E, +,CN,BYQ,Bayuquan,Bayuquan,LN,1-------,AS,1407,,4013N 12207E, +,CN,CAH,Changhua,Changhua,HI,1-------,RL,1401,,1920N 10841E, +,CN,CAN,Guangzhou Baiyun International Apt,Guangzhou Baiyun International Apt,GD,---4----,AS,1601,,2324N 11318E, +,CN,CBG,Chen Barag,Chen Barag,NM,1-------,RL,1401,,4938N 11939E, +,CN,CBI,Chibi,Chibi,HB,1-------,RL,1401,,2944N 11354E, +,CN,CDZ,Chengdu Railway Station,Chengdu Railway Station,SC,-2------,AS,1601,,3042N 10404E, +,CN,CFF,Suidong,Suidong,HL,1-------,RL,1401,,4725N 13206E, +,CN,CFG,Ulan Had,Ulan Had,NM,-23--6--,RL,1401,,4604N 12208E, +,CN,CFS,Chifeng,Chifeng,NM,-----6--,AS,1407,,4217N 11857E, +,CN,CGJ,Changjing,Changjing,JS,1-------,RL,1401,,2424N 10541E, +,CN,CGO,Zhengzhou Xinzheng International Apt,Zhengzhou Xinzheng International Apt,HA,---4----,AS,1601,,3431N 11350E, +,CN,CGQ,Changchun Longjia International Apt,Changchun Longjia International Apt,JL,---4----,AS,1601,,4360N 12541E, +,CN,CGZ,Chongzuo,Chongzuo,GX,1-------,RL,1401,,2223N 10722E, +,CN,CHG,Chenghai,Chenghai,GD,--3-----,RQ,9705,,2328N 11645E, +,CN,CHN,Chang'an,Chang'an,SN,--3-----,RQ,9705,,3416N 10857E, +,CN,CHS,Chuanshan,Chuanshan,ZJ,1-------,RL,1401,,3032N 10534E, +,CN,CIG,Chenjiagang,Chenjiagang,JS,1-------,RL,1401,,3423N 11948E, +,CN,CJA,Congjiang,Congjiang,GZ,1-------,RL,1401,,2545N 10854E, +,CN,CJI,Chengjiang,Chengjiang,JS,1-------,RL,1401,,2440N 10255E, +,CN,CJP,Chenjiaping,Chenjiaping,CQ,--3-----,RL,1401,,3551N 10457E, +,CN,CJS,Changji,Changji,XJ,--3--6--,AS,2001,,4401N 08718E, +,CN,CKG,Chongqing Jiangbei International Apt,Chongqing Jiangbei International Apt,CQ,---4----,AS,1601,,2943N 10638E, +,CN,CLZ,Changjiang Lizu Zizhixian,Changjiang Lizu Zizhixian,HI,--3-----,RL,1401,,1918N 10903E, +,CN,CNH,Conghua,Conghua,GD,--3-----,RL,1401,,2333N 11335E, +,CN,CNI,Changhai Dachangshandao Apt,Changhai Dachangshandao Apt,LN,---4----,RL,1401,,3916N 12240E, +,CN,CNX,Xinxu,Xinxu,GD,1-------,RL,1401,,2349N 11657E, +,CN,CNZ,Chenzhou,Chenzhou,HN,--3-----,AS,1601,,2547N 11301E, +,CN,CQD,Chongqingdong Railway Station,Chongqingdong Railway Station,CQ,-2------,AS,1601,,2937N 10633E, +,CN,CSJ,Changshou,Changshou,JS,1-------,RL,1401,,2952N 10705E, +,CN,CSL,Laiwu,Laiwu,GD,1-------,AS,1407,,2240N 11359E, +,CN,CSO,Changshou,Changshou,CQ,1-------,RL,1401,,2952N 10705E, +,CN,CSX,Changsha Huanghua International Apt,Changsha Huanghua International Apt,HN,---4----,AS,1601,,2812N 11313E, +,CN,CTU,Chengdu Shuangliu International Apt,Chengdu Shuangliu International Apt,SC,---4----,AS,1601,,3040N 10404E, +,CN,CUM,Chumen,Chumen,ZJ,1-3-----,RL,1401,,2813N 12118E, +,CN,CYH,Haimen,Haimen,GD,1-------,AS,1407,,2311N 11637E, +,CN,CYN,Chaoyang,Chaoyang,LN,-234----,RL,1401,,4135N 12026E, +,CN,DAA,Dagang,Dagang,JS,1-3-----,RL,9901,,3311N 12006E, +,CN,DAG,Dalian Pt,Dalian Pt,LN,1-------,AS,1601,,3855N 12138E, +,CN,DBG,Dongbang,Dongbang,JS,1-------,RL,1401,,3139N 12056E, +,CN,DCG,Ducheng,Ducheng,HB,1-------,RL,1401,,3032N 11454E, +,CN,DCN,Dongchen,Dongchen,44,--3-----,RQ,0901,,3224N 12039E, +,CN,DDG,Dandong,Dandong,LN,1234----,AS,2107,,4007N 12423E,a.k.a Donggang +,CN,DDK,Dadukou,Dadukou,AH,1-------,RL,1401,,3029N 11703E, +,CN,DFN,Dongfeng,Dongfeng,SD,12------,RL,1401,,3641N 11705E, +,CN,DGU,Donggu,Donggu,FJ,1-------,AS,1401,,3256N 09727E, +,CN,DHD,Douhudi,Douhudi,HB,1-------,RL,1401,,3004N 11214E, +,CN,DHP,Dahuangpu,Dahuangpu,GD,1-------,RL,1401,,3927N 11715E, +,CN,DIA,Digang,Digang,AH,1-------,RL,1401,,3107N 11801E, +,CN,DIZ,Dadingzi,Dadingzi,HL,1-------,RL,1401,,4209N 12331E, +,CN,DJI,Dajing,Dajing,ZJ,1-------,RL,1401,,2825N 12109E, +,CN,DJO,Daojiao,Daojiao,GD,1-3-----,RL,0601,,2300N 11340E, +,CN,DLC,Dalian Zhoushuizi International Apt,Dalian Zhoushuizi International Apt,LN,---4----,AS,1601,,3855N 12141E, +,CN,DLI,Dongliu,Dongliu,AH,1-------,RL,1401,,3013N 11655E, +,CN,DLU,Dali,Dali,YN,-234----,RL,2107,,2536N 10015E, +,CN,DMJ,Jingan,Jingan,GD,1-------,AS,1407,,3430N 11655E, +,CN,DNH,Dunhuang Apt,Dunhuang Apt,GS,---4----,RL,1401,,4009N 09440E, +,CN,DNS,Danshui,Danshui,GD,--3-----,RL,9705,,2248N 11428E, +,CN,DNT,Dantu,Dantu,JS,1-------,RL,1401,,3208N 11926E, +,CN,DNZ,Danzao,Danzao,GD,--3-----,RL,9901,,2238N 11303E, +,CN,DOH,Donghu,Donghu,GD,--3-----,RL,1401,,2221N 11240E, +,CN,DOZ,Dongzhang,Dongzhang,JS,1-------,RL,1401,,2514N 11853E, +,CN,DQD,Daqindao,Daqindao,SD,1-------,RL,1401,,3818N 12048E, +,CN,DSA,Dasha,Dasha,HB,1-------,RL,1401,,3151N 10743E, +,CN,DSI,Dongshi,Dongshi,42,1-------,AS,0901,,3025N 11142E, +,CN,DSN,Dongshan Pt,Dongshan Pt,FJ,1-------,AS,1407,,2345N 11731E, +,CN,DSO,Dasong,Dasong,ZJ,1-------,RL,1401,,2411N 11708E, +,CN,DTG,Datian,Datian,FJ,--3-----,RL,9901,,2542N 11750E, +,CN,DTZ,Dataizi,Dataizi,LN,1-------,AS,1401,,4226N 12102E, +,CN,DWN,Dawan,Dawan,SD,1-------,RL,1401,,3954N 11421E, +,CN,DXU,Daxu,Daxu,GX,1-------,RL,1401,,2511N 11025E, +,CN,DYI,Dayi,Dayi,JS,1-------,RL,1401,,3232N 11914E, +,CN,DYW,Dayaowan,Dayaowan,LN,1-------,AS,1407,,3900N 12151E, +,CN,DZS,Dezhou,Dezhou,HE,-----6--,AS,1407,,3726N 11621E, +,CN,DZU,Dazu,Dazu,SC,---4----,RL,1401,,2745N 10048E, +,CN,EBA,Erba,Erba,AH,1-------,RL,1401,,3121N 11820E, +,CN,ECG,Echeng,Echeng,HB,1-------,RL,1401,,3024N 11453E, +,CN,EGN,Ergun,Ergun,NM,1-3--6--,RL,1401,,5140N 12047E, +,CN,ENH,Enshi Xujiaping Apt,Enshi Xujiaping Apt,HB,---4----,RL,1401,,3019N 10929E, +,CN,ENY,Yan'an,Yan'an,SN,-234----,RL,2107,,3636N 10929E, +,CN,FAG,Fugang,Fugang,GD,1-------,RL,1401,,2251N 11409E, +,CN,FDU,Fengdu,Fengdu,CQ,1-------,RL,1401,,2952N 10744E, +,CN,FEN,Fenggang,Fenggang,GD,--3-----,RL,9805,,2245N 11408E, +,CN,FJE,Fengjie,Fengjie,CQ,1-------,RL,1401,,3101N 10924E, +,CN,FOC,Fuzhou Changle International Apt,Fuzhou Changle International Apt,FJ,---4----,AS,1601,,2556N 11940E, +,CN,FSA,Fushan,Fushan,JS,1-------,RL,1401,,3730N 12116E, +,CN,FSI,Fusui,Fusui,GX,1-------,RL,1401,,2231N 10749E, +,CN,FUC,Fucheng,Fucheng,GD,1-------,RL,1401,,2247N 11134E, +,CN,FUO,Foshan Apt,Foshan Apt,GD,---4----,RL,1401,,2305N 11304E, +,CN,FUX,Fuxin,Fuxin,LN,--3-----,RL,9901,,4201N 12139E, +,CN,FWN,Fuwan,Fuwan,GD,1-------,RL,1401,,2260N 11249E, +,CN,FXG,Fuxing,Fuxing,AH,1-------,RL,1401,,2954N 11625E, +,CN,FYS,Fuyang,Fuyang,AH,-----6--,AS,1407,,3254N 11549E, +,CN,FYX,Fuyang Xiguan Apt,Fuyang Xiguan Apt,AH,---4----,RL,1401,,3253N 11544E, +,CN,GAY,Gaoyao,Gaoyao,GD,--3-----,RL,9805,,2302N 11227E, +,CN,GCG,Guicheng,Guicheng,GD,--3-----,RL,1401,,2302N 11311E, +,CN,GCH,Guancheng,Guancheng,GD,1-------,AS,1601,,2302N 11345E, +,CN,GDI,Gedian,Gedian,HB,1-------,RL,1401,,3032N 11439E, +,CN,GFU,Guangfu,Guangfu,GD,--3-----,RL,1401,,2450N 11611E, +,CN,GGN,Gongan,Gongan,HB,1-------,RL,1401,,2912N 10301E, +,CN,GGU,Gongguan,Gongguan,GX,1-------,RL,1401,,2148N 10936E, +,CN,GIR,Gyirong,Gyirong,XZ,--3-----,AS,1601,,2851N 08518E, +,CN,GLG,Gaoleng,Gaoleng,HL,1-------,RL,1401,,2620N 10841E, +,CN,GLI,Guangli,Guangli,GD,1-------,RL,1401,,2311N 11237E, +,CN,GNG,Guangning,Guangning,GD,1-------,RL,1401,,2338N 11226E, +,CN,GNI,Guangning,Guangning,LN,1-------,RL,1401,,4136N 12151E, +,CN,GNY,Guanyao,Guanyao,GD,--3-----,RL,1401,,3009N 11517E, +,CN,GPG,Guiping,Guiping,GX,1-------,RL,1401,,2323N 11004E, +,CN,GQD,Ganqmod,Ganqmod,NM,--3-----,AS,9506,,4303N 11608E, +,CN,GSH,Gaosha,Gaosha,GD,1-------,AS,1401,,2306N 11520E, +,CN,GUN,Guanlan,Guanlan,GD,--3-----,RL,0001,,2244N 11403E, +,CN,GXI,Guixi,Guixi,JX,-2------,RL,1401,,2818N 11714E, +,CN,GYN,Nanan,Nanan,GD,1-------,AS,1601,,2155N 10726E, +,CN,GYO,Guanyao,Guanyao,HB,1-------,RL,1401,,3009N 11517E, +,CN,GYS,Guangyuan Panlong Apt,Guangyuan Panlong Apt,SC,---4----,RL,1401,,3226N 10551E, +,CN,GZG,Guangzhou Pt,Guangzhou Pt,GD,1-------,AS,1601,,2308N 11314E, +,CN,HAD,Haiyang,Haiyang,37,--3--6--,RQ,0901,,3641N 12110E, +,CN,HAG,Haicheng,Haicheng,LN,--3-----,RL,9901,,4051N 12245E, +,CN,HAK,Haikou Meilan International Apt,Haikou Meilan International Apt,HI,---4----,AS,1601,,1956N 11028E, +,CN,HAQ,Huangqi/Nanhai,Huangqi/Nanhai,GD,1-------,RL,1401,,2410N 11413E, +,CN,HAS,Heshan,Heshan,GX,12------,RL,1401,,2348N 10856E, +,CN,HAT,Haitang/Shekou,Haitang/Shekou,GD,--3-----,RL,1401,,2219N 11235E, +,CN,HBZ,Harbin Railway Station,Harbin Railway Station,HL,-2------,AS,1601,,4546N 12637E, +,CN,HDN,Haidian,Haidian,HI,1-------,RL,1401,,2004N 11020E, +,CN,HDS,Handan,Handan,HE,-----6--,AS,1407,,3637N 11429E, +,CN,HET,Hohhot Baita International Apt,Hohhot Baita International Apt,NM,---4----,AS,1601,,4051N 11149E, +,CN,HFE,Hefei Xinqiao International Apt,Hefei Xinqiao International Apt,AH,---4----,AS,1601,,3159N 11658E, +,CN,HGA,Honghua,Honghua,HB,1-------,RL,1401,,3101N 11557E, +,CN,HGC,Huangcun,Huangcun,GD,--3-----,RL,1401,,2251N 11343E, +,CN,HGH,Hangzhou Xiaoshan International Apt,Hangzhou Xiaoshan International Apt,ZJ,---4----,AS,1601,,3014N 12026E, +,CN,HGK,Hongkou,Hongkou,SH,--3-----,RL,1401,,3116N 12130E, +,CN,HGO,Hongqiao,Hongqiao,SH,--3--6--,RL,1401,,3112N 12124E, +,CN,HIK,Huikou,Huikou,AH,1-------,RL,1401,,2949N 11615E, +,CN,HIS,Huangshi,Huangshi,13,-23-----,AS,2107,,3012N 11502E, +,CN,HIZ,Haizhu,Haizhu,GD,--3-----,RL,1401,,2305N 11319E, +,CN,HJI,Huangjiang,Huangjiang,GD,1-------,RL,1401,,2255N 11360E, +,CN,HJJ,Huaihua Zhijiang Apt,Huaihua Zhijiang Apt,HN,---4----,RL,1401,,2734N 11001E, +,CN,HKU,Hukou,Hukou,JX,1-------,RL,1401,,2944N 11615E, +,CN,HLD,Hulunbuir Hailar Apt,Hulunbuir Hailar Apt,NM,---4----,AS,1601,,4912N 11950E, +,CN,HLE,Hulan Ergi,Hulan Ergi,HL,1-------,RL,1401,,4712N 12338E, +,CN,HLH,Ulan Hot Apt,Ulan Hot Apt,NM,--34----,RL,1401,,4612N 12200E, +,CN,HLN,Huilong,Huilong,GD,--3-----,RL,1401,,2409N 11355E, +,CN,HNG,Henggang,Henggang,GD,--3-----,RQ,9705,,2239N 11412E, +,CN,HNH,Huanghua,Huanghua,ZJ,1-------,AS,1407,,3822N 11720E, +,CN,HNO,Huinong,Huinong,NX,--3-----,AS,1407,,3910N 10638E, +,CN,HNS,Huanshi,Huanshi,HB,1-------,RL,1401,,2236N 11304E, +,CN,HOD,Hongdu,Hongdu,GX,1-------,RL,1401,,2357N 10837E, +,CN,HOH,Honghu,Honghu,HB,1-------,RL,1401,,2950N 11328E, +,CN,HOQ,Hongqi,Hongqi,GD,1-------,RL,1401,,2225N 11248E, +,CN,HRB,Harbin Taiping International Apt,Harbin Taiping International Apt,HL,---4----,AS,1601,,4537N 12615E, +,CN,HSH,Huangshan,Huangshan,AH,--34----,RL,1401,,2943N 11820E, +,CN,HSK,Huangsangkou,Huangsangkou,HB,1-------,RL,1401,,3001N 11520E, +,CN,HTO,Haitou,Haitou,JS,1-------,RL,1401,,3457N 11911E, +,CN,HUA,Huangpu Pt,Huangpu Pt,GD,1-------,AS,1601,,2306N 11326E, +,CN,HUE,Huchen,Huchen,ZJ,1-------,RL,1401,,2920N 12140E, +,CN,HUS,Huashi,Huashi,JS,1-------,RL,1401,,3150N 12028E, +,CN,HUY,Huayang,Huayang,AH,1-------,RL,1401,,3006N 11645E, +,CN,HXA,Hengxian,Hengxian,GX,1-------,RL,1401,,2242N 10916E, +,CN,HXE,Haoxue,Haoxue,HB,1-------,RL,1401,,3002N 11225E, +,CN,HZO,Huangzhou,Huangzhou,HB,1-------,RL,1401,,3026N 11453E, +,CN,INC,Yinchuan Hedong International Apt,Yinchuan Hedong International Apt,NX,---4----,AS,1407,,3819N 10624E, +,CN,IQM,Qiemo Apt,Qiemo Apt,XJ,---4----,RL,1401,,3809N 08532E, +,CN,IQN,Qingyang Xifengzhen Apt,Qingyang Xifengzhen Apt,GS,---4----,RL,1401,,3548N 10736E, +,CN,JAA,Jiang'an,Jiang'an,SC,1-------,RL,1401,,2844N 10504E, +,CN,JBI,Jianbi,Jianbi,JS,1-------,RL,1401,,3210N 11934E, +,CN,JCH,Jiangcheng,Jiangcheng,GD,1-------,AS,1401,,2152N 11157E, +,CN,JCN,Jiangchuan,Jiangchuan,YN,1-------,RL,1401,,2419N 10245E, +,CN,JES,Jieshi,Jieshi,GD,1-------,RL,1401,,2249N 11550E, +,CN,JGJ,Jiangjin,Jiangjin,CQ,1-------,RL,1401,,2919N 10616E, +,CN,JGN,Jiayuguan,Jiayuguan,GS,---4-6--,RL,1401,,3946N 09817E, +,CN,JGS,Jinggangshan Apt,Jinggangshan Apt,JX,---4----,RL,1401,,2651N 11444E, +,CN,JHG,Xishuangbanna Gasa International Apt,Xishuangbanna Gasa International Apt,YN,---4----,AS,1601,,2158N 10046E, +,CN,JIC,Jiangcun,Jiangcun,GD,-2------,RL,1401,,2252N 11310E, +,CN,JII,Jining,Jining,HN,--3-----,RL,9901,,4102N 11307E, +,CN,JIL,Jilin,Jilin,JL,--34----,RL,9901,,4351N 12634E, +,CN,JIP,Jiangping,Jiangping,GX,1-3-----,RL,1401,,2210N 10760E, +,CN,JJI,Jinjiang,Jinjiang,SH,--3-----,RL,1401,,3114N 12122E, +,CN,JKO,Jiangkou,Jiangkou,HB,1-------,RL,1401,,3042N 11733E, +,CN,JLI,Jianli,Jianli,HB,1-------,RL,1401,,2951N 11254E, +,CN,JLZ,Jilin Railway Station,Jilin Railway Station,JL,-2------,AS,1601,,4352N 12634E, +,CN,JNL,Jinli,Jinli,GD,1-------,RL,1401,,2305N 11247E, +,CN,JNN,Jining,Jining,NM,-2------,RL,1401,,4102N 11307E, +,CN,JOK,Jiaokou,Jiaokou,GD,1-------,AS,1601,,2225N 11246E, +,CN,JPU,Jiangpu,Jiangpu,JS,1-------,RL,1401,,3203N 11838E, +,CN,JTO,Jiantiao,Jiantiao,ZJ,1-------,RL,1401,,2903N 12137E, +,CN,JUL,Jiuli,Jiuli,JS,1-------,RL,1401,,3418N 11708E, +,CN,JXI,Jiexi,Jiexi,,--3-----,RQ,9705,,2326N 11550E, +,CN,JYG,Jieyang,Jieyang,,--3-----,RQ,9705,,2333N 11622E, +,CN,JZU,Jiuzhou Pt,Jiuzhou Pt,GD,1-------,AS,1601,,2214N 11335E, +,CN,KAI,Kaikou,Kaikou,GZ,0-------,RL,1401,,2603N 10718E, +,CN,KCA,Kuqa Apt,Kuqa Apt,XJ,---4----,RL,1401,,4143N 08259E, +,CN,KHG,Kashi Apt,Kashi Apt,XJ,---4----,AS,1601,,3933N 07601E, +,CN,KHN,Nanchang Changbei International Apt,Nanchang Changbei International Apt,JX,---4----,AS,1601,,2852N 11554E, +,CN,KLS,Kalasu,Kalasu,XJ,--3-----,AS,1601,,4412N 08025E, +,CN,KMG,Kunming Wujiaba International Apt,Kunming Wujiaba International Apt,YN,---4----,AS,1601,,2460N 10245E, +,CN,KMN,Kanmen,Kanmen,ZJ,1-------,RL,1401,,2805N 12116E, +,CN,KOL,Korla,Korla,XJ,-----6--,AS,1407,,4143N 08610E, +,CN,KOW,Ganzhou Huangjin Apt,Ganzhou Huangjin Apt,JX,---4----,RL,1401,,2551N 11447E, +,CN,KSS,Kashi,Kashi,XJ,--3-----,AS,1407,,3928N 07559E, +,CN,KUY,Kuytun Railway Station,Kuytun Railway Station,XJ,-2------,AS,1601,,4424N 08454E, +,CN,KWE,Guiyang Longdongbao International Apt,Guiyang Longdongbao International Apt,GZ,---4----,AS,1601,,2632N 10648E, +,CN,KWL,Guilin Liangjiang International Apt,Guilin Liangjiang International Apt,GX,---4----,AS,1401,,2513N 11002E, +,CN,LAL,Laolong,Laolong,GD,1-------,RL,1401,,2406N 11515E, +,CN,LBU,Liaobu,Liaobu,GD,--3-----,RL,0001,,2260N 11352E, +,CN,LCH,Liaocheng,Liaocheng,SD,-----6--,AS,1407,,3626N 11557E, +,CN,LCX,Liancheng Apt,Liancheng Apt,FJ,---4----,RL,1401,,2540N 11645E, +,CN,LDG,Longdong,Longdong,GD,--3-----,RL,1401,,2312N 11322E, +,CN,LGA,Long'an,Long'an,GX,1-------,RL,1401,,2306N 10742E, +,CN,LGH,Longhua,Longhua,GD,--3-----,RL,0001,,2242N 11402E, +,CN,LGW,Longwu,Longwu,SH,1-------,AS,1601,,3106N 12128E, +,CN,LHE,Luohe,Luohe,HA,-----6--,AS,1601,,3334N 11402E, +,CN,LHK,Guanghua,Guanghua,HB,---4----,RL,1401,,3027N 11242E, +,CN,LHW,Lanzhou Zhongchuan Apt,Lanzhou Zhongchuan Apt,GS,---4----,AS,1601,,3630N 10337E, +,CN,LIC,Licheng,Licheng,SD,-2------,RL,1401,,3641N 11704E, +,CN,LID,Lidao,Lidao,SD,1-------,RL,1401,,3714N 12235E, +,CN,LIJ,Lijiang,Lijiang,SD,1-------,RL,1401,,2652N 10013E, +,CN,LIL,Liling,Liling,HN,-2------,AS,1601,,2739N 11330E, +,CN,LIU,Liuyang,Liuyang,HN,1-------,RL,1401,,2810N 11338E, +,CN,LJD,Liujiadu,Liujiadu,AH,1-------,RL,1401,,3101N 11426E, +,CN,LJG,Lijiang,Lijiang,YN,-234----,AS,2107,,2652N 10013E, +,CN,LJN,Liujing,Liujing,GX,1-------,RL,1401,,2253N 10853E, +,CN,LLF,Lingling Apt/Yongzhou,Lingling Apt/Yongzhou,HN,---4----,RL,1401,,2621N 11137E, +,CN,LMN,Longmen,Longmen,GX,1-------,RL,1401,,2251N 10904E, +,CN,LNN,Lunan,Lunan,AH,1-------,RL,1401,,3252N 11651E, +,CN,LNS,Lanshi,Lanshi,GD,1-------,AS,1401,,2131N 11050E, +,CN,LOH,Luohuang,Luohuang,CQ,1-------,RL,1401,,2921N 10626E, +,CN,LOS,Loushan,Loushan,SD,-2------,RL,1401,,3613N 12023E, +,CN,LOZ,Longzhou,Longzhou,GX,1-------,RL,1401,,2226N 10652E, +,CN,LPG,Mouping,Mouping,SD,1-------,RL,1401,,3723N 12136E, +,CN,LPS,Liupanshui,Liupanshui,GZ,-2------,RL,1401,,2636N 10450E, +,CN,LQI,Luoqi,Luoqi,CQ,1-------,RL,1401,,2944N 10656E, +,CN,LSS,Lishui,Lishui,ZJ,-----6--,AS,1407,,2828N 11955E, +,CN,LUG,Luogang,Luogang,GD,--3-----,RL,1401,,2425N 11538E, +,CN,LUO,Luoding,Luoding,GD,--3-----,RL,1401,,2246N 11134E, +,CN,LWN,Luwan,Luwan,SH,--3--6--,RL,1401,,3358N 11457E, +,CN,LWS,Laiwu,Laiwu,SD,-----6--,AS,1407,,3613N 11740E, +,CN,LXA,Lhasa Gongga Apt,Lhasa Gongga Apt,XZ,---4----,AS,1601,,2918N 09055E, +,CN,LYA,Luoyang,Luoyang,HA,-234----,AS,2107,,3437N 11227E, +,CN,LYF,Longyan,Longyan,FJ,-----6--,AS,1407,,2505N 11701E, +,CN,LYN,Leiyang,Leiyang,HN,-2------,RL,1401,,2626N 11251E, +,CN,LYS,Liaoyang,Liaoyang,LN,-----6--,AS,1407,,4116N 12310E, +,CN,LZI,Luzhai,Luzhai,GX,1-------,RL,1401,,2429N 10945E, +,CN,LZY,Nyingchi,Nyingchi,XZ,-234----,RL,2107,,2939N 09422E, +,CN,MAY,Mayong,Mayong,GD,1-------,AS,1401,,2447N 10511E, +,CN,MDG,Mudanjiang,Mudanjiang,HL,-234----,AS,2107,,4433N 12938E, +,CN,MDL,Mandula,Mandula,NM,--3-----,AS,1407,,4232N 11007E, +,CN,MEZ,Meizhou,Meizhou,GD,--34----,RL,1401,,2418N 11607E, +,CN,MHG,Minxing,Minxing,SH,1-3--6--,RL,1401,,3107N 12123E, +,CN,MHN,Mohan,Mohan,YN,--3-----,AS,9506,,2111N 10141E, +,CN,MIG,Mianyang Nanjiao Apt,Mianyang Nanjiao Apt,SC,---4----,RL,1401,,3126N 10444E, +,CN,MJD,Majiadian,Majiadian,HB,1-------,RL,1401,,4524N 12756E, +,CN,MLG,Maoling,Maoling,GX,1-------,RL,1401,,2257N 10931E, +,CN,MLI,Meilin,Meilin,FJ,1-------,AS,1401,,2511N 11748E, +,CN,MMI,Maoming,Maoming,GD,-23-----,RL,1401,,2140N 11055E, +,CN,MOT,Miaotou,Miaotou,GD,1-------,AS,1401,,2203N 11259E, +,CN,MSN,Meishan,Meishan,ZJ,1-------,AS,1407,,3106N 11944E, +,CN,MXZ,Meixian Changgangji Apt,Meixian Changgangji Apt,GD,---4----,AS,1407,,2416N 11606E, +,CN,MZU,Muzhou,Muzhou,GD,1-------,RL,1401,,2227N 11309E, +,CN,NAD,Nandu,Nandu,GX,1-------,RL,1401,,2251N 11050E, +�,CN,NAS,Nan'an,Nan'an,FJ,-23-----,RL,2207,,2458N 11823E,@Fun +,CN,NCA,Nicha,Nicha,AH,1-------,RL,1401,,3111N 11759E, +,CN,NCO,Nanchong,Nanchong,SC,-----6--,AS,1407,,3050N 10606E, +,CN,NDE,Ningde,Ningde,FJ,1-------,RL,1401,,2640N 11933E, +,CN,NDG,Qiqihar,Qiqihar,HL,-234----,AS,2107,,4720N 12357E, +,CN,NDN,Nanding,Nanding,SD,-2------,RL,1401,,2452N 10525E, +,CN,NGB,Ningbo Lishe International Apt,Ningbo Lishe International Apt,ZJ,---4----,AS,1601,,2956N 12150E, +,CN,NGG,Nangang,Nangang,GD,--3-----,RQ,9705,,2435N 11218E, +,CN,NJG,Nanjing Pt,Nanjing Pt,JS,1-------,AS,1601,,3210N 11857E, +,CN,NKG,Nanjing Lukou International Apt,Nanjing Lukou International Apt,JS,---4----,AS,1601,,3145N 11852E, +,CN,NMI,Ningming,Ningming,GX,1-------,RL,1401,,2208N 10704E, +,CN,NNG,Nanning Wuxu International Apt,Nanning Wuxu International Apt,GX,---4----,AS,1601,,2236N 10810E, +,CN,NNX,Nanxi,Nanxi,SC,1-------,RL,1401,,2850N 10459E, +,CN,NQO,Nanqiao,Nanqiao,SH,--3-----,RL,1401,,3212N 11825E, +,CN,NSN,Nansan,Nansan,YN,--3-----,AS,1401,,2346N 09850E, +,CN,NTN,Niutoushan,Niutoushan,AH,1-------,RL,1401,,3029N 11714E, +,CN,NTU,Nantou,Nantou,GD,--3-----,RL,1401,,2232N 11355E, +,CN,NXI,Nanxiang,Nanxiang,GX,1-------,RL,1401,,2419N 10944E, +,CN,NZG,Nianzigou,Nianzigou,XJ,--3-----,AS,1407,,3629N 10542E, +,CN,NZH,Manzhouli Xijiao Apt,Manzhouli Xijiao Apt,NM,---4----,AS,1601,,4934N 11720E, +,CN,ORD,Ordos,Ordos,NM,-----6--,AS,1407,,3936N 10947E, +,CN,PDE,Pingdingshan East,Pingdingshan East,HA,-2------,RL,1401,,3344N 11318E, +,CN,PEK,Beijing Shoudu International Apt,Beijing Shoudu International Apt,BJ,---4----,AS,1601,,4005N 11635E, +,CN,PGM,Pingmeng,Pingmeng,GX,--3-----,AS,1401,,2345N 10724E, +,CN,PGN,Pingnan,Pingnan,GX,1-------,RL,1401,,2333N 11023E, +,CN,PHU,Pinghu,Pinghu,GD,--3-----,RL,0105,,2242N 11407E, +,CN,PIL,Pingle,Pingle,GX,1-------,RL,1401,,2434N 11049E, +,CN,PIS,Pingshi,Pingshi,GD,-2------,RL,1401,,2517N 11303E, +,CN,PJO,Pojiao,Pojiao,GZ,1-------,RL,1401,,2653N 10923E, +,CN,PKO,Pikou,Pikou,LN,1-------,RL,1401,,3924N 12220E, +,CN,PND,Pingdi,Pingdi,GZ,--3-----,RL,0001,,2656N 10904E, +,CN,PNH,Pinghu,Pinghu,GZ,--3-----,RL,0001,,2550N 10719E, +,CN,PNS,Pingshan,Pingshan,GD,--3-----,RL,0001,,2243N 11421E, +,CN,PNT,Pantang,Pantang,HB,1-------,RL,1401,,3060N 11453E, +,CN,PQA,Puqian,Puqian,HI,1-------,RL,1401,,2002N 11035E, +,CN,PQI,Puqi,Puqi,ZJ,1-------,RL,1401,,2810N 12103E, +,CN,PSH,Pingsha,Pingsha,GD,1-------,RL,1401,,2206N 11311E, +,CN,PTS,Sanjiangkou,Sanjiangkou,FJ,1-------,AS,1407,,2527N 11907E, +,CN,PVG,Shanghai Pudong International Apt,Shanghai Pudong International Apt,SH,---4----,AS,1401,,3109N 12148E, +,CN,PXI,Puxi,Puxi,ZJ,1-------,RL,1401,,3249N 10838E, +,CN,PYU,Panyu,Panyu,GD,--3-----,RL,1401,,2256N 11323E, +,CN,PZE,Pengze,Pengze,JX,1-------,RL,1401,,2953N 11634E, +,CN,PZI,Panzhihua,Panzhihua,SC,-234----,RL,2107,,2635N 10143E, +,CN,PZO,Paizhou,Paizhou,HB,1-------,RL,1401,,3013N 11356E, +,CN,QDG,Qingdao Pt,Qingdao Pt,SD,1-------,AS,1601,,3601N 12012E, +,CN,QDL,Qindeli,Qindeli,HL,1-------,RL,1401,,4758N 13309E, +,CN,QGZ,Qingzhou,Qingzhou,SD,-2------,RL,1401,,3641N 11828E, +,CN,QHE,Qinghe,Qinghe,HL,1-------,RL,1401,,4610N 12918E, +,CN,QIA,Qianxi,Qianxi,HE,--3-----,RL,9901,,4015N 11822E, +,CN,QIE,Qiaoshe,Qiaoshe,GD,--3-----,RL,1401,,2232N 11407E, +,CN,QJG,Qinjiang,Qinjiang,GX,1-------,RL,1401,,2425N 11550E, +,CN,QJI,Qingjiang,Qingjiang,ZJ,1-------,RL,1401,,2817N 12106E, +,CN,QJO,Qiangjiao,Qiangjiao,ZJ,1-------,RL,1401,,2928N 12132E, +,CN,QKE,Qike,Qike,HL,1-------,RL,1401,,4934N 12828E, +,CN,QKU,Qukou,Qukou,HI,1-------,RL,1401,,2947N 11801E, +,CN,QMN,Qimen,Qimen,ZJ,1-------,RL,1401,,2951N 11743E, +,CN,QSE,Qingshuihe/Shenzhen,Qingshuihe/Shenzhen,GD,1----6--,RQ,1401,,2234N 11406E, +,CN,QUF,Qufu,Qufu,SD,-23--6--,RL,1401,,3536N 11659E, +,CN,QUH,Quanhe,Quanhe,JL,--3-----,AS,1601,,4235N 13033E, +,CN,QXT,Qixingtai,Qixingtai,HB,1-------,RL,1401,,3025N 11153E, +,CN,QYA,Qingyang,Qingyang,JS,1-------,RL,1401,,3146N 12016E, +,CN,QZC,Chongwu,Chongwu,FJ,1-------,AS,1407,,2454N 11855E, +,CN,QZH,Qinzhou,Qinzhou,GX,123-----,AS,2107,,2158N 10837E, +,CN,QZO,Qizhou,Qizhou,HB,1-------,RL,1401,,3005N 11520E, +,CN,QZS,Quzhou,Quzhou,ZJ,-----6--,AS,1407,,2858N 11851E, +,CN,RAG,Ruichang,Ruichang,JX,1-------,RL,1401,,2941N 11541E, +,CN,RCH,Rongcheng,Rongcheng,HB,1-------,RL,1401,,2949N 11253E, +,CN,RGA,Rong'an,Rong'an,GX,1-------,RL,1401,,2514N 10924E, +,CN,RGC,Rongcheng,Rongcheng,GD,1-------,AS,1401,,2332N 11622E, +,CN,RIA,Ruian,Ruian,ZJ,1----6--,RL,1401,,2747N 12039E, +,CN,RJG,Rongjiang,Rongjiang,GZ,1-------,RL,1401,,2556N 10831E, +,CN,RJN,Runjiang,Runjiang,JS,1-------,RL,1401,,3107N 12115E, +,CN,RLC,Erenhot,Erenhot,NM,-2--5---,RL,1401,,4338N 11157E, +,CN,RNG,Rongcheng,Rongcheng,HE,--3-----,RL,1401,,3903N 11551E, +,CN,RSI,Rongshui,Rongshui,GX,1-------,RL,1401,,2504N 10915E, +,CN,RSN,Rushankou,Rushankou,SD,1-------,RL,1401,,3652N 12130E, +,CN,RUG,Rugao,Rugao,JS,123-----,AS,2107,,3222N 12034E, +,CN,SAA,Sanhua,Sanhua,HB,1-------,RL,1401,,3015N 11506E, +,CN,SAD,Shandong,Shandong,BJ,--3-----,RL,1401,,3515N 11527E, +,CN,SAP,Shaping,Shaping,GX,1-------,RL,1401,,2443N 11108E, +,CN,SBM,Sanbaimen,Sanbaimen,,1-------,AS,1601,,2334N 11706E, +,CN,SDP,Sandouping,Sandouping,HB,1-------,RL,1401,,3049N 11101E, +,CN,SEZ,Shahezi,Shahezi,HL,1-------,RL,1401,,4605N 12920E, +,CN,SGG,Suijiang,Suijiang,YN,--3-----,RL,0001,,2832N 10402E, +,CN,SHA,Shanghai Hongqiao International Apt,Shanghai Hongqiao International Apt,SH,---4----,AS,1601,,3110N 12125E, +,CN,SHE,Shenyang Taoxian International Apt,Shenyang Taoxian International Apt,LN,---4----,AS,1601,,4138N 12329E, +,CN,SHG,Shanghai Pt,Shanghai Pt,SH,1-------,AS,1601,,3038N 12204E, +,CN,SHJ,Shajing,Shajing,GD,--3-----,RL,9805,,2244N 11348E, +,CN,SHO,Shajiao,Shajiao,GD,1-------,RL,9901,,2303N 11319E, +,CN,SHQ,Shiqi,Shiqi,GD,1-------,AS,1601,,2232N 11323E, +,CN,SHU,Shihu,Shihu,FJ,--3-----,RQ,0104,,3430N 11840E, +,CN,SHX,Xinan,Xinan,GD,1-------,AS,1601,,2323N 11605E, +,CN,SHZ,Shanghai Railway Station,Shanghai Railway Station,SH,-23-----,AS,1601,,3115N 12127E, +,CN,SIA,Xian Xianyang International Apt,Xian Xianyang International Apt,SN,---4----,AS,1601,,3427N 10845E, +,CN,SIG,Sanjiang,Sanjiang,JS,1-------,RL,1401,,2547N 10936E, +,CN,SIH,Sihui,Sihui,GD,--3-----,RL,1401,,2320N 11244E, +,CN,SIU,Shizhu,Shizhu,CQ,1-------,RL,1401,,3000N 10807E, +,CN,SIZ,Suizhong,Suizhong,LN,1-------,RL,1401,,4019N 12001E, +,CN,SJW,Shijiazhuang Zhengding International Apt,Shijiazhuang Zhengding International Apt,HE,---4----,AS,1601,,3817N 11442E, +,CN,SLG,Shiliugang,Shiliugang,GD,1-------,AS,1407,,3111N 11518E, +,CN,SLU,Shilu,Shilu,HI,--3-----,RL,1401,,1916N 10903E, +,CN,SMN,Songmen,Songmen,ZJ,1-------,RL,1401,,2821N 12136E, +,CN,SMS,Sanming,Sanming,FJ,-----6--,AS,1407,,2616N 11738E, +,CN,SNA,Sanyang,Sanyang,JS,1-------,RL,1401,,3002N 11847E, +,CN,SNW,Shenwan,Shenwan,GD,1-------,AS,1601,,2218N 11321E, +,CN,SOG,Songgai,Songgai,CQ,1-------,RL,1401,,2903N 10554E, +,CN,SPB,Shapingba,Shapingba,CQ,--3-----,RL,1401,,2933N 10627E, +,CN,SQH,Shiquanhe,Shiquanhe,XZ,-----6--,AS,1407,,3230N 08006E, +,CN,SQN,Shenquan,Shenquan,GD,1-------,RL,1401,,2258N 11619E, +,CN,SQS,Shangqiu,Shangqiu,HA,-----6--,AS,2107,,3425N 11539E, +,CN,SRS,Shangrao,Shangrao,JX,-----6--,AS,1407,,2827N 11756E, +,CN,SSN,Shashan,Shashan,ZJ,1-------,RL,1401,,2810N 12114E, +,CN,SSP,Shuangshui,Shuangshui,GD,1-------,RL,1401,,2226N 11300E, +,CN,STZ,Shatuozi,Shatuozi,22,--3-----,AS,0901,,2845N 10512E, +,CN,SUQ,Suqian,Suqian,JS,-----6--,AS,1407,,3358N 11816E, +,CN,SWA,Jieyang Chaoshan Apt,Jieyang Chaoshan Apt,GD,---4----,AS,1601,,2333N 11630E, +,CN,SWN,Shawan,Shawan,GD,--3-----,RL,9805,,2255N 11320E, +,CN,SYD,Shenyangdong Railway Station,Shenyangdong Railway Station,LN,-2------,AS,1601,,4149N 12330E, +,CN,SYG,Shiyang,Shiyang,AH,1-------,RL,1401,,3157N 11817E, +,CN,SYN,Shiyan,Shiyan,GD,--3-----,RL,9901,,2241N 11356E, +,CN,SYX,Sanya,Sanya,HI,-234----,AS,2107,,1815N 10930E, +,CN,SZG,Suzhou Pt,Suzhou Pt,JS,1-------,AS,1407,,3148N 12052E, +,CN,SZO,Sanzhou,Sanzhou,HB,1-------,RL,1401,,2933N 11256E, +,CN,SZP,Shenzhen Pt,Shenzhen Pt,GD,1-------,RL,1401,,2230N 11353E, +,CN,SZX,Shenzhen Baoan International Apt,Shenzhen Baoan International Apt,GD,---45---,AS,1601,,2232N 11403E, +,CN,SZZ,Shenzhen Railway Station,Shenzhen Railway Station,GD,-2------,AS,1601,,2232N 11407E, +,CN,TAO,Qingdao Jiaodong International Apt,Qingdao Jiaodong International Apt,SD,---4----,AS,2201,,3621N 12004E, +,CN,TAZ,Taizhou Pt,Taizhou Pt,ZJ,1-------,AS,1407,,2841N 12127E, +,CN,TBO,Tianbao,Tianbao,YN,--3-----,AS,9506,,2256N 10451E, +,CN,TCG,Qoqek Apt,Qoqek Apt,XJ,---4----,AS,1401,,4640N 08320E, +,CN,TFG,Tuanfeng,Tuanfeng,HB,1-------,RL,1401,,3039N 11452E, +,CN,TGK,Tangkou,Tangkou,GD,-2------,RL,1401,,2155N 11049E, +,CN,TGX,Tangxi,Tangxi,GD,-2------,RL,1401,,2354N 11652E, +,CN,TGZ,Tengzhou,Tengzhou,SD,-2------,RL,1401,,3507N 11710E, +,CN,TID,Tiandong,Tiandong,GX,1-------,RL,1401,,2336N 10708E, +,CN,TIH,Tianhe,Tianhe,GD,--3-----,RL,1401,,2308N 11321E, +,CN,TIS,Taishan,Taishan,GD,1-------,RL,1401,,2215N 11247E, +,CN,TIY,Tianyang,Tianyang,GX,1-------,RL,1401,,2344N 10655E, +,CN,TJA,Tangjia,Tangjia,GD,1-------,RL,1401,,2051N 10951E, +,CN,TLS,Tongliao,Tongliao,LN,-----6--,AS,1407,,4337N 12216E, +,CN,TNA,Jinan Yaoqiang International Apt,Jinan Yaoqiang International Apt,SD,---4----,AS,1601,,3651N 11713E, +,CN,TNC,Lintao,Lintao,GS,1-------,RL,1401,,3524N 10351E, +,CN,TNO,Tanggou,Tanggou,AH,1-------,RL,1401,,3049N 11729E, +,CN,TOH,Tonghe,Tonghe,HL,1-------,RL,1401,,4559N 12845E, +,CN,TOX,Tongxing,Tongxing,AH,1-------,RL,1401,,4344N 11740E, +,CN,TQO,Tuqiao,Tuqiao,AH,1-------,RL,1401,,3323N 11640E, +,CN,TSA,Taishan,Taishan,SD,-2------,RL,1401,,3612N 11708E, +,CN,TSN,Tianjin Binhai International Apt,Tianjin Binhai International Apt,TJ,---4----,AS,1601,,3909N 11712E, +,CN,TXA,Tangxia,Tangxia,GD,--3-----,RL,9901,,2248N 11405E, +,CN,TXN,Huangshan Tunxi International Apt,Huangshan Tunxi International Apt,AH,---4----,AS,1407,,2944N 11815E, +,CN,TYN,Taiyuan Wusu International Apt,Taiyuan Wusu International Apt,SX,---4----,AS,1601,,3745N 11238E, +,CN,TZE,Tianzhen,Tianzhen,HB,1-------,RL,1401,,2955N 11525E, +,CN,TZH,Tongzhong,Tongzhong,GX,--3-----,AS,1401,,2929N 11406E, +,CN,UBU,Lubu,Lubu,GD,1-------,RL,1401,,2311N 11217E, +,CN,URC,Urumqi Diwobao International Apt,Urumqi Diwobao International Apt,XJ,---4----,AS,1601,,4354N 08728E, +,CN,WAF,Wafangdian,Wafangdian,LN,--3-----,RL,9901,,3937N 12200E, +,CN,WAX,Wanxian,Wanxian,CQ,1-------,RL,1401,,3049N 10824E, +,CN,WCH,Huangpo,Huangpo,GD,1-------,AS,1407,,2119N 11035E, +,CN,WEH,Weihai Dashuipo Apt,Weihai Dashuipo Apt,SD,1--45---,AS,1601,,3711N 12214E, +,CN,WGQ,Waigaoqiao Pt,Waigaoqiao Pt,SH,1-------,AS,1601,,3122N 12135E, +,CN,WHE,Wuhe,Wuhe,GD,1-------,RL,1401,,2201N 11253E, +,CN,WHR,Rushan,Rushan,SD,1-------,AS,1407,,3655N 12132E, +,CN,WHZ,Zhangjiabu,Zhangjiabu,SD,1-------,AS,1407,,3430N 10359E, +,CN,WIG,Waigang,Waigang,SH,1-------,AS,1401,,3122N 12110E, +,CN,WJG,Wangjiang,Wangjiang,AH,1-------,RL,1401,,3008N 11642E, +,CN,WJI,Wujin,Wujin,JS,1-------,RL,1401,,3142N 11956E, +,CN,WNZ,Wenzhou,Wenzhou,ZJ,1234----,AS,2107,,2760N 12042E, +,CN,WSA,Wusha,Wusha,AH,1-------,RL,1401,,3039N 11718E, +,CN,WSN,Wushan,Wushan,CQ,1-------,RL,1401,,3105N 10953E, +,CN,WUA,Wusha,Wusha,GD,--3-----,RL,1401,,2248N 11347E, +,CN,WUH,Wuhan Tianhe International Apt,Wuhan Tianhe International Apt,HB,---4----,AS,1601,,3047N 11412E, +,CN,WUS,Wuyishan Apt,Wuyishan Apt,FJ,---4----,AS,1601,,2742N 11800E, +,CN,WUX,Sunan Shuofang International Apt,Sunan Shuofang International Apt,JS,---4----,AS,1601,,3130N 12026E, +,CN,WXA,Wuxuan,Wuxuan,GX,1-3-----,RL,1401,,2336N 10940E, +,CN,WXI,Wuxian,Wuxian,JS,--3--6--,RL,1401,,3039N 10520E, +,CN,WYK,Weiyuankou,Weiyuankou,HB,1-------,RL,1401,,3008N 11514E, +,CN,WYP,Wuyapao,Wuyapao,HL,1-------,RL,1401,,4558N 12852E, +,CN,WZH,Wanzhou,Wanzhou,CQ,1-------,AS,1401,,3049N 10824E, +,CN,XAB,Xinfeng,Xinfeng,GD,-23-----,RL,0907,,2404N 11412E, +,CN,XAS,Xiashan,Xiashan,GD,1-------,AS,1401,,2112N 11024E, +,CN,XCE,Xingcheng,Xingcheng,LN,1-------,RL,1401,,4034N 12029E, +,CN,XCH,Xincheng,Xincheng,GD,--3-----,RL,1401,,2242N 11213E, +,CN,XCI,Xiaochi,Xiaochi,HB,1-------,RL,1401,,3032N 11624E, +,CN,XDI,Xindian,Xindian,HL,1-------,RL,1401,,4555N 12750E, +,CN,XDU,Xindu,Xindu,GX,1-------,RL,1401,,2360N 11143E, +,CN,XEG,Xiegang,Xiegang,GD,--3-----,RL,1401,,2258N 11409E, +,CN,XEN,Xingcheng,Xingcheng,LN,---4----,RL,1401,,4034N 12029E, +,CN,XEX,Xiexu,Xiexu,GX,1-------,RL,1401,,2244N 10923E, +,CN,XGK,Xiangkou,Xiangkou,AH,1-------,RL,1401,,3127N 11746E, +,CN,XGQ,Xiangqiao,Xiangqiao,GD,--3-----,RL,1401,,2341N 11637E, +,CN,XGZ,Xiangzhou,Xiangzhou,GD,1-3-----,AS,1407,,2216N 11332E, +,CN,XHH,Hekou,Hekou,GD,1-------,AS,1407,,2311N 11536E, +,CN,XHK,Xinhekou,Xinhekou,HB,1-------,RL,1401,,2926N 11231E, +,CN,XID,Xindi,Xindi,HB,1-------,RL,1401,,2949N 11328E, +,CN,XIG,Xigaze,Xigaze,XZ,-----6--,AS,1407,,2916N 08853E, +,CN,XIH,Xiahai,Xiahai,GD,1-------,RL,1401,,2729N 10125E, +,CN,XIK,Xinkai,Xinkai,HB,1-------,RL,1401,,2949N 11549E, +,CN,XIM,Xiamao,Xiamao,GD,--3-----,RL,1401,,2326N 11239E, +,CN,XIP,Xingang,Xingang,AH,1-------,RL,1401,,3215N 11655E, +,CN,XIS,Xiaoshan,Xiaoshan,ZJ,--3-----,RL,1401,,3011N 12016E, +,CN,XJD,Xuejiadao,Xuejiadao,SD,1-------,RL,1401,,3558N 12012E, +,CN,XLZ,Xiaolizhuang,Xiaolizhuang,HA,-2------,RL,1401,,3147N 11436E, +#,CN,XMH,"Haicang, Xiamen","Haicang, Xiamen",FJ,1----6--,RL,2207,,2429N 11802E,@Fun +,CN,XMN,Xiamen Gaoqi International Apt,Xiamen Gaoqi International Apt,FJ,---4----,AS,1601,,2433N 11808E, +,CN,XNG,Xianing,Xianing,HN,1-------,AS,1601,,2819N 11256E, +,CN,XNH,Xinhua,Xinhua,,--3-----,RQ,0901,,2750N 11116E, +,CN,XNI,Xinxing,Xinxing,JS,1-------,RL,1401,,3327N 12005E, +#,CN,XNN,Xining,Xining,QH,---4----,AS,2207,,3637N 10147E, +,CN,XNQ,Xinqiao,Xinqiao,GD,--3-----,RL,1401,,2245N 11349E, +,CN,XSB,Xishuangbanna,Xishuangbanna,YN,---4----,RL,1401,,2229N 10104E, +,CN,XSI,Xiangshui,Xiangshui,JS,1-3-----,RL,1401,,3412N 11934E, +,CN,XTI,Xidi,Xidi,GD,1-------,AS,1601,,2954N 11759E, +,CN,XUA,Xiahua,Xiahua,GD,1-3-----,RL,1401,,2313N 10542E, +,CN,XUL,Xiulin,Xiulin,HB,1-------,RL,1401,,2943N 11224E, +,CN,XUZ,Xuzhou Guanyin Apt,Xuzhou Guanyin Apt,JS,---4----,AS,1601,,3404N 11733E, +,CN,XWI,Xuanwei,Xuanwei,YN,-2------,RL,1401,,2614N 10406E, +,CN,XXN,Xixiang,Xixiang,SN,0-------,RQ,9705,,3260N 10746E, +,CN,XYN,Xiaying,Xiaying,SD,1-------,RL,1401,,3704N 11929E, +,CN,XZH,Xuzhou,Xuzhou,JS,---4-6--,AS,1407,,3416N 11711E, +,CN,XZU,Xiangzhou,Xiangzhou,GX,1-------,RL,1401,,2402N 10946E, +,CN,YCA,Yingchuan,Yingchuan,JS,1-------,RL,1401,,3005N 11849E, +,CN,YCE,Yucheng,Yucheng,SD,-2------,RL,1401,,3656N 11638E, +,CN,YGD,Yingde,Yingde,GD,1-------,AS,1401,,2412N 11324E, +,CN,YGG,Yanguan,Yanguan,HN,--3-----,AS,1407,,3027N 12033E, +,CN,YGJ,Yingjiang,Yingjiang,YN,--3-----,AS,1601,,2443N 09756E, +,CN,YGK,Yangkou,Yangkou,SD,1-------,AS,1601,,3716N 11852E, +,CN,YGN,Yongan,Yongan,ZJ,1-------,RL,1401,,2557N 11722E, +,CN,YGO,Yaogou,Yaogou,AH,1-------,RL,1401,,3109N 11754E, +,CN,YGP,Yangpu,Yangpu,SH,--3--6--,RL,1401,,3116N 12131E, +,CN,YGT,Yingtan,Yingtan,JX,-2------,RL,1401,,2817N 11703E, +,CN,YGX,Yangxi,Yangxi,HB,1-------,RL,1401,,2145N 11137E, +,CN,YHG,Yuecheng,Yuecheng,GD,1-------,RL,1401,,2305N 11208E, +,CN,YHO,Yanzhou,Yanzhou,SD,-2------,RL,1401,,3533N 11647E, +,CN,YIB,Yibin,Yibin,SC,1-------,AS,1407,,2845N 10438E, +,CN,YIH,Yichang Sanxia Apt,Yichang Sanxia Apt,HB,---4----,AS,1601,,3033N 11129E, +,CN,YJA,Yanjia,Yanjia,GZ,1-------,RL,1401,,2659N 10421E, +,CN,YJC,Yangjiachang,Yangjiachang,HB,1-------,RL,1401,,3002N 11217E, +,CN,YLA,Yuelai,Yuelai,HL,1-------,RL,1401,,4701N 13043E, +,CN,YLG,Yanliang,Yanliang,SN,--3-----,RQ,0101,,3440N 10918E, +,CN,YLI,Yangli,Yangli,GZ,1-------,RL,1401,,2448N 10600E, +,CN,YLN,Yilan Apt,Yilan Apt,HL,---4----,RL,1401,,4619N 12936E, +,CN,YLO,Yonglong,Yonglong,JS,1-------,RL,1401,,3046N 11250E, +,CN,YNJ,Yanji Chaoyangchuan Apt,Yanji Chaoyangchuan Apt,JL,---4----,AS,1601,,4253N 12927E, +,CN,YNN,Yongning,Yongning,GX,1-------,RL,1401,,2235N 10837E, +,CN,YNT,Yantai Laishan International Apt,Yantai Laishan International Apt,SD,---4----,AS,1601,,3724N 12122E, +,CN,YNZ,Yancheng,Yancheng,JS,-234----,AS,2107,,3321N 12009E, +,CN,YPE,Yangpeng,Yangpeng,AH,1-------,RL,1401,,2154N 11057E, +,CN,YSA,Yangshan Pt,Yangshan Pt,ZJ,1-------,AS,1407,,3035N 12204E, +,CN,YSH,Yuanshi,Yuanshi,HB,1-------,RL,1401,,3746N 11431E, +,CN,YSN,Yangshan,Yangshan,GD,1-------,RL,1401,,2428N 11238E, +,CN,YSO,Yangshuo,Yangshuo,GX,1-------,RL,1401,,2452N 11029E, +,CN,YTI,Yongtai,Yongtai,GD,1-------,AS,1401,,2314N 11318E, +,CN,YUA,Yuanmou Apt,Yuanmou Apt,YN,---4----,RL,1401,,2542N 10152E, +,CN,YUN,Yuncheng,Yuncheng,SX,--3-----,RL,9901,,3502N 11101E, +,CN,YUZ,Yuzhou,Yuzhou,SC,--3-----,RL,0010,,3410N 11328E, +,CN,YXS,Yixing,Yixing,JS,1-3-----,AS,1407,,3121N 11949E, +,CN,ZAG,Zhanghu,Zhanghu,AH,1-------,RL,1401,,3021N 11653E, +,CN,ZAT,Zhaotong,Zhaotong,YN,-234----,RL,2107,,2721N 10343E, +,CN,ZBO,Zibo,Zibo,SD,-----6--,AS,1407,,3640N 11804E, +,CN,ZCG,Zhicheng,Zhicheng,HB,1-------,RL,1401,,3018N 11130E, +,CN,ZGC,Zhongguancun,Zhongguancun,BJ,-----6--,AS,1601,,3958N 11619E, +,CN,ZGU,Zhangmutou,Zhangmutou,GD,--3-----,RL,9901,,2255N 11405E, +,CN,ZHA,Zhanjiang,Zhanjiang,GD,-234----,AS,2107,,2116N 11021E, +,CN,ZHF,Zhangfeng,Zhangfeng,YN,--3-----,AS,1401,,2411N 09748E, +,CN,ZHY,Zhaoyuan,Zhaoyuan,HL,1-3-----,RL,1401,,4531N 12505E, +,CN,ZHZ,Zhuozhou,Zhuozhou,HE,--3-----,RL,9901,,3929N 11558E, +,CN,ZJK,Zhangjiakou,Zhangjiakou,HE,-----6--,AS,1407,,4049N 11452E, +,CN,ZJN,Zhengjiatun,Zhengjiatun,JL,-2------,RL,1401,,4330N 12331E, +,CN,ZOC,Zoucheng,Zoucheng,SD,-2------,RL,1401,,3524N 11700E, +,CN,ZOS,Zhoushan,Zhoushan,ZJ,123-----,AS,2107,,2959N 12212E, +,CN,ZOU,Zhenzhou,Zhenzhou,11,--3-----,RQ,0901,,3216N 11911E, +,CN,ZPI,Zhaoping,Zhaoping,GD,1-------,RL,1401,,2410N 11048E, +,CN,ZSM,Shima,Shima,FJ,1-------,AS,1407,,2427N 11749E, +,CN,ZUS,Zhushan,Zhushan,GX,1-------,RL,1401,,2426N 11056E, +,CN,ZUY,Zhuyang,Zhuyang,CQ,1-------,RL,1401,,2904N 10556E, +,CN,ZXI,Zhexiang,Zhexiang,GZ,1-------,RL,1401,,2458N 10609E, +,CN,ZXN,Zhongxian,Zhongxian,CQ,1-------,RL,1401,,2342N 10859E, +,CN,ZXZ,Xiazhai,Xiazhai,FJ,1-------,AS,1407,,2421N 11710E, +,CN,ZYG,Zongyang,Zongyang,AH,1-------,RL,1401,,3042N 11713E, +,CN,ZYI,Zunyi Xinzhou Apt,Zunyi Xinzhou Apt,GZ,---4----,RL,1401,,2749N 10715E, +,CN,ZZG,Zhouzhuang,Zhouzhuang,JS,1-------,RL,1401,,3108N 12050E, +,CN,ZZS,Zaozhuang,Zaozhuang,SD,-----6--,AS,1407,,3449N 11720E, +,CO,ADZ,San Andres Island,San Andres Island,,---4----,AI,9601,,1235N 08142W, +,CO,APO,Apartado,Apartado,,---4----,AI,9601,,0753N 07637W, +,CO,AUC,Arauca,Arauca,,---4----,AI,9601,,0705N 07045W, +,CO,AXM,Armenia,Armenia,,---4----,AI,9601,,0432N 07540W, +,CO,AYC,Ayacucho,Ayacucho,,---4----,RQ,0901,,0836N 07335W, +,CO,BAQ,Barranquilla,Barranquilla,,1--45---,AI,9601,,1060N 07448W, +,CO,BGA,Bucaramanga,Bucaramanga,,---4----,AI,9601,,0708N 07307W, +,CO,BUN,Buenaventura,Buenaventura,,1--4----,AI,9601,,0353N 07704W, +,CO,CIE,Cienaga,Cienaga,,0-------,RQ,9601,,1100N 07415W, +,CO,CIM,Cimitarra,Cimitarra,,---4----,RQ,0901,,0619N 07357W, +,CO,CLO,Cali,Cali,,---4----,AI,9601,,0327N 07632W, +,CO,CRC,Cartago,Cartago,,1--4----,AI,9601,,0445N 07555W, +,CO,CTG,Cartagena,Cartagena,,1--4----,AI,9601,,1026N 07533W, +,CO,CUC,Cucuta,Cucuta,,---4----,AI,9601,,0754N 07230W, +,CO,CZU,Corozal,Corozal,,---4----,RQ,0901,,0919N 07518W, +,CO,EBG,El Bagre,El Bagre,,---4----,AI,9601,,0736N 07448W, +,CO,EBQ,El Bosque,El Bosque,,1-------,RL,0001,,0448N 07544W, +,CO,EJA,Barrancabermeja,Barrancabermeja,,1--4----,AI,9601,,0704N 07351W, +,CO,ENV,Envigado,Envigado,ANT,1-3-----,RQ,0901,,0610N 07535W, +,CO,EUO,Paratebueno,Paratebueno,,---4----,RQ,0901,,0423N 07313W, +,CO,FLA,Florencia,Florencia,,--34----,AI,0101,,0137N 07537W, +,CO,MCJ,Maicao,Maicao,,---4----,RQ,0901,,1123N 07214W, +,CO,MIX,Miriti,Miriti,,---4----,RQ,0901,,0053S 07059W, +,CO,MOY,Monterrey,Monterrey,,---4----,RQ,0901,,0453N 07254W, +,CO,MQR,Mosquera,Mosquera,,---4----,RQ,0901,,0442N 07414W, +,CO,MQU,Mariquita,Mariquita,TOL,---4----,RQ,0901,,0512N 07454W, +,CO,MTR,Monteria,Monteria,,---4----,AI,9601,,0845N 07553W, +,CO,MZL,Manizales,Manizales,,---4----,AI,9601,,0504N 07530W, +,CO,NAR,Nare,Nare,,---4----,RQ,0901,,0611N 07435W, +,CO,NPU,San Pedro Uraba,San Pedro Uraba,,---4----,RQ,0901,,0817N 07623W, +,CO,PBE,Puerto Berrio,Puerto Berrio,,1--4----,AI,9601,,0629N 07424W, +,CO,PEI,Pereira,Pereira,,---4----,AI,9601,,0449N 07542W, +,CO,PLA,Planadas,Planadas,,---4----,RQ,0901,,0312N 07539W, +,CO,POC,Pozos Colorados,Pozos Colorados,,1-------,RQ,9506,,1110N 07414W, +,CO,PSO,Pasto,Pasto,,---4----,AI,9601,,0113N 07717W, +,CO,PVA,Providencia,Providencia,,---4----,RQ,0901,,0114N 07736W, +,CO,QPI,Palmira,Palmira,,---4----,RQ,0901,,0332N 07618W, +,CO,RCH,Riohacha,Riohacha,,1--4----,AI,9601,,1132N 07255W, +,CO,RON,Rondon,Rondon,,---4----,RQ,0901,,0544N 07304W, +,CO,SJG,San Pedro Jagua,San Pedro Jagua,,---4----,RQ,0901,,0439N 07319W, +,CO,SMC,Santa Maria,Santa Maria,,---4----,RQ,0901,,0057N 07742W, +,CO,SMR,Santa Marta,Santa Marta,,1--4----,AI,9601,,1114N 07412W, +,CO,SOH,Solita,Solita,,---4----,RQ,0901,,0053N 07537W, +,CO,SQE,San Luis de Pale,San Luis de Pale,,---4----,RQ,0901,,0525N 07144W, +,CO,TCO,Tumaco,Tumaco,,1--4----,AI,9601,,0148N 07846W, +,CO,TDA,Trinidad,Trinidad,,---4----,RQ,0901,,0524N 07140W, +,CO,TQS,Tres Esquinas,Tres Esquinas,,---4----,RQ,0901,,0443N 07545W, +,CO,TTM,Tablon de Tamara,Tablon de Tamara,,---4----,RQ,0901,,0544N 07206W, +,CO,VUP,Valledupar,Valledupar,,--34----,RL,0001,,1028N 07315W, +,CR,BAT,Batan,Batan,L,1-------,RQ,0901,,1005N 08321W, +,CR,CSC,Canas,Canas,,---4----,RQ,0901,,1026N 08506W, +,CR,LCS,Las Canas,Las Canas,,---4----,RQ,0901,,1025N 08506W, +,CR,MAT,Matina,Matina,L,1-------,RQ,0901,,1005N 08317W, +,CR,PMN,Puerto Moin,Puerto Moin,L,1-------,RQ,1101,,1000N 08305W, +,CR,SOR,San Ramon,San Ramon,,--3-----,RL,0001,,1005N 08428W, +,CR,XQP,Quepos (Puerto Quepos),Quepos (Puerto Quepos),,1--4----,AI,9601,,0926N 08410W, +,CU,BCA,Baracoa,Baracoa,,1--4----,AI,9601,,2021N 07430W, +,CU,BYM,Bayamo,Bayamo,,---4----,AI,9601,,2022N 07639W, +,CU,CFG,Cienfuegos,Cienfuegos,,1--4----,AI,9601,,2209N 08027W, +,CU,GAO,Los Canos Apt/Guantanamo,Los Canos Apt/Guantanamo,,---4----,AI,,,2005N 07509W, +,CU,GER,Nueva Gerona,Nueva Gerona,,1--4----,AI,9601,,2153N 08248W, +,CU,GUB,Guantanamo Bay,Guantanamo Bay,,1-3-----,RQ,9506,,1955N 07510W, +,CU,GYB,Guayabal,Guayabal,,1-------,AI,9401,,2042N 07736W, +,CU,HOG,Holguin,Holguin,,---4----,AI,9601,,2053N 07616W, +,CU,ICR,Nicaro,Nicaro,,1--4----,AI,9506,,2040N 07533W, +,CU,IDS,Isabela de Sagua,Isabela de Sagua,,1-------,RQ,9506,,2256N 08001W, +,CU,MOA,Moa,Moa,,---4----,AI,9601,,2039N 07457W, +,CU,MZO,Manzanillo,Manzanillo,,1--4----,AI,9601,,2021N 07707W, +,CU,NBW,Guantanamo Nas Apt,Guantanamo Nas Apt,,---4----,AI,9601,,1954N 07512W, +,CU,QCO,Colon,Colon,,1-34----,RL,9805,,2243N 08054W, +,CU,QMA,Matanzas,Matanzas,,1--4----,AI,9601,,2303N 08135W, +,CU,SCS,Santa Cruz del Sur,Santa Cruz del Sur,,1-------,AI,9401,,2043N 07760W, +,CU,SCU,Santiago de Cuba,Santiago de Cuba,,1--4----,AI,9601,,2001N 07550W, +,CU,SNU,Santa Clara,Santa Clara,,1-------,AI,9601,,2224N 07958W, +,CU,TND,Trinidad,Trinidad,,--34----,RL,9805,,2148N 07959W, +,CV,MMO,Maio,Maio,,---4----,AI,9601,,1514N 02309W, +,CV,MTI,Mosteiros,Mosteiros,,---4----,AI,9601,,1502N 02420W, +,CV,NTO,Santo Antao,Santo Antao,,---4----,RQ,0901,,1703N 02510W, +,CV,PAL,Palmeira,Palmeira,,0-------,RQ,9506,,1646N 02259W, +,CV,PLM,Pedra de Lume,Pedra de Lume,,0-------,RQ,9506,,1646N 02254W, +,CV,PON,Porto Novo,Porto Novo,,0-------,RQ,9506,,1701N 02504W, +,CV,POP,Porto Preguica,Porto Preguica,,0-------,RQ,9506,,1634N 02417W, +,CV,RAI,Praia,Praia,,1--4----,AI,9601,,1455N 02331W, +,CV,SAM,Santa Maria,Santa Maria,,0-------,RQ,9506,,1636N 02254W, +,CV,SAR,Sal Rei,Sal Rei,,0-------,RQ,9506,,1611N 02255W, +,CV,SNE,Sao Nicolau,Sao Nicolau,,---4----,AI,9601,,1635N 02405W, +,CV,TAR,Tarrafal,Tarrafal,,0-------,RQ,9506,,1517N 02345W, +,CV,VXE,Sao Vicente,Sao Vicente,,1--45---,AI,9601,,1651N 02458W, +,CX,XCH,Christmas Island,Christmas Island,,---45---,AI,9601,,1029S 10538E, +,CZ,ASA,As,As,,-23----B,AA,9701,,5013N 01211E, +,CZ,BDC,Bohdalice,Bohdalice,JM,1-------,RQ,0901,,4913N 01702E, +,CZ,BEN,Benesov,Benesov,,-23-----,AA,9509,,4931N 01646E, +,CZ,BER,Beroun,Beroun,,-23-----,AA,9509,,4957N 01255E, +,CZ,BHD,Bohdanec,Bohdanec,,--3-----,RQ,0607,,5005N 01541E, +,CZ,BIL,Bila,Bila,,--3----B,AA,9701,,4927N 01827E, +,CZ,BIP,Bily Potok,Bily Potok,,--3----B,AA,9701,,5052N 01513E, +,CZ,BLA,Blansko,Blansko,,-23-----,AA,9509,,5042N 01406E, +,CZ,BOH,Bohumin,Bohumin,,-23----B,AA,9701,,4954N 01821E, +,CZ,BOL,Bolatice,Bolatice,,1-3-----,RQ,0607,,4957N 01805E, +,CZ,BOR,Bor u Tachova,Bor u Tachova,,-23-----,AA,9509,,4942N 01247E, +,CZ,BRE,Brezova,Brezova,,--3----B,AA,9701,,4916N 01747E, +,CZ,BRM,Broumov,Broumov,,--3----B,AA,9701,,5035N 01620E, +,CZ,BTC,Boretice,Boretice,,1-3-----,RQ,0607,,4930N 01507E, +,CZ,BUB,Bubovice,Bubovice,ST,1-------,RQ,0901,,4958N 01410E, +,CZ,BVA,Breclav,Breclav,,-23-5---,AA,9701,,4846N 01653E, +,CZ,BYS,Bysice,Bysice,PR,1-------,RQ,0901,,5019N 01437E, +,CZ,CHB,Cheb,Cheb,,-23-5---,AA,9509,,5005N 01222E, +,CZ,CHL,Chlebicov,Chlebicov,,--3-----,RL,1107,,4958N 01758E, +,CZ,CHM,Chomutov,Chomutov,,-23-----,AA,9701,,5028N 01325E, +,CZ,CHN,Chynov,Chynov,JC,--3-----,RQ,0901,,4924N 01449E, +,CZ,CHR,Chrudim,Chrudim,,-23-----,AA,9509,,4951N 01550E, +,CZ,CHT,Chotebuz,Chotebuz,,--3----B,AA,9701,,4946N 01834E, +,CZ,CHZ,Chrustenice,Chrustenice,OL,1-------,RQ,0901,,5000N 01409E, +,CZ,COO,Chotoviny,Chotoviny,JC,--3-----,RQ,0901,,4929N 01441E, +,CZ,DBI,Dubi,Dubi,,--3-----,AA,9509,,5041N 01347E, +,CZ,DIS,Divisov,Divisov,PR,123-----,RQ,0901,,4947N 01453E, +,CZ,DOH,Destne v Orlickych Horach,Destne v Orlickych Horach,KR,1-------,RQ,0901,,5018N 01621E, +,CZ,DOM,Domazlice,Domazlice,,-23-----,AA,9509,,4928N 01254E, +,CZ,DOV,Dukovany,Dukovany,VY,--3-----,RQ,0901,,4905N 01611E, +,CZ,FOL,Folmava,Folmava,,--3----B,AA,9701,,4923N 01247E, +,CZ,FRY,Frydlant,Frydlant,,-23-----,AA,9509,,5055N 01505E, +,CZ,HAT,Hate,Hate,,--3----B,AA,9701,,4955N 01503E, +,CZ,HLN,Hlinsko,Hlinsko,,-23-----,AA,9509,,4946N 01554E, +,CZ,HLP,Hlubocepy,Hlubocepy,ST,1-------,RQ,0901,,5002N 01424E, +,CZ,HNJ,Haje nad Jizerou,Haje nad Jizerou,LI,--3-----,RQ,0901,,5037N 01525E, +,CZ,HNO,Hnojni,Hnojni,MO,-23-----,RQ,0901,,4941N 01832E, +,CZ,HOD,Hodonin,Hodonin,,-23-----,AA,9509,,4950N 01547E, +,CZ,HOL,Holesov,Holesov,,---4----,AA,9509,,4920N 01735E, +,CZ,HOT,Hostomice,Hostomice,ZL,1-------,RQ,0901,,4950N 01403E, +,CZ,HSA,Hrensko,Hrensko,,1-3----B,AA,9701,,5052N 01414E, +,CZ,HST,Hostinne,Hostinne,JC,1-------,RQ,0901,,5032N 01543E, +,CZ,HTV,Horni Tresnovec,Horni Tresnovec,PA,1-------,RQ,0901,,4956N 01636E, +,CZ,HUC,Hlucin,Hlucin,MO,--3-----,RQ,0901,,4954N 01811E, +,CZ,HUV,Hruba Vrbka,Hruba Vrbka,JM,--3-----,RQ,0901,,4852N 01729E, +,CZ,HVA,Harrachov,Harrachov,,--3----B,AA,9701,,5046N 01526E, +,CZ,ICE,Ivancice,Ivancice,,--3-----,RQ,9806,,4906N 01623E, +,CZ,JBC,Jablonec nad Nisou,Jablonec nad Nisou,,-23-----,AA,9701,,5043N 01510E, +,CZ,JBV,Jablunkov,Jablunkov,,--3-----,AA,9509,,4935N 01846E, +,CZ,JEV,Jevicko,Jevicko,,--3-----,RQ,0607,,4938N 01643E, +,CZ,JHV,Jihlava,Jihlava,,-23-----,AA,9701,,4924N 01535E, +,CZ,JNH,Jindrichuv Hradec,Jindrichuv Hradec,,-23-----,AA,9509,,4909N 01500E, +,CZ,JRA,Jirikov,Jirikov,,--3----B,AA,9701,,5060N 01434E, +,CZ,KAP,Kaplice,Kaplice,,-23-----,AA,9509,,4844N 01430E, +,CZ,KDL,Karvina-Doly,Karvina-Doly,MO,--3-----,RQ,0901,,4950N 01829E, +,CZ,KLD,Kladno,Kladno,,-23-----,AA,9509,,5009N 01406E, +,CZ,KLK,Kraliky,Kraliky,,-23-----,AA,9701,,5005N 01646E, +,CZ,KLV,Karlovy Vary,Karlovy Vary,,-234----,AA,9606,,5014N 01252E, +,CZ,KMY,Kosmonosy,Kosmonosy,ST,--3-----,RQ,0901,,5026N 01456E, +,CZ,KNL,Kamenice Nad Lipou,Kamenice Nad Lipou,,--3-----,RQ,0901,,4918N 01505E, +,CZ,KOP,Koprivnice,Koprivnice,,-23-----,AA,9701,,4936N 01809E, +,CZ,KOR,Korycany,Korycany,JM,123-----,RQ,0901,,4906N 01710E, +,CZ,KRB,Dobruska,Dobruska,KR,1-------,RQ,0901,,5018N 01610E, +,CZ,KRI,Krinec,Krinec,JC,--3-----,RQ,0901,,5016N 01508E, +,CZ,KRL,Kralovec,Kralovec,,-23-----,AA,9509,,5041N 01558E, +,CZ,KRN,Krnov,Krnov,,-23----B,AA,9701,,5005N 01742E, +,CZ,KSN,Kostenice,Kostenice,JC,--3-----,RQ,0901,,5001N 01554E, +,CZ,KUR,Kurim,Kurim,,--3-----,RL,9901,,4918N 01632E, +,CZ,LBC,Lubenec,Lubenec,,1-3-----,RQ,0607,,5008N 01319E, +,CZ,LBD,Lazne Belohrad,Lazne Belohrad,KR,--3-----,RQ,0901,,5026N 01535E, +,CZ,LBR,Liberec,Liberec,,-23-5---,AA,9509,,5046N 01504E, +,CZ,LCC,Lulec,Lulec,JC,1-------,RQ,0901,,4915N 01656E, +,CZ,LCH,Lichkov,Lichkov,,-2-----B,AA,9701,,5006N 01640E, +,CZ,LEC,Lechovice,Lechovice,,1-3-----,RQ,0607,,4852N 01613E, +,CZ,LMS,Litomysl,Litomysl,,-23-----,AA,9701,,4952N 01619E, +,CZ,LOD,Lodenice,Lodenice,,1-------,RQ,0212,,4901N 01628E, +,CZ,LOE,Letovice,Letovice,,1-3-----,RQ,0607,,4933N 01634E, +,CZ,LOK,Loukov,Loukov,ST,--3-----,RQ,0901,,5034N 01502E, +,CZ,LTC,Litomerice,Litomerice,,-23-----,AA,9701,,5032N 01408E, +,CZ,LVC,Lovosice,Lovosice,,-23-----,AA,9701,,5031N 01403E, +,CZ,LZH,Lanzhot,Lanzhot,,-23----B,AA,9701,,4843N 01658E, +,CZ,MCA,Mikulovice,Mikulovice,,-23----B,AA,9701,,4857N 01606E, +,CZ,MCE,Cimelice,Cimelice,JM,1-------,RQ,0901,,4928N 01404E, +,CZ,MEL,Melnik,Melnik,,-23-----,AA,9509,,5021N 01433E, +,CZ,MHL,Mohelnice,Mohelnice,,-23-----,AA,9701,,4947N 01655E, +,CZ,MIL,Milevsko,Milevsko,,-23-----,AA,9509,,4927N 01422E, +,CZ,MJB,Mosty u Jablunkova,Mosty u Jablunkova,,-23----B,AA,9701,,4932N 01845E, +,CZ,MKL,Mikulov,Mikulov,,--3----B,AA,9701,,4848N 01638E, +,CZ,MKV,Moravsky Krumlov,Moravsky Krumlov,,-23-----,RL,0601,,4903N 01619E, +,CZ,MMN,Mimon,Mimon,,-2------,RQ,9705,,5040N 01443E, +,CZ,MOR,Moravicany,Moravicany,OL,1-3-----,RQ,0901,,4945N 01658E, +,CZ,MOV,Vitkov,Vitkov,MO,--3-----,RQ,0901,,4947N 01745E, +,CZ,MRA,Moravsky Pisek,Moravsky Pisek,JM,1-3-----,RQ,0901,,4859N 01720E, +,CZ,MST,Most,Most,,-23-----,AA,9701,,5030N 01338E, +,CZ,NAA,Nachod,Nachod,,--3----B,AA,9701,,5025N 01610E, +,CZ,NED,Nedasova Lhota,Nedasova Lhota,,--3----B,AA,9701,,4907N 01805E, +,CZ,NEJ,Nejdek,Nejdek,,--3-----,RQ,9811,,5019N 01244E, +,CZ,NMB,Nymburk,Nymburk,,-23-----,AA,9509,,5013N 01505E, +,CZ,NPJ,Napajedla,Napajedla,,--3-----,RQ,0607,,4910N 01731E, +,CZ,NVS,Nosovice,Nosovice,,--3-----,RL,0001,,4940N 01826E, +,CZ,ODO,Odolena Voda,Odolena Voda,,1-3-----,RQ,0607,,5014N 01425E, +,CZ,OLO,Olomouc,Olomouc,,-2345---,AA,9701,,4936N 01715E, +,CZ,OLR,Rohle,Rohle,OL,--3-----,RQ,0901,,4952N 01701E, +,CZ,OPA,Opava,Opava,,-23-----,AA,9701,,4956N 01754E, +,CZ,OSA,Olesna,Olesna,,--3-----,RQ,0901,,4927N 01516E, +,CZ,OSR,Ostrava,Ostrava,,-2345---,AA,9606,,4950N 01817E, +,CZ,OTC,Otrokovice,Otrokovice,,--34----,AA,9509,,4913N 01732E, +,CZ,OUS,Olsany u Sumperka,Olsany u Sumperka,JM,--3-----,RQ,0901,,4958N 01652E, +,CZ,PAO,Osik,Osik,PA,1-------,RQ,0901,,4951N 01617E, +,CZ,PEL,Pelhrimov,Pelhrimov,,-23-----,AA,9509,,5004N 01221E, +,CZ,PHE,Pruhonice,Pruhonice,,--3-----,RL,0601,,5000N 01434E, +,CZ,PLZ,Plzen,Plzen,,-2345---,AA,9701,,4945N 01323E, +,CZ,POL,Polerady,Polerady,,--3-----,RL,0001,,5012N 01436E, +,CZ,POO,Potvorov,Potvorov,PL,--3-----,RQ,0901,,5001N 01324E, +,CZ,PRB,Pardubice,Pardubice,,-2345---,AA,9701,,5002N 01547E, +,CZ,PRC,Vestec,Vestec,PR,--3-----,RQ,0901,,4959N 01430E, +,CZ,PRG,Praha,Praha,,-2345---,AA,9606,,5004N 01427E, +,CZ,PRI,Pribram,Pribram,,-23-----,AA,9509,,4942N 01410E, +,CZ,PRO,Prostejov,Prostejov,,-23-----,AA,9701,,4928N 01707E, +,CZ,PRT,Prachatice,Prachatice,,-23-----,AA,9509,,4857N 01353E, +,CZ,PRV,Prerov,Prerov,,-234----,AA,9701,,4927N 01727E, +,CZ,PTV,Petrov,Petrov,,--3-----,AA,9701,,4932N 01629E, +,CZ,PYS,Pysely,Pysely,JC,--3-----,RQ,0901,,4953N 01441E, +,CZ,RAJ,Rajhrad,Rajhrad,JM,123-----,RQ,0901,,4905N 01636E, +,CZ,RAU,Radonice,Radonice,US,1-------,RQ,0901,,5009N 01437E, +,CZ,RDN,Radonice,Radonice,ST,1-------,RQ,0901,,5009N 01437E, +,CZ,RKC,Rokycany,Rokycany,,--3-----,AA,9701,,4948N 01339E, +,CZ,RNK,Rychnov nad Kneznou,Rychnov nad Kneznou,,-23-----,AA,9509,,5010N 01616E, +,CZ,RNL,Roudnice nad Labem,Roudnice nad Labem,,-23-----,AA,9701,,5026N 01416E, +,CZ,RPR,Roznov pod Radhosthem,Roznov pod Radhosthem,,--3-----,RL,9806,,4927N 01809E, +,CZ,RPY,Rudna u Prahy,Rudna u Prahy,ST,--3-----,RQ,0901,,5002N 01414E, +,CZ,RTV,Rotava,Rotava,KA,--3-----,RQ,0901,,5018N 01234E, +,CZ,RUA,Rumburk,Rumburk,,-2-----B,AA,9701,,5057N 01433E, +,CZ,RUP,Ricany u Prahy,Ricany u Prahy,PL,--3-----,RQ,0901,,4959N 01440E, +,CZ,RYN,Rynoltice,Rynoltice,LI,--3-----,RQ,0901,,5047N 01449E, +,CZ,RZA,Rozvadov,Rozvadov,,--3----B,AA,9701,,4940N 01233E, +,CZ,SAA,Satov,Satov,,-2-----B,AA,9701,,4848N 01601E, +,CZ,SCL,Skalice u Ceske Lipy,Skalice u Ceske Lipy,JC,--3-----,RQ,0901,,5045N 01432E, +,CZ,SDC,Sudice,Sudice,,--3----B,AA,9701,,4911N 01614E, +,CZ,SKN,Strakonice,Strakonice,,-23-----,AA,9509,,4918N 01353E, +,CZ,SLV,Miroslav,Miroslav,JC,--3-----,RL,0901,,4857N 01619E, +,CZ,SML,Semily,Semily,,-23-----,AA,9509,,5038N 01526E, +,CZ,SNY,Slatinany,Slatinany,,--3-----,AA,9509,,4955N 01549E, +,CZ,SOK,Sokolov,Sokolov,,-23-----,AA,9701,,5011N 01238E, +,CZ,SPC,Stary Plzenec,Stary Plzenec,,1-3-----,RQ,0607,,4942N 01328E, +,CZ,SRL,Strelna,Strelna,,--3----B,AA,9701,,4911N 01806E, +,CZ,SRV,Studenka,Studenka,MO,-23-----,RQ,0901,,4943N 01804E, +,CZ,STA,Slatina,Slatina,,1-3-----,RQ,0607,,4901N 01601E, +,CZ,STV,Svitavy,Svitavy,,-23-----,AA,9701,,4946N 01628E, +,CZ,STZ,Strazov,Strazov,PL,--3-----,RQ,0901,,4918N 01315E, +,CZ,SUD,Sudomerice,Sudomerice,,-23----B,AA,9701,,4852N 01715E, +,CZ,SUL,Sulice,Sulice,PA,--3-----,RQ,0901,,4956N 01433E, +,CZ,SUM,Sumperk,Sumperk,,-23-----,AA,9701,,4958N 01658E, +,CZ,SUS,Susice,Susice,,-23-----,AA,9701,,4914N 01331E, +,CZ,SVK,Svaty Kriz,Svaty Kriz,,--3----B,AA,9701,,5003N 01221E, +,CZ,TAC,Tachov,Tachov,,-23-----,AA,9509,,5033N 01438E, +,CZ,TBR,Tabor,Tabor,,-23-----,AA,9509,,4925N 01440E, +,CZ,TEP,Teplice,Teplice,,-23-----,AA,9701,,5038N 01349E, +,CZ,TNC,Trinec,Trinec,,-23-5---,AA,9509,,4941N 01840E, +,CZ,TNN,Blatna,Blatna,JC,1-------,RQ,0901,,4926N 01353E, +,CZ,TNO,Tyniste nad Orlici,Tyniste nad Orlici,KR,--3-----,RQ,0901,,5009N 01605E, +,CZ,TRE,Trebotov,Trebotov,,--3-----,RQ,0901,,4958N 01417E, +,CZ,TRO,Trnovany,Trnovany,US,--3-----,RQ,0901,,5033N 01411E, +,CZ,TRU,Trutnov,Trutnov,,-23-----,AA,9701,,5034N 01555E, +,CZ,TSY,Trhove Sviny,Trhove Sviny,JC,--3-----,RQ,0901,,4851N 01438E, +,CZ,TUR,Turnov,Turnov,,-23-----,AA,9509,,5035N 01509E, +,CZ,UZK,Uzice,Uzice,ST,--3-----,RQ,0901,,4952N 01458E, +,CZ,VBY,Vseruby,Vseruby,,--3----B,AA,9701,,4920N 01259E, +,CZ,VES,Velika Ves,Velika Ves,JC,1-------,RQ,1101,,5015N 01427E, +,CZ,VFA,Varnsdorf,Varnsdorf,,-23----B,AA,9701,,5055N 01437E, +,CZ,VIM,Vimperk,Vimperk,,-23-----,AA,9509,,4903N 01346E, +,CZ,VJA,Vojtanov,Vojtanov,,-23----B,AA,9701,,5010N 01219E, +,CZ,VKV,Vyskov,Vyskov,,-23-----,AA,9509,,4917N 01660E, +,CZ,VLB,Vselibice,Vselibice,LI,--3-----,RQ,0901,,5039N 01457E, +,CZ,VNM,Vesel� nad Moravou,Veseli nad Moravou,JM,-23-----,RL,0901,,4857N 01723E, +,CZ,VRE,Vresova,Vresova,KA,--3-----,RQ,0901,,5016N 01242E, +,CZ,VRY,Volary,Volary,,1-3-----,RQ,0607,,4855N 01353E, +,CZ,VTM,Vratimov,Vratimov,MO,--3-----,RQ,0901,,4946N 01819E, +,CZ,ZAH,Zahostice,Zahostice,JC,--3-----,RQ,0901,,4924N 01449E, +,CZ,ZAM,Zamberk,Zamberk,,-23-----,AA,9701,,5005N 01628E, +,CZ,ZAT,Zatec,Zatec,,-23-5---,AA,9701,,5020N 01333E, +,CZ,ZHR,Zlate Hory,Zlate Hory,,--3----B,AA,9701,,5016N 01724E, +,CZ,ZKQ,Rohatec,Rohatec,,--3-----,RL,9805,,4853N 01711E, +,CZ,ZLN,Zlin,Zlin,,-234----,AA,9701,,4914N 01740E, +,CZ,ZMO,Znojmo,Znojmo,,-23-----,AA,9701,,4851N 01603E, +,CZ,ZNM,Zabreh na Morave,Zabreh na Morave,,--3-----,RQ,0607,,4953N 01653E, +,DE,AAL,Aalen,Aalen,BW,-23-----,AF,9501,,4850N 01006E, +,DE,AAR,Aarbergen,Aarbergen,HE,--3-----,AF,9501,,5015N 00805E, +,DE,ABC,Altbach,Altbach,BW,--3-----,RL,9811,,4843N 00923E, +,DE,ABE,Abensberg,Abensberg,BY,-23-----,AF,9501,,4850N 01151E, +,DE,ABK,Albbruck,Albbruck,BW,-23-----,AF,9506,,4736N 00808E, +,DE,ABR,Abenberg,Abenberg,BY,1-3-----,RQ,0901,,4914N 01056E, +,DE,ABT,Abtswind,Abtswind,BY,--3-----,AF,9506,,4946N 01022E, +,DE,ACH,Achern,Achern,BW,-23-----,AF,9501,,4838N 00804E, +,DE,ADD,Bad Endorf,Bad Endorf,BY,--3-----,RQ,0901,,4754N 01218E, +,DE,AEG,Ascheberg,Ascheberg,NW,--3-----,RL,0002,,5147N 00737E, +,DE,AER,Aerzen,Aerzen,NI,--3-----,AF,9501,,5203N 00916E, +,DE,AFD,Altfeld,Altfeld,BY,--3-----,RQ,0901,,4950N 00934E, +,DE,AFL,Altfriedland,Altfriedland,BB,--3-----,RL,1307,,5238N 01413E, +,DE,AFT,Alfter,Alfter,NW,--3-----,RL,9805,,5044N 00701E, +,DE,AGB,Augsburg,Augsburg,BY,123-----,AF,9501,,4822N 01054E, +,DE,AGT,Augustdorf,Augustdorf,NW,--3-----,RL,0201,,5155N 00844E, +,DE,AHA,Ahaus,Ahaus,NW,-23-----,AF,9501,,5205N 00700E, +,DE,AHH,Walderbach,Walderbach,BY,1-------,RQ,0901,,4911N 01223E, +,DE,AHO,Ahlhorn,Ahlhorn,NI,1-3-----,RQ,0901,,5254N 00813E, +,DE,AHP,Hahn,Hahn,RP,--3-----,RQ,0901,,4958N 00716E, +,DE,AHR,Ahrensburg,Ahrensburg,SH,-23-----,AF,9501,,5340N 01014E, +,DE,AIC,Aichach,Aichach,BY,-23-----,AF,9501,,4828N 01108E, +,DE,AKE,Aken,Aken,ST,--3-----,RQ,0901,,5151N 01203E, +,DE,ALB,Albstadt,Albstadt,BW,-23-----,AF,9501,,4814N 00860E, +,DE,ALD,Alsfeld,Alsfeld,HE,-23-----,AF,9501,,5045N 00916E, +,DE,ALF,Alfeld/Leine,Alfeld/Leine,NI,123-----,AF,9501,,5159N 00949E, +,DE,ALG,Alt�tting,Altotting,BY,-23-----,AF,9501,,4814N 01241E, +,DE,ALH,Alsbach,Alsbach,RP,--3-----,AF,9506,,5028N 00740E, +,DE,ALK,Altenkirchen/Westerwald,Altenkirchen/Westerwald,RP,-23-----,AF,9501,,5041N 00739E, +,DE,ALR,Altusried,Altusried,BY,--3-----,AF,9506,,4749N 01013E, +,DE,ALT,Altena,Altena,NW,123-----,AF,9501,,5118N 00740E, +,DE,ALZ,Alzenau,Alzenau,BY,-23-----,AF,9501,,5005N 00905E, +,DE,AMK,Altenmarkt an der Alz,Altenmarkt an der Alz,BY,--3-----,RQ,9704,,4800N 01232E, +,DE,AMM,Ammerbuch,Ammerbuch,BW,-23-----,AF,9506,,4833N 00857E, +,DE,AMO,Amorbach,Amorbach,BY,--3-----,AF,9501,,4939N 00913E, +,DE,ANK,Anklam,Anklam,MV,123-----,AF,9506,,5351N 01341E, +,DE,ANN,Annweiler,Annweiler,RP,-23-----,AF,9506,,4912N 00758E, +,DE,APN,Apensen,Apensen,NI,1-3-----,RQ,0901,,5326N 00937E, +,DE,APO,Apolda,Apolda,TH,-23-----,AF,9501,,5101N 01131E, +,DE,APP,Amperpettenbach,Amperpettenbach,BY,--3-----,RL,0201,,4820N 01132E, +,DE,APW,Appenweier,Appenweier,BW,--3-----,RL,0002,,4832N 00759E, +,DE,ARB,Allersberg,Allersberg,BY,--3-----,RL,0004,,4915N 01114E, +,DE,ARH,Anr�chte,Anrochte,NW,--3-----,RL,0201,,5134N 00819E, +,DE,ARI,Aresing,Aresing,BY,--3-----,RQ,0901,,4832N 01118E, +,DE,ASC,Aschaffenburg,Aschaffenburg,BY,123-----,AF,9501,,4958N 00909E, +,DE,ASG,Altensteig,Altensteig,BW,--3-----,RL,0006,,4835N 00836E, +,DE,ASH,Ahrensh�ft,Ahrenshoft,SH,--3-----,AF,9506,,5433N 00904E, +,DE,ASN,Aschersleben,Aschersleben,ST,-23-----,AF,9501,,5145N 01128E, +,DE,ASS,Assel,Assel,NI,1-3-----,AF,9501,,5341N 00926E, +,DE,ASU,Aschau,Aschau,TH,--3-----,RL,0001,,5039N 01108E, +,DE,ATB,Altenberge,Altenberge,NW,--3-----,RL,0101,,5203N 00728E, +,DE,ATN,Attendorn,Attendorn,NW,--3-----,RL,0002,,5108N 00754E, +,DE,AUE,Auerbach/Vogtland,Auerbach/Vogtland,SN,-23-----,AF,9501,,5031N 01224E, +,DE,AUL,Aulendorf,Aulendorf,BW,123-----,AF,9501,,4757N 00938E, +,DE,AUM,Aum�hle,Aumuhle,SH,-23-----,AF,9501,,5332N 01019E, +,DE,AWD,Aichwald,Aichwald,BW,--3-----,RL,0201,,4846N 00923E, +,DE,AWI,Zwiefalten,Zwiefalten,BW,1-------,RQ,0901,,4814N 00928E, +,DE,AXS,Aschau am Inn,Aschau am Inn,BY,--3-----,RL,9805,,4812N 01221E, +,DE,AZY,Alzey,Alzey,RP,--3-----,AF,9501,,4945N 00807E, +,DE,BAC,Backnang,Backnang,BW,-23-----,AF,9501,,4857N 00926E, +,DE,BAH,Bahratal,Bahratal,SN,--3-----,AF,9501,,5025N 01024E, +,DE,BAI,Bad Aibling,Bad Aibling,BY,-23-----,AF,9501,,4752N 01201E, +,DE,BAL,Balingen,Balingen,BW,-23-----,AF,9501,,4816N 00851E, +,DE,BAM,Bamberg,Bamberg,BY,123-----,AF,9501,,4953N 01053E, +,DE,BAP,Barntrup,Barntrup,NW,--3-----,AF,9506,,5159N 00907E, +,DE,BAR,Bargteheide,Bargteheide,SH,-23-----,AF,9501,,5344N 01016E, +,DE,BAT,Ballenstedt,Ballenstedt,ST,-23-----,AF,9501,,5143N 01114E, +,DE,BAU,Bautzen,Bautzen,SN,-23-----,AF,9501,,5111N 01426E, +,DE,BAX,Bad Alexandersbad,Bad Alexandersbad,BY,--3-----,AF,9501,,5001N 01201E, +,DE,BBE,Bad Berleburg,Bad Berleburg,NW,-23-----,AF,9501,,5103N 00824E, +,DE,BBH,Barth,Barth,MV,1-3-----,AI,1807,,5422N 01244E, +,DE,BBI,Bietigheim-Bissingen,Bietigheim-Bissingen,BW,123-----,AF,9501,,4857N 00908E, +,DE,BBL,Biblis,Biblis,HE,--3-----,RL,0001,,4942N 00825E, +,DE,BBN,Babenhausen,Babenhausen,HE,-234----,AF,9501,,4957N 00857E, +,DE,BBR,Bad Brambach,Bad Brambach,SN,-23-----,AF,9501,,5013N 01219E, +,DE,BBU,Bad Br�ckenau,Bad Bruckenau,BY,--3-----,RL,9811,,5019N 00947E, +,DE,BBY,Barby,Barby,ST,--3-----,RL,0201,,5158N 01153E, +,DE,BBZ,Bebitz,Bebitz,ST,--3-----,RL,0201,,5143N 01145E, +,DE,BCK,Bickendorf,Bickendorf,RP,--3-----,RL,0201,,5002N 00630E, +,DE,BCL,Bruchsal,Bruchsal,BW,-23-----,AF,9501,,4907N 00836E, +,DE,BCN,Burgkirchen,Burgkirchen,BY,-23-----,AF,9501,,4810N 01244E, +,DE,BDC,Bad Camberg,Bad Camberg,HE,-23-----,AF,9506,,5018N 00816E, +,DE,BDG,Bedburg-Hau,Bedburg-Hau,NW,--3-----,RL,9912,,5146N 00611E, +,DE,BDK,Bad Krozingen,Bad Krozingen,BW,-23-----,RL,0201,,4755N 00742E, +,DE,BDR,Bad Driburg,Bad Driburg,NW,-23-----,AF,9501,,5144N 00901E, +,DE,BDS,Bad Schandau,Bad Schandau,SN,123-----,AF,9501,,5055N 01409E, +,DE,BDT,B�rstadt,Burstadt,HE,-23-----,AF,9501,,4939N 00828E, +,DE,BDU,Bad D�rkheim,Bad Durkheim,RP,-234----,AF,9501,,4928N 00810E, +,DE,BDW,Bad Windsheim,Bad Windsheim,BY,--3-----,RL,0201,,4930N 01025E, +,DE,BEB,Bebra,Bebra,HE,-23-----,AF,9501,,5059N 00950E, +,DE,BEF,Brand-Erbisdorf,Brand-Erbisdorf,SN,-23-----,AF,9501,,5052N 01319E, +,DE,BEG,Berchtesgaden,Berchtesgaden,BY,-23-----,AF,9501,,4738N 01300E, +,DE,BEH,Bensheim,Bensheim,HE,-23-----,AF,9501,,4941N 00837E, +,DE,BEI,Beidenfleth,Beidenfleth,SH,1-3-----,AF,9501,,5353N 00925E, +,DE,BEK,Bernkastel-Kues,Bernkastel-Kues,RP,1-3-----,AF,9501,,4955N 00704E, +,DE,BEL,Bellheim,Bellheim,RP,-23-----,AF,9506,,4912N 00817E, +,DE,BEM,Besigheim,Besigheim,BW,-23-----,AF,9501,,4860N 00909E, +,DE,BET,Betzdorf,Betzdorf,RP,-23-----,AF,9501,,5047N 00752E, +,DE,BEV,Beverungen,Beverungen,NW,123-----,AF,9506,,5140N 00923E, +,DE,BEX,Bexbach,Bexbach,SL,-23-----,AF,9501,,4921N 00715E, +,DE,BFE,Bielefeld,Bielefeld,NW,-23-----,AF,9501,,5201N 00832E, +,DE,BFH,Bad Friedrichshall,Bad Friedrichshall,BW,1-3-----,AF,9501,,4914N 00913E, +,DE,BFL,Borsfleth,Borsfleth,SH,1-3-----,AF,9501,,5350N 00926E, +,DE,BFN,Bad Salzuflen,Bad Salzuflen,NW,-23-----,AF,9501,,5205N 00845E, +,DE,BGK,Benningen Am Neckar,Benningen Am Neckar,BW,--3-----,RQ,0901,,4857N 00915E, +,DE,BGO,Bad Godesberg,Bad Godesberg,NW,123-----,AF,9501,,5041N 00709E, +,DE,BGT,Burgthann,Burgthann,BY,-23-----,AF,9506,,4921N 01119E, +,DE,BHD,Baumholder,Baumholder,RP,-23-----,AF,9506,,4937N 00720E, +,DE,BHE,Bad Hersfeld,Bad Hersfeld,HE,123-----,AF,9501,,5052N 00941E, +,DE,BHF,Bad Honnef,Bad Honnef,NW,-23-----,AF,9501,,5039N 00714E, +,DE,BHI,Bad H�nningen,Bad Honningen,RP,-23-----,AF,9501,,5031N 00718E, +,DE,BHO,Bad Homburg,Bad Homburg,HE,-23-----,AF,9501,,5014N 00837E, +,DE,BHR,Bobenheim-Roxheim,Bobenheim-Roxheim,RP,-23-----,AF,9501,,4935N 00822E, +,DE,BHS,Bodelshausen,Bodelshausen,BW,--3-----,RL,0201,,4824N 00858E, +,DE,BHT,Bocholt,Bocholt,NW,-23-----,AF,9501,,5150N 00637E, +,DE,BID,Bitterfeld-Wolfen,Bitterfeld-Wolfen,ST,-23-----,AF,1601,,5139N 01218E, +,DE,BIE,Biebesheim,Biebesheim,HE,-23-----,AF,9501,,4947N 00828E, +,DE,BIH,Biessenhofen,Biessenhofen,BY,--3-----,AF,9501,,4750N 01038E, +,DE,BIO,Baiersdorf,Baiersdorf,BY,--3-----,RQ,0901,,4939N 01102E, +,DE,BIR,Birkenfeld,Birkenfeld,RP,--3-----,AF,9501,,4939N 00710E, +,DE,BIS,Bischweier,Bischweier,BW,-23-----,AF,9501,,4850N 00817E, +,DE,BIT,Bitburg,Bitburg,RP,-234----,AF,9501,,4958N 00631E, +,DE,BKF,Biedenkopf,Biedenkopf,HE,123-----,AF,9501,,5055N 00832E, +,DE,BKI,Bad Kissingen,Bad Kissingen,BY,-23-----,AF,9501,,5012N 01004E, +,DE,BKL,Berkatal,Berkatal,HE,--3-----,RL,0201,,5114N 00955E, +,DE,BKN,Bergkamen,Bergkamen,NW,-23-----,AF,9501,,5137N 00738E, +,DE,BKR,Bad Kreuznach,Bad Kreuznach,RP,-23-----,AF,9501,,4951N 00752E, +,DE,BKT,Burgkunstadt,Burgkunstadt,BY,-23-----,AF,9501,,5009N 01115E, +,DE,BLB,Bad Lauterberg,Bad Lauterberg,NI,-23-----,AF,9501,,5138N 01028E, +,DE,BLE,Blaubeuren,Blaubeuren,BW,--3-----,RL,9805,,4825N 00947E, +,DE,BLF,Blaufelden,Blaufelden,BW,--3-----,RL,9805,,4918N 00958E, +,DE,BLH,Bindlach,Bindlach,BY,-23-----,AF,9506,,4959N 01137E, +,DE,BLN,B�ttelborn,Buttelborn,HE,--3-----,AF,9501,,4955N 00832E, +,DE,BLO,Buchloe,Buchloe,BY,--3-----,AF,9501,,4802N 01043E, +,DE,BLT,B�hlertal,Buhlertal,BW,--3-----,RL,9811,,4841N 00811E, +,DE,BLU,Blumberg,Blumberg,BW,--34----,AF,9501,,4750N 00832E, +,DE,BME,Bad Mergentheim,Bad Mergentheim,BW,-23-----,AF,9501,,4929N 00946E, +,DE,BML,Bad M�nstereifel,Bad Munstereifel,NW,-23-----,AF,9501,,5033N 00646E, +,DE,BMP,Bempflingen,Bempflingen,BW,-23-----,AF,9506,,4834N 00916E, +,DE,BMT,Barmstedt,Barmstedt,SH,-23-----,AF,9501,,5347N 00946E, +,DE,BMU,Bad M�nder,Bad Munder,NI,-23-----,AF,9501,,5212N 00928E, +,DE,BNA,Bad Nauheim,Bad Nauheim,HE,-23-----,AF,9501,,5022N 00845E, +,DE,BNB,Berneburg,Berneburg,HE,--3-----,RL,0201,,5104N 00953E, +,DE,BNE,Bad Neustadt,Bad Neustadt,BY,-23-----,AF,9501,,5019N 01013E, +,DE,BNL,Bad Soden-Salm�nster,Bad Soden-Salmunster,HE,--3-----,RL,9811,,5017N 00922E, +,DE,BNN,B�nen,Bonen,NW,-23-----,AF,9501,,5136N 00746E, +,DE,BNR,Bad Neuenahr-Ahrweiler,Bad Neuenahr-Ahrweiler,RP,-234----,AF,9501,,5033N 00707E, +,DE,BNT,Bergneustadt,Bergneustadt,NW,--34----,AF,9501,,5101N 00739E, +,DE,BOB,Bobingen,Bobingen,BY,-23-----,AF,9501,,4816N 01050E, +,DE,BOC,Bockhorst,Bockhorst,NW,1-3-----,AF,9501,,5204N 00812E, +,DE,BOE,B�blingen,Boblingen,BW,123-----,AF,9501,,4841N 00901E, +,DE,BOF,Berndshof,Berndshof,MV,1-------,AI,0201,,5344N 01406E, +,DE,BOL,Bad Oldesloe,Bad Oldesloe,SH,-23-----,AF,9501,,5349N 01022E, +,DE,BOM,Bochum,Bochum,NW,-23-----,AF,9501,,5129N 00713E, +,DE,BON,Bonn,Bonn,NW,1234----,AF,9501,,5044N 00706E, +,DE,BOP,Bopfingen,Bopfingen,BW,-23-----,AF,9501,,4851N 01021E, +,DE,BOR,Borken,Borken,NW,-23-----,AF,9501,,5151N 00651E, +,DE,BOT,Bottrop,Bottrop,NW,123-----,AF,9501,,5131N 00656E, +,DE,BOV,Bovenden,Bovenden,NI,-23-----,AF,9506,,5135N 00956E, +,DE,BOY,Bad Oeynhausen,Bad Oeynhausen,NW,123-----,AF,9501,,5212N 00848E, +,DE,BPE,Burgpreppach,Burgpreppach,BY,--3-----,RQ,0901,,5008N 01039E, +,DE,BPT,Bad Peterstal-Griesbach,Bad Peterstal-Griesbach,BW,-23-----,AF,9501,,4826N 00813E, +,DE,BRB,Brunsb�ttel,Brunsbuttel,SH,123-----,AF,9501,,5354N 00908E, +,DE,BRC,Brachttal,Brachttal,HE,--3-----,AF,9506,,5019N 00918E, +,DE,BRD,Briedern,Briedern,RP,--3-----,RL,0201,,5007N 00713E, +,DE,BRE,Bremen,Bremen,HB,12345---,AF,9501,,5305N 00848E, +,DE,BRF,Brebach-Fechingen,Brebach-Fechingen,SL,--3-----,AF,9501,,4912N 00704E, +,DE,BRG,Burg/Dithmarschen,Burg/Dithmarschen,SH,1-3-----,AF,9501,,5360N 00915E, +,DE,BRH,Bad Reichenhall,Bad Reichenhall,BY,-23-----,AF,9501,,4743N 01253E, +,DE,BRI,Brilon,Brilon,NW,1-3-----,AF,9501,,5124N 00834E, +,DE,BRM,Bramsche,Bramsche,NI,1-3-----,AF,9501,,5224N 00759E, +,DE,BRN,B�rnsen,Bornsen,SH,1-3-----,AF,9501,,5329N 01017E, +,DE,BRO,Brohl-L�tzing,Brohl-Lutzing,RP,123-----,AF,9501,,5029N 00720E, +,DE,BRP,Bad Rippoldsau-Schapbach,Bad Rippoldsau-Schapbach,BW,--3-----,RQ,0101,,4825N 00818E, +,DE,BRS,Birstein,Birstein,HE,--3-----,AF,9501,,5024N 00918E, +,DE,BRT,Breitenberg,Breitenberg,BY,1-3-----,AF,9501,,4842N 01348E, +,DE,BRV,Bremerhaven,Bremerhaven,HB,1234----,AF,9501,,5332N 00836E, +,DE,BRZ,Bretzenheim,Bretzenheim,RP,-23-----,AF,9506,,4953N 00754E, +,DE,BSA,Bad S�ckingen,Bad Sackingen,BW,123-----,AF,9501,,4733N 00757E, +,DE,BSE,Bad Segeberg,Bad Segeberg,SH,-23-----,AF,9501,,5357N 01019E, +,DE,BSH,Breisach,Breisach,BW,123-----,AF,9501,,4802N 00735E, +,DE,BSK,Burgstaaken/Fehmarn,Burgstaaken/Fehmarn,SH,123-----,AF,9501,,5426N 01112E,Burg auf Fehmarn +,DE,BSN,Bad Sch�nborn,Bad Schonborn,BW,-23-----,AF,9506,,4913N 00839E, +,DE,BSO,Bad Soden am Taunus,Bad Soden am Taunus,HE,-23-----,AF,9501,,5009N 00829E, +,DE,BSS,Bessenbach,Bessenbach,BY,--3-----,AF,9506,,4958N 00915E, +,DE,BSU,Bad Schwartau,Bad Schwartau,SH,--3-----,RN,0105,,5355N 01042E, +,DE,BTD,B�rgstadt,Burgstadt,BY,--3-----,RL,0002,,4943N 00916E, +,DE,BTH,Bammental,Bammental,BW,-23-----,AF,9506,,4921N 00847E, +,DE,BTL,Baunatal,Baunatal,HE,--3-----,AF,9501,,5115N 00925E, +,DE,BTN,Bretten,Bretten,BW,-23-----,AF,9501,,4902N 00842E, +,DE,BTO,Bad T�lz,Bad Tolz,BY,-23-----,AF,9501,,4746N 01133E, +,DE,BTZ,B�tzingen,Botzingen,BW,-23-----,AF,9501,,4804N 00743E, +,DE,BUA,Baunach,Baunach,BY,--3-----,RL,9805,,4959N 01051E, +,DE,BUD,Budenheim,Budenheim,RP,-23-----,RL,9805,,5001N 00810E, +,DE,BUE,B�nde,Bunde,NW,--3-----,AF,9501,,5212N 00835E, +,DE,BUF,Burkhardtsdorf,Burkhardtsdorf,SN,-23-----,AF,9501,,5044N 01255E, +,DE,BUG,Breuberg,Breuberg,HE,--3-----,AF,9501,,4949N 00902E, +,DE,BUH,Burbach/Siegen,Burbach/Siegen,NW,--3-----,AF,9501,,5045N 00805E, +,DE,BUM,B�sum,Busum,SH,123-----,AF,9501,,5408N 00852E, +,DE,BUN,B�dingen,Budingen,HE,-23-----,AF,9501,,5018N 00906E, +,DE,BUS,Burgstetten,Burgstetten,BW,-23-----,AF,9506,,4855N 00923E, +,DE,BUU,Braunau,Braunau,HE,-23-----,RL,0201,,5105N 00907E, +,DE,BVI,Bad Vilbel,Bad Vilbel,HE,-23-----,AF,9501,,5012N 00845E, +,DE,BWF,Bad Wimpfen,Bad Wimpfen,BW,--3-----,RL,9805,,4914N 00910E, +,DE,BWG,Bestwig,Bestwig,NW,-23-----,AF,9501,,5122N 00824E, +,DE,BWI,Bad Wildungen,Bad Wildungen,HE,-23-----,AF,9501,,5106N 00906E, +,DE,BWL,Burgwedel,Burgwedel,NI,--3-----,AF,9501,,5230N 00952E, +,DE,BYE,Uehlfeld,Uehlfeld,BY,--3-----,RL,0901,,4940N 01043E, +,DE,BYU,Bayreuth,Bayreuth,BY,-234----,AI,9501,,4957N 01135E, +,DE,BYW,Weissenbrunn,Weissenbrunn,BY,1-------,RQ,0901,,5012N 01121E, +,DE,BZN,Bad Bergzabern,Bad Bergzabern,RP,-23-----,AF,9501,,4906N 00760E, +,DE,CAL,Calw,Calw,BW,-23-----,AF,9501,,4843N 00845E, +,DE,CAN,Calden,Calden,HE,--34----,AF,9501,,5124N 00922E, +,DE,CCC,Leimbach,Leimbach,NI,1-------,RQ,0901,,5001N 00615E, +,DE,CHA,Cham,Cham,BY,-23-----,AF,9501,,4913N 01240E, +,DE,CHE,Chemnitz,Chemnitz,SN,-23-----,AF,9501,,5050N 01255E, +,DE,CHI,Chiemsee,Chiemsee,BY,1-3-----,AF,9506,,4751N 01221E, +,DE,CHN,Kirchanschoring,Kirchanschoring,BY,-----6--,RQ,0901,,4757N 01250E, +,DE,COB,Coburg,Coburg,BY,-23-----,AF,9501,,5015N 01058E, +,DE,COC,Cochem,Cochem,RP,123-----,AF,9501,,5009N 00710E, +,DE,COF,Coesfeld,Coesfeld,NW,-23-----,AF,9501,,5157N 00710E, +,DE,CRH,Crailsheim,Crailsheim,BW,-23-----,AF,9501,,4908N 01004E, +,DE,CYN,Castell,Castell,BY,1-------,RL,0901,,4944N 01021E, +,DE,DAC,Dachau,Dachau,BY,-23-----,AF,9501,,4816N 01126E, +,DE,DAD,Daaden,Daaden,RP,1-------,RQ,0901,,5044N 00758E, +,DE,DAE,Dettenhausen,Dettenhausen,BW,--3-----,RQ,0901,,4837N 00906E, +,DE,DAG,Dageb�ll,Dagebull,SH,123-----,AF,9501,,5444N 00843E, +,DE,DAP,Damp,Damp,SH,1-3-----,AF,9506,,5435N 01001E, +,DE,DAR,Darmstadt,Darmstadt,HE,-23-----,AF,9501,,4953N 00840E, +,DE,DAT,Datteln,Datteln,NW,1-3-----,AF,9506,,5139N 00720E, +,DE,DBA,Diebach,Diebach,BY,--3-----,RQ,0101,,4919N 01011E, +,DE,DBL,Dinkelsb�hl,Dinkelsbuhl,BY,-234----,AF,9501,,4904N 01019E, +,DE,DEE,Senden,Senden,NW,1-------,RQ,0901,,5151N 00729E, +,DE,DEG,Deggendorf,Deggendorf,BY,123-----,AF,9501,,4850N 01258E, +,DE,DEH,Dexheim,Dexheim,RP,--3-----,AF,9506,,4951N 00819E, +,DE,DEI,Deisenhofen,Deisenhofen,BY,--3-----,AF,9501,,4815N 01114E, +,DE,DEK,Delbr�ck,Delbruck,NW,--3-----,AF,9501,,5146N 00834E, +,DE,DET,Detmold,Detmold,NW,-23-----,AF,9501,,5156N 00853E, +,DE,DEZ,Diez,Diez,RP,-23-----,AF,9506,,5022N 00801E, +,DE,DFG,Dingolfing,Dingolfing,BY,-23-----,AF,9501,,4838N 01230E, +,DE,DFN,Dettighofen,Dettighofen,BW,1-------,RQ,0901,,4737N 00829E, +,DE,DGN,Dingen,Dingen,SH,--3-----,AF,9506,,5357N 00908E, +,DE,DHN,Dahn,Dahn,RP,-23-----,AF,9506,,4909N 00747E, +,DE,DHW,Wattenscheid,Wattenscheid,NW,--3-----,RQ,0901,,5129N 00708E, +,DE,DIB,Dillenburg,Dillenburg,HE,-23-----,AF,9501,,5044N 00817E, +,DE,DIE,Dietzenbach,Dietzenbach,HE,-23-----,AF,9501,,5001N 00847E, +,DE,DIG,Dieburg,Dieburg,HE,-23-----,AF,9501,,4954N 00850E, +,DE,DIH,Diefenbach,Diefenbach,RP,--3-----,AF,9506,,5002N 00657E, +,DE,DIN,Dinslaken,Dinslaken,NW,123-----,AF,9501,,5134N 00644E, +,DE,DIS,Dissen,Dissen,NI,-23-----,AF,9501,,5207N 00812E, +,DE,DLA,D�rrlauingen,Durrlauingen,BY,--3-----,RL,9811,,4828N 01026E, +,DE,DLH,Delitzsch,Delitzsch,SN,--3-----,RN,0105,,5132N 01221E, +,DE,DLN,Delligsen,Delligsen,NI,--3-----,RQ,0101,,5157N 00948E, +,DE,DNM,Dietenheim,Dietenheim,BW,--3-----,RL,0001,,4813N 01004E, +,DE,DOB,Dornbusch,Dornbusch,NI,1-3-----,AF,9501,,5344N 00921E, +,DE,DOE,D�beln,Dobeln,SN,-23-----,AF,9501,,5107N 01307E, +,DE,DOF,Dorfen,Dorfen,BY,-23-----,AF,9501,,4816N 01209E, +,DE,DOW,Donauw�rth,Donauworth,BY,123-----,AF,9501,,4843N 01047E, +,DE,DPL,Dautphetal,Dautphetal,HE,-23-----,AF,9506,,5051N 00833E, +,DE,DPW,Dippoldiswalde,Dippoldiswalde,SN,--3-----,RL,9805,,5054N 01340E, +,DE,DRA,Dranske,Dranske,MV,1-3-----,AF,9506,,5438N 01314E, +,DE,DRC,Durach,Durach,BY,--3-----,RL,0201,,4742N 01021E, +,DE,DRL,Drolshagen,Drolshagen,NW,--3-----,RL,0201,,5101N 00746E, +,DE,DRS,Dresden,Dresden,SN,12345---,AF,9501,,5103N 01344E, +,DE,DRZ,Dietramszell,Dietramszell,BY,--3-----,RL,0002,,4751N 01136E, +,DE,DSG,Dasing,Dasing,BY,--3-----,RL,0201,,4823N 01103E, +,DE,DSM,Dossenheim,Dossenheim,BW,--3-----,RL,0001,,4927N 00840E, +,DE,DST,Dornstadt,Dornstadt,BW,--3-----,RQ,0212,,4828N 00957E, +,DE,DTH,Dietenhofen,Dietenhofen,BY,--3-----,AF,9506,,4924N 01041E, +,DE,DTN,Ditzingen,Ditzingen,BW,-23-----,AF,9501,,4850N 00904E, +,DE,DUD,Duderstadt,Duderstadt,NI,--3-----,AF,9501,,5131N 01016E, +,DE,DUE,D�ren,Duren,NW,-23-----,AF,9501,,5048N 00629E, +,DE,DUN,D�lmen,Dulmen,NW,-23-----,AF,9501,,5150N 00717E, +,DE,DUR,Durbach,Durbach,BW,--3-----,AF,9501,,4830N 00801E, +,DE,DWR,Dudweiler,Dudweiler,SL,-23-----,AF,9501,,4917N 00702E, +,DE,DZN,Denzlingen,Denzlingen,BW,-23-----,AF,9501,,4804N 00753E, +,DE,DZU,Deizisau,Deizisau,BW,-23-----,AF,9506,,4843N 00923E, +,DE,EAS,Eging am See,Eging am See,BY,--3-----,RL,0004,,4843N 01316E, +,DE,EBY,Ebern,Ebern,BY,--3-----,RL,9811,,5006N 01048E, +,DE,ECH,Eching/Freising,Eching/Freising,BY,-23-----,AF,9501,,4818N 01137E, +,DE,ECK,Eckernf�rde,Eckernforde,SH,123-----,AF,9501,,5428N 00950E, +,DE,EDB,Edersberg,Edersberg,BY,--3-----,RL,0201,,4823N 01202E, +,DE,EDF,Erbendorf,Erbendorf,BY,-23-----,AF,9506,,4950N 01203E, +,DE,EDG,Eimeldingen,Eimeldingen,BW,--3-----,RL,0201,,4738N 00736E, +,DE,EDN,Emsdetten,Emsdetten,NW,-23-----,AF,9501,,5210N 00732E, +,DE,EDT,Edewecht,Edewecht,NI,--3-----,AF,9506,,5308N 00759E, +,DE,EEM,Leimersheim,Leimersheim,RP,1-------,RQ,0901,,4907N 00821E, +,DE,EFU,Eselsfurth,Eselsfurth,,--3-----,RQ,0901,,4928N 00749E, +,DE,EGE,Eggingen,Eggingen,BW,--3-----,RL,0607,,4742N 00824E, +,DE,EGG,Eggenfelden,Eggenfelden,BY,-234----,AF,9501,,4824N 01246E, +,DE,EGL,Eggenstein-Leopoldshafen,Eggenstein-Leopoldshafen,BW,123-----,AF,9506,,4905N 00824E, +,DE,EHF,Einsiedlerhof,Einsiedlerhof,RP,0-------,RL,9901,,4926N 00740E, +,DE,EHR,Ehringshausen/Lahn-Dill,Ehringshausen/Lahn-Dill,HE,-23-----,AF,9501,,5036N 00823E, +,DE,EIF,Eitorf,Eitorf,NW,-23-----,AF,9506,,5046N 00727E, +,DE,EIS,Eisenach,Eisenach,TH,-23-----,AF,9501,,5058N 01019E, +,DE,EKI,Engelskirchen,Engelskirchen,NW,-23-----,AF,9501,,5059N 00725E, +,DE,EKN,Edenkoben,Edenkoben,RP,-23-----,AF,9506,,4917N 00808E, +,DE,EKR,Emskirchen,Emskirchen,BY,--3-----,RL,0201,,4933N 01043E, +,DE,ELC,Elchingen,Elchingen,BY,--3-----,AF,9501,,4827N 01005E, +,DE,ELL,Elztal,Elztal,BW,--3-----,AF,9501,,4923N 00913E, +,DE,ELM,Elmshorn,Elmshorn,SH,123-----,AF,9501,,5345N 00939E, +,DE,ELN,Eislingen,Eislingen,BW,-23-----,AF,9506,,4842N 00942E, +,DE,EMM,Emmerich,Emmerich,NW,123-----,AF,9501,,5150N 00615E, +,DE,EMN,Emmendingen,Emmendingen,BW,-23-----,AF,9501,,4807N 00751E, +,DE,EMS,Emsb�ren,Emsburen,NI,--3-----,AF,9501,,5224N 00718E, +,DE,ENB,Eilenburg,Eilenburg,SN,-23-----,AF,9501,,5128N 01238E, +,DE,ENN,Ennepetal,Ennepetal,NW,--3-----,AF,9501,,5118N 00722E, +,DE,ENT,Ernstthal,Ernstthal,TH,--3-----,RL,0201,,5029N 01111E, +,DE,EON,Sch�nberg,Schonberg,BY,-23-----,RQ,0901,,4820N 01226E, +,DE,EPP,Eppelheim,Eppelheim,BW,--3-----,AF,9501,,4924N 00838E, +,DE,ERB,Erbach/Odenwald,Erbach/Odenwald,HE,-23-----,AF,9501,,4938N 00901E, +,DE,ERD,Erdweg,Erdweg,BY,--3-----,RL,0201,,4820N 01118E, +,DE,ERE,Erlensee,Erlensee,HE,--3-----,AF,9506,,5010N 00859E, +,DE,ERF,Erfurt,Erfurt,TH,-234----,AF,9501,,5059N 01102E, +,DE,ERG,Erding,Erding,BY,--3-----,AF,9501,,4818N 01154E, +,DE,ERK,Erkelenz,Erkelenz,NW,-23-----,AF,9501,,5105N 00619E, +,DE,ERL,Erlangen,Erlangen,BY,-23-----,AF,9501,,4936N 01100E, +,DE,ERN,Erndtebr�ck,Erndtebruck,NW,-23-----,AF,9501,,5059N 00815E, +,DE,ERT,Erftstadt,Erftstadt,NW,--3-----,AF,9501,,5048N 00648E, +,DE,ERW,Erwitte,Erwitte,NW,--3-----,AF,9501,,5137N 00820E, +,DE,ESC,Eschborn,Eschborn,HE,-23-----,AF,9501,,5009N 00834E, +,DE,ESF,Estorf/Weser,Estorf/Weser,NI,123-----,AF,9506,,5235N 00908E, +,DE,ESL,Esslingen,Esslingen,BW,-23-----,AF,9501,,4845N 00918E, +,DE,ESP,Espelkamp,Espelkamp,NW,-23-----,AF,9501,,5223N 00837E, +,DE,ESS,Essen,Essen,NW,1234----,AF,9501,,5127N 00701E, +,DE,EST,Eichstetten,Eichstetten,BW,-23-----,AF,9506,,4806N 00744E, +,DE,ESW,Eschwege,Eschwege,HE,-23-----,AF,9501,,5110N 01004E, +,DE,ETM,Eltmann,Eltmann,BY,-23-----,RL,0201,,4958N 01040E, +,DE,ETT,Ettlingen,Ettlingen,BW,-23-----,AF,9501,,4856N 00824E, +,DE,ETZ,Etzbach,Etzbach,RP,-23-----,AF,9506,,5047N 00741E, +,DE,EUS,Euskirchen,Euskirchen,NW,-23-----,AF,9501,,5040N 00647E, +,DE,EUT,Eutin,Eutin,SH,123-----,AF,9501,,5408N 01037E, +,DE,EVI,Eltville,Eltville,HE,--3-----,AF,9501,,5003N 00805E, +,DE,FAK,Falkensee,Falkensee,BB,--3-----,RQ,1307,,5234N 01305E, +,DE,FBH,Fellbach,Fellbach,BW,-23-----,AF,9501,,4849N 00917E, +,DE,FDG,Fridingen,Fridingen,BW,-23-----,AF,9506,,4801N 00856E, +,DE,FDH,Friedrichshafen,Friedrichshafen,BW,1234----,AF,9501,,4739N 00929E, +,DE,FEL,F�rstenfeldbruck,Furstenfeldbruck,BY,-23-----,AF,9501,,4811N 01115E, +,DE,FER,Neu-Kupfer,Neu-Kupfer,BW,1-------,RQ,0901,,4911N 00942E, +,DE,FEU,Feucht,Feucht,BY,-23-----,AF,9506,,4923N 01113E, +,DE,FHN,Fohren,Fohren,RP,--3-----,RQ,0607,,4952N 00646E, +,DE,FIG,Freiberg,Freiberg,SN,-23-----,AF,9501,,5055N 01321E, +,DE,FIL,Filderstadt,Filderstadt,BW,--3-----,AF,9501,,4840N 00913E, +,DE,FKG,Frankenberg,Frankenberg,HE,-23-----,AF,9501,,5105N 00847E, +,DE,FLF,Flensburg,Flensburg,SH,1234----,AF,9501,,5447N 00926E, +,DE,FLO,Fl�rsheim am Main,Florsheim am Main,HE,-23-----,AF,9501,,5002N 00826E, +,DE,FRB,Friedberg,Friedberg,HE,-23-----,AF,9501,,5020N 00845E, +,DE,FRD,Fredersdorf,Fredersdorf,BB,--3-----,QQ,1307,,5310N 01402E, +,DE,FRG,Freising,Freising,BY,-23-----,AF,9501,,4824N 01145E, +,DE,FRI,Friedrichstadt,Friedrichstadt,SH,1-3-----,AF,9501,,5423N 00905E, +,DE,FRL,Freilassing,Freilassing,BY,--3-----,AF,9501,,4750N 01259E, +,DE,FRN,Frechen,Frechen,NW,--3-----,AF,9501,,5055N 00648E, +,DE,FRT,Freigericht,Freigericht,HE,--3-----,AF,9501,,5008N 00909E, +,DE,FRU,Friesau,Friesau,TH,--3-----,RL,0001,,5030N 01138E, +,DE,FRZ,Fritzlar,Fritzlar,HE,--3-----,AF,9501,,5109N 00916E, +,DE,FSS,F�ssen,Fussen,BY,--3-----,AF,9501,,4734N 01042E, +,DE,FST,Freudenstadt,Freudenstadt,BW,-23-----,AF,9501,,4828N 00825E, +,DE,FTG,Forsting,Forsting,BY,--3-----,RL,0201,,4911N 01220E, +,DE,FTL,Frankenthal/Pfalz,Frankenthal/Pfalz,RP,-23-----,AF,9501,,4933N 00821E, +,DE,FUL,Fulda,Fulda,HE,-23-----,AF,9501,,5033N 00941E, +,DE,FUW,Furth im Wald,Furth im Wald,BY,-23-----,AF,9506,,4918N 01251E, +,DE,GAA,Garching an der Alz,Garching an der Alz,BY,-23-----,AF,9501,,4808N 01235E, +,DE,GAB,Gablingen,Gablingen,BY,-23-----,AF,9501,,4827N 01049E, +,DE,GAG,Gaggenau,Gaggenau,BW,-23-----,AF,9501,,4848N 00819E, +,DE,GAI,Gaildorf,Gaildorf,BW,--3-----,AF,9501,,4900N 00946E, +,DE,GAP,Garmisch-Partenkirchen,Garmisch-Partenkirchen,BY,-23-----,AF,9501,,4730N 01106E, +,DE,GAR,Gardelegen,Gardelegen,ST,-23-----,AF,9501,,5232N 01124E, +,DE,GBH,Gernsbach,Gernsbach,BW,-23-----,AF,9501,,4846N 00820E, +,DE,GBT,Giebelstadt,Giebelstadt,BY,--3-----,AF,9506,,4939N 00957E, +,DE,GCG,Gilching,Gilching,BY,--3-----,RL,0004,,4807N 01118E, +,DE,GCH,Gelchsheim,Gelchsheim,BY,-23-----,AF,9506,,4934N 01001E, +,DE,GDN,Geldern,Geldern,NW,-23-----,AF,9501,,5131N 00619E, +,DE,GEA,Gera,Gera,TH,-23-----,AF,9501,,5053N 01205E, +,DE,GEB,Gevelsberg,Gevelsberg,NW,-23-----,AF,9501,,5119N 00720E, +,DE,GED,Geretsried,Geretsried,BY,--3-----,AF,9506,,4752N 01129E, +,DE,GEE,Geseke,Geseke,NW,-23-----,AF,9501,,5138N 00831E, +,DE,GEH,Gelnhausen,Gelnhausen,HE,-23-----,AF,9501,,5012N 00912E, +,DE,GEI,Geisenheim,Geisenheim,HE,-23-----,AF,9501,,4959N 00758E, +,DE,GEL,Gelting,Gelting,SH,1-3-----,AF,9501,,5445N 00954E, +,DE,GEM,Gem�nden,Gemunden,BY,123-----,AF,9501,,5003N 00941E, +,DE,GEN,Gensingen,Gensingen,RP,-23-----,AF,9501,,4954N 00756E, +,DE,GER,Germersheim,Germersheim,RP,123-----,AF,9501,,4913N 00822E, +,DE,GES,Gerolstein,Gerolstein,RP,-23-----,AF,9501,,5013N 00640E, +,DE,GET,Geesthacht,Geesthacht,SH,-23-----,AF,9501,,5326N 01022E, +,DE,GEV,Geversdorf,Geversdorf,NI,1-3-----,AF,9501,,5347N 00906E, +,DE,GEZ,Gerden,Gerden,NI,--3-----,RL,0201,,5212N 00822E, +,DE,GGH,Gengenbach,Gengenbach,BW,-23-----,AF,9501,,4824N 00801E, +,DE,GGN,Giengen,Giengen,BW,-23-----,AF,9501,,4837N 01015E, +,DE,GGS,G�ldengossa,Guldengossa,SN,--3-----,RQ,9704,,5115N 01227E, +,DE,GHM,Gernsheim,Gernsheim,HE,123-----,AF,9501,,4945N 00831E, +,DE,GHN,Gersthofen,Gersthofen,BY,-23-----,AF,9501,,4825N 01053E, +,DE,GHU,Glauchau,Glauchau,SN,-23-----,AF,9501,,5049N 01232E, +,DE,GHX,Grebenhain,Grebenhain,HE,-23-----,AF,9506,,5030N 00920E, +,DE,GIA,Geisa,Geisa,TH,--3-----,RL,9805,,5043N 00957E, +,DE,GIG,Ginsheim-Gustavsburg,Ginsheim-Gustavsburg,HE,123-----,AF,9501,,4959N 00820E, +,DE,GIM,Gimbsheim,Gimbsheim,RP,--3-----,AF,9501,,4947N 00822E, +,DE,GIT,Gittelde,Gittelde,NI,123-----,AF,9501,,5148N 01011E, +,DE,GIU,Grinau,Grinau,SH,--3-----,AF,9506,,5346N 01033E, +,DE,GKI,Geilenkirchen,Geilenkirchen,NW,-23-----,AF,9501,,5058N 00607E, +,DE,GLH,Gladenbach,Gladenbach,HE,-23-----,AF,9506,,5046N 00835E, +,DE,GLN,Glatten,Glatten,BW,--3-----,AF,9501,,4827N 00831E, +,DE,GLU,Gl�ckstadt,Gluckstadt,SH,123-----,AF,9501,,5347N 00925E, +,DE,GMA,Grimma,Grimma,SN,--3-----,RN,0105,,5114N 01244E, +,DE,GMG,Gemmingen,Gemmingen,BW,-23-----,RL,0201,,4909N 00859E, +,DE,GMU,Gmund,Gmund,BY,--3-----,RL,0001,,4745N 01144E, +,DE,GNE,Gernrode/Harz,Gernrode/Harz,ST,-23-----,AF,9501,,5143N 01108E, +,DE,GNH,Gedern,Gedern,HE,--3-----,RL,9805,,5024N 00913E, +,DE,GOA,Gotha,Gotha,TH,-23-----,AF,9501,,5057N 01042E, +,DE,GOC,Goch,Goch,NW,-23-----,AF,9501,,5141N 00610E, +,DE,GOH,Gochsheim,Gochsheim,BY,-23-----,AF,9506,,5001N 01017E, +,DE,GOM,Gomaringen,Gomaringen,BW,--3-----,AF,9501,,4827N 00906E, +,DE,GON,G�ppingen,Goppingen,BW,-23-----,AF,9501,,4842N 00939E, +,DE,GOT,Gottmadingen,Gottmadingen,BW,-23-----,AF,9506,,4744N 00847E, +,DE,GPN,Greppin,Greppin,ST,--3-----,RL,0201,,5139N 01218E, +,DE,GRD,Greifswald,Greifswald,MV,123-----,AF,9501,,5406N 01323E, +,DE,GRI,Greiz,Greiz,TH,-23-----,AF,9501,,5039N 01210E, +,DE,GRL,Grimmenthal,Grimmenthal,TH,-23-----,AF,9501,,5032N 01027E, +,DE,GRN,Graben-Neudorf,Graben-Neudorf,BW,-23-----,AF,9501,,4910N 00830E, +,DE,GRR,Grafenw�hr,Grafenwohr,BY,-23-----,AF,9506,,4943N 01154E, +,DE,GRS,G�risried,Gorisried,BY,--3-----,AF,9506,,4742N 01031E, +,DE,GRT,Gr�nstadt,Grunstadt,RP,-23-----,AF,9501,,4934N 00810E, +,DE,GRU,Gr�nberg,Grunberg,HE,-23-----,AF,9501,,5035N 00858E, +,DE,GRV,Grevenbroich,Grevenbroich,NW,--3-----,AF,9501,,5105N 00635E, +,DE,GRW,Gr�nwohld,Gronwohld,SH,-23-----,RL,9805,,5339N 01025E, +,DE,GSR,Gescher,Gescher,NW,--3-----,AF,9506,,5157N 00700E, +,DE,GUA,Gusterath,Gusterath,RP,--3-----,RQ,0901,,4942N 00643E, +,DE,GUG,G�nzburg,Gunzburg,BY,123-----,AF,9501,,4827N 01017E, +,DE,GUH,Gunzenhausen,Gunzenhausen,BY,-23-----,AF,9501,,4907N 01045E, +,DE,GUL,Guldental,Guldental,RP,-23-----,AF,9506,,4953N 00751E, +,DE,GUM,Gummersbach,Gummersbach,NW,-23-----,AF,9501,,5102N 00734E, +,DE,GUN,Gundelsheim,Gundelsheim,BW,-23-----,AF,9501,,4917N 00910E, +,DE,GUS,Gussenstadt,Gussenstadt,BW,-23-----,AF,9501,,4839N 00957E, +,DE,GUT,G�tersloh,Gutersloh,NW,-23-----,AF,9501,,5154N 00823E, +,DE,GUW,G�strow,Gustrow,MV,-23-----,AF,9501,,5348N 01211E, +,DE,GVN,Greven,Greven,NW,-23-----,AF,9501,,5206N 00737E, +,DE,GWY,Grenzach-Wyhlen,Grenzach-Wyhlen,BW,-23-----,AF,9501,,4733N 00740E, +,DE,GZF,Gerolzhofen,Gerolzhofen,BY,--3-----,RL,0001,,4954N 01021E, +,DE,HAA,Haan,Haan,NW,-23-----,AF,9501,,5112N 00701E, +,DE,HAB,Hambergen,Hambergen,NI,--3-----,RL,0101,,5319N 00849E, +,DE,HAC,Hachenburg,Hachenburg,RP,-23-----,AF,9501,,5040N 00750E, +,DE,HAE,Halle,Halle,NW,-23-----,AF,9501,,5204N 00822E, +,DE,HAF,Hafenlohr,Hafenlohr,BY,1-3-----,AF,9506,,4952N 00936E, +,DE,HAH,Haiterbach,Haiterbach,BW,--3-----,AF,9506,,4832N 00839E, +,DE,HAI,Haibach/Aschaffenburg,Haibach/Aschaffenburg,BY,--3-----,AF,9501,,4958N 00912E, +,DE,HAK,Halstenbek,Halstenbek,SH,--3-----,AF,9501,,5338N 00951E, +,DE,HAL,Halle,Halle,ST,-23-----,AF,9501,,5129N 01158E, +,DE,HAR,Haiger,Haiger,HE,-23-----,AF,9501,,5045N 00812E, +,DE,HAS,Hassfurt,Hassfurt,BY,1234----,AF,9501,,5002N 01030E, +,DE,HAT,Hattingen,Hattingen,NW,-23-----,AF,9501,,5124N 00711E, +,DE,HBG,Herzberg,Herzberg,NI,--3-----,AF,9501,,5139N 01021E, +,DE,HBN,Herborn,Herborn,HE,-23-----,AF,9501,,5041N 00818E, +,DE,HBU,Harburg,Harburg,HH,1-------,AF,9812,,5328N 00959E, +,DE,HCK,Herdecke,Herdecke,NW,--3-----,RL,0201,,5124N 00726E, +,DE,HDF,Heringsdorf,Heringsdorf,MV,-234----,AF,9501,,5357N 01410E, +,DE,HDH,Hardheim,Hardheim,BW,--3-----,RL,0201,,4937N 00928E, +,DE,HDL,Hindelang,Hindelang,BY,--3-----,AF,9506,,4731N 01022E, +,DE,HDM,Heddesheim,Heddesheim,BW,-23-----,AF,9506,,4930N 00836E, +,DE,HDN,Heiden/Borken,Heiden/Borken,NW,--3-----,AF,9501,,5150N 00656E, +,DE,HEC,Hechingen,Hechingen,BW,-23-----,AF,9501,,4821N 00858E, +,DE,HED,Heikendorf,Heikendorf,SH,1-3-----,AF,9501,,5422N 01012E, +,DE,HEF,Hennef,Hennef,NW,-23-----,AF,9506,,5047N 00717E, +,DE,HEG,Heinsberg,Heinsberg,NW,-23-----,AF,9501,,5104N 00606E, +,DE,HEH,Heimenkirch,Heimenkirch,BY,-23-----,AF,9501,,4738N 00955E, +,DE,HEK,Hersbruck,Hersbruck,BY,-23-----,AF,9501,,4931N 01126E, +,DE,HEN,Heilbronn,Heilbronn,BW,123-----,AF,9501,,4909N 00913E, +,DE,HER,Herbrechtingen,Herbrechtingen,BW,-23-----,AF,9501,,4837N 01011E, +,DE,HES,Heiligenhaus/Mettmann,Heiligenhaus/Mettmann,NW,--3-----,AF,9501,,5120N 00658E, +,DE,HEU,Heubach,Heubach,BW,--34----,AF,9501,,4847N 00956E, +,DE,HFN,H�nfelden,Hunfelden,HE,--3-----,AF,9501,,5020N 00809E, +,DE,HGA,Hohenbrunn,Hohenbrunn,BY,--3-----,RL,9805,,4803N 01142E, +,DE,HGB,Hengersberg,Hengersberg,BY,-23-----,AF,9501,,4846N 01303E, +,DE,HGM,Hofgeismar,Hofgeismar,HE,-23-----,AF,9501,,5130N 00923E, +,DE,HGN,H�hr-Grenzhausen,Hohr-Grenzhausen,RP,--3-----,AF,9501,,5026N 00740E, +,DE,HHA,Herleshausen,Herleshausen,HE,-23-----,AF,9506,,5102N 01007E, +,DE,HHF,Heiligenhafen,Heiligenhafen,SH,123-----,AF,9501,,5422N 01059E, +,DE,HHM,Hattersheim,Hattersheim,HE,-23-----,AF,9501,,5003N 00829E, +,DE,HHN,Hirschhorn,Hirschhorn,HE,-23-----,AF,9501,,4928N 00854E, +,DE,HHS,Hohenhorn,Hohenhorn,SH,1-3-----,AF,9501,,5329N 01022E, +,DE,HHT,H�llhorst,Hullhorst,NW,--3-----,AF,9506,,5216N 00840E, +,DE,HHU,Haimhausen,Haimhausen,BY,--3-----,RL,0201,,4819N 01133E, +,DE,HHW,Hohenwestedt,Hohenwestedt,SH,-23-----,AF,9506,,5406N 00939E, +,DE,HID,Hilden,Hilden,NW,-23-----,AF,9501,,5110N 00656E, +,DE,HIE,Hille,Hille,NW,1-3-----,AF,9506,,5220N 00845E, +,DE,HIH,Hilchenbach,Hilchenbach,NW,-23-----,AF,9501,,5060N 00806E, +,DE,HIN,Hiddenhausen,Hiddenhausen,NW,--3-----,AF,9501,,5209N 00838E, +,DE,HIZ,Hildrizhausen,Hildrizhausen,BW,-23-----,RQ,0901,,4838N 00858E, +,DE,HKL,Hamminkeln,Hamminkeln,NW,--3-----,RL,0201,,5144N 00635E, +,DE,HKR,Kiedrich,Kiedrich,HE,--3-----,RQ,0901,,5002N 00805E, +,DE,HLE,Harrislee,Harrislee,SH,-23-----,AF,9506,,5448N 00923E, +,DE,HLG,Hohenlimburg,Hohenlimburg,NW,-23-----,AF,9501,,5121N 00734E, +,DE,HLH,Haldensleben,Haldensleben,ST,123-----,AF,9506,,5217N 01125E, +,DE,HLI,Hessisch Lichtenau,Hessisch Lichtenau,HE,-23-----,AF,9501,,5112N 00945E, +,DE,HLR,H�llriegelskreuth,Hollriegelskreuth,BY,--3-----,AF,9506,,4803N 01130E, +,DE,HLS,Holtsee,Holtsee,SH,-23-----,AF,9506,,5424N 00951E, +,DE,HLT,Hallstadt,Hallstadt,BY,-23-----,AF,9501,,4956N 01053E, +,DE,HMG,Hermaringen,Hermaringen,BW,--3-----,RL,0201,,4836N 01016E, +,DE,HMH,Hemhofen,Hemhofen,BY,-23-----,AF,9506,,4941N 01056E, +,DE,HMK,Hermeskeil,Hermeskeil,RP,--3-----,AF,9501,,4939N 00657E, +,DE,HMR,Hemer,Hemer,NW,-23-----,AF,9501,,5123N 00746E, +,DE,HMT,Hartheim,Hartheim,BW,--3-----,RQ,0901,,4756N 00738E, +,DE,HNB,Hornberg,Hornberg,BW,-2--5---,RL,1107,,4813N 00814E, +,DE,HNG,Herrenberg,Herrenberg,BW,-23-----,AF,9501,,4836N 00852E, +,DE,HNI,H�nningen,Honningen,RP,--3-----,RQ,0901,,5028N 00657E, +,DE,HOA,Haundorf,Haundorf,BY,--3-----,RQ,0901,,4911N 01046E, +,DE,HOB,Horb,Horb,BW,123-----,AF,9501,,4827N 00841E, +,DE,HOC,Hockenheim,Hockenheim,BW,-234----,AF,9501,,4919N 00833E, +,DE,HOD,Hochdonn,Hochdonn,SH,1-3-----,AF,9501,,5401N 00917E, +,DE,HOE,H�chst im Odenwald,Hochst im Odenwald,HE,-23-----,AF,9501,,4947N 00859E, +,DE,HOH,Hohenlockstedt,Hohenlockstedt,SH,--3-----,AF,9501,,5358N 00937E, +,DE,HOM,Homburg,Homburg,SL,-23-----,AF,9501,,4919N 00720E, +,DE,HOQ,Hof,Hof,BY,-234----,AF,9501,,5019N 01155E, +,DE,HOT,H�chstadt an der Aisch,Hochstadt an der Aisch,BY,-23-----,AF,9501,,4942N 01048E, +,DE,HOU,Hohenwulsch,Hohenwulsch,ST,--3-----,RQ,0901,,5240N 01136E, +,DE,HOW,Hoppst�dten-Weiersbach,Hoppstadten-Weiersbach,RP,-23-----,AF,9506,,4937N 00711E, +,DE,HOX,H�xter,Hoxter,NW,123-----,AF,9501,,5148N 00921E, +,DE,HRB,Horneburg,Horneburg,NI,123-----,AF,9501,,5331N 00935E, +,DE,HRD,Herford,Herford,NW,-23-----,AF,9501,,5207N 00840E, +,DE,HRL,H�rstel,Horstel,NW,-23-----,AF,9501,,5218N 00735E, +,DE,HRM,H�rnum/Sylt,Hornum/Sylt,SH,1-3-----,AF,9501,,5446N 00817E, +,DE,HRN,Haren/Ems,Haren/Ems,NI,123-----,AF,9501,,5247N 00714E, +,DE,HRU,Heuchelheim,Heuchelheim,HE,--3-----,RQ,0901,,5030N 00803E, +,DE,HSH,Hausach,Hausach,BW,-23-----,AF,9501,,4817N 00810E, +,DE,HSM,Heusenstamm,Heusenstamm,HE,-23-----,AF,9501,,5003N 00849E, +,DE,HSP,Hochspeyer,Hochspeyer,RP,-23-----,AF,9506,,4927N 00754E, +,DE,HSQ,Hainichen,Hainichen,SN,--3-----,RQ,0901,,5058N 01307E, +,DE,HST,Halberstadt,Halberstadt,ST,-23-----,AF,9501,,5154N 01103E, +,DE,HTE,Heltersberg,Heltersberg,RP,--3-----,RL,0201,,4919N 00743E, +,DE,HTI,Heimertingen,Heimertingen,BY,--3-----,RL,0005,,4802N 01009E, +,DE,HTM,H�ttisheim,Huttisheim,BW,--3-----,AF,9506,,4817N 00956E, +,DE,HTT,Heimstetten,Heimstetten,BY,-23-----,RL,0201,,4810N 01145E, +,DE,HTU,Holtenau,Holtenau,SH,1-3-----,RL,1601,,5422N 01008E, +,DE,HTZ,Hetzerath,Hetzerath,RP,-23-----,AF,9506,,4953N 00649E, +,DE,HUD,H�nfeld,Hunfeld,HE,--3-----,AF,9501,,5039N 00947E, +,DE,HUE,H�rth,Hurth,NW,-23-----,AF,9501,,5053N 00653E, +,DE,HUF,Hunderdorf,Hunderdorf,BY,--3-----,RQ,0607,,4856N 01244E, +,DE,HUG,Hungen,Hungen,HE,-23-----,AF,9506,,5028N 00855E, +,DE,HUN,Huntebr�ck,Huntebruck,NI,--3-----,RQ,0101,,5312N 00827E, +,DE,HUS,Husum,Husum,SH,123-----,AF,9501,,5429N 00903E, +,DE,HVN,H�ckelhoven,Huckelhoven,NW,--3-----,AF,9501,,5103N 00613E, +,DE,HVR,Halver,Halver,NW,--3-----,AF,9501,,5111N 00730E, +,DE,HWA,Hawangen,Hawangen,BY,--3-----,RL,0002,,4758N 01016E, +,DE,HWE,Hoyerswerda,Hoyerswerda,SN,-23-----,AF,9501,,5126N 01415E, +,DE,HWG,H�ckeswagen,Huckeswagen,NW,--3-----,AF,9501,,5109N 00720E, +,DE,HWL,Harsewinkel,Harsewinkel,NW,--3-----,AF,9501,,5158N 00814E, +,DE,HXE,H�nxe,Hunxe,NW,--3-----,AF,9501,,5138N 00646E, +,DE,HXX,Hassmersheim,Hassmersheim,BW,-23-----,RL,0005,,4918N 00909E, +,DE,HZE,Holzwickede,Holzwickede,NW,-23-----,AF,9501,,5130N 00737E, +,DE,HZF,Hatzfeld,Hatzfeld,HE,--3-----,RL,0201,,5059N 00834E, +,DE,HZH,Herzogenaurach,Herzogenaurach,BY,-234----,AF,9501,,4934N 01053E, +,DE,HZR,Herzogenrath,Herzogenrath,NW,-23-----,AF,9501,,5052N 00606E, +,DE,IBB,Ibbenb�ren,Ibbenburen,NW,-23-----,AF,9501,,5217N 00743E, +,DE,IDS,Idstein,Idstein,HE,-23-----,AF,9501,,5013N 00816E, +,DE,IFF,Iffezheim,Iffezheim,BW,--3-----,RQ,0901,,4849N 00809E, +,DE,IHL,Ihlow,Ihlow,BB,1-------,RQ,1307,,5152N 01321E, +,DE,IHN,Immenhausen,Immenhausen,HE,-23-----,AF,9506,,5125N 00931E, +,DE,ILL,Illingen,Illingen,SL,-23-----,AF,9501,,4923N 00703E, +,DE,ILM,Illesheim,Illesheim,BY,-23-----,AF,9506,,4929N 01023E, +,DE,ILN,Illertissen,Illertissen,BY,-234----,AF,9501,,4813N 01006E, +,DE,IMG,Ismaning,Ismaning,BY,--3-----,RL,0101,,4813N 01140E, +,DE,IMH,Immenreuth,Immenreuth,BY,-23-----,RQ,0901,,4955N 01152E, +,DE,INF,Hainfeld,Hainfeld,RP,-----6--,RL,1107,,4915N 00806E, +,DE,INM,Ingelheim,Ingelheim,RP,123-----,AF,9501,,4959N 00803E, +,DE,INU,Ilmenau,Ilmenau,TH,--3-----,RL,0001,,5041N 01055E, +,DE,ION,Idar-Oberstein,Idar-Oberstein,RP,-23-----,AF,9501,,4943N 00719E, +,DE,IPT,Iptingen,Iptingen,BW,--3-----,RQ,0901,,4853N 00854E, +,DE,IRD,Vierden,Vierden,NI,--3-----,RL,0901,,5320N 00930E, +,DE,ISE,Iserlohn,Iserlohn,NW,-23-----,AF,9501,,5122N 00742E, +,DE,ISN,Isernhagen,Isernhagen,NI,-23-----,AF,9501,,5228N 00948E, +,DE,ISY,Isny im Allg�u,Isny im Allgau,BW,--3-----,RQ,0101,,4743N 01002E, +,DE,ITZ,Itzehoe,Itzehoe,SH,123-----,AF,9501,,5355N 00931E, +,DE,IWN,Weinbergen,Weinbergen,TH,1-------,RQ,0901,,5112N 01032E, +,DE,JAG,Jagstzell,Jagstzell,BW,-23-----,AF,9501,,4902N 01006E, +,DE,JEN,Jena,Jena,TH,-23-----,AF,9501,,5056N 01135E, +,DE,JER,Jersleben,Jersleben,ST,--3-----,RQ,0901,,5215N 01135E, +,DE,JNB,Jandelsbrunn,Jandelsbrunn,BY,--3-----,RL,0001,,4844N 01341E, +,DE,JOH,Johannisberg,Johannisberg,BE,--3-----,RQ,0607,,5229N 01319E, +,DE,JUE,J�lich,Julich,NW,-23-----,AF,9501,,5055N 00622E, +,DE,JUY,Hohenau,Hohenau,BY,1-------,RL,1107,,4851N 01329E, +,DE,KAA,Kaarst,Kaarst,NW,-23-----,AF,9501,,5114N 00637E, +,DE,KAD,Karlsfeld,Karlsfeld,BY,-23-----,AF,9501,,4814N 01128E, +,DE,KAE,Karlsruhe,Karlsruhe,BW,1234----,AF,9501,,4900N 00824E, +,DE,KAG,Kaufering,Kaufering,BY,-23-----,AF,9501,,4805N 01052E, +,DE,KAL,Kall,Kall,NW,-23-----,AF,9501,,5032N 00633E, +,DE,KAM,Kahl am Main,Kahl am Main,BY,123-----,AF,9506,,5004N 00900E, +,DE,KAP,Kappeln,Kappeln,SH,123-----,AF,9501,,5440N 00956E, +,DE,KAU,Kaufbeuren,Kaufbeuren,BY,-23-----,AF,9501,,4753N 01038E, +,DE,KAZ,Kamenz,Kamenz,SN,-23-----,AF,9501,,5116N 01406E, +,DE,KBH,Korschenbroich,Korschenbroich,NW,-23-----,AF,9501,,5111N 00631E, +,DE,KBN,Karben,Karben,HE,1-3-----,AF,9506,,5014N 00846E, +,DE,KDB,Kindsbach,Kindsbach,RP,-23-----,AF,9506,,4925N 00737E, +,DE,KDF,Kirchdorf (Iller),Kirchdorf (Iller),BW,-23-----,RL,0201,,4801N 00828E, +,DE,KDN,Kl�den,Kloden,ST,--3-----,RL,0101,,5146N 01250E, +,DE,KEB,Kelsterbach,Kelsterbach,HE,123-----,AF,9501,,5004N 00832E, +,DE,KEH,Kehl,Kehl,BW,123-----,AF,9501,,4834N 00749E, +,DE,KEM,Kelheim,Kelheim,BY,1-3-----,AF,9501,,4855N 01152E, +,DE,KEN,Kempten,Kempten,BY,-23-----,AF,9501,,4744N 01019E, +,DE,KER,Kerpen,Kerpen,RP,--3-----,AF,9501,,5018N 00644E, +,DE,KEV,Kevelaer,Kevelaer,NW,-23-----,AF,9501,,5135N 00615E, +,DE,KEZ,Kellm�nz,Kellmunz,BY,123-----,AF,9506,,4808N 01008E, +,DE,KFN,Kiefersfelden,Kiefersfelden,BY,--3-----,RQ,0101,,4737N 01211E, +,DE,KGF,Kobern-Gondorf,Kobern-Gondorf,RP,--3-----,RL,0006,,5018N 00727E, +,DE,KHH,Kirchhain,Kirchhain,HE,--3-----,RL,0201,,5049N 00855E, +,DE,KHM,Kelkheim,Kelkheim,HE,-23-----,AF,9501,,5009N 00827E, +,DE,KHN,Kellinghusen,Kellinghusen,SH,1-3-----,AF,9501,,5357N 00943E, +,DE,KIL,Kraichtal,Kraichtal,BW,--3-----,AF,9501,,4908N 00844E, +,DE,KIN,Kirn/Nahe,Kirn/Nahe,RP,-23-----,AF,9501,,4947N 00728E, +,DE,KIP,Kippenheim,Kippenheim,BW,--3-----,AF,9501,,4818N 00749E, +,DE,KIR,Kirchheim/Teck,Kirchheim/Teck,BW,--3-----,AF,9501,,4922N 00838E, +,DE,KIT,Kitzingen,Kitzingen,BY,123-----,AF,9501,,4944N 01010E, +,DE,KKN,Kaltenkirchen,Kaltenkirchen,SH,-23-----,AF,9506,,5350N 00958E, +,DE,KLG,Kirchlengern,Kirchlengern,NW,-23-----,RL,0201,,5212N 00839E, +,DE,KLH,Kleinheubach,Kleinheubach,BY,-23-----,AF,9501,,4943N 00913E, +,DE,KLT,Kaiserslautern,Kaiserslautern,RP,-23-----,AF,9501,,4927N 00746E, +,DE,KLU,Klettgau,Klettgau,BW,--3-----,RL,0207,,4739N 00826E, +,DE,KLX,Klusserath,Klusserath,RP,1-------,RQ,0901,,4951N 00651E, +,DE,KMN,Kamen,Kamen,NW,-23-----,AF,9501,,5136N 00740E, +,DE,KMR,Krummh�rn,Krummhorn,,--3-----,RQ,1001,,5326N 00705E, +,DE,KNF,Knautnaundorf,Knautnaundorf,SN,--3-----,RQ,9704,,5115N 01216E, +,DE,KOB,Koblenz am Rhein,Koblenz am Rhein,RP,123-----,AF,9501,,5022N 00736E, +,DE,KOE,K�tz,Kotz,BY,-23-----,AF,9506,,4824N 01017E, +,DE,KOG,Kollig,Kollig,RP,--3-----,AF,9501,,5016N 00717E, +,DE,KOH,Korbach,Korbach,HE,-23-----,AF,9501,,5115N 00851E, +,DE,KOL,Kollmar,Kollmar,SH,1-3-----,AF,9501,,5344N 00930E, +,DE,KON,Konstanz,Konstanz,BW,123-----,AF,9501,,4740N 00911E, +,DE,KOR,Kornwestheim,Kornwestheim,BW,-23-----,AF,9501,,4852N 00911E, +,DE,KOW,K�nigswinter,Konigswinter,NW,123-----,AF,9501,,5040N 00712E, +,DE,KOZ,Konz,Konz,RP,--3-----,AF,9501,,4942N 00634E, +,DE,KPE,Kampe,Kampe,NI,1-3-----,AF,9501,,5307N 00907E, +,DE,KPS,K�ps,Kups,BY,-23-----,AF,9501,,5012N 01117E, +,DE,KRB,Krummennaab,Krummennaab,BY,-23-----,AF,9506,,4950N 01206E, +,DE,KRC,Kirchheimbolanden,Kirchheimbolanden,RP,-23-----,AF,9506,,4940N 00801E, +,DE,KRG,Kronberg,Kronberg,HE,-23-----,AF,9501,,5011N 00831E, +,DE,KRH,Krauchenwies,Krauchenwies,BW,-23-----,AF,9506,,4801N 00915E, +,DE,KRI,Kriftel,Kriftel,HE,--3-----,RL,9805,,5005N 00828E, +,DE,KRL,Kreuztal,Kreuztal,NW,-23-----,AF,9501,,5058N 00759E, +,DE,KRO,Kronach,Kronach,BY,-23-----,AF,9501,,5014N 01120E, +,DE,KRS,Kriebstein,Kriebstein,SN,--3-----,RL,0001,,5103N 01301E, +,DE,KRT,Kruft,Kruft,RP,-23-----,AF,9501,,5023N 00720E, +,DE,KRV,Kr�v,Krov,RP,1-3-----,AF,9506,,4959N 00705E, +,DE,KSE,Kierspe,Kierspe,NW,--3-----,RL,9109,,5108N 00736E, +,DE,KSG,Kissing,Kissing,BY,-23-----,RL,0201,,4818N 01059E, +,DE,KSL,Kr�slin,Kroslin,MV,--3-----,AF,9506,,5407N 01345E, +,DE,KSN,Karlstein am Main,Karlstein am Main,BY,--3-----,AF,9501,,5003N 00902E, +,DE,KTL,Kalletal,Kalletal,NW,--3-----,AF,9501,,5207N 00858E, +,DE,KTZ,Kiebitzreihe,Kiebitzreihe,SH,--3-----,RL,9805,,5347N 00937E, +,DE,KUK,K�mmersbruck,Kummersbruck,BY,-23-----,AF,9506,,4925N 01153E, +,DE,KUL,Kulmbach,Kulmbach,BY,-23-----,AF,9501,,5006N 01127E, +,DE,KUS,Kusel,Kusel,RP,-23-----,AF,9501,,4932N 00724E, +,DE,KUT,Kurten,Kurten,NW,1-3-----,RQ,0901,,5103N 00716E, +,DE,KZU,Kreuzau,Kreuzau,NW,-23-----,AF,9501,,5045N 00629E, +,DE,LAB,Laboe,Laboe,SH,1-3-----,AF,9501,,5424N 01014E, +,DE,LAE,L�gerdorf,Lagerdorf,SH,1-3-----,AF,9501,,5353N 00935E, +,DE,LAG,Landsberg,Landsberg,BY,-23-----,AF,9501,,4803N 01052E, +,DE,LAH,Lahnstein,Lahnstein,RP,-23-----,AF,9501,,5019N 00736E, +,DE,LAM,Lampertheim,Lampertheim,HE,123-----,AF,9501,,4937N 00825E, +,DE,LAN,Landw�rden,Landwurden,NI,-23-----,AF,9501,,5328N 00832E, +,DE,LAR,Lahr,Lahr,BW,-23-----,AF,9501,,4820N 00752E, +,DE,LBC,L�beck,Lubeck,SH,12345---,AF,9501,,5352N 01041E, +,DE,LBR,Liebertwolkwitz,Liebertwolkwitz,SN,--3-----,RL,0201,,5117N 01228E, +,DE,LBT,Lambrecht,Lambrecht,RP,-23-----,AF,9501,,4922N 00804E, +,DE,LBU,Langenburg,Langenburg,BW,-23-----,AF,9506,,4915N 00951E, +,DE,LBY,Lauterbach,Lauterbach,BY,--3-----,RQ,0901,,4921N 01020E, +,DE,LCG,Laichingen,Laichingen,BW,--3-----,RL,9805,,4829N 00941E, +,DE,LDE,L�gde,Lugde,NW,-23-----,AF,9501,,5155N 00916E, +,DE,LDH,Landshut,Landshut,BY,123-----,AF,9501,,4832N 01209E, +,DE,LEA,Leuna,Leuna,ST,-23-----,AF,9501,,5119N 01201E, +,DE,LEB,Lebach,Lebach,SL,-23-----,AF,9501,,4925N 00655E, +,DE,LEE,Leer,Leer,NI,123-----,AF,9501,,5314N 00727E, +,DE,LEG,Legden,Legden,NW,-23-----,AF,9506,,5202N 00706E, +,DE,LEJ,Leipzig,Leipzig,SN,-2345---,AF,9501,,5120N 01222E, +,DE,LEM,Lemgo,Lemgo,NW,-23-----,AF,9501,,5202N 00854E, +,DE,LEN,Lenningen,Lenningen,BW,--3-----,AF,9501,,4833N 00928E, +,DE,LEO,Leonberg,Leonberg,BW,-23-----,AF,9501,,4848N 00901E, +,DE,LFE,Lindenfels,Lindenfels,HE,--3-----,AF,9506,,4942N 00846E, +,DE,LFF,L�ffingen,Loffingen,BW,--3-----,RQ,0607,,4753N 00821E, +,DE,LFG,Laufenburg,Laufenburg,BW,-23-----,AF,9501,,4734N 00804E, +,DE,LFL,Lohfelden,Lohfelden,HE,--3-----,RL,0101,,5116N 00933E, +,DE,LFR,Langfurth,Langfurth,BY,-----6--,RL,1107,,4906N 01027E, +,DE,LGE,Lage,Lage,NW,-23-----,AF,9501,,5159N 00848E, +,DE,LGM,Langelsheim,Langelsheim,NI,-23-----,AF,9501,,5156N 01020E, +,DE,LGN,Lauingen,Lauingen,BY,-23-----,AF,9501,,4834N 01026E, +,DE,LGS,Lenggries,Lenggries,BY,-23-----,AF,9506,,4741N 01135E, +,DE,LGT,Leingarten,Leingarten,BW,--3-----,RL,0101,,4909N 00907E, +,DE,LGW,Lengenwang,Lengenwang,BY,--3-----,RL,0201,,4742N 01036E, +,DE,LHE,L�hne,Lohne,NW,-23-----,AF,9501,,5212N 00843E, +,DE,LHJ,Leiblfing,Leiblfing,BY,-23-----,RL,9805,,4846N 01231E, +,DE,LHX,Levenhagen,Levenhagen,,--3-----,RL,1107,,5405N 01316E, +,DE,LIC,Lichtenfels,Lichtenfels,BY,-23-----,AF,9501,,5009N 01104E, +,DE,LIG,Lingen,Lingen,NI,123-----,AF,9501,,5231N 00719E, +,DE,LIH,Linnich,Linnich,NW,-23-----,AF,9506,,5059N 00616E, +,DE,LIN,Lintelermarsch,Lintelermarsch,NI,1-3-----,AF,9501,,5337N 00711E, +,DE,LIP,Lippstadt,Lippstadt,NW,-23-----,AF,9501,,5140N 00821E, +,DE,LIS,List/Sylt,List/Sylt,SH,1-3-----,AF,9501,,5501N 00826E, +,DE,LJA,Lanzenhain,Lanzenhain,HE,--3-----,RQ,0607,,5033N 00918E, +,DE,LJE,L�tjensee,Lutjensee,SH,--3-----,RN,0105,,5339N 01022E, +,DE,LKE,Linken,Linken,MV,--3-----,AF,9501,,5327N 01422E, +,DE,LKH,Linkenheim,Linkenheim,BW,-23-----,RL,0201,,4908N 00825E, +,DE,LKN,Lauda-K�nigshofen,Lauda-Konigshofen,BW,-23-----,AF,9501,,4933N 00943E, +,DE,LLD,Leinefelde,Leinefelde,TH,--3-----,RL,9805,,5125N 01019E, +,DE,LLM,Langenlonsheim,Langenlonsheim,RP,-23-----,AF,9501,,4954N 00754E, +,DE,LME,Lemf�rde,Lemforde,NI,-23-----,AF,9501,,5228N 00822E, +,DE,LNA,Lauenau,Lauenau,NI,-23-----,AF,9506,,5216N 00922E, +,DE,LNG,Langen bei Bremerhaven,Langen bei Bremerhaven,NI,--3-----,AF,9506,,5337N 00836E, +,DE,LNN,Langen,Langen,HE,-23-----,AF,9501,,4960N 00840E, +,DE,LOE,L�rrach,Lorrach,BW,-23-----,AF,9501,,4737N 00740E, +,DE,LOF,Limbach-Oberfrohna,Limbach-Oberfrohna,SN,-23-----,RL,0201,,5052N 01245E, +,DE,LOG,Lossburg,Lossburg,BW,-23-----,AF,9506,,4825N 00827E, +,DE,LOH,Lohmar,Lohmar,NW,--3-----,AF,9501,,5050N 00713E, +,DE,LOL,Lollar,Lollar,HE,-23-----,AF,9506,,5039N 00842E, +,DE,LON,Longuich,Longuich,RP,1-3-----,AF,9506,,4948N 00646E, +,DE,LOT,Lotte,Lotte,NW,-23-----,AF,9501,,5217N 00755E, +,DE,LPM,Laupheim,Laupheim,BW,-234----,AF,9501,,4814N 00953E, +,DE,LRG,Ladenburg,Ladenburg,BW,-23-----,AF,9501,,4928N 00837E, +,DE,LRW,Lorsch,Lorsch,HE,-23-----,AF,9506,,4939N 00834E, +,DE,LSD,Landscheid,Landscheid,RP,--3-----,AF,9506,,4959N 00646E, +,DE,LSE,Halsenbach,Halsenbach,RP,-23-----,RL,0701,,5011N 00733E, +,DE,LSG,Linsengericht,Linsengericht,HE,--3-----,AF,9506,,5010N 00912E, +,DE,LSL,Landstuhl,Landstuhl,RP,-23-----,AF,9501,,4925N 00734E, +,DE,LSS,Isselburg,Isselburg,NW,--3-----,RQ,0901,,5150N 00628E, +,DE,LST,Lennestadt,Lennestadt,NW,-23-----,AF,9501,,5107N 00803E, +,DE,LSW,Lensahn,Lensahn,SH,--3-----,RL,0201,,5413N 01053E, +,DE,LTG,Lenting,Lenting,BY,--3-----,RL,9805,,4849N 01127E, +,DE,LTN,Lauterecken,Lauterecken,RP,-23-----,AF,9501,,4939N 00736E, +,DE,LUE,L�nen,Lunen,NW,-23-----,AF,9501,,5137N 00731E, +,DE,LUG,Ludwigsburg,Ludwigsburg,SH,-23-----,AF,9501,ZOD,5431N 00956E, +,DE,LUK,Lechbruck,Lechbruck,BY,--3-----,RQ,0607,,4742N 01048E, +,DE,LUL,Ludwigslust,Ludwigslust,MV,-23-----,AF,9501,,5320N 01130E, +,DE,LUN,L�dinghausen,Ludinghausen,NW,-23-----,AF,9501,,5146N 00727E, +,DE,LUT,Ludwigsstadt,Ludwigsstadt,BY,-23-----,AF,9501,,5029N 01123E, +,DE,LUW,L�chow,Luchow,NI,-23-----,AF,9501,,5258N 01109E, +,DE,LWN,Leiwen,Leiwen,RP,-23-----,AF,9506,,4949N 00653E, +,DE,LYY,Bullay,Bullay,RP,1-------,RQ,0901,,5003N 00708E, +,DE,LZI,Leizen,Leizen,MV,--3-----,RQ,0607,,5322N 01229E, +,DE,LZN,Langenzenn,Langenzenn,BY,-23-----,AF,9501,,4930N 01048E, +,DE,MAD,Marktheidenfeld,Marktheidenfeld,BY,-23-----,AF,9506,,4951N 00936E, +,DE,MAF,Markdorf,Markdorf,BW,-23-----,AF,9501,,4743N 00924E, +,DE,MAG,Magdeburg,Magdeburg,ST,123-----,AF,9501,,5208N 01138E, +,DE,MAI,Mainz,Mainz,RP,123-----,AF,9501,,5000N 00817E, +,DE,MAL,Marl,Marl,NW,-23-----,AF,9501,,5139N 00705E, +,DE,MAN,Marnheim,Marnheim,RP,-23-----,AF,9506,,4938N 00802E, +,DE,MAR,Marburg,Marburg,HE,-23-----,AF,9501,,5049N 00846E, +,DE,MAS,Magstadt,Magstadt,BW,-23-----,AF,9506,,4845N 00858E, +,DE,MAT,Marktschorgast,Marktschorgast,BY,-23-----,AF,9506,,5006N 01139E, +,DE,MAX,Maxdorf/Pfalz,Maxdorf/Pfalz,RP,--3-----,RQ,0101,,4929N 00817E, +,DE,MAY,Mayen,Mayen,RP,-23-----,AF,9501,,5020N 00713E, +,DE,MAZ,Marktredwitz,Marktredwitz,BY,-23-----,AF,9501,,5000N 01205E, +,DE,MBA,M�rlenbach,Murlenbach,RP,--3-----,RL,9911,,5009N 00636E, +,DE,MBG,Meersburg,Meersburg,BW,--3-----,AF,9501,,4742N 00916E, +,DE,MBN,Maulbronn,Maulbronn,BW,-23-----,RQ,9806,,4860N 00848E, +,DE,MBR,Meckenbeuren,Meckenbeuren,BW,--3-----,RQ,0607,,4742N 00934E, +,DE,MCH,Much,Much,NW,--3-----,AF,9501,,5054N 00724E, +,DE,MCI,Mechernich,Mechernich,NW,--3-----,RL,9805,,5035N 00639E, +,DE,MDN,Malterdingen,Malterdingen,BW,--3-----,AF,9501,,4810N 00748E, +,DE,MEC,Meckenheim,Meckenheim,NW,-23-----,AF,9501,,5038N 00701E, +,DE,MED,Meddersheim,Meddersheim,RP,--3-----,AF,9501,,4947N 00737E, +,DE,MEG,Merseburg,Merseburg,ST,--3-----,RN,0105,,5121N 01160E, +,DE,MEJ,Merklingen,Merklingen,BW,--3-----,RQ,0901,,4831N 00945E, +,DE,MEL,Meldorf,Meldorf,SH,123-----,AF,9501,,5405N 00904E, +,DE,MEN,Menden/Sauerland,Menden/Sauerland,NW,-23-----,AF,0201,,5126N 00748E, +,DE,MER,Merzig,Merzig,SL,-23-----,AF,9501,,4927N 00638E, +,DE,MET,Mettmann,Mettmann,NW,-23-----,AF,9501,,5115N 00659E, +,DE,MEZ,Meilschnitz,Meilschnitz,BY,--3-----,AF,9501,,5021N 01106E, +,DE,MGN,M�nsingen,Munsingen,BW,--3-----,AF,9501,,4825N 00930E, +,DE,MGS,Muggensturm,Muggensturm,BW,--3-----,RL,9912,,4852N 00817E, +,DE,MHD,Marienheide,Marienheide,NW,--3-----,RL,0201,,5105N 00732E, +,DE,MHH,M�nchhausen,Munchhausen,HE,--3-----,RQ,0407,,5058N 00843E, +,DE,MHM,Monheim,Monheim,NW,1-3-----,AF,9501,,5105N 00653E, +,DE,MHT,Murrhardt,Murrhardt,BW,-23-----,AF,9501,,4859N 00935E, +,DE,MIC,Michelau in Oberfranken,Michelau in Oberfranken,BY,-23-----,AF,9501,,5010N 01107E, +,DE,MIE,Miesbach,Miesbach,BY,-23-----,AF,9501,,4747N 01150E, +,DE,MIF,Markt Indersdorf,Markt Indersdorf,BY,--3-----,RQ,0101,,4822N 01122E, +,DE,MIH,Mindelheim,Mindelheim,BY,--3-----,AF,9501,,4803N 01029E, +,DE,MII,Meitingen,Meitingen,BY,--3-----,RL,0201,,4833N 01051E, +,DE,MIL,Miltenberg,Miltenberg,BY,123-----,AF,9501,,4942N 00915E, +,DE,MIM,Meisenheim,Meisenheim,RP,1-3-----,RQ,0901,,4942N 00740E, +,DE,MIS,Michelstadt,Michelstadt,HE,-23-----,AF,9506,,4941N 00903E, +,DE,MIT,Mittenwald,Mittenwald,BY,-23-----,AF,9501,,4727N 01116E, +,DE,MKH,Markneukirchen,Markneukirchen,SN,--3-----,RL,0201,,5019N 01220E, +,DE,MKS,Markranst�dt,Markranstadt,SN,-23-----,AF,9501,,5118N 01213E, +,DE,MLS,Melsungen,Melsungen,HE,-23-----,AF,9506,,5109N 00935E, +,DE,MML,M�ckm�hl,Mockmuhl,BW,-234----,AF,9501,,4919N 00922E, +,DE,MMN,Memmingen,Memmingen,BY,-23-----,AF,9501,,4759N 01011E, +,DE,MNB,Mainburg,Mainburg,BY,-23-----,AF,9506,,4838N 01147E, +,DE,MNH,Mainhausen,Mainhausen,HE,-23-----,AF,9506,,5001N 00901E, +,DE,MNN,M�hnsen,Mohnsen,SH,--3-----,RN,0105,,5334N 01028E, +,DE,MNW,Mallnow,Mallnow,BB,--3-----,RQ,1307,,5227N 01429E, +,DE,MNZ,Monzingen,Monzingen,RP,-23-----,AF,9506,,4949N 00734E, +,DE,MOA,Mochau,Mochau,ST,-23-----,RQ,0901,,5156N 01241E, +,DE,MOD,Moorenweis,Moorenweis,BY,--3-----,RL,0201,,4809N 01105E, +,DE,MOE,M�lln,Molln,SH,123-----,AF,9501,,5338N 01041E, +,DE,MOF,Marktoberdorf,Marktoberdorf,BY,-23-----,AF,9501,,4747N 01037E, +,DE,MOG,Mogendorf,Mogendorf,RP,-23-----,AF,9506,,5030N 00745E, +,DE,MOM,M�nsheim,Monsheim,BW,-23-----,AF,9501,,4852N 00852E, +,DE,MOO,Moosburg,Moosburg,BY,-23-----,AF,9501,,4828N 01156E, +,DE,MPF,Mallersdorf-Pfaffenberg,Mallersdorf-Pfaffenberg,BY,-23-----,AF,9501,,4846N 01214E, +,DE,MRB,Morbach,Morbach,RP,-23-----,AF,9506,,4949N 00707E, +,DE,MRE,Meerane,Meerane,SN,-23-----,AF,9501,,5051N 01227E, +,DE,MRG,Murg,Murg,BW,-23-----,AF,9501,,4733N 00802E, +,DE,MRH,Meerbusch,Meerbusch,NW,--3-----,AF,9501,,5116N 00641E, +,DE,MRK,Marklkofen,Marklkofen,BY,--3-----,RL,9805,,4833N 01233E, +,DE,MRZ,Marzling,Marzling,BY,-23-----,AF,9506,,4825N 01148E, +,DE,MSE,Meschede,Meschede,NW,-234----,AF,9501,,5121N 00817E, +,DE,MSG,Marsberg,Marsberg,NW,-23-----,AF,9501,,5128N 00851E, +,DE,MST,Mellrichstadt,Mellrichstadt,BY,-23-----,AF,9501,,5026N 01018E, +,DE,MTD,Marktrodach,Marktrodach,BY,1-------,RQ,0901,,5015N 01123E, +,DE,MTE,Merdingen,Merdingen,BW,--3-----,RL,0201,,4801N 00741E, +,DE,MTG,Mertingen,Mertingen,BY,-23-----,AF,9506,,4839N 01048E, +,DE,MTH,Mitterteich,Mitterteich,BY,-23-----,AF,9501,,4957N 01215E, +,DE,MTL,Maintal,Maintal,HE,--3-----,AF,9501,,5009N 00850E, +,DE,MTN,Metzingen,Metzingen,BW,-23-----,AF,9501,,4832N 00917E, +,DE,MUE,M�llheim,Mullheim,BW,-23-----,AF,9501,,4749N 00738E, +,DE,MUK,Mukran,Mukran,MV,123-----,AF,9501,,5429N 01334E, +,DE,MUL,M�hlacker,Muhlacker,BW,-23-----,AF,9501,,4857N 00851E, +,DE,MUM,M�nchsm�nster,Munchsmunster,BY,-23-----,AF,9501,,4846N 01141E, +,DE,MUR,Murnau,Murnau,BY,-23-----,AF,9501,,4741N 01112E, +,DE,MWA,M�rfelden-Walldorf,Morfelden-Walldorf,HE,-23-----,AF,9501,,4960N 00834E, +,DE,MZN,Meinerzhagen,Meinerzhagen,NW,-234----,AF,9501,,5106N 00738E, +,DE,NAB,Nabburg,Nabburg,BY,-23-----,AF,9501,,4927N 01211E, +,DE,NAC,Nackenheim,Nackenheim,RP,-23-----,AF,9501,,4955N 00821E, +,DE,NAG,Nagold,Nagold,BW,-23-----,AF,9501,,4833N 00843E, +,DE,NAN,Nast�tten,Nastatten,RP,--3-----,AF,9501,,5012N 00751E, +,DE,NAS,Neuenhaus,Neuenhaus,NI,--3-----,AF,9501,,5230N 00658E, +,DE,NBD,Neunkirchen am Brand,Neunkirchen am Brand,BY,1-------,RQ,0901,,4937N 01108E, +,DE,NBG,Neuburg an der Donau,Neuburg an der Donau,BY,-234----,AF,9501,,4844N 01111E, +,DE,NBN,Nordhalben,Nordhalben,BY,--3-----,AF,9501,,5022N 01130E, +,DE,NBO,Neubrunn,Neubrunn,BY,--3-----,RL,0701,,4944N 00940E, +,DE,NCH,Nachrodt,Nachrodt,NW,--3-----,RL,0201,,5119N 00737E, +,DE,NCN,Neunkirchen/Siegen,Neunkirchen/Siegen,NW,--3-----,AF,9501,,5051N 00720E, +,DE,NDC,Niedereschach,Niedereschach,BW,-----6--,RL,1107,,4808N 00832E, +,DE,NDH,Nordhausen,Nordhausen,TH,-23-----,AF,9501,,5130N 01048E, +,DE,NDN,Neidenstein,Neidenstein,BW,-23-----,AF,9501,,4919N 00853E, +,DE,NDO,Niederdorla,Niederdorla,TH,--3-----,RL,0601,,5110N 01027E, +,DE,NDW,Nieder-Werbe,Nieder-Werbe,HE,--3-----,RL,0201,,5113N 00900E, +,DE,NEB,Neubrandenburg,Neubrandenburg,MV,-23-----,AF,9501,,5333N 01316E, +,DE,NED,Neuwied,Neuwied,RP,123-----,AF,9501,,5026N 00728E, +,DE,NEE,Neubr�cke,Neubrucke,RP,--3-----,RL,0006,,4936N 00710E, +,DE,NEF,Neufeld,Neufeld,SH,1-3-----,AF,9501,,5355N 00901E, +,DE,NEI,Neidenfels/Pfalz,Neidenfels/Pfalz,RP,--3-----,AF,9501,,4923N 00803E, +,DE,NEM,Neckarsulm,Neckarsulm,BW,-23-----,AF,9501,,4911N 00913E, +,DE,NEN,Neunkirchen-Seelscheid,Neunkirchen-Seelscheid,NW,--3-----,AF,9501,,5051N 00720E, +,DE,NER,Neustrelitz,Neustrelitz,MV,-23-----,AF,9501,,5322N 01304E, +,DE,NEU,Neum�nster,Neumunster,SH,-23-----,AF,9501,,5405N 00959E, +,DE,NEW,Neustadt (Wied),Neustadt (Wied),RP,--3-----,AF,9506,,4921N 00808E, +,DE,NEZ,Neckarelz,Neckarelz,BW,-23-----,AF,9501,,4921N 00906E, +,DE,NFB,Niederfischbach,Niederfischbach,RP,--3-----,RL,0201,,5051N 00753E, +,DE,NFN,Niefern,Niefern,BW,-23-----,AF,9501,,4855N 00848E, +,DE,NFO,Oberpframmern,Oberpframmern,BY,--3-----,RQ,0901,,4801N 01149E, +,DE,NGD,Neugersdorf,Neugersdorf,SN,-23-----,AF,9501,,5100N 01436E, +,DE,NGR,Gatersleben,Gatersleben,ST,-23-----,RL,0901,,5149N 01117E, +,DE,NHF,Neuhausen auf den Fildern,Neuhausen auf den Fildern,BW,--3-----,AF,9501,,4841N 00917E, +,DE,NIB,Neubiberg,Neubiberg,BY,-23-----,RL,0201,,4805N 01140E, +,DE,NID,Nidda,Nidda,HE,--3-----,AF,9501,,5026N 00902E, +,DE,NIE,Nienburg,Nienburg,NI,123-----,AF,9501,,5238N 00913E, +,DE,NIH,Hasbergen,Hasbergen,NI,1-------,RQ,0901,,5214N 00758E, +,DE,NIL,Nieb�ll,Niebull,SH,-23-----,AF,9501,,5447N 00850E, +,DE,NIN,Nierstein,Nierstein,RP,-23-----,AF,9501,,4952N 00820E, +,DE,NIR,Niederzier,Niederzier,NW,--3-----,AF,9501,,5053N 00628E, +,DE,NKC,Neukirchen/Pleisse,Neukirchen/Pleisse,SN,--3-----,RQ,0101,,5047N 01223E, +,DE,NKS,Neunkirchen am Sand,Neunkirchen am Sand,BY,-23-----,AF,9501,,4931N 01119E, +,DE,NLA,Naila,Naila,BY,--3-----,RL,0201,,5020N 01143E, +,DE,NLN,Nottuln,Nottuln,NW,--3-----,AF,9501,,5156N 00721E, +,DE,NMD,Neckargem�nd,Neckargemund,BW,-23-----,AF,9501,,4924N 00848E, +,DE,NNS,Niederneisen,Niederneisen,RP,--3-----,RL,0201,,5020N 00803E, +,DE,NOD,Norden,Norden,NI,1234----,AF,9501,,5336N 00712E, +,DE,NOH,N�rten-Hardenberg,Norten-Hardenberg,NI,-23-----,AF,9501,,5138N 00956E, +,DE,NOL,Nieder-Olm,Nieder-Olm,RP,-23-----,AF,9501,,4955N 00812E, +,DE,NON,N�rdlingen,Nordlingen,BY,-23-----,AF,9501,,4851N 01029E, +,DE,NOO,Gottenheim,Gottenheim,BW,--3-----,RQ,0901,,4803N 00744E, +,DE,NOT,Norderstedt,Norderstedt,SH,-23-----,AF,9501,,5343N 00959E, +,DE,NPN,Netphen,Netphen,NW,--3-----,AF,9501,,5055N 00806E, +,DE,NPP,Neuruppin,Neuruppin,BB,-23-----,RL,1307,,5255N 01249E, +,DE,NRD,Norderney,Norderney,NI,1-34----,AF,9501,,5342N 00709E, +,DE,NRN,Niederkr�chten,Niederkruchten,NW,--3-----,AF,9501,,5112N 00613E, +,DE,NSA,Neustadt/Aisch,Neustadt/Aisch,BY,-23-----,AF,9501,,5019N 01155E, +,DE,NSB,Neustadt an der Waldnaab,Neustadt an der Waldnaab,BY,-23-----,AF,9501,,4944N 01210E, +,DE,NSC,Neuenschleuse,Neuenschleuse,NI,1-3-----,AF,9501,,5333N 00940E, +,DE,NST,Neckarsteinach,Neckarsteinach,HE,123-----,AF,9506,,4925N 00850E, +,DE,NSU,Nassau/Lahn,Nassau/Lahn,RP,--3-----,AF,9501,,5019N 00748E, +,DE,NSY,Nersingen,Nersingen,BY,1-------,RQ,0901,,4826N 01007E, +,DE,NTG,Neutraubling,Neutraubling,BY,--3-----,AF,9501,,4859N 01212E, +,DE,NTL,Nettetal,Nettetal,NW,--3-----,AF,9501,,5119N 00616E, +,DE,NUN,N�rtingen,Nurtingen,BW,-23-----,AF,9501,,4838N 00920E, +,DE,NUT,N�mbrecht,Numbrecht,NW,-23-----,AF,9506,,5054N 00732E, +,DE,NWM,Niederwerrn,Niederwerrn,BY,--3-----,RL,0201,,5004N 01011E, +,DE,OBA,Oberammergau,Oberammergau,BY,-23-----,AF,9506,,4736N 01104E, +,DE,OBD,Oberdachstetten,Oberdachstetten,BY,-23-----,AF,9506,,4925N 01025E, +,DE,OBF,Oberstdorf,Oberstdorf,BY,-23-----,AF,9501,,4725N 01017E, +,DE,OBH,Oberwolfach,Oberwolfach,BW,--3-----,AF,9501,,4819N 00813E, +,DE,OBL,Oberursel,Oberursel,HE,-23-----,AF,9501,,5012N 00835E, +,DE,OBN,Obertshausen,Obertshausen,HE,-23-----,AF,9501,,5004N 00852E, +,DE,OBW,Oberweser,Oberweser,HE,--3-----,QQ,0212,,5135N 00934E, +,DE,OCE,Ortenburg,Ortenburg,BY,--3-----,RL,9805,,4833N 01314E, +,DE,OCH,Ochsenhausen,Ochsenhausen,BW,--3-----,AF,9501,,4804N 00957E, +,DE,OCT,Ochtrup,Ochtrup,NW,--3-----,RL,0201,,5213N 00711E, +,DE,ODN,Oberderdingen,Oberderdingen,BW,--3-----,AF,9506,,4904N 00848E, +,DE,ODT,Honhardt,Honhardt,BW,--3-----,RQ,0901,,4904N 01002E, +,DE,OEA,Oelsa/Freital,Oelsa/Freital,SN,-23-----,AF,9501,,5057N 01340E, +,DE,OEH,�hringen,Ohringen,BW,-23-----,AF,9501,,4912N 00930E, +,DE,OEL,Oelde,Oelde,NW,-23-----,AF,9501,,5150N 00809E, +,DE,OER,Oer-Erkenschwick,Oer-Erkenschwick,NW,--3-----,AF,9501,,5138N 00716E, +,DE,OES,�stringen,Ostringen,BW,--3-----,AF,9501,,4913N 00843E, +,DE,OFG,Offenburg,Offenburg,BW,-23-5---,AF,9501,,4828N 00757E, +,DE,OFN,Offingen,Offingen,BY,--3-----,AF,9506,,4829N 01022E, +,DE,OFT,Ofterschwang,Ofterschwang,BY,--3-----,AF,9501,,4730N 01014E, +,DE,OKH,Oberkirch,Oberkirch,BW,-23-----,AF,9501,,4832N 00805E, +,DE,OKL,Oberkleen,Oberkleen,HE,--3-----,RL,0201,,5028N 00835E, +,DE,OLB,Oldenb�ttel,Oldenbuttel,SH,1-3-----,AF,9501,,5410N 00927E, +,DE,OLC,Olching,Olching,BY,--3-----,AF,9501,,4812N 01120E, +,DE,OLM,Ober-Olm,Ober-Olm,RP,1-------,RQ,0901,,4956N 00812E, +,DE,OLN,Oschersleben,Oschersleben,ST,--3-----,RL,0101,,5202N 01114E, +,DE,OLP,Olpenitz,Olpenitz,SH,123-----,AF,9501,,5440N 00959E, +,DE,OLS,Olsberg,Olsberg,NW,-23-----,AF,9501,,5121N 00829E, +,DE,OOR,Holdorf,Holdorf,NI,--3-----,RQ,0901,,5235N 00808E, +,DE,OPP,Oppenheim,Oppenheim,RP,123-----,AF,9506,,4951N 00821E, +,DE,ORA,Oranienburg,Oranienburg,BB,--3-----,RQ,1307,,5245N 01315E, +,DE,ORB,Ortenberg,Ortenberg,HE,--3-----,RL,9805,,5022N 00905E, +,DE,ORT,Orth/Fehmarn,Orth/Fehmarn,SH,1-3-----,AF,9501,,5427N 01103E, +,DE,OSF,Ostfildern,Ostfildern,BW,--3-----,AF,9501,,4843N 00916E, +,DE,OSH,Osterhausen,Osterhausen,ST,--3-----,AF,9501,,5127N 01130E, +,DE,OSK,Oststeinbek,Oststeinbek,SH,--3-----,RQ,0607,,5333N 01010E, +,DE,OSM,Obersulm,Obersulm,BW,-23-----,AF,9506,,4909N 00926E, +,DE,OST,Osterburken,Osterburken,BW,-23-----,AF,9501,,4926N 00926E, +,DE,OTB,Ottobeuren,Ottobeuren,BY,--3-----,RL,0201,,4757N 01018E, +,DE,OTN,Ottobrunn,Ottobrunn,BY,-23-----,AF,9501,,4804N 01140E, +,DE,OWL,Ohlweiler,Ohlweiler,RP,--3-----,RL,0201,,4958N 00730E, +,DE,OZH,Obersontheim,Obersontheim,BW,--3-----,RL,0001,,4903N 00954E, +,DE,PAD,Paderborn,Paderborn,NW,-234----,AF,9501,,5143N 00846E, +,DE,PCH,Parchim,Parchim,MV,--3-----,RQ,0101,,5326N 01151E, +,DE,PDF,Puschendorf,Puschendorf,BY,-23-----,RL,9805,,4931N 01050E, +,DE,PFA,Pfaffenhofen an der Ilm,Pfaffenhofen an der Ilm,BY,-23-----,AF,9501,,4832N 01131E, +,DE,PFK,Pfarrkirchen,Pfarrkirchen,BY,-23-----,AF,9501,,4826N 01256E, +,DE,PFN,Pfullingen,Pfullingen,BW,--3-----,AF,9506,,4828N 00914E, +,DE,PFO,Pforzheim,Pforzheim,BW,-234----,AF,9501,,4853N 00842E, +,DE,PFT,Pfungstadt,Pfungstadt,HE,--3-----,AF,9501,,4948N 00835E, +,DE,PFU,Pfullendorf,Pfullendorf,BW,-23-----,AF,9501,,4755N 00915E, +,DE,PGR,Pfalzgrafenweiler,Pfalzgrafenweiler,BW,--3-----,AF,9501,,4832N 00834E, +,DE,PHG,Philippsburg,Philippsburg,BW,-23-----,AF,9501,,4914N 00827E, +,DE,PHI,Philippsthal,Philippsthal,HE,-23-----,AF,9501,,5051N 00959E, +,DE,PHN,Pl�derhausen,Pluderhausen,BW,-23-----,AF,9501,,4848N 00936E, +,DE,PIG,Penig,Penig,SN,-23-----,RL,0201,,5056N 01242E, +,DE,PIN,Pinneberg,Pinneberg,SH,123-----,AF,9501,,5340N 00948E, +,DE,PIR,Pirmasens,Pirmasens,RP,-23-----,AF,9501,,4912N 00737E, +,DE,PKS,Plankstadt,Plankstadt,BW,--3-----,RL,0201,,4924N 00836E, +,DE,PLA,Plattling,Plattling,BY,-23-----,AF,9501,,4847N 01253E, +,DE,PLE,Plettenberg,Plettenberg,NW,-23-----,AF,9501,,5113N 00752E, +,DE,PLG,Planegg,Planegg,BY,-23-----,AF,9501,,4806N 01125E, +,DE,PLH,Pleidelsheim,Pleidelsheim,BW,--3-----,AF,9506,,4858N 00912E, +,DE,PLN,Pl�n,Plon,SH,-23-----,AF,9501,,5409N 01025E, +,DE,PLO,Plochingen,Plochingen,BW,-23-----,AF,9501,,4843N 00925E, +,DE,PLT,Plaidt,Plaidt,RP,-23-----,AF,9501,,5024N 00723E, +,DE,POC,Pocking,Pocking,BY,--3-----,AF,9501,,4824N 01319E, +,DE,POG,Poing,Poing,BY,--3-----,RL,9811,,4810N 01148E, +,DE,POH,Pohlheim,Pohlheim,HE,-23-----,AF,9506,,5031N 00844E, +,DE,POM,Pomellen,Pomellen,MV,--3-----,AF,9501,,5320N 01423E, +,DE,POR,Porz,Porz,NW,-23-----,AF,9501,,5053N 00706E, +,DE,POW,Porta Westfalica,Porta Westfalica,NW,-234----,AF,9501,,5214N 00855E, +,DE,PPP,Pappenheim,Pappenheim,BY,-23-----,RL,0201,,4856N 01058E, +,DE,PRA,Pirna,Pirna,SN,123-----,AF,9501,,5058N 01356E, +,DE,PRE,Preetz,Preetz,SH,--3-----,AF,9506,,5414N 01017E, +,DE,PRL,Perl,Perl,SL,-23-----,RL,0901,,4928N 00623E, +,DE,PRT,Prichsenstadt,Prichsenstadt,BY,-23-----,AF,9506,,4949N 01021E, +,DE,PRU,Pr�m,Prum,RP,-23-----,AF,9501,,5012N 00625E, +,DE,PRW,Prerow,Prerow,MV,1-3-----,AF,9506,,5427N 01234E, +,DE,PSH,Sankt Peter-Ording,Sankt Peter-Ording,SH,123-----,AF,1101,,5419N 00838E, +,DE,PSU,Piesau,Piesau,TH,--3-----,RL,0201,,5030N 01112E, +,DE,PSW,Petershagen/Weser,Petershagen/Weser,NW,123-----,AF,9506,,5223N 00858E, +,DE,PTG,Peiting,Peiting,BY,--3-----,RL,0101,,4748N 01055E, +,DE,PTS,Partenstein,Partenstein,BY,--3-----,RL,0001,,5002N 00931E, +,DE,PTU,Pratau,Pratau,ST,--3-----,RQ,0607,,5151N 01239E, +,DE,PTZ,Premnitz,Premnitz,BB,-23-----,RL,1307,,5232N 01220E, +,DE,PUC,Puchheim,Puchheim,BY,--3-----,RQ,0101,,4810N 01121E, +,DE,PUI,Pullach im Isartal,Pullach im Isartal,BY,--3-----,RL,0101,,4803N 01131E, +,DE,PUL,Pulheim,Pulheim,NW,-23-----,AF,9501,,5060N 00648E, +,DE,PUT,Puttgarden,Puttgarden,SH,123-----,AF,9501,,5430N 01113E, +,DE,PWK,Pasewalk,Pasewalk,MV,-23-----,AF,9501,,5330N 01359E, +,DE,PZB,P�tz,Patz,BB,--3-----,RL,1307,,5214N 01339E, +,DE,QUE,Quedlinburg,Quedlinburg,ST,-23-----,AF,9501,,5147N 01109E, +,DE,RAB,Rabenau,Rabenau,SN,-23-----,AF,9501,,5058N 01339E, +,DE,RAD,Radolfzell,Radolfzell,BW,123-----,AF,9501,,4744N 00858E, +,DE,RAG,Radeberg,Radeberg,SN,-23-----,AF,9501,,5107N 01355E, +,DE,RAH,Rahden,Rahden,NW,-23-----,AF,9501,,5226N 00837E, +,DE,RAI,Rott am Inn,Rott am Inn,BY,-23-----,AF,9506,,4759N 01208E, +,DE,RAM,Ramstein-Miesenbach,Ramstein-Miesenbach,RP,-23-----,AF,9506,,4927N 00733E, +,DE,RAT,Ratingen,Ratingen,NW,--3-----,AF,9501,,5118N 00651E, +,DE,RAU,Raunheim,Raunheim,HE,-23-----,AF,9501,,5001N 00827E, +,DE,RAV,Ravensburg,Ravensburg,BW,-23-----,AF,9501,,4747N 00937E, +,DE,RBB,Rheinbreitbach,Rheinbreitbach,RP,--3-----,RL,0001,,5037N 00714E, +,DE,RBC,Raubach,Raubach,HE,--3-----,RL,9805,,4933N 00853E, +,DE,RBG,Rauschenberg,Rauschenberg,HE,--3-----,AF,9501,,5053N 00855E, +,DE,RBL,Radebeul,Radebeul,SN,-2------,RL,0201,,5106N 01341E, +,DE,RBN,Rheinb�llen,Rheinbollen,RP,-23-----,AF,9501,,5000N 00740E, +,DE,RCN,Renchen,Renchen,BW,-23-----,AF,9506,,4835N 00801E, +,DE,RDB,Rieden (Amberg-Sulzbach),Rieden (Amberg-Sulzbach),BY,--3-----,RQ,0101,,4757N 01039E, +,DE,RDE,Riede,Riede,NI,--3-----,AF,9501,,5258N 00856E, +,DE,RDV,Radevormwald,Radevormwald,NW,--3-----,AF,9501,,5112N 00721E, +,DE,REF,Rengsdorf,Rengsdorf,RP,--3-----,AF,9501,,5030N 00730E, +,DE,REG,Regensburg,Regensburg,BY,123-----,AF,9501,,4901N 01206E, +,DE,REH,Rednitzhembach,Rednitzhembach,BY,-23-----,AF,9501,,4918N 01105E, +,DE,REI,Reinbek,Reinbek,SH,-23-----,AF,9501,,5331N 01015E, +,DE,REK,Reken,Reken,NW,-23-----,AF,9506,,5150N 00703E, +,DE,REM,Remagen,Remagen,RP,123-----,AF,9501,,5035N 00714E, +,DE,REN,Rendsburg,Rendsburg,SH,123-----,AF,9501,,5418N 00939E, +,DE,RES,Rees,Rees,NW,-23-----,AF,9501,,5145N 00624E, +,DE,REU,Reutlingen,Reutlingen,BW,-23-----,AF,9501,,4830N 00913E, +,DE,RFA,Reinsdorf,Reinsdorf,NI,--3-----,RQ,9806,,5209N 01103E, +,DE,RFD,Reinfeld,Reinfeld,SH,-23-----,AF,9501,,5350N 01029E, +,DE,RFN,Rheinfelden,Rheinfelden,BW,-23-----,AF,9501,,4734N 00747E, +,DE,RGH,Roigheim,Roigheim,BW,--3-----,RL,0001,,4922N 00920E, +,DE,RGN,Regen,Regen,BY,-23-----,AF,9501,,4858N 01308E, +,DE,RHD,Rheindahlen,Rheindahlen,NW,-234----,AF,9501,,5109N 00622E, +,DE,RHE,Rheine,Rheine,NW,123-----,AF,9501,,5217N 00726E, +,DE,RHH,Rheinbach,Rheinbach,NW,-23-----,AF,9501,,5038N 00657E, +,DE,RHI,"Rheinau, Ortenaukreis","Rheinau, Ortenaukreis",BW,--3-----,RQ,0407,,4840N 00756E, +,DE,RHL,Rheinbrohl,Rheinbrohl,RP,123-----,AF,9506,,5030N 00720E, +,DE,RHM,Reinheim,Reinheim,HE,-23-----,AF,9501,,4950N 00849E, +,DE,RHN,Remshalden,Remshalden,BW,-23-----,AF,9501,,4849N 00926E, +,DE,RHT,Rhodt,Rhodt,RP,--3-----,AF,9506,,4916N 00806E, +,DE,RHW,Rheda-Wiedenbr�ck,Rheda-Wiedenbruck,NW,-23-----,AF,9501,,5151N 00818E, +,DE,RIL,Rinnthal,Rinnthal,RP,-23-----,AF,9506,,4913N 00756E, +,DE,RLG,Raubling,Raubling,BY,--3-----,RL,0201,,4747N 01207E, +,DE,RNI,Rammelsbach,Rammelsbach,RP,--3-----,RL,9805,,4933N 00727E, +,DE,RNN,Renningen,Renningen,BW,-23-----,AF,9506,,4846N 00856E, +,DE,RNW,Rathenow,Rathenow,BB,--3-----,RL,1307,,5236N 01220E, +,DE,ROG,R�merberg,Romerberg,RP,--3-----,AF,9501,,4917N 00824E, +,DE,ROH,Rockenhausen,Rockenhausen,RP,-23-----,AF,9501,,4938N 00749E, +,DE,ROK,R�dermark,Rodermark,HE,--3-----,AF,9501,,4959N 00849E, +,DE,ROL,Rottweil,Rottweil,BW,-23-----,AF,9501,,4810N 00838E, +,DE,RON,Ronneburg,Ronneburg,TH,--3-----,RL,9805,,5052N 01211E, +,DE,ROS,Rosenheim,Rosenheim,BY,123-5---,AF,9501,,4751N 01208E, +,DE,ROT,Rothenburg ob der Tauber,Rothenburg ob der Tauber,BY,-234----,AF,9501,,4923N 01011E, +,DE,ROU,Rodgau,Rodgau,HE,--3-----,AF,9501,,5001N 00853E, +,DE,ROW,Rotenburg/W�mme,Rotenburg/Wumme,NI,-23-----,AF,9501,,5307N 00924E, +,DE,RPL,Lonsheim,Lonsheim,RP,1-------,RQ,0901,,4947N 00805E, +,DE,RRR,Wetro,Wetro,SN,--3-----,RL,0901,,5115N 01418E, +,DE,RRS,Hermsdorf,Hermsdorf,BE,--3-----,RQ,0901,,5237N 01319E, +,DE,RRT,Th�rnich,Thornich,RP,1-------,RQ,0901,,4950N 00650E, +,DE,RSA,Riesa,Riesa,SN,-23-----,AF,9501,,5118N 01319E, +,DE,RSE,Rieste,Rieste,NI,--3-----,RQ,0407,,5229N 00801E, +,DE,RSG,Rosenberg/Ostalb,Rosenberg/Ostalb,BW,--3-----,AF,9501,,4901N 01002E, +,DE,RTL,R�dental,Rodental,BY,--3-----,AF,9501,,5018N 01103E, +,DE,RTM,Rutesheim,Rutesheim,BW,--3-----,RL,9811,,4848N 00857E, +,DE,RTO,Rottenburg,Rottenburg,BW,--3-----,RQ,0607,,4829N 00856E, +,DE,RUA,Ruhla,Ruhla,TH,--3-----,RL,0701,,5054N 01023E, +,DE,RUD,Rudersberg,Rudersberg,BW,-23-----,AF,9506,,4853N 00932E, +,DE,RUG,Ruhpolding,Ruhpolding,BY,-23-----,AF,9501,,4746N 01239E, +,DE,RUN,Runkel,Runkel,HE,-23-----,AF,9506,,5024N 00810E, +,DE,RUP,Ruppichteroth,Ruppichteroth,NW,--3-----,RL,0201,,5051N 00729E, +,DE,RUS,Rothausen,Rothausen,BY,--3-----,RL,0201,,5023N 01027E, +,DE,RZB,Rettenbach / Gunzburg,Rettenbach / Gunzburg,BY,1-3-----,RQ,0901,,4904N 01227E, +,DE,RZG,Ratzeburg,Ratzeburg,SH,-23-----,AF,9501,,5342N 01046E, +,DE,SAA,Saarlouis,Saarlouis,SL,123-----,AF,9501,,4919N 00645E, +,DE,SAG,Saarburg,Saarburg,RP,123-----,AF,9501,,4936N 00633E, +,DE,SAH,Saulheim,Saulheim,RP,-23-----,AF,9506,,4952N 00809E, +,DE,SAN,Sandhausen,Sandhausen,BW,--3-----,AF,9501,,4921N 00840E, +,DE,SAP,Satrup,Satrup,SH,--3-----,AF,9506,,5442N 00936E, +,DE,SAS,Sassnitz,Sassnitz,MV,123-----,AF,9501,,5431N 01339E, +,DE,SAU,Schacht-Audorf,Schacht-Audorf,SH,123-----,AF,9501,,5419N 00943E, +,DE,SBH,Schrobenhausen,Schrobenhausen,BY,--3-----,AF,9501,,4834N 01116E, +,DE,SBO,Steinenbronn,Steinenbronn,BW,--3-----,RL,0201,,4840N 00907E, +,DE,SCD,Scheinfeld,Scheinfeld,BY,--3-----,AF,9501,,4940N 01028E, +,DE,SCE,Schwerte,Schwerte,NW,-23-----,AF,9501,,5127N 00734E, +,DE,SCF,Schwandorf,Schwandorf,BY,-23-----,AF,9501,,4920N 01207E, +,DE,SCG,Schramberg,Schramberg,BW,--3-----,AF,9501,,4814N 00823E, +,DE,SCH,Schwetzingen,Schwetzingen,BW,-23-----,AF,9501,,4923N 00834E, +,DE,SCK,Schermbeck,Schermbeck,NW,-23-----,AF,9506,,5142N 00652E, +,DE,SCM,Schriesheim,Schriesheim,BW,-23-----,AF,9501,,4929N 00840E, +,DE,SCN,Saarbr�cken,Saarbrucken,SL,12345---,AF,9501,,4914N 00660E, +,DE,SCR,Schierling,Schierling,BY,--3-----,RL,0201,,4850N 01208E, +,DE,SCT,Schwalmstadt,Schwalmstadt,HE,--3-----,AF,9501,,5055N 00911E, +,DE,SDD,"Steenodde, Amrum","Steenodde, Amrum",SH,1-------,AI,0401,,5438N 00823E, +,DE,SDE,"Sande, Friesland","Sande, Friesland",NI,123-----,AF,9501,,5330N 00801E, +,DE,SDF,Schorndorf,Schorndorf,BW,-23-----,AF,9501,,4848N 00932E, +,DE,SDG,Stadtbergen,Stadtbergen,BY,--3-----,RL,0201,,4822N 01051E, +,DE,SDL,S�dlohn,Sudlohn,NW,-23-----,AF,9506,,5157N 00652E, +,DE,SDO,Saal an der Donau,Saal an der Donau,BY,-23-----,AF,9501,,4854N 01156E, +,DE,SEG,Seeg,Seeg,BY,-23-----,RL,0201,,4739N 01036E, +,DE,SEH,Sehestedt/Eider,Sehestedt/Eider,SH,123-----,AF,9501,,5422N 00949E, +,DE,SEM,Selm,Selm,NW,-23-----,AF,9501,,5142N 00728E, +,DE,SEN,Sendenhorst,Sendenhorst,NW,--3-----,AF,9501,,5151N 00750E, +,DE,SEX,Sembach,Sembach,RP,--34----,AF,9501,,4931N 00751E, +,DE,SFN,Sonthofen,Sonthofen,BY,-23-----,AF,9506,,4730N 01018E, +,DE,SFS,Schifferstadt,Schifferstadt,RP,-23-----,AF,9506,,4923N 00822E, +,DE,SGA,Steigra,Steigra,ST,--3-----,RL,0001,,5118N 01140E, +,DE,SGE,Siegen,Siegen,NW,-234----,AF,9501,,5052N 00801E, +,DE,SGN,Steinhagen,Steinhagen,NW,-23-----,AF,9501,,5160N 00823E, +,DE,SGU,Schongau,Schongau,BY,-23-----,AF,9501,,4749N 01054E, +,DE,SHA,Sangerhausen,Sangerhausen,ST,--3-----,RN,0105,,5128N 01118E, +,DE,SHB,Sessenbach,Sessenbach,RP,--3-----,AF,9506,,5029N 00739E, +,DE,SHD,Steinheid,Steinheid,TH,-23-----,AF,9501,,5028N 01105E, +,DE,SHE,Seeheim-Jugenheim,Seeheim-Jugenheim,HE,-23-----,AF,9501,,4946N 00840E, +,DE,SHF,Solnhofen,Solnhofen,BY,-23-----,AF,9506,,4854N 01060E, +,DE,SHI,Schmilka,Schmilka,SN,--3-----,AF,9501,,5054N 01414E, +,DE,SHM,Schopfheim,Schopfheim,BW,-23-----,AF,9501,,4739N 00749E, +,DE,SHN,Siershahn,Siershahn,RP,-23-----,AF,9501,,5029N 00747E, +,DE,SHR,Straubenhardt,Straubenhardt,BW,--3-----,AF,9506,,4851N 00832E, +,DE,SHS,Schloss Holte-Stukenbrock,Schloss Holte-Stukenbrock,NW,-23--6--,AF,1701,,5154N 00838E, +,DE,SIG,Siegburg,Siegburg,NW,-23-----,AF,9501,,5048N 00712E, +,DE,SIH,Sinsheim,Sinsheim,BW,-23-----,AF,9501,,4915N 00853E, +,DE,SIL,Simmertal,Simmertal,RP,--3-----,AF,9506,,4949N 00731E, +,DE,SIR,Rohrbach,Rohrbach,SL,--3-----,RQ,0212,,4917N 00710E, +,DE,SKF,Stockelsdorf,Stockelsdorf,SH,--3-----,AF,9501,,5354N 01039E, +,DE,SKO,Schkopau,Schkopau,ST,-23-----,AF,9501,,5123N 01159E, +,DE,SKZ,Schkeuditz,Schkeuditz,SN,--3-----,RL,0201,,5124N 01213E, +,DE,SLB,Siegelbach,Siegelbach,TH,--3-----,AF,9506,,5048N 01056E, +,DE,SLF,Strullendorf,Strullendorf,BY,-23-----,RL,0201,,4951N 01058E, +,DE,SLH,Schopfloch/Freudenstadt,Schopfloch/Freudenstadt,BW,-23-----,AF,9501,,4827N 00833E, +,DE,SLM,Schwelm,Schwelm,NW,-23-----,AF,9501,,5117N 00718E, +,DE,SLO,Stadtlohn,Stadtlohn,NW,--34----,AF,9501,,5160N 00655E, +,DE,SLS,Schleswig,Schleswig,SH,123-----,AF,9501,,5431N 00934E, +,DE,SLU,Saulgau,Saulgau,BW,-234----,AF,9501,,4801N 00930E, +,DE,SME,Schalksm�hle,Schalksmuhle,NW,-23-----,AF,9501,,5114N 00732E, +,DE,SMG,Sigmaringen,Sigmaringen,BW,-23-----,AF,9501,,4805N 00913E, +,DE,SMN,Schwabm�nchen,Schwabmunchen,BY,-23-----,AF,9501,,4811N 01045E, +,DE,SMW,Stemwede,Stemwede,NW,--3-----,AF,9501,,5225N 00827E, +,DE,SOD,Sonnenfeld,Sonnenfeld,BY,--3-----,AF,9501,,4810N 01212E, +,DE,SOE,Soest,Soest,NW,-23-----,AF,9501,,5134N 00806E, +,DE,SOH,Sohren,Sohren,RP,-23-----,AF,9506,,4956N 00718E, +,DE,SOK,Sonsbeck,Sonsbeck,NW,--3-----,AF,9501,,5137N 00623E, +,DE,SOL,Solingen,Solingen,NW,-23-----,AF,9501,,5110N 00705E, +,DE,SON,Sonneberg,Sonneberg,TH,-23-----,AF,9501,,5021N 01110E, +,DE,SOS,Solms,Solms,HE,-23-----,AF,9501,,5032N 00824E, +,DE,SOT,Schotten,Schotten,HE,--3-----,AF,9506,,5029N 00910E, +,DE,SPA,Spaichingen,Spaichingen,BW,--3-----,RL,0006,,4804N 00844E, +,DE,SPE,Speyer,Speyer,RP,123-----,AF,9501,,4919N 00826E, +,DE,SPF,Speichersdorf,Speichersdorf,BY,-23-----,AF,9506,,4953N 01147E, +,DE,SPG,Spenge,Spenge,NW,--3-----,AF,9501,,5209N 00829E, +,DE,SPM,Spangdahlem,Spangdahlem,RP,--3-----,AF,9501,,4959N 00641E, +,DE,SPR,Sprendlingen/Rheinhessen,Sprendlingen/Rheinhessen,RP,-23-----,AF,9501,,4952N 00759E, +,DE,SPU,Spiegelau,Spiegelau,BY,--3-----,RL,0201,,4855N 01321E, +,DE,SRL,Sauerlach,Sauerlach,BY,--3-----,RL,0201,,4758N 01139E, +,DE,SRM,Surheim,Surheim,BY,--3-----,RL,0101,,4753N 01257E, +,DE,SRN,Straelen,Straelen,NW,--3-----,AF,9501,,5127N 00616E, +,DE,SRO,Sulzbach-Rosenberg,Sulzbach-Rosenberg,BY,-23-----,AF,9501,,4930N 01145E, +,DE,SRT,Streithausen,Streithausen,RP,--3-----,AF,9506,,5042N 00749E, +,DE,SRU,Sarlhusen,Sarlhusen,SH,--3-----,RL,0003,,5401N 00947E, +,DE,SRZ,Sirzenich,Sirzenich,RP,--3-----,RL,9805,,4946N 00636E, +,DE,SSC,Schieder-Schwalenberg,Schieder-Schwalenberg,NW,-23-----,AF,9501,,5154N 00911E, +,DE,SSE,Stutensee,Stutensee,BW,-23-----,AF,9506,,4905N 00829E, +,DE,SSP,Stephansposching,Stephansposching,BY,--3-----,RL,0002,,4849N 01248E, +,DE,STB,Straubing,Straubing,BY,123-----,AF,9501,,4853N 01234E, +,DE,STD,Strande,Strande,SH,1-3-----,AF,9501,,5426N 01010E, +,DE,STF,Stassfurt,Stassfurt,ST,-23-----,AF,9501,,5151N 01136E, +,DE,STG,Stolberg,Stolberg,NW,-23-----,AF,9501,,5046N 00614E, +,DE,STL,Stralsund,Stralsund,MV,123-----,AF,9501,,5419N 01305E, +,DE,STM,Steinheim,Steinheim,NW,-23-----,AF,9501,,5152N 00906E, +,DE,STN,Starnberg,Starnberg,BY,-23-----,AF,9501,,4800N 01121E, +,DE,STO,Stolberg/Harz,Stolberg/Harz,ST,-23-----,AF,9501,,5134N 01057E, +,DE,STP,Stolpen,Stolpen,SN,-23-----,AF,9501,,5103N 01405E, +,DE,STT,Steinfurt,Steinfurt,BW,-23-----,AF,9501,,4939N 00929E, +,DE,SUD,S�derstapel,Suderstapel,SH,1-3-----,AF,9501,,5420N 00912E, +,DE,SUL,Suhl,Suhl,TH,-23-----,AF,9501,,5037N 01042E, +,DE,SUS,S�ssen,Sussen,BW,-23-----,RL,9805,,4841N 00946E, +,DE,SVJ,Saal an der Saale,Saal an der Saale,BY,--3-----,RL,9805,,5019N 01021E, +,DE,SWA,Swisttal,Swisttal,NW,--3-----,RL,0002,,5041N 00656E, +,DE,SWB,Schwabach,Schwabach,BY,-234----,AF,9501,,4920N 01101E, +,DE,SWD,Schwarzenfeld,Schwarzenfeld,BY,-23-----,AF,9501,,4924N 01208E, +,DE,SWH,Schweich,Schweich,RP,-23-----,AF,9501,,4949N 00645E, +,DE,SWI,Schwieberdingen,Schwieberdingen,BW,--3-----,AF,9501,,4852N 00905E, +,DE,SWK,Schwaikheim,Schwaikheim,BW,-23-----,RL,0201,,4852N 00921E, +,DE,SWR,Schwerin,Schwerin,MV,-23-----,AF,9501,,5338N 01125E, +,DE,SZG,Sinzig,Sinzig,RP,-23-----,AF,9501,,5033N 00715E, +,DE,SZL,Schenkenzell,Schenkenzell,BW,-23-----,AF,9501,,4819N 00822E, +,DE,SZN,Salzkotten,Salzkotten,NW,-23-----,AF,9501,,5140N 00837E, +,DE,SZW,Salzwedel,Salzwedel,ST,--3-----,RQ,0101,ZSQ,5251N 01109E, +,DE,TAB,Tannenbergsthal,Tannenbergsthal,SN,-23-----,AF,9501,,5026N 01228E, +,DE,TAM,Tamm,Tamm,BW,-23-----,AF,9501,,4855N 00907E, +,DE,TAU,Tauberbischofsheim,Tauberbischofsheim,BW,-23-----,AF,9501,,4937N 00940E, +,DE,TBG,Trostberg,Trostberg,BY,-23-----,AF,9501,,4802N 01234E, +,DE,TBR,Trebur,Trebur,HE,--3-----,AF,9501,,4955N 00823E, +,DE,TCH,Toepchin,Toepchin,BE,1-------,RQ,0901,,5210N 01335E, +,DE,TDN,Toddin,Toddin,MV,--3-----,RL,0101,,5325N 01108E, +,DE,TDT,Neustadt,Neustadt,BE,--3-----,RQ,0901,,4921N 00808E, +,DE,TEG,Tegernsee,Tegernsee,BY,-23-----,AF,9501,,4743N 01145E, +,DE,TET,Tettnang,Tettnang,BW,--3-----,AF,9501,,4740N 00935E, +,DE,TEU,Tettau,Tettau,BY,--3-----,AF,9506,,5028N 01116E, +,DE,TFR,Thaleischweiler-Fr�schen,Thaleischweiler-Froschen,RP,-23-----,AF,9501,,4916N 00735E, +,DE,TGE,Telgte,Telgte,NW,-23-----,RQ,0901,,5159N 00747E, +,DE,THA,Thale,Thale,ST,-23-----,AF,9501,,5145N 01102E, +,DE,THG,Thalfang,Thalfang,RP,--3-----,AF,9501,,4945N 00660E, +,DE,THM,Thalheim/Erzgebirge,Thalheim/Erzgebirge,SN,-23-----,AF,9501,,5042N 01251E, +,DE,THO,Thyrow,Thyrow,BB,--3-----,RQ,1307,,5215N 01315E, +,DE,TIT,Tittmoning,Tittmoning,BY,--3-----,AF,9506,,4804N 01246E, +,DE,TNE,Titisee-Neustadt,Titisee-Neustadt,BW,-23-----,AF,9501,,4755N 00810E, +,DE,TOD,Todtnau,Todtnau,BW,--3-----,AF,9501,,4750N 00757E, +,DE,TOE,T�nning,Tonning,SH,1-------,AF,9501,,5419N 00857E, +,DE,TOU,Torgau,Torgau,SN,-23-----,AF,9501,,5133N 01300E, +,DE,TOY,Tholey,Tholey,SL,1-------,RQ,0901,,4929N 00702E, +,DE,TRA,Traunstein,Traunstein,BY,-23-----,AF,9501,,4752N 01239E, +,DE,TRE,Treuchtlingen,Treuchtlingen,BY,-23-----,AF,9501,,4857N 01055E, +,DE,TRF,Trochtelfingen,Trochtelfingen,BW,1-3-----,RQ,0901,,4818N 00915E, +,DE,TRG,Triberg,Triberg,BW,-23-----,AF,9501,,4808N 00814E, +,DE,TRI,Trier,Trier,RP,123-5---,AF,9501,,4946N 00639E, +,DE,TRN,Trossingen,Trossingen,BW,-23-----,AF,9501,,4805N 00838E, +,DE,TRO,Troisdorf,Troisdorf,NW,-23-----,AF,9501,,5049N 00710E, +,DE,TRR,Traunreut,Traunreut,BY,-23-----,AF,9501,,4758N 01236E, +,DE,TRT,Traben-Trarbach,Traben-Trarbach,RP,123-----,AF,9501,,4957N 00707E, +,DE,TRU,Trittau,Trittau,SH,--3-----,AF,9501,,5337N 01024E, +,DE,TRV,Travem�nde,Travemunde,SH,123-----,AF,9501,,5356N 01052E, +,DE,TSH,Albertshofen,Albertshofen,BY,123-----,RQ,0901,,4946N 01010E, +,DE,TSN,Taunusstein,Taunusstein,HE,--3-----,AF,9501,,5008N 00809E, +,DE,TTR,Wettringen,Wettringen,RP,1-------,RQ,0901,,4915N 01009E, +,DE,TUE,T�bingen,Tubingen,BW,-23-----,AF,9501,,4831N 00903E, +,DE,TUI,Th�ringen,Thuringen,TH,--3-----,RQ,0901,,5113N 01028E, +,DE,TUM,T�rkheim,Turkheim,BY,-23-----,AF,9501,,4804N 01038E, +,DE,TUS,Tussenhausen,Tussenhausen,BY,--3-----,AF,9506,,4806N 01034E, +,DE,TUT,Tuttlingen,Tuttlingen,BW,-23-----,AF,9501,,4759N 00849E, +,DE,TWI,Twist,Twist,NI,--3-----,AF,9506,,5239N 00706E, +,DE,TXL,Berlin-Tegel Apt,Berlin-Tegel Apt,BE,---4----,AF,9501,,5234N 01317E, +,DE,TYN,Thurnau,Thurnau,BY,1-------,RQ,0901,,5001N 01124E, +,DE,TZE,Wietzen,Wietzen,NI,--3-----,RL,0901,,5243N 00904E, +,DE,UBE,Unterwellenborn,Unterwellenborn,TH,--3-----,RL,9805,,5040N 01127E, +,DE,UDS,Hude,Hude,NI,--3-----,RQ,0901,,5307N 00828E, +,DE,UEB,�berlingen,Uberlingen,BW,123-----,AF,9501,,4746N 00910E, +,DE,UED,Uedem,Uedem,NW,--3-----,AF,9501,,5140N 00616E, +,DE,UEN,�berherrn,Uberherrn,SL,-23-----,AF,9501,,4915N 00642E, +,DE,UER,�rzig,Urzig,RP,-23-----,AF,9501,,4959N 00700E, +,DE,UET,Uetersen,Uetersen,SH,123-----,AF,9501,,5341N 00940E, +,DE,UFF,Uffenheim,Uffenheim,BY,-23-----,AF,9501,,4933N 01014E, +,DE,UGE,Burgbernheim,Burgbernheim,BY,--3-----,RQ,0607,,4927N 01019E, +,DE,UGZ,Burgholz,Burgholz,,--3-----,RQ,0901,,5113N 00707E, +,DE,UHI,Uhingen,Uhingen,BW,-23-----,AF,9501,,4842N 00935E, +,DE,UNK,Unterkochen,Unterkochen,BW,--3-----,RL,0201,,4849N 01008E, +,DE,UNN,Unna,Unna,NW,-23-----,AF,9501,,5132N 00741E, +,DE,UNR,Untermeitingen,Untermeitingen,BY,--3-----,RL,0201,,4810N 01048E, +,DE,URG,Unterensingen,Unterensingen,BW,--3-----,RL,9805,,4839N 00921E, +,DE,USG,Usingen,Usingen,HE,--3-----,AF,9501,,5020N 00832E, +,DE,USM,Untersiemau,Untersiemau,BY,--3-----,RL,0201,,5012N 01058E, +,DE,UTG,Utting,Utting,BY,-23-----,RL,0201,,4849N 01305E, +,DE,VAC,Vacha,Vacha,TH,-23-----,AF,9501,,5050N 01001E, +,DE,VAI,Vaihingen an der Enz,Vaihingen an der Enz,BW,-23-----,AF,9501,,4856N 00857E, +,DE,VAL,Valwig,Valwig,RP,--3-----,AF,9501,,5009N 00713E, +,DE,VED,Versmold,Versmold,NW,--3-----,AF,9501,,5203N 00809E, +,DE,VEL,Velbert,Velbert,NW,-23-----,AF,9501,,5120N 00703E, +,DE,VER,Verden,Verden,NI,-23-----,AF,9501,,5255N 00914E, +,DE,VIE,Viersen,Viersen,NW,-23-----,AF,9501,,5115N 00623E, +,DE,VIL,Vilseck,Vilseck,BY,-23-----,AF,9506,,4937N 01148E, +,DE,VIR,Vierraden,Vierraden,BB,--3-----,RL,1307,,5306N 01418E, +,DE,VKH,Volkertshausen,Volkertshausen,BW,--3-----,RL,0001,,4749N 00852E, +,DE,VLN,Velen,Velen,NW,--3-----,AF,9501,,5154N 00659E, +,DE,VLO,Vlotho,Vlotho,NW,-23-----,AF,9501,,5210N 00852E, +,DE,VOE,V�lklingen,Volklingen,SL,123-----,AF,9501,,4915N 00652E, +,DE,VON,V�hringen,Vohringen,BY,-23-----,AF,9501,,4817N 01005E, +,DE,VRD,Voerde,Voerde,NW,123-----,AF,9601,,5136N 00641E, +,DE,VRE,Vreden,Vreden,NW,--3-----,RL,0201,,5202N 00649E, +,DE,VRL,Verl,Verl,NW,--3-----,RL,0201,,5153N 00831E, +,DE,VSW,Volkenschwand,Volkenschwand,BY,--3-----,RL,0201,,4836N 01152E, +,DE,WAB,Waldbr�l,Waldbrol,NW,-23-----,AF,9501,,5053N 00737E, +,DE,WAD,Warendorf,Warendorf,NW,-23-----,AF,9501,,5157N 00759E, +,DE,WAE,W�chtersbach,Wachtersbach,HE,-23-----,AF,9501,,5016N 00917E, +,DE,WAH,Wahlstedt,Wahlstedt,SH,--3-----,AF,9501,,5357N 01013E, +,DE,WAM,Waldheim,Waldheim,SN,-23-----,AF,9501,,5105N 01301E, +,DE,WAN,Warstein,Warstein,NW,--3-----,AF,9501,,5127N 00821E, +,DE,WAT,Waldshut-Tiengen,Waldshut-Tiengen,BW,-23-----,AF,9501,,4738N 00814E, +,DE,WAX,Wangen,Wangen,,-23-----,RQ,0407,,4844N 00937E, +,DE,WBD,Waibstadt,Waibstadt,BW,--3-----,RL,0201,,4918N 00855E, +,DE,WBG,Westerburg/Westerwaldkreis,Westerburg/Westerwaldkreis,RP,-23-----,AF,9501,,5034N 00758E, +,DE,WBH,Waldenbuch,Waldenbuch,BW,--3-----,AF,9501,,4838N 00908E, +,DE,WDG,Weiding,Weiding,BY,--3-----,RL,0401,,4916N 01246E,More than one place with this name +,DE,WDH,Windischeschenbach,Windischeschenbach,BY,-23-----,AF,9501,,4948N 01209E, +,DE,WDL,Wolfach,Wolfach,BW,-23-----,AF,9501,,4818N 00813E, +,DE,WDS,Weil der Stadt,Weil der Stadt,BW,-23-----,AF,9501,,4845N 00852E, +,DE,WDT,Weiterstadt,Weiterstadt,HE,-23-----,AF,9501,,4955N 00836E, +,DE,WDV,Weddingstedt,Weddingstedt,SH,--3-----,RQ,0901,,5414N 00905E, +,DE,WED,Wedel,Wedel,SH,123-----,AF,9501,,5335N 00942E, +,DE,WEG,Weilburg,Weilburg,HE,-23-----,AF,9501,,5029N 00816E, +,DE,WEI,Weiden in der Oberpfalz,Weiden in der Oberpfalz,BY,-234----,AF,9501,,4941N 01210E, +,DE,WEK,Wermelskirchen,Wermelskirchen,NW,-23-----,AF,9506,,5108N 00713E, +,DE,WER,Werdohl,Werdohl,NW,-23-----,AF,9501,,5115N 00746E, +,DE,WET,Wetzlar,Wetzlar,HE,-23-----,AF,9501,,5033N 00830E, +,DE,WEW,Wewelsfleth,Wewelsfleth,SH,1-3-----,AF,9501,,5351N 00924E, +,DE,WEY,Weyhe,Weyhe,NI,--3-----,RQ,0101,,5259N 00851E, +,DE,WFA,Wutha-Farnroda,Wutha-Farnroda,TH,1-------,RQ,0901,,5057N 01024E, +,DE,WFE,Wolfegg,Wolfegg,BW,--3-----,RL,0002,,4749N 00948E, +,DE,WFK,Wildflecken,Wildflecken,BY,-23-----,AF,9506,,5023N 00955E, +,DE,WGE,Wernigerode,Wernigerode,ST,-23-----,AF,9501,,5150N 01047E, +,DE,WGG,Wegberg,Wegberg,NW,-23-----,AF,9501,,5109N 00617E, +,DE,WGL,Wagh�usel,Waghausel,BW,-23-----,AF,9501,,4915N 00831E, +,DE,WGS,Waging am See,Waging am See,BY,-23-----,AF,9506,,4756N 01244E, +,DE,WHD,Wiesentheid,Wiesentheid,BY,-23-----,AF,9501,,4948N 01021E, +,DE,WHF,Wilhermsdorf,Wilhermsdorf,BY,-23-----,AF,9506,,4929N 01043E, +,DE,WHH,Weiherhammer,Weiherhammer,BY,-23-----,AF,9506,,4938N 01204E, +,DE,WHM,Weinheim,Weinheim,BW,-23-----,AF,9501,,4933N 00840E, +,DE,WHN,Westhofen/Rheinhessen,Westhofen/Rheinhessen,RP,--3-----,AF,9501,,4942N 00815E, +,DE,WHX,Warthausen,Warthausen,BE,--3-----,RQ,0607,,4808N 00948E, +,DE,WIB,Wiesbaden,Wiesbaden,HE,1234----,AF,9501,,5005N 00814E, +,DE,WID,Wildenrath,Wildenrath,NW,--34----,AF,9501,,5107N 00612E, +,DE,WIH,Wisch,Wisch,SH,1-3-----,AF,9501,,5425N 00909E, +,DE,WII,Winsen,Winsen,NI,--3-----,RL,0901,,5322N 01012E, +,DE,WIK,Wiek,Wiek,MV,1-3-----,AF,9506,,5437N 01317E, +,DE,WIL,Wilster,Wilster,SH,123-----,AF,9501,,5355N 00922E, +,DE,WIN,Winsen/Luhe,Winsen/Luhe,NI,-23-----,AF,9501,,5322N 01012E, +,DE,WIR,Wirges,Wirges,RP,-23-----,AF,9501,,5028N 00748E, +,DE,WIS,Wismar,Wismar,MV,123-----,AF,9501,,5353N 01128E, +,DE,WIW,Weidenberg,Weidenberg,BY,--3-----,RL,9805,,4956N 01143E, +,DE,WKD,Wackersdorf,Wackersdorf,BY,--3-----,RL,0201,,4919N 01212E, +,DE,WKG,Waldkraiburg,Waldkraiburg,BY,-23-----,AF,9501,,4812N 01224E, +,DE,WKN,Weiskirchen,Weiskirchen,SL,--3-----,AF,9506,,4933N 00649E, +,DE,WLA,Wittlaer,Wittlaer,NW,--3-----,RL,0201,,5119N 00645E, +,DE,WLF,W�lfrath,Wulfrath,NW,--3-----,RL,9501,,5117N 00702E, +,DE,WLG,Wesseling,Wesseling,NW,-23-----,AF,9501,,5049N 00659E, +,DE,WLL,Willingen,Willingen,RP,--3-----,AF,9501,,5040N 00805E, +,DE,WLO,Wadersloh,Wadersloh,NW,--3-----,RL,9811,,5144N 00815E, +,DE,WLZ,Wolnzach,Wolnzach,BY,--3-----,RL,9805,,4836N 01137E, +,DE,WMA,Weimar/Giessen,Weimar/Giessen,HE,-23-----,AF,9501,,5045N 00843E, +,DE,WMF,Wassmannsdorf,Wassmannsdorf,BB,--3-----,RL,1307,,5222N 01328E, +,DE,WMI,Wald-Michelbach,Wald-Michelbach,HE,-23-----,AF,9501,,4933N 00851E, +,DE,WMR,Weimar,Weimar,TH,-23-----,AF,9501,,5059N 01120E, +,DE,WMT,Wilhelmshorst,Wilhelmshorst,BB,--3-----,RQ,1307,,5220N 01303E, +,DE,WMZ,Wallertheim,Wallertheim,RP,--3-----,RQ,0901,,4950N 00803E, +,DE,WND,Wadern,Wadern,SL,--3-----,AF,9501,,4932N 00653E, +,DE,WNM,Wackernheim,Wackernheim,RP,--3-----,AF,9506,,4959N 00807E, +,DE,WNR,Wilnsdorf,Wilnsdorf,NW,--3-----,RL,9805,,5049N 00806E, +,DE,WOE,W�rth am Rhein,Worth am Rhein,RP,123-----,AF,9501,,4903N 00816E, +,DE,WOF,Wolfgang,Wolfgang,HE,0-------,RL,9501,,5007N 00858E, +,DE,WOH,Wolfratshausen,Wolfratshausen,BY,-23-----,AF,9501,,4755N 01126E, +,DE,WOL,Wolgast,Wolgast,MV,123-----,AF,9506,,5403N 01347E, +,DE,WON,Wolfstein/Pfalz,Wolfstein/Pfalz,RP,-23-----,AF,9501,,4935N 00736E, +,DE,WOR,Worms,Worms,RP,123-----,AF,9501,,4938N 00822E, +,DE,WOZ,W�rnitz,Wornitz,BY,-23-----,AF,9506,,4915N 01015E, +,DE,WPH,Wipperf�rth,Wipperfurth,NW,-234----,AF,9501,,5107N 00723E, +,DE,WRA,Weira,Weira,TH,--3-----,RQ,0901,,5042N 01143E, +,DE,WRC,Werneuchen,Werneuchen,BE,--3-----,RQ,0901,,5239N 01345E, +,DE,WRD,Weilrod,Weilrod,HE,--3-----,AF,9501,,5020N 00825E, +,DE,WRE,Werne,Werne,NW,-23-----,AF,9501,,5140N 00738E, +,DE,WRH,Wehrheim,Wehrheim,HE,-23-----,AF,9506,,5018N 00835E, +,DE,WRM,Wiernsheim,Wiernsheim,BW,--3-----,AF,9501,,4853N 00854E, +,DE,WRN,Walld�rn,Walldurn,BW,-234----,AF,9501,,4935N 00922E, +,DE,WRR,W�rrstadt,Worrstadt,RP,--3-----,RL,0001,,4950N 00807E, +,DE,WRS,W�rselen,Wurselen,NW,--3-----,AF,9501,,5049N 00608E, +,DE,WRY,Wremen,Wremen,NI,1-------,RQ,0901,,5339N 00831E, +,DE,WRZ,Waren,Waren,MV,--3-----,RL,9811,,5331N 01241E, +,DE,WSB,Weinsberg,Weinsberg,BW,--3-----,RL,9805,,4909N 00917E, +,DE,WSD,Wallscheid,Wallscheid,RP,-23-----,AF,9506,,5006N 00653E, +,DE,WSF,Waldaschaff,Waldaschaff,BY,--3-----,RL,0101,,4959N 00918E, +,DE,WSG,Wirsberg,Wirsberg,BY,-23-----,AF,9501,,5006N 01136E, +,DE,WSH,Weil im Sch�nbuch,Weil im Schonbuch,BW,--3-----,AF,9501,,4837N 00904E, +,DE,WSN,Wissen,Wissen,RP,--3-----,AF,9501,,5047N 00744E, +,DE,WSS,Waldsassen,Waldsassen,BY,-23-----,RL,0201,,5000N 01218E, +,DE,WST,Willst�tt,Willstatt,BW,--3-----,AF,9501,,4832N 00754E, +,DE,WSY,Wiesloch,Wiesloch,BW,--3-----,AF,9501,,4918N 00842E, +,DE,WTD,Wassertr�dingen,Wassertrudingen,BY,-23-----,AF,9501,,4902N 01036E, +,DE,WTG,Wittenberg,Wittenberg,ST,123-----,AF,9501,,5152N 01239E, +,DE,WTK,Witterschlick,Witterschlick,NW,--3-----,RQ,0901,,5042N 00701E, +,DE,WTL,Waldachtal,Waldachtal,BW,--3-----,RL,0201,,4829N 00835E, +,DE,WTM,Wertheim,Wertheim,BW,123-----,AF,9501,,4946N 00931E, +,DE,WTR,Wetter,Wetter,NW,-23-----,AF,9501,,5123N 00724E, +,DE,WTT,Witten,Witten,NW,-23-----,AF,9501,,5126N 00720E, +,DE,WUD,Wulsdorf,Wulsdorf,HB,0-------,RL,9501,,5330N 00836E, +,DE,WUE,W�rzburg,Wurzburg,BY,123-----,AF,9501,,4948N 00956E, +,DE,WUG,W�nnenberg,Wunnenberg,NW,--3-----,AF,9501,,5131N 00842E, +,DE,WUH,Weyerbusch,Weyerbusch,RP,-----6--,RQ,0901,,5043N 00733E, +,DE,WUL,Wunsiedel,Wunsiedel,BY,-23-----,AF,9506,,5002N 01200E, +,DE,WUP,Wuppertal,Wuppertal,NW,-234----,AF,9501,,5116N 00711E, +,DE,WXI,Wiefels,Wiefels,NI,--3-----,RL,0901,,5336N 00752E, +,DE,WYK,Wyk auf F�hr,Wyk auf Fohr,SH,1-3-----,AF,9501,,5441N 00833E, +,DE,WYN,WEMDING,WEMDING,BY,--3-----,RL,0901,,4852N 01043E, +,DE,WZB,Wurzbach,Wurzbach,TH,-23-----,RL,0201,,5028N 01132E, +,DE,WZE,Weeze,Weeze,NW,--3-----,RQ,0101,,5138N 00612E, +,DE,XBY,Bredstedt,Bredstedt,,--3-----,RL,1107,,5437N 00858E, +,DE,XFW,Finkenwerder,Finkenwerder,HH,1-34----,AF,9501,,5332N 00951E, +,DE,XTE,Xanten,Xanten,NW,--3-----,RL,9805,,5140N 00627E, +,DE,ZAI,Zaisertshofen,Zaisertshofen,BY,1-------,RQ,0901,,4807N 01032E, +,DE,ZEH,Zell am Harmersbach,Zell am Harmersbach,BW,-23-----,AF,9506,,4821N 00804E, +,DE,ZEI,Zeil am Main,Zeil am Main,BY,-23-----,AF,9506,,5001N 01036E, +,DE,ZEN,Zellingen,Zellingen,BY,-23-----,AF,9501,,4954N 00949E, +,DE,ZEU,Zeulenroda-Triebes,Zeulenroda-Triebes,TH,--3-----,RL,1801,,5039N 01200E, +,DE,ZEZ,Zeitz,Zeitz,ST,--3-----,RN,0105,,5103N 01208E, +,DE,ZIT,Zittau,Zittau,SN,-23-----,AF,9501,,5054N 01448E, +,DE,ZLT,Zeltingen-Rachtig,Zeltingen-Rachtig,RP,1-3-----,AF,9506,,4957N 00701E, +,DE,ZNN,Zernien,Zernien,NI,--3-----,RQ,0901,,5304N 01053E, +,DE,ZNW,Zinnwald-Georgenfeld,Zinnwald-Georgenfeld,SN,--3-----,AF,9501,,5044N 01346E, +,DE,ZOR,Zorge,Zorge,NI,1-3-----,RQ,0901,,5138N 01038E, +,DE,ZOS,Zossen,Zossen,BB,--3-----,RQ,1307,,5213N 01327E, +,DE,ZRZ,Untermerzbach,Untermerzbach,BY,--3-----,RL,0901,,5008N 01051E, +,DE,ZUE,Z�lpich,Zulpich,NW,-23-----,AF,9501,,5042N 00639E, +,DE,ZWI,Zwickau,Zwickau,SN,-23-----,AF,9501,,5043N 01230E, +,DE,ZWL,Zwiesel,Zwiesel,BY,-23-----,AF,9501,,4901N 01314E, +,DE,ZXN,Kindelbruck,Kindelbruck,TH,-----6--,RQ,0901,,5116N 01105E, +,DE,ZZA,Neustetten,Neustetten,TH,-----6--,RL,1107,,4829N 00852E, +,DJ,JIB,Djibouti,Djibouti,,1--45---,AI,9601,,1136N 04309E, +,DK,AAL,Aalborg,Aalborg,,12345---,AF,9606,,5703N 00955E, +,DK,AAP,Aarup,Aarup,,-23-----,AF,9606,,5523N 01003E, +,DK,ABT,Albertslund,Albertslund,,0-------,RQ,9307,,5541N 01221E, +,DK,ADN,Arden,Arden,,--3-----,RL,0101,,5646N 00951E, +,DK,AEY,Aalestrup,Aalestrup,,-23-----,AF,9606,,5642N 00930E, +,DK,AGH,Agger Havn,Agger Havn,,1-3-----,AF,9606,,5647N 00815E, +,DK,AGO,Agers�,Agerso,,1-------,AI,9812,,5513N 01111E, +,DK,ALN,Alling�bro,Allingabro,,--3-----,RQ,9501,,5628N 01020E, +,DK,ANB,Ans by,Ans by,,--3-----,RQ,9705,,5618N 00936E, +,DK,ANH,Anholt,Anholt,,1-------,AI,9704,,5643N 01134E, +,DK,ANS,Ansager,Ansager,,--3-----,RQ,9501,,5542N 00845E, +,DK,ARK,�r�sk�bing,Aroskobing,,1-------,RQ,9402,,5453N 01025E, +,DK,ASH,Aggersund,Aggersund,,1-------,RQ,9402,,5700N 00917E, +,DK,ASK,Ask�,Asko,,1-------,AI,9812,,5454N 01129E, +,DK,ASN,Assens,Assens,,12------,AF,9606,,5641N 01004E, +,DK,ASS,Asn�s,Asnas,,--3-----,RQ,0101,,5549N 01130E, +,DK,AUB,Augustenborg,Augustenborg,,1-------,AI,9704,,5457N 00952E, +,DK,AZS,Aars,Aars,,--3-----,AF,9606,,5648N 00931E, +,DK,BAG,Bagenkop,Bagenkop,,1-------,AI,9704,,5445N 01041E, +,DK,BDG,Bording,Bording,,--3-----,RQ,9501,,5609N 00917E, +,DK,BDX,Bandholm,Bandholm,,1-------,AI,9704,,5450N 01129E, +,DK,BEL,Bellinge,Bellinge,,0-------,RQ,9307,,5520N 01019E, +,DK,BGO,Baag�,Baago,,1-------,AI,9812,,5519N 00949E, +,DK,BGS,Bagsv�rd,Bagsvard,,0-------,RQ,9307,,5546N 01227E, +,DK,BID,Bindslev,Bindslev,,--3-----,RQ,9705,,5732N 01012E, +,DK,BJB,Bjerringbro,Bjerringbro,,--3-----,RQ,9501,,5623N 00939E, +,DK,BLB,Ballebro,Ballebro,,1-------,AI,9812,,5460N 00940E, +,DK,BLG,Balling,Balling,,--3-----,RQ,9705,,5637N 00853E, +,DK,BLL,Billund,Billund,,---4----,AI,9601,,5545N 00860E, +,DK,BLN,Blans,Blans,,0-------,RQ,9307,,5452N 01125E, +,DK,BLP,Ballerup,Ballerup,,--3-----,RQ,9705,,5544N 01222E, +,DK,BMG,Bramming,Bramming,,-23-----,RQ,9705,,5528N 00842E, +,DK,BOR,Borup,Borup,,--3-----,RQ,9501,,5530N 01159E, +,DK,BRA,Brande,Brande,,--3-----,RQ,9501,,5603N 00916E, +,DK,BRB,Brabrand,Brabrand,,1-------,RQ,9307,,5609N 01006E, +,DK,BRE,Bredebro,Bredebro,,--3-----,RQ,9501,,5503N 00850E, +,DK,BRP,Br�rup,Brorup,,--3-----,RQ,9501,,5529N 00901E, +,DK,BRT,Brovst,Brovst,,--3-----,RL,9806,,5706N 00931E, +,DK,BRY,Br�ndby,Brondby,,0-------,RQ,9307,,5539N 01225E, +,DK,BTP,Bostrup,Bostrup,,0-------,RQ,9307,,5639N 00901E, +,DK,BYL,Bylderup,Bylderup,,--3-----,RQ,9705,,5457N 00906E, +,DK,DKD,Dokkedal,Dokkedal,,--3-----,RQ,9501,,5654N 01015E, +,DK,DLB,Dalby,Dalby,,--3-----,RQ,9705,,5531N 01039E, +,DK,DRA,Drag�r,Dragor,,1-------,RL,8401,,5535N 01238E, +,DK,DRP,Durup,Durup,,--3-----,RQ,9705,,5643N 00937E, +,DK,EBJ,Esbjerg,Esbjerg,,1234----,AF,9606,,5528N 00827E, +,DK,EBT,Ebeltoft,Ebeltoft,,1-------,RQ,9506,,5612N 01041E, +,DK,EDL,Endelave,Endelave,,1-------,AI,9704,,5546N 01019E, +,DK,EGN,Egense,Egense,,1-------,AI,0002,,5455N 01146E, +,DK,EJS,Ejstrup,Ejstrup,,--3-----,RQ,9705,,5708N 00927E, +,DK,EJY,Ejby,Ejby,,--3-----,RQ,9501,,5526N 00956E, +,DK,END,Egernsund,Egernsund,,1-3-----,AI,9704,,5454N 00936E, +,DK,ENV,Engesvang,Engesvang,,--3-----,RQ,9501,,5610N 00921E, +,DK,FAA,Faaborg,Faaborg,,1-------,RL,8401,,5512N 01026E, +,DK,FBG,Frederiksberg,Frederiksberg,,--3-----,RQ,9501,,5541N 01232E, +,DK,FDH,Frederikshavn,Frederikshavn,,12------,AF,9606,,5726N 01032E, +,DK,FDV,Frederiksv�rk,Frederiksvark,,12------,AF,9606,,5558N 01201E, +,DK,FEJ,Fej�,Fejo,,1-------,AI,9704,,5457N 01124E, +,DK,FJV,Fjerritslev,Fjerritslev,,--3-----,RQ,9705,,5705N 00916E, +,DK,FMO,Fem�,Femo,,1-------,AI,9812,,5458N 01132E, +,DK,FRC,Fredericia,Fredericia,,12--5---,AF,9606,,5534N 00945E, +,DK,FRE,Fredensborg,Fredensborg,,-23-----,AF,9606,,5558N 01224E, +,DK,FRM,Farum,Farum,,--3-----,RQ,9705,,5549N 01222E, +,DK,FSO,Fars�,Farso,,--3-----,RQ,9705,,5646N 00920E, +,DK,FUH,Fur,Fur,,1-------,AI,9704,,5649N 00900E, +,DK,FVG,Faarvang,Faarvang,,--3-----,RQ,9705,,5616N 00944E, +,DK,FVJ,Faarevejle,Faarevejle,,--3-----,RQ,9705,,5548N 01126E, +,DK,GBY,Gamby,Gamby,,0-------,RQ,9307,,5529N 01006E, +,DK,GDS,Gedsted,Gedsted,,--3-----,RQ,9705,,5641N 00920E, +,DK,GED,Gedser,Gedser,,12------,RL,8401,,5435N 01156E, +,DK,GFH,Gulfhavn,Gulfhavn,,1-------,AI,9704,,5512N 01115E, +,DK,GIV,Give,Give,,--3-----,RQ,9501,,5551N 00914E, +,DK,GJN,Gjern,Gjern,,--3-----,RQ,9705,,5614N 00944E, +,DK,GJR,Gjerlev,Gjerlev,,--3-----,RQ,9705,,5635N 01008E, +,DK,GLE,Gilleleje,Gilleleje,,--3-----,RL,9811,,5607N 01219E, +,DK,GLM,Glamsbjerg,Glamsbjerg,,--3-----,RQ,9501,,5517N 01007E, +,DK,GLS,Glostrup,Glostrup,,--3-----,RQ,9501,,5541N 01225E, +,DK,GLT,Galten,Galten,,--3-----,RQ,9501,,5609N 00955E, +,DK,GLY,Glyng�re,Glyngore,,1-------,RL,8401,,5646N 00852E, +,DK,GRA,Gr�sten,Grasten,,1-------,AI,9704,,5455N 00935E, +,DK,GRD,Gredstedbro,Gredstedbro,,--3-----,RQ,9501,,5524N 00845E, +,DK,GRE,Grenaa,Grenaa,,123-----,AF,9606,,5625N 01053E, +,DK,GRI,Grimstrup,Grimstrup,,--3-----,RQ,9501,,5532N 00839E, +,DK,GRN,Grindsted,Grindsted,,--3-----,RQ,9501,,5545N 00856E, +,DK,GUD,Gudbjerg,Gudbjerg,,--3-----,RQ,9501,,5509N 01040E, +,DK,HAD,Haderslev,Haderslev,,1-------,AI,9704,,5515N 00930E, +,DK,HAN,Hanstholm,Hanstholm,,1-3-----,AI,9704,,5707N 00837E, +,DK,HAS,Hals,Hals,,1-------,AI,0201,,5660N 01019E, +,DK,HBK,Holb�k,Holbak,,1-------,AI,9704,,5543N 01143E, +,DK,HBO,Hobro,Hobro,,1-------,AI,9704,,5638N 00948E, +,DK,HBY,Haarby,Haarby,,0-------,RQ,9307,,5513N 01008E, +,DK,HDH,Hardesh�j,Hardeshoj,,1-------,AI,9812,,5501N 00942E, +,DK,HDS,Hadsten,Hadsten,,--3-----,RQ,9501,,5620N 01003E, +,DK,HED,Hedensted,Hedensted,,--3-----,RQ,9501,,5548N 00947E, +,DK,HEL,Helsinge,Helsinge,,--3-----,RQ,0101,,5601N 01212E, +,DK,HER,Herning,Herning,,1-------,RL,8401,,5608N 00858E, +,DK,HFE,Herf�lge,Herfolge,,--3-----,RL,0004,,5525N 01208E, +,DK,HHM,H�rsholm,Horsholm,,--3-----,RL,9811,,5553N 01229E, +,DK,HIR,Hirtshals,Hirtshals,,1-------,AI,9704,,5735N 00958E, +,DK,HJB,H�jbjerg,Hojbjerg,,0-------,RQ,0201,,5607N 01012E, +,DK,HJE,H�jer,Hojer,,--3-----,RQ,9705,,5458N 00842E, +,DK,HKV,Halsskov,Halsskov,,--3-----,RL,9811,,5521N 01108E, +,DK,HLE,Hellested,Hellested,,--3-----,RQ,9501,,5520N 01216E, +,DK,HLS,Helsing�r,Helsingor,,12------,AF,9606,,5602N 01237E, +,DK,HME,Hammel,Hammel,,--3-----,RQ,9501,,5615N 00952E, +,DK,HNB,Havneby,Havneby,,1-------,AI,9704,,5505N 00834E, +,DK,HNN,Hinnerup,Hinnerup,,-2------,RQ,9705,,5616N 01004E, +,DK,HOE,Holte,Holte,,--3-----,QQ,0212,,5549N 01228E, +,DK,HOL,Holeby,Holeby,,--3-----,RQ,9501,,5443N 01128E, +,DK,HON,Hornb�k,Hornbak,,--3-----,RQ,0901,,5605N 01228E, +,DK,HOR,Horsens,Horsens,,1-------,AI,9704,,5552N 00951E, +,DK,HRN,H�rning,Horning,,--3-----,RQ,9501,,5605N 01002E, +,DK,HRP,Hellerup,Hellerup,,--3-----,RL,0002,,5544N 01234E, +,DK,HRS,Herskind,Herskind,,--3-----,RQ,0901,,5611N 00958E, +,DK,HRU,H�rup,Horup,,--3-----,RL,0002,,5551N 01208E, +,DK,HRV,Herlev,Herlev,,--3-----,RQ,9705,,5544N 01226E, +,DK,HSB,Holstebro,Holstebro,,1-------,RL,8401,,5622N 00837E, +,DK,HSE,Hunseby,Hunseby,,--3-----,RQ,0901,,5448N 01131E, +,DK,HSL,Hasle,Hasle,,1-------,AI,9704,,5511N 01442E, +,DK,HSS,Hasselager,Hasselager,,0-------,RQ,9307,,5607N 01006E, +,DK,HST,Holsted,Holsted,,--3-----,RQ,9705,,5530N 00855E, +,DK,HSV,Haslev,Haslev,,-23-----,AF,9606,,5520N 01157E, +,DK,HTT,Hatting,Hatting,,-2------,RQ,9705,,5551N 00946E, +,DK,HUN,Hundested,Hundested,,123-----,AF,9606,,5558N 01151E, +,DK,HUR,Hurup,Hurup,,--3-----,RQ,9501,,5645N 00825E, +,DK,HVA,Hvalpsund,Hvalpsund,,1-------,AI,9704,,5642N 00912E, +,DK,HVG,Havnegade,Havnegade,,0-------,RQ,9307,,5541N 01235E, +,DK,HVN,Havns�,Havnso,,1-------,AI,9704,,5545N 01119E, +,DK,HVV,Hvidovre,Hvidovre,,--3-----,RQ,9705,,5538N 01228E, +,DK,IKA,Ikast,Ikast,,-23-----,AF,9606,,5603N 00916E, +,DK,ISJ,Ish�j,Ishoj,,0-------,RQ,9307,,5537N 01220E, +,DK,JRD,Jordl�se,Jordlose,,--3-----,RQ,9705,,5512N 01009E, +,DK,JRP,Jyderup,Jyderup,,-23-----,RL,9806,,5540N 01124E, +,DK,KAL,Kalundborg,Kalundborg,,12------,AF,9606,,5541N 01106E, +,DK,KEP,Kirke-Eskilstrup,Kirke-Eskilstrup,,--3-----,RL,9806,,5534N 01146E, +,DK,KIB,Kib�k,Kibak,,--3-----,RQ,9501,,5602N 00852E, +,DK,KJE,Kjellerup,Kjellerup,,--3-----,RQ,9501,,5617N 00926E, +,DK,KNB,Knebel,Knebel,,--3-----,RQ,9501,,5613N 01029E, +,DK,KOG,K�ge,Koge,,12------,AF,9606,,5527N 01211E, +,DK,KOL,Kolding,Kolding,,123-----,AF,9606,,5529N 00929E, +,DK,KPV,Kliplev,Kliplev,,--3-----,RQ,9501,,5456N 00924E, +,DK,KRA,Kragen�s,Kragenas,,1-------,AI,9704,,5455N 01121E, +,DK,KRB,Kirkeby,Kirkeby,,--3-----,RQ,9501,,5507N 01032E, +,DK,KRP,Karup,Karup,,---4----,AI,9601,,5619N 00910E, +,DK,KRR,Kors�r,Korsor,,12------,AF,9606,,5520N 01109E, +,DK,KRS,Krus�,Krusa,,-23-----,AF,9606,,5451N 00924E, +,DK,KTD,Kerteminde,Kerteminde,,1-------,AI,9704,,5528N 01038E, +,DK,KTP,Kastrup,Kastrup,,1-------,AI,9704,,5538N 01238E, +,DK,KVB,Klovborg,Klovborg,,--3-----,RQ,9501,,5556N 00929E, +,DK,KVG,Kvistgaard,Kvistgaard,,--3-----,RQ,9705,,5559N 01230E, +,DK,KVR,Kv�rndrup,Kvarndrup,,1-------,RQ,9307,,5511N 01032E, +,DK,LAA,L�sby,Lasby,,--3-----,RQ,9501,,5609N 00949E, +,DK,LGR,L�gst�r,Logstor,,1-------,AI,9704,,5658N 00916E, +,DK,LGS,Langeskov,Langeskov,,-23-----,AF,9606,,5521N 01035E, +,DK,LKO,L�gumkloster,Logumkloster,,--3-----,RQ,9501,,5504N 00857E, +,DK,LLS,Lille Skensved,Lille Skensved,,-23-----,AF,9606,,5531N 01208E, +,DK,LND,Lunderskov,Lunderskov,,--3-----,RQ,9705,,5529N 00918E, +,DK,LNE,Lynge,Lynge,,--3-----,RL,9806,,5550N 01216E, +,DK,LOG,L�gstrup,Logstrup,,--3-----,RQ,9501,,5631N 00920E, +,DK,LOH,Lohals,Lohals,,1-------,AI,9704,,5508N 01054E, +,DK,LVG,Lemvig,Lemvig,,1-------,AI,9704,,5632N 00818E, +,DK,LYN,Lyngby,Lyngby,,--3-----,RQ,9705,,5613N 00948E, +,DK,MAR,Marslev,Marslev,,--3-----,RQ,9501,,5523N 01031E, +,DK,MAS,Masned�,Masnedo,,1-------,AI,9704,,5459N 01153E, +,DK,MID,Middelfart,Middelfart,,12------,AF,9606,,5527N 00956E, +,DK,MOM,Mommark,Mommark,,1-------,AI,9704,,5455N 01002E, +,DK,MRS,Marstal,Marstal,,1-------,AI,9704,,5451N 01031E, +,DK,MRU,Mundelstrup,Mundelstrup,,--3-----,RQ,9705,,5612N 01004E, +,DK,MRV,Maribo,Maribo,,--34----,AI,9811,,5447N 01130E, +,DK,MUP,Moldrup,Moldrup,,--3-----,RQ,9705,,5637N 00930E, +,DK,NAK,Nakskov,Nakskov,,12------,AF,9606,,5450N 01109E, +,DK,NAV,Norre Alslev,Norre Alslev,,--3-----,RQ,9705,,5454N 01153E, +,DK,NBG,Nyborg,Nyborg,,12------,AF,9606,,5519N 01048E, +,DK,NEX,Neks�,Nekso,,1-------,AI,9704,,5504N 01508E, +,DK,NIB,Nibe,Nibe,,--3-----,RQ,9501,,5659N 00939E, +,DK,NKV,Nordenskov,Nordenskov,,--3-----,RQ,9501,,5539N 00841E, +,DK,NRE,N�rre Aaby,Norre Aaby,,12------,AF,9606,,5527N 00953E, +,DK,NRS,N�rresundby,Norresundby,,12------,AF,9606,,5704N 00955E, +,DK,NTD,Nysted,Nysted,,1-------,AI,9704,,5440N 01144E, +,DK,ODE,Odense,Odense,,1234----,AF,9606,,5524N 01023E, +,DK,OFQ,Orb�k,Orbak,,--3-----,RQ,0212,,5516N 01040E,Arhus? Fyn? +,DK,OKB,�stbirk,Ostbirk,,--3-----,RQ,9501,,5558N 00945E, +,DK,OMO,Om�,Omo,,1-------,AI,9812,,5509N 01109E, +,DK,OOT,Charlottenlund,Charlottenlund,,1-------,RQ,0901,,5545N 01234E, +,DK,ORE,"Orehoved, Falster","Orehoved, Falster",,1-------,AI,9704,,5457N 01151E, +,DK,ORO,Or�,Oro,,1-------,AI,9812,,5547N 01149E, +,DK,OSD,�ster Snede,Oster Snede,,--3-----,RL,9806,,5548N 00939E,Vejle +,DK,OTR,Ovtrup,Ovtrup,,0-------,RQ,9307,,5647N 00840E, +,DK,OTT,Otterup,Otterup,,0-------,RQ,9705,,5531N 01024E, +,DK,PAN,Pandrup,Pandrup,,--3-----,RL,0006,,5713N 00941E, +,DK,PJE,Pjedsted,Pjedsted,83,--3-----,RQ,1401,,5536N 00938E, +,DK,RAN,Randers,Randers,,123-----,AF,9606,,5628N 01002E, +,DK,RIB,Ribe,Ribe,,--3-----,RQ,9705,,5520N 00846E, +,DK,RIN,Ringe,Ringe,,--3-----,RQ,9501,,5514N 01029E, +,DK,RKB,Rudk�bing,Rudkobing,,1-------,AI,9704,,5456N 01043E, +,DK,RKE,Roskilde,Roskilde,,1234----,AF,9606,,5539N 01205E, +,DK,RNG,Ringsted,Ringsted,,-23-----,AF,9606,,5527N 01148E, +,DK,RNM,Ranum,Ranum,,--3-----,RQ,9501,,5654N 00914E, +,DK,RNN,R�nne,Ronne,,1--4----,AI,9704,,5506N 01442E, +,DK,RRV,R�rvig,Rorvig,,1-------,AI,9704,,5557N 01146E, +,DK,RSL,Roslev,Roslev,,--3-----,RQ,9705,,5642N 00859E, +,DK,RSS,Risskov,Risskov,,--3-----,RL,9805,,5612N 01015E, +,DK,RYM,Ryomg�rd,Ryomgard,,--3-----,RQ,9501,,5623N 01030E, +,DK,SAG,Sandager,Sandager,,0-------,RL,9307,,5513N 01034E, +,DK,SAX,Saksk�bing,Sakskobing,,1-------,AI,9704,,5448N 01138E, +,DK,SBG,S�borg,Soborg,,-23-----,RQ,9705,,5544N 01231E, +,DK,SDO,Skar�/Drej�,Skaro/Drejo,,1-------,AI,9812,,5501N 01028E, +,DK,SEJ,Sejerslev,Sejerslev,,--3-----,RQ,9501,,5656N 00852E, +,DK,SEO,Sejer�,Sejero,,1-------,AI,9704,,5553N 01109E, +,DK,SJB,Skejby,Skejby,,0-------,RQ,9307,,5612N 01011E, +,DK,SJO,Sj�llands Odde,Sjallands Odde,,0-------,RQ,9402,,5557N 01125E, +,DK,SKA,Skagen,Skagen,,12------,AF,9606,,5744N 01035E, +,DK,SKB,Sk�rb�k,Skarbak,,0-------,AI,9704,,5509N 00846E, +,DK,SKI,Stenkilde,Stenkilde,,0-------,RQ,9307,,5456N 01204E, +,DK,SKJ,Skjern,Skjern,,-23-----,AF,9606,,5601N 00833E, +,DK,SKL,Skals,Skals,,--3-----,RQ,9501,,5633N 00924E, +,DK,SKM,Skamby,Skamby,,--3-----,RQ,9501,,5531N 01016E, +,DK,SKO,Skodborg,Skodborg,,--3-----,RQ,9501,,5525N 00909E, +,DK,SKP,Sk�rping,Skorping,,--3-----,RQ,9501,,5650N 00953E, +,DK,SKT,Skodstrup,Skodstrup,,--3-----,RQ,9501,,5616N 01018E, +,DK,SKV,Skive,Skive,,12------,AF,9606,,5639N 00856E, +,DK,SKY,Skibby,Skibby,,--3-----,RL,9901,,5545N 01158E, +,DK,SLA,Slangerup,Slangerup,,--3-----,RQ,9501,,5551N 01210E, +,DK,SLB,Silkeborg,Silkeborg,,123-----,AF,9606,,5610N 00933E, +,DK,SLG,Slagelse,Slagelse,,-23-----,AF,9606,,5524N 01121E, +,DK,SMO,Sm�rum,Smorum,,0-------,RQ,9307,,5544N 01218E, +,DK,SND,S�nder,Sonder,,--3-----,RQ,9705,,5446N 01155E, +,DK,SNE,Snekkersten,Snekkersten,,1-------,AI,9704,,5601N 01235E, +,DK,SNN,Svinninge,Svinninge,,--3-----,RQ,9501,,5543N 01128E, +,DK,SNO,Stryn�,Stryno,,1-------,AI,9812,,5454N 01037E, +,DK,SNS,Stenstrup,Stenstrup,,--3-----,RQ,9501,,5508N 01030E, +,DK,SOV,Sorvad,Sorvad,,--3-----,RQ,9705,,5628N 01025E, +,DK,SPP,Sporup,Sporup,,--3-----,RQ,0002,,5613N 00949E, +,DK,SRO,Sor�,Soro,,--3-----,RQ,9705,,5526N 01134E, +,DK,SRP,Stenderup,Stenderup,,--3-----,RQ,9307,,5513N 00903E, +,DK,SSK,Sk�lsk�r,Skalskor,,1-------,RQ,9704,,5515N 01118E, +,DK,STE,Stege,Stege,,1-------,AI,9704,,5459N 01217E, +,DK,STR,Struer,Struer,,12------,AF,9606,,5638N 00832E, +,DK,SUE,Sunds�re,Sundsore,,1-------,AI,9812,,5643N 00910E, +,DK,SUS,Sunds,Sunds,,--3-----,RL,9806,,5612N 00901E,Ringk�bing +,DK,SVE,Svendborg,Svendborg,,12------,AF,9606,,5504N 01037E, +,DK,TBA,Taarb�k,Taarbak,,--3-----,RL,9811,,5547N 01230E, +,DK,TED,Thisted,Thisted,,12-4----,AF,9606,,5655N 00829E, +,DK,TFT,Toftlund,Toftlund,,--3-----,RQ,9705,,5511N 00904E, +,DK,TGV,Tinglev,Tinglev,,--3-----,RQ,9501,,5456N 00915E, +,DK,THM,Them,Them,,--3-----,RL,9806,,5605N 00933E,Arhus +,DK,THO,Thur�,Thuro,,--3-----,RQ,9811,,5503N 01041E, +,DK,TLV,Taulov,Taulov,,--3-----,RQ,0101,,5532N 00937E, +,DK,TNO,Tun�,Tuno,,1-------,AI,9812,,5557N 01026E, +,DK,TOE,T�rring,Torring,,--3-----,RQ,9705,,5551N 00929E, +,DK,TOM,Tommerup,Tommerup,,--3-----,RQ,9501,,5519N 01012E, +,DK,TON,T�nder,Tonder,,0-------,RQ,9311,,5504N 00853E, +,DK,TOR,Torup,Torup,82,--3-----,RQ,1401,,5546N 00943E, +,DK,TRM,Tarm,Tarm,,--3-----,RQ,9501,,5554N 00831E, +,DK,TRS,T�rs,Tars,,1-------,AI,9704,,5453N 01102E, +,DK,TUB,Tuborg,Tuborg,,12------,AF,9606,,5544N 01232E, +,DK,TYB,Tybor�n,Tyboron,,12------,AF,9606,,5642N 00812E, +,DK,ULB,Ulfborg,Ulfborg,,--3-----,RQ,9501,,5616N 00819E, +,DK,ULD,Uldum,Uldum,,--3-----,RQ,9705,,5551N 00935E, +,DK,ULL,Ullerslev,Ullerslev,,--3-----,RQ,9704,,5522N 01040E, +,DK,VAD,Vadum,Vadum,,--3-----,RQ,9501,,5707N 00952E, +,DK,VAL,Valby,Valby,,0-------,RQ,9307,,5540N 01231E, +,DK,VAS,Vigsn�s,Vigsnas,,--3-----,RL,9811,,5453N 01139E, +,DK,VDE,Varde,Varde,,--3-----,RQ,9705,,5540N 00831E, +,DK,VDP,Vamdrup,Vamdrup,,--3-----,RQ,9501,,5526N 00917E, +,DK,VEJ,Vejle,Vejle,,12------,AF,9606,,5542N 00932E, +,DK,VES,"Vester� Havn, L�s�","Vestero Havn, Laso",,1-------,AI,9704,,5718N 01056E, +,DK,VIB,Viborg,Viborg,,-23-----,AF,9606,,5627N 00924E, +,DK,VIG,Vig,Vig,,--3-----,RQ,9705,,5551N 01135E, +,DK,VIR,Virum,Virum,,0-------,RQ,9307,,5548N 01228E, +,DK,VJN,Vejen,Vejen,,--3-----,RQ,9501,,5529N 00908E, +,DK,VMB,Vemb,Vemb,,-23-----,RQ,9705,,5621N 00820E, +,DK,VNR,Vinderup,Vinderup,,-23-----,AF,9606,,5629N 00847E, +,DK,VOK,Vodskov,Vodskov,,--3-----,RQ,9501,,5707N 01001E, +,DK,VPP,Vipper�d,Vipperod,,--3-----,RQ,9704,,5540N 01144E, +,DK,VRE,Avedore,Avedore,,1-------,RQ,0901,,5538N 01228E, +,DM,BEL,Belfast,Belfast,,1-------,RQ,0307,,1522N 06124W, +,DM,DOM,Dominica,Dominica,,---45---,AI,9601,,1525N 06121W, +,DM,RSU,Roseau,Roseau,,1-------,AI,9401,,1518N 06123W, +,DO,BCC,Boca Chica,Boca Chica,,1-------,AI,9401,,1827N 06937W, +,DO,BRX,Barahona,Barahona,,1--4----,AI,9601,,1813N 07106W, +,DO,CBJ,Cabo Rojo,Cabo Rojo,,1--4----,AI,9401,,1754N 07140W, +,DO,HAI,Rio Haina,Rio Haina,,1-------,QQ,8103,,1825N 07001W, +,DO,LRM,La Romana,La Romana,,1-------,AI,9601,,1826N 06858W, +,DO,PDR,Pedernales,Pedernales,,1-------,AI,9401,,1802N 07145W, +,DO,POP,Puerto Plata,Puerto Plata,,1-------,AI,9601,,1947N 07042W, +,DO,PUO,Puerto Libertador,Puerto Libertador,,1-------,QQ,8103,,0753N 07540W, +,DO,SCR,San Cristobal,San Cristobal,,--3-----,RQ,9501,,1825N 07007W, +,DO,STI,Santiago de los Caballeros,Santiago de los Caballeros,,1-3-----,RL,9805,,1927N 07041W, +,DZ,AAE,Annaba (ex Bone),Annaba (ex Bone),,1--4----,AI,9601,,3654N 00745E, +,DZ,AZA,Tipaza,Tipaza,01,--3-----,RQ,0901,,3636N 00227E, +,DZ,BJA,Bejaia (ex Bougie),Bejaia (ex Bougie),,1--4----,AI,9601,,3645N 00504E, +,DZ,CLE,La Calle,La Calle,,--3-----,RL,9811,,3654N 00827E, +,DZ,CZL,Constantine,Constantine,,---4----,AI,9601,,3622N 00637E, +,DZ,DJE,Djen-Djen,Djen-Djen,,1-------,AI,0201,,3649N 00553E, +,DZ,DJI,Jijel (ex Djidjelli),Jijel (ex Djidjelli),,1-------,QQ,0701,,3649N 00546E, +,DZ,ELG,El Golea,El Golea,,---4----,RQ,0901,,3035N 00253E, +,DZ,GJL,Jijel,Jijel,18,---4----,RQ,0901,,3649N 00546E, +,DZ,LOO,Laghouat,Laghouat,03,---4----,RQ,0901,,3348N 00253E, +,DZ,MOS,Mostaganem,Mostaganem,,1-------,QQ,0701,,3556N 00005E, +,DZ,MUW,Mascara,Mascara,29,---4----,RQ,0901,,3524N 00008E, +,DZ,ORN,Oran,Oran,,1--4----,AI,9601,,3542N 00039W, +,DZ,SKI,Skikda (ex Philippeville),Skikda (ex Philippeville),,1--4----,AI,9601,,3653N 00654E, +,DZ,TEE,Tbessa,Tbessa,,---4----,RQ,0901,,3524N 00807E, +,DZ,TGR,Touggourt,Touggourt,30,---4----,RQ,0901,,3307N 00604E, +,EC,ATF,Ambato,Ambato,,--34----,RL,9805,,0115S 07838W, +,EC,BYO,Babahoyo,Babahoyo,R,--3-----,RQ,0901,,0148S 07932W, +,EC,CAR,Pedro Carbo,Pedro Carbo,,1-3-----,RL,0601,,0149S 08014W, +,EC,EBL,Balao,Balao,,1-------,AI,9601,,0255S 07949W, +,EC,GPS,Galapagos Islands,Galapagos Islands,,---4----,AI,9601,,0038S 09022W, +,EC,LOH,Loja,Loja,,---4----,AI,9601,,0360S 07912W, +,EC,MCH,Machala,Machala,,---4----,AI,9601,,0316S 07958W, +,EC,SDO,Santo Domingo de los Colorados,Santo Domingo de los Colorados,,--3-----,RQ,0101,,0015S 07910W, +,EC,UIO,Quito,Quito,,---45---,AI,9601,,0013S 07831W, +,EC,WSE,Santa Cecillia,Santa Cecillia,,---4----,RQ,0901,,0004N 07660W, +,EE,AAV,Aaviku,Aaviku,37,--3-----,RL,1007,,5920N 02454E, +,EE,ERV,Ervu,Ervu,79,-----6--,RL,0901,,5813N 02614E, +,EE,HAK,H�nike,Hanike,,-----6--,RL,0901,,5751N 02646E, +,EE,KOM,Komsi,Komsi,59,-----6--,RL,0901,,5804N 02616E, +,EE,KRU,Koeru,Koeru,51,-----6--,RL,0901,,5858N 02602E, +,EE,KSE,Kose,Kose,37,-----6--,RL,0901,,5927N 02452E, +,EE,REO,Reola,Reola,79,-----6--,RL,0901,,5818N 02642E, +,EE,RPL,Reopalu,Reopalu,51,-----6--,RL,0901,,5852N 02530E, +,EG,AAC,El'Arish,El'Arish,,--34----,RL,9805,,3107N 03348E, +,EG,ABS,Abu Simbel,Abu Simbel,,---4----,AI,9601,,2222N 03138E, +,EG,AGN,Abu Ghosoun,Abu Ghosoun,,--3-----,RL,9811,,2427N 03512E, +,EG,AIS,Ain Sukhna,Ain Sukhna,,1-------,RQ,9506,,2939N 03220E, +,EG,AKI,Abu Kir,Abu Kir,,1-------,RQ,9506,,3119N 03004E, +,EG,ASW,Aswan,Aswan,,1--4----,AI,9601,,2405N 03254E, +,EG,AUE,Abu Rudeis,Abu Rudeis,,1--4----,AI,9506,,2853N 03311E, +,EG,BHE,Ezbet Osman Murtada,Ezbet Osman Murtada,BH,-----6--,RQ,1007,,3110N 03011E, +,EG,DMN,Damanhour,Damanhour,,---4----,RQ,9506,,3102N 03028E, +,EG,EDA,El Dekhela,El Dekhela,,-----6--,RQ,1007,,3107N 02949E, +,EG,EDK,El Dekheila,El Dekheila,,1-------,RQ,9506,,3108N 02948E, +,EG,EOB,El Obour,El Obour,DK,1-------,RQ,0901,,3014N 03128E, +,EG,HAL,Halaib,Halaib,,1-------,QQ,8103,,2239N 03542E, +,EG,HEL,Heliopolis,Heliopolis,C,1-------,RQ,0901,,3006N 03120E, +,EG,HRG,Hurghada,Hurghada,,1-------,AI,9601,,2713N 03350E, +,EG,ISM,Ismailia,Ismailia,,1-------,QQ,8103,,3036N 03217E, +,EG,KEH,Kafr El Sheikh,Kafr El Sheikh,DK,1-------,RQ,0901,,3107N 03057E, +,EG,LXR,Luxor,Luxor,,---4----,AI,9601,,2542N 03239E, +,EG,MMU,Mersa Matru,Mersa Matru,,-----6--,RQ,1007,,3120N 02714E, +,EG,PSD,Port Said,Port Said,,1--4----,AI,9601,,3116N 03218E, +,EG,PTK,Port Tewfik,Port Tewfik,,1-------,QQ,8103,,2957N 03233E, +,EG,RAG,Ras Gharib,Ras Gharib,,1-------,QQ,8103,,2822N 03305E, +,EG,SBA,Sidi Barrani,Sidi Barrani,,1-------,QQ,8103,,3137N 02556E, +,EG,SGA,Safaga,Safaga,,1-------,QQ,8103,,2646N 03356E, +,EG,SHG,Sohag,Sohag,MT,1-------,RQ,0901,,2633N 03142E, +,EG,SKT,Sidi Kerir Terminal,Sidi Kerir Terminal,,--3-----,RQ,9811,,3103N 02940E, +,EG,WAF,Wadi Feiran,Wadi Feiran,,1-------,QQ,8103,,2843N 03337E, +,ES,AAF,Atarfe,Atarfe,,--3-----,RQ,9501,,3713N 00341W, +,ES,AAG,Agua Amarga,Agua Amarga,,--3-----,RL,9811,,3656N 00156W, +,ES,AAJ,Aranjuez,Aranjuez,,--3-----,RQ,9501,,4002N 00336W, +,ES,AAS,Massanes,Massanes,GI,--3-----,RQ,0907,,4146N 00239E, +,ES,ABR,Abronigal,Abronigal,,0-------,RQ,9307,,4045N 00349W, +,ES,ABZ,Alcobendas,Alcobendas,,--3-----,RQ,9501,,4032N 00338W, +,ES,ACB,Albolote,Albolote,,--3-----,RQ,9501,,3714N 00339W, +,ES,ACH,Aceuchal,Aceuchal,BA,1-------,RQ,0901,,3839N 00629W, +,ES,ACO,Agoncillo,Agoncillo,,--3-----,RQ,0101,,4227N 00217W, +,ES,ACR,Alcora,Alcora,,--3-----,RQ,9501,,4004N 00013W, +,ES,ACS,Arbucias,Arbucias,,--3-----,RQ,9806,,4149N 00231E, +,ES,ADA,Aldea,Aldea,,--3-----,RQ,9705,,4317N 00746W, +,ES,ADD,Aranda de Duero,Aranda de Duero,,--3-----,RQ,9705,,4140N 00341W, +,ES,ADS,Alameda de La Sagra,Alameda de La Sagra,TO,1-------,RQ,0901,,4001N 00348W, +,ES,ADY,Aldaya,Aldaya,,--3-----,RQ,9501,,3928N 00028W, +,ES,AFA,Alfara,Alfara,,--3-----,RQ,9501,,4130N 00428W, +,ES,AFE,Almusafes,Almusafes,,--3-----,RQ,9501,,3918N 00025W, +,ES,AFF,Alfacar,Alfacar,,--3-----,RQ,9501,,3714N 00334W, +,ES,AFU,Alfahuir,Alfahuir,,0-------,RQ,9307,,3856N 00015W, +,ES,AGC,Argoncillo,Argoncillo,,0-------,RQ,9307,,4233N 00439W, +,ES,AGH,Alginet,Alginet,,--3-----,RQ,9501,,3916N 00028W, +,ES,AGT,Agullent,Agullent,,0-------,RQ,9307,,3849N 00033W, +,ES,AGY,Alfondeguilla,Alfondeguilla,,0-------,RQ,9307,,3950N 00016W, +,ES,AGZ,Alguazas,Alguazas,,--3-----,RQ,9501,,3803N 00114W, +,ES,AHF,Albaida,Albaida,,--3-----,RQ,9501,,3850N 00031W, +,ES,AHH,Alcira,Alcira,,--3-----,RQ,9501,,3909N 00026W, +,ES,AHP,Alhama,Alhama,,0-------,RQ,9307,,3854N 00136W, +,ES,AHZ,Archidona,Archidona,,--3-----,RQ,9501,,3705N 00424W, +,ES,AIP,Alacuas,Alacuas,,0-------,RQ,9307,,3927N 00028W, +,ES,AIU,Albudeite,Albudeite,,--3-----,RQ,9501,,3802N 00123W, +,ES,AJA,Abanilla,Abanilla,,--3-----,RQ,9501,,3812N 00102W, +,ES,AJB,Albal,Albal,,0-------,RQ,9307,,3924N 00025W, +,ES,AJE,Albatera,Albatera,,--3-----,RQ,9501,,3811N 00052W, +,ES,AJH,Almendralejo,Almendralejo,,--3-----,RQ,9501,,3841N 00624W, +,ES,AJQ,Alberique,Alberique,,--3-----,RQ,9501,,3907N 00031W, +,ES,AJS,Azuqueca de Henares,Azuqueca de Henares,,--3-----,RQ,9307,,4034N 00316W, +,ES,AKC,Alcaudete,Alcaudete,,--3-----,RQ,9501,,3735N 00405W, +,ES,AKF,Alcoy,Alcoy,,--3-----,RQ,9501,,3842N 00028W, +,ES,AKJ,Alcantarilla,Alcantarilla,,--3-----,RQ,9501,,3758N 00113W, +,ES,AKQ,Alcolea,Alcolea,,--3-----,RQ,9501,,3658N 00258W, +,ES,ALC,Alicante,Alicante,,12345---,AI,9601,,3821N 00029W, +,ES,ALF,Alfafar,Alfafar,,--3-----,RQ,9705,,3925N 00023W, +,ES,ALG,Algeciras,Algeciras,,1-------,AI,9704,,3608N 00527W, +,ES,ALO,Alora,Alora,,--3-----,RQ,9501,,3649N 00442W, +,ES,ALR,Alboraya,Alboraya,,--3-----,RQ,9501,,3930N 00021W, +,ES,ALS,Aldeaseca,Aldeaseca,,--3-----,RQ,9705,,4103N 00449W, +,ES,ALU,Alguaire,Alguaire,,--3-----,RQ,9501,,4144N 00035E, +,ES,AMD,Arrasate-Mondragon,Arrasate-Mondragon,,--3-----,RQ,0101,,4304N 00229W, +,ES,AMN,Almansa,Almansa,,--3-----,RQ,9501,,3852N 00106W, +,ES,AMU,Amurrio,Amurrio,,--3-----,RQ,9501,,4303N 00257W, +,ES,ANO,Arano,Arano,,--3-----,RQ,9705,,4312N 00154W, +,ES,ANT,Argentona,Argentona,,--3-----,RL,9805,,4133N 00224E, +,ES,AOI,Andoain,Andoain,,--3-----,RQ,9501,,4313N 00201W, +,ES,AOL,Autol,Autol,,--3-----,RQ,9501,,4213N 00200W, +,ES,AOT,Alpuente,Alpuente,,--3-----,RQ,9501,,3953N 00101W, +,ES,AOZ,Almaraz,Almaraz,,--3-----,RQ,9501,,3949N 00541W, +,ES,APE,Aspe,Aspe,,--3-----,RQ,9501,,3821N 00046W, +,ES,APM,Almoines,Almoines,,0-------,RQ,9307,,3857N 00011W, +,ES,APT,Azpeitia,Azpeitia,,--3-----,RL,9811,,4311N 00216W, +,ES,AQG,Algete,Algete,,0-------,RQ,9307,,4036N 00330W, +,ES,AQH,Alborache,Alborache,,0-------,RQ,9307,,3924N 00046W, +,ES,AQR,Antequera,Antequera,,--3-----,RQ,9501,,3701N 00434W, +,ES,AQZ,Alcaraz,Alcaraz,,--3-----,RQ,9501,,3840N 00229W, +,ES,ARA,Arrigorriaga,Arrigorriaga,,--3-----,RQ,9501,,4312N 00253W, +,ES,ARC,Archena,Archena,,--3-----,RQ,9501,,3807N 00118W, +,ES,ARI,Arguineguin,Arguineguin,,1-------,RQ,9703,,2746N 01541W, +,ES,ARJ,Arteijo,Arteijo,,--3-----,RQ,9705,,4318N 00830W, +,ES,ARL,Arrubal (La Rioja),Arrubal (La Rioja),,--3-----,RQ,0101,,4226N 00215W, +,ES,ARN,Arenys de Mar,Arenys de Mar,,1-------,RQ,9703,,4135N 00233E, +,ES,ARR,Arrancudiaga,Arrancudiaga,,0-------,RQ,9307,,4310N 00255W, +,ES,ART,Areta,Areta,,--3-----,RQ,9705,,4309N 00257W, +,ES,ASU,Alsasua,Alsasua,,--3-----,RQ,9806,,4255N 00211W, +,ES,ATS,Artes,Artes,,--3-----,RL,9805,,4148N 00157E, +,ES,AUS,Callus,Callus,B,--3-----,RQ,0907,,4147N 00147E, +,ES,AUT,Santa Maria de Palautordera,Santa Maria de Palautordera,B,--3-----,RQ,0907,,4142N 00227E, +,ES,AVS,Aviles,Aviles,,1-------,AI,9704,,4333N 00555W, +,ES,AWN,Almenara,Almenara,,--3-----,RQ,9501,,3945N 00014W, +,ES,AWR,Alcover,Alcover,,--3-----,RQ,9501,,4116N 00110E, +,ES,AXC,Albuixech,Albuixech,,0-------,RQ,9307,,3933N 00019W, +,ES,AYA,Ayamonte,Ayamonte,,1-------,AI,9704,,3713N 00724W, +,ES,AYL,Ayelo de Malferit,Ayelo de Malferit,,--3-----,RQ,9501,,3853N 00035W, +,ES,AZA,Azcoitia,Azcoitia,,--3-----,RQ,9501,,4311N 00219W, +,ES,AZJ,Alzira,Alzira,,0-------,RQ,9307,,3909N 00026W, +,ES,AZP,Amposta,Amposta,,--3-----,RQ,9501,,4042N 00035E, +,ES,BAO,Baracaldo,Baracaldo,,--3-----,RQ,9501,,4318N 00259W, +,ES,BAS,Basauri,Basauri,,--3-----,RQ,9501,,4314N 00254W, +,ES,BAV,Barco de Valdeorras,Barco de Valdeorras,,--3-----,RQ,9501,,4225N 00659W, +,ES,BCM,Benicasim,Benicasim,,--3-----,RQ,9501,,4003N 00004E, +,ES,BCN,Barcelona,Barcelona,,12345---,AI,9601,,4123N 00211E, +,ES,BDV,Barbera del Valles,Barbera del Valles,,0-------,RQ,9307,,4131N 00208E, +,ES,BEM,Benidorm,Benidorm,,1-------,RN,9803,,3832N 00008W, +,ES,BEN,Beniel,Beniel,,0-------,RQ,9307,,3803N 00100W, +,ES,BGL,Benaguacil,Benaguacil,,--3-----,RQ,9501,,3936N 00035W, +,ES,BIG,Bigastro,Bigastro,,--3-----,RQ,9501,,3804N 00054W, +,ES,BJS,Barajas,Barajas,,--3-----,RQ,9501,,4028N 00335W, +,ES,BJZ,Badajoz,Badajoz,,-234----,AI,9601,,3853N 00659W, +,ES,BLA,Blanes,Blanes,,1-------,RQ,9506,,4141N 00248E, +,ES,BLG,Bellreguart,Bellreguart,,--3-----,RQ,9501,,3857N 00010W, +,ES,BLM,Balmaseda,Balmaseda,,0-------,RQ,9307,,4312N 00312W, +,ES,BLZ,Balazote,Balazote,,--3-----,RQ,9501,,3853N 00209W, +,ES,BMJ,Bormujos,Bormujos,,0-------,RQ,9307,,3722N 00604W, +,ES,BNH,Benahadux,Benahadux,,--3-----,RQ,9501,,3656N 00228W, +,ES,BNL,Baonoles,Baonoles,,--3-----,RQ,9501,,4207N 00246E, +,ES,BNM,Benimamet,Benimamet,,0-------,RQ,9307,,3930N 00025W, +,ES,BNP,Beniparrell,Beniparrell,,0-------,RQ,9307,,3923N 00025W, +,ES,BOA,Boadilla del Monte,Boadilla del Monte,M,1-------,RQ,0901,,4024N 00353W, +,ES,BOI,Bocairente,Bocairente,,--3-----,RQ,9501,,3846N 00037W, +,ES,BOL,Borriol,Borriol,,--3-----,RQ,9501,,4003N 00004W, +,ES,BRE,Brenes,Brenes,,--3-----,RQ,9501,,3733N 00552W, +,ES,BRJ,Burjasot,Burjasot,,--3-----,RQ,9501,,3931N 00025W, +,ES,BRL,Burela,Burela,,1-------,RQ,9402,,4340N 00722W, +,ES,BRN,Bornos,Bornos,,--3-----,RQ,9501,,3649N 00545W, +,ES,BRR,Berrioplano,Berrioplano,,0-------,RQ,9307,,4252N 00142W, +,ES,BRX,Burriana,Burriana,,1-------,AI,9704,,3953N 00005W, +,ES,BRY,Balsareny,Balsareny,B,--3-----,RQ,0101,,4152N 00153E, +,ES,BUC,Burcena,Burcena,,0-------,RQ,9307,,4317N 00259W, +,ES,BUL,Bullas,Bullas,,--3-----,RQ,9501,,3803N 00140W, +,ES,BZA,Baeza,Baeza,,--3-----,RQ,9501,,3760N 00328W, +,ES,CAA,Castalla,Castalla,,--3-----,RQ,9501,,3836N 00040W, +,ES,CAB,Cabra,Cabra,,--3-----,RQ,9501,,3728N 00426W, +,ES,CAC,Cabezo Cortado,Cabezo Cortado,,0-------,RQ,9307,,3802N 00111W, +,ES,CAD,Cadiz,Cadiz,,1-------,AI,9704,,3632N 00618W, +,ES,CAF,Calaf,Calaf,,--3-----,RQ,0101,,4144N 00131E, +,ES,CAM,Camas,Camas,,--3-----,RQ,9501,,3724N 00602W, +,ES,CAP,Calasparra,Calasparra,,--3-----,RQ,9501,,3814N 00142W, +,ES,CAT,Catadau,Catadau,,--3-----,RQ,9501,,3916N 00034W, +,ES,CAU,Caudete,Caudete,,--3-----,RQ,9501,,3842N 00059W, +,ES,CBD,Cambados,Cambados,,1-------,AI,9704,,4231N 00849W, +,ES,CBZ,Cabezuela,Cabezuela,,1-------,AI,9704,,4114N 00356W, +,ES,CCH,Casariche,Casariche,,--3-----,RQ,9501,,3718N 00446W, +,ES,CDC,Caravaca de La Cruz,Caravaca de La Cruz,,--3-----,RQ,9501,,3806N 00152W, +,ES,CDD,Cardedeu,Cardedeu,,--3-----,RQ,9501,,4138N 00221E, +,ES,CDF,Castelldefels,Castelldefels,,--3-----,RQ,9501,,4117N 00159E, +,ES,CDL,Caudiel,Caudiel,,--3-----,RQ,9501,,3957N 00034W, +,ES,CEE,Cee,Cee,,1-3--6--,RQ,1001,,4257N 00911W, +,ES,CEG,Cisterniga,Cisterniga,,--3-----,RQ,0607,,4137N 00441W, +,ES,CER,La Calera,La Calera,,--3-----,RL,9811,,3857N 00303W, +,ES,CEU,Ceuta,Ceuta,,1-------,AI,9704,,3554N 00521W, +,ES,CFR,Cofrentes,Cofrentes,,--3-----,RQ,9501,,3914N 00104W, +,ES,CGL,Cantagallo,Cantagallo,,0-------,RQ,9307,,4022N 00549W, +,ES,CHL,Chulilla,Chulilla,,--3-----,RQ,9501,,3939N 00054W, +,ES,CHT,Chantada,Chantada,,--3--6--,RQ,0607,,4237N 00749W, +,ES,CHU,Chauchina,Chauchina,,--3-----,RQ,9501,,3712N 00346W, +,ES,CHV,Chirivel,Chirivel,,--3-----,RQ,9501,,3736N 00216W, +,ES,CIC,Cinco Casas,Cinco Casas,,--3-----,RQ,9501,,3910N 00314W, +,ES,CIV,Ciervana,Ciervana,BI,1-------,RQ,0901,,4321N 00305W, +,ES,CJQ,Corcoya,Corcoya,,0-------,RQ,9307,,3716N 00441W, +,ES,CJS,Crevillente,Crevillente,,--3-----,RQ,9501,,3815N 00049W, +,ES,CLH,Calahorra,Calahorra,,--3-----,RQ,9501,,4218N 00158W, +,ES,CLL,Castellbisbal,Castellbisbal,,0-------,RQ,9307,,4129N 00159E, +,ES,CMS,Campillos,Campillos,,--3-----,RQ,9501,,3703N 00452W, +,ES,CND,Canada,Canada,,--3-----,RQ,9501,,3841N 00049W, +,ES,CNL,Caniles,Caniles,,--3-----,RQ,9501,,3726N 00243W, +,ES,CNS,Canals,Canals,,--3-----,RQ,9501,,3858N 00035W, +,ES,CNV,Canovellas,Canovellas,,0-------,RQ,9307,,4137N 00217E, +,ES,COA,Cocentaina,Cocentaina,,--3-----,RQ,9501,,3845N 00026W, +,ES,COL,Colmenar,Colmenar,,--3-----,RQ,9501,,3654N 00420W, +,ES,COR,Corella,Corella,,--3-----,RQ,9501,,4207N 00147W, +,ES,COZ,Cortes,Cortes,,--3-----,RQ,9501,,4155N 00125W, +,ES,CRB,Corbera,Corbera,,--3-----,RQ,9501,,3909N 00021W, +,ES,CRC,Carcagente,Carcagente,,--3-----,RQ,9501,,3907N 00027W, +,ES,CRI,Cierbena,Cierbena,AB,1-3-----,RQ,0901,,4320N 00305W, +,ES,CRT,Carlet,Carlet,,--3-----,RQ,9501,,3914N 00031W, +,ES,CSL,Consell,Consell,,--3--6--,RQ,0607,,3940N 00249E, +,ES,CSP,Caspe,Caspe,,--3-----,RQ,9501,,4114N 00002W, +,ES,CSR,Casares,Casares,,--3-----,RQ,9501,,3627N 00516W, +,ES,CSS,Coeses,Coeses,,--3--6--,RQ,0607,,4254N 00731W, +,ES,CST,Casatejada,Casatejada,,--3-----,RQ,9501,,3953N 00541W, +,ES,CTA,Cantoria,Cantoria,,--3-----,RQ,9501,,3721N 00212W, +,ES,CTJ,Catarroja,Catarroja,,--3-----,RQ,9501,,3924N 00024W, +,ES,CUA,Churra,Churra,,0-------,RQ,9307,,3741N 00141W, +,ES,CVA,Chiva,Chiva,,--3-----,RQ,9501,,3928N 00043W, +,ES,CVJ,Victoria de Acentejo,Victoria de Acentejo,A,1-------,RQ,0901,,2826N 01628W, +,ES,CVL,Canaveral,Canaveral,,--3-----,RQ,9501,,3947N 00624W, +,ES,CXQ,Coslada,Coslada,,--3-----,RQ,9501,,4025N 00333W, +,ES,CYG,Castellet y Gornal,Castellet y Gornal,,--3-----,RQ,9806,,4115N 00136E, +,ES,CZL,Cazorla,Cazorla,,--3-----,RQ,9501,,3755N 00300W, +,ES,CZQ,Coria,Coria,,--3-----,RQ,9501,,3959N 00632W, +,ES,CZS,Constantina,Constantina,,--3-----,RQ,9501,,3753N 00537W, +,ES,DDP,Dolores,Dolores,,--3-----,RQ,9501,,3808N 00046W, +,ES,DGS,Villandangos,Villandangos,A,1-------,RQ,0901,,4231N 00546W, +,ES,DHM,Dos Hermanas,Dos Hermanas,,--3-----,RQ,9501,,3717N 00555W, +,ES,DMA,Daimiel,Daimiel,,--3-----,RQ,9501,,3904N 00337W, +,ES,DNA,Denia,Denia,,1-------,AI,9704,,3850N 00006E, +,ES,DNB,Don Benito,Don Benito,,--3-----,RQ,9501,,3857N 00552W, +,ES,DRI,Derio,Derio,,1-------,RQ,9307,,4317N 00253W, +,ES,EAO,El Bonillo,El Bonillo,,0-------,RQ,9307,,3857N 00232W, +,ES,EAS,San Sebastian,San Sebastian,,1--4----,AI,9601,,4319N 00159W, +,ES,ECA,El Carpio,El Carpio,,0-------,RQ,9307,,3756N 00430W, +,ES,ECE,Elche,Elche,,--3-----,RQ,9501,,3816N 00042W, +,ES,ECV,El Cuervo,El Cuervo,,0-------,RQ,9307,,4009N 00120W, +,ES,EEJ,El Ejido,El Ejido,,0-------,RQ,9307,,3647N 00249W, +,ES,EEV,Echevarria,Echevarria,,0-------,RQ,9307,,3647N 00433W, +,ES,EFQ,El Farque,El Farque,,0-------,RQ,9307,,3712N 00334W, +,ES,EGD,El Gador,El Gador,,0-------,RQ,9307,,3657N 00229W, +,ES,EGI,El Gordo,El Gordo,,0-------,RQ,9307,,3952N 00521W, +,ES,EKZ,Eskoriatza,Eskoriatza,SS,1-------,RQ,0901,,4301N 00232W, +,ES,ELD,Elda,Elda,,--3-----,RQ,9501,,3829N 00048W, +,ES,EMJ,El Mojon,El Mojon,,0-------,RQ,9307,,3735N 00113W, +,ES,ENR,San Enrique de Guadiaro,San Enrique de Guadiaro,CA,--3-----,RQ,0907,,3618N 00518W, +,ES,ENT,Entoma,Entoma,OR,1-------,RL,0901,,4225N 00656W, +,ES,EPA,Estepa,Estepa,,--3-----,RQ,9501,,3718N 00453W, +,ES,EPL,El Palo,El Palo,,0-------,RQ,9307,,3643N 00422W, +,ES,EPV,El Provencio,El Provencio,,0-------,RQ,9307,,3923N 00234W, +,ES,ESC,Escombreras,Escombreras,,1-------,RQ,9506,,4050N 00414W, +,ES,ESI,Espartinas,Espartinas,,--3-----,RQ,9501,,3723N 00608W, +,ES,ESP,Espinardo,Espinardo,,0-------,RQ,9307,,3801N 00109W, +,ES,EUX,Esparraguera,Esparraguera,,--3-----,RQ,9501,,3903N 00310W, +,ES,FAP,Fraga,Fraga,,--3-----,RQ,9501,,4131N 00021E, +,ES,FBD,Fuenlabrada,Fuenlabrada,,--3-----,RQ,9501,,4017N 00348W, +,ES,FDP,Fuente de Pedro Naharro,Fuente de Pedro Naharro,CU,-23--6--,RQ,0901,,3955N 00301W, +,ES,FJN,Fuentejalon,Fuentejalon,Z,-23--6--,RQ,0901,,4146N 00128W, +,ES,FJU,Funes,Funes,,0-------,RQ,9307,,4219N 00148W, +,ES,FUA,Faura,Faura,,--3-----,RQ,9501,,3944N 00016W, +,ES,FUE,Puerto del Rosario-Fuerteventura,Puerto del Rosario-Fuerteventura,,1--4----,AI,9601,,2830N 01352W, +,ES,FUM,Fuenmayor,Fuenmayor,,--3-----,RQ,9501,,4228N 00234W, +,ES,FYO,Foyos,Foyos,,0-------,RQ,9307,,3932N 00021W, +,ES,GAR,Garrucha,Garrucha,,1-------,AI,9704,,3711N 00149W, +,ES,GCL,Guadalcanal,Guadalcanal,,--3-----,RQ,9501,,3806N 00549W, +,ES,GCR,Santa Maria de Guia de Gran Canaria,Santa Maria de Guia de Gran Canaria,GC,1-------,RQ,0901,,2808N 01538W, +,ES,GDB,Guardiola de Bergueda,Guardiola de Bergueda,B,--3-----,RQ,0907,,4214N 00153E, +,ES,GDL,Godella,Godella,V,1-------,RQ,0901,,3931N 00025W, +,ES,GDM,Salvaterra de Mino,Salvaterra de Mino,,1-------,RQ,0901,,4205N 00830W, +,ES,GDU,Godelleta,Godelleta,,--3-----,RQ,9501,,3925N 00041W, +,ES,GDX,Guadasuar,Guadasuar,,--3-----,RQ,9501,,3911N 00028W, +,ES,GEZ,Granollers,Granollers,,--3-----,RQ,9501,,4136N 00217E, +,ES,GIA,Gilena,Gilena,,--3-----,RQ,9501,,3715N 00455W, +,ES,GJI,Granja de San Idelfonso,Granja de San Idelfonso,,--3-----,RQ,0212,,4054N 00400W, +,ES,GMN,Mogente,Mogente,,--3-----,RQ,9501,,3853N 00045W, +,ES,GRX,Granada,Granada,,--34----,AI,9601,,3710N 00336W, +,ES,GRY,Grao,Grao,,1-------,QQ,8103,,4323N 00604W, +,ES,GTF,Getafe,Getafe,,--3-----,RQ,9501,,4018N 00344W, +,ES,GTS,Getares,Getares,,--3-----,RQ,9811,,3606N 00527W, +,ES,GUI,Guipuzcoa,Guipuzcoa,,--34----,RQ,0101,,4036N 00403W, +,ES,GUZ,Guillena,Guillena,,--3-----,RQ,9501,,3733N 00603W, +,ES,HDI,Hospitalet del Infant,Hospitalet del Infant,T,--3-----,RQ,0907,,4060N 00051E, +,ES,HDU,La Herradura,La Herradura,,--3-----,RQ,9705,,3644N 00344W, +,ES,HHR,Herrera,Herrera,,--3-----,RQ,9501,,3722N 00451W, +,ES,HJO,Hinojos,Hinojos,,--3-----,RQ,9501,,3718N 00623W, +,ES,HKX,Hernani,Hernani,,--3-----,RL,9805,,4316N 00158W, +,ES,HUR,Humilladero,Humilladero,MA,1-------,RQ,0901,,3707N 00442W, +,ES,HUV,Huelva,Huelva,,123-----,AI,9704,,3715N 00657W, +,ES,HWG,Huerto,Huerto,,--3-----,RQ,9501,,4156N 00010W, +,ES,HWV,Huerto-Vega,Huerto-Vega,,0-------,RQ,9307,,4315N 00500W, +,ES,HZS,Hoyos,Hoyos,,--3-----,RQ,9501,,4010N 00643W, +,ES,IMA,Imarcoain,Imarcoain,NA,--3-----,RQ,0907,,4244N 00137W, +,ES,IOO,Llodio,Llodio,,--3-----,RQ,9501,,4309N 00258W, +,ES,ISC,Iscar,Iscar,VA,-----6--,RQ,0901,,4122N 00432W, +,ES,ITR,Iturriotz,Iturriotz,SS,1-------,RQ,0901,,4312N 00209W, +,ES,IVU,Ivars d'Urgell,Ivars d'Urgell,,--3-----,RQ,0212,,4141N 00059E, +,ES,JCO,Jaraco,Jaraco,,--3-----,RQ,9501,,3902N 00013W, +,ES,JJO,Jijona,Jijona,,--3-----,RQ,9501,,3832N 00030W, +,ES,JOA,Sant Joan de Mollet,Sant Joan de Mollet,GI,--3-----,RQ,0907,,4203N 00257E, +,ES,JRE,Jeresa,Jeresa,,--3-----,RQ,9501,,3901N 00013W, +,ES,JUA,Jedula,Jedula,,0-------,RQ,9307,,3643N 00556W, +,ES,JUM,Jumilla,Jumilla,,--3-----,RQ,9501,,3828N 00120W, +,ES,JZB,Juzbado,Juzbado,,0-------,RQ,9307,,4105N 00552W, +,ES,LAN,Lanciego,Lanciego,AV,1-------,RQ,0901,,4234N 00231W, +,ES,LAR,Larrondo,Larrondo,,0-------,RQ,9307,,4256N 00053W, +,ES,LAS,Lasarte,Lasarte,,--3-----,RQ,9705,,4249N 00241W, +,ES,LAV,Lavern,Lavern,,--3-----,RL,9805,,4123N 00146E, +,ES,LBT,La Albatalia,La Albatalia,,0-------,RQ,9307,,3759N 00109W, +,ES,LCR,Los Cristianos,Los Cristianos,,1-------,AI,9704,,2803N 01643W, +,ES,LEJ,Lebrija,Lebrija,,--3-----,RQ,9501,,3655N 00605W, +,ES,LEK,Lekeitio,Lekeitio,,1-------,AI,9704,,4322N 00230W, +,ES,LEN,Leon,Leon,,--3-----,RQ,9705,,4236N 00534W, +,ES,LES,La Estaca,La Estaca,,1-------,AI,9704,,4325N 00557W, +,ES,LHP,Llombay,Llombay,,--3-----,RQ,9501,,3917N 00010W, +,ES,LIJ,Librilla,Librilla,,--3-----,RQ,9501,,3753N 00121W, +,ES,LIX,Flix,Flix,T,--3-----,RQ,0907,,4114N 00033E, +,ES,LIZ,Linares,Linares,,--3-----,RQ,9501,,3806N 00338W, +,ES,LJC,La Canya,La Canya,,0-------,RQ,9307,,4212N 00230E, +,ES,LJJ,La Garriga,La Garriga,,0-------,RQ,9307,,4141N 00217E, +,ES,LJM,La Ametlla del Vall,La Ametlla del Vall,,--3-----,RQ,0212,,4140N 00215E, +,ES,LJN,La Eliana,La Eliana,,0-------,RQ,9307,,3934N 00032W, +,ES,LJO,La Llagosta,La Llagosta,,1-------,RQ,9307,,4131N 00211E, +,ES,LJQ,Les Presses,Les Presses,,0-------,RQ,9307,,4208N 00227E, +,ES,LLE,Lleida,Lleida,,0-------,RQ,9307,,4137N 00038E, +,ES,LLM,Las Lomas,Las Lomas,,0-------,RQ,9307,,3743N 00124W, +,ES,LLU,La Luisiana,La Luisiana,,0-------,RQ,9307,,3732N 00515W, +,ES,LLV,Llica de Vall,Llica de Vall,,--3-----,RQ,0212,,4135N 00215E, +,ES,LLZ,Llerona,Llerona,B,--3-----,RQ,0907,,4139N 00217E, +,ES,LMC,La Maruca,La Maruca,,--3-----,RQ,9705,,4329N 00350W, +,ES,LMN,La Minosa,La Minosa,GU,1-------,RQ,0901,,4111N 00256W, +,ES,LOB,Los Barrios,Los Barrios,,--3-----,RQ,9501,,3611N 00530W, +,ES,LOJ,La Nora,La Nora,,0-------,RQ,9307,,4140N 00042E, +,ES,LOR,L'Olleria,L'Olleria,,--3-----,RQ,9705,,3855N 00033W, +,ES,LPL,La Palma,La Palma,,--3-----,RQ,9705,,2839N 01751W, +,ES,LQA,Lorca,Lorca,,--3-----,RQ,9501,,3740N 00142W, +,ES,LQB,Las Cabezas,Las Cabezas,,0-------,RQ,9307,,4101N 00340W, +,ES,LQL,La Carlota,La Carlota,,0-------,RQ,9307,,3740N 00456W, +,ES,LQR,La Carolina,La Carolina,,0-------,RQ,9307,,3816N 00337W, +,ES,LRJ,La Arboleja,La Arboleja,,0-------,RQ,9307,,3759N 00109W, +,ES,LRM,La Romana,La Romana,,--3-----,RQ,9705,,3822N 00054W, +,ES,LRS,Las Arenas,Las Arenas,,--3-----,RL,9811,,2824N 01633W, +,ES,LRZ,La Roda de Albacete,La Roda de Albacete,,0-------,RQ,9307,,3912N 00210W, +,ES,LSD,Los Santos de la Humosa,Los Santos de la Humosa,M,1-3-----,RQ,0901,,4030N 00315W, +,ES,LSF,Les Franquesese,Les Franquesese,,--3-----,RQ,9705,,4138N 00218E, +,ES,LSI,Los Silos,Los Silos,,1-------,RQ,0901,,2822N 01649W, +,ES,LSR,Las Rozas,Las Rozas,,--3-----,RQ,9705,,4322N 00509W, +,ES,LTA,La Tallada,La Tallada,,0-------,RQ,9307,,4113N 00012W, +,ES,LUG,Lugones,Lugones,,--3-----,RQ,9501,,4324N 00549W, +,ES,LUQ,Luque,Luque,CO,1-------,RQ,0901,,3734N 00417W, +,ES,LXF,La Foya,La Foya,,0-------,RQ,9307,,3901N 00026W, +,ES,LXO,La Llosa,La Llosa,,0-------,RQ,9307,,3946N 00012W, +,ES,LXR,La Rinconada,La Rinconada,,0-------,RQ,9307,,3729N 00559W, +,ES,LXU,Lucena,Lucena,,--3-----,RQ,9501,,3725N 00429W, +,ES,LYJ,Liria,Liria,,0-------,RQ,9307,,3938N 00036W, +,ES,LZJ,La Zaida,La Zaida,,0-------,RQ,9307,,4120N 00026W, +,ES,MAD,Madrid,Madrid,,-2345---,AI,2007,,4025N 00342W, +,ES,MAM,Malgrat,Malgrat,,--3-----,RQ,9501,,4139N 00244E, +,ES,MAT,La Matanza,La Matanza,MU,1-------,RQ,0901,,3809N 00105W, +,ES,MBC,Mollerusa,Mollerusa,,--3-----,RQ,9501,,4138N 00054E, +,ES,MDB,Massies de Voltreg�,Massies de Voltrega,,--3-----,RQ,0212,,4201N 00214E, +,ES,MEC,Meco,Meco,M,1-------,RL,0901,,4033N 00320W, +,ES,MEJ,Mejorada,Mejorada,,--3-----,RQ,9501,,4001N 00453W, +,ES,MES,Montesa,Montesa,,--3-----,RQ,9501,,3857N 00039W, +,ES,MFH,Menjibar,Menjibar,,0-------,RQ,9307,,3758N 00348W, +,ES,MFK,Macael,Macael,,--3-----,RQ,9501,,3720N 00218W, +,ES,MFQ,Monturque,Monturque,,--3-----,RQ,9501,,3728N 00435W, +,ES,MFS,Martos,Martos,,--3-----,RQ,9501,,3743N 00358W, +,ES,MGT,Montagut,Montagut,,0-------,RQ,9307,,4214N 00236E, +,ES,MIN,Minglanilla,Minglanilla,,--3-----,RQ,9501,,3932N 00136W, +,ES,MIS,Mislata,Mislata,,0-------,RQ,9307,,3929N 00025W, +,ES,MJJ,Miajadas,Miajadas,,--3-----,RQ,9501,,3909N 00555W, +,ES,MLA,Moratalla,Moratalla,,--3-----,RQ,9501,,3811N 00153W, +,ES,MLG,Malagon,Malagon,,--3-----,RQ,9705,,3910N 00351W, +,ES,MLL,Mallorca,Mallorca,,--3-----,RQ,9705,,3937N 00253E, +,ES,MLP,Malpartida Plasencia,Malpartida Plasencia,,--3-----,RQ,9501,,3959N 00603W, +,ES,MLS,Molins,Molins,,--3-----,RQ,9705,,3805N 00055W, +,ES,MML,Montmell,Montmell,,--3-----,RQ,9705,,4119N 00127E, +,ES,MNC,Moncada,Moncada,,--3-----,RQ,9705,,3933N 00024W, +,ES,MNJ,Montijo,Montijo,,--3-----,RQ,9501,,3855N 00637W, +,ES,MNL,Manlleu,Manlleu,,--3-----,RQ,9501,,4160N 00217E, +,ES,MNR,Manresa,Manresa,,--3-----,RQ,9501,,4144N 00150E, +,ES,MNU,Monteagudo,Monteagudo,,--3-----,RQ,9501,,4158N 00142W, +,ES,MOT,Motril,Motril,,1-------,AI,9704,,3645N 00331W, +,ES,MPG,"Marin, Pontevedra","Marin, Pontevedra",,1-------,AI,9704,,4224N 00842W, +,ES,MQC,Marchena,Marchena,,--3-----,RQ,9501,,3720N 00525W, +,ES,MQF,Manilva,Manilva,,--3-----,RQ,9501,,3623N 00515W, +,ES,MQN,Mequinenza,Mequinenza,,--3-----,RQ,9705,,4123N 00018E, +,ES,MQP,Montoro,Montoro,,--3-----,RQ,9501,,3801N 00423W, +,ES,MRK,Markina,Markina,,--3-----,RQ,9705,,4259N 00249W, +,ES,MRL,Moraleja,Moraleja,,--3-----,RQ,9705,,4004N 00640W, +,ES,MRM,Montcada I Reixac,Montcada I Reixac,,0-------,RQ,9307,,4129N 00211E, +,ES,MRS,Muros,Muros,,1-------,RQ,9506,,4246N 00903W, +,ES,MSS,Massalfassar,Massalfassar,,--3-----,RQ,9705,,3933N 00020W, +,ES,MSY,Manises,Manises,,--3-----,RQ,9501,,3930N 00028W, +,ES,MTS,Martorell,Martorell,,--3-----,RQ,9501,,4129N 00156E, +,ES,MTV,Montaverner,Montaverner,,--3-----,RL,9805,,3853N 00030W, +,ES,MUL,Mula,Mula,,--3-----,RQ,9705,,3803N 00129W, +,ES,MUO,Museros,Museros,,0-------,RQ,9307,,3934N 00021W, +,ES,MVT,Montilla,Montilla,,--3-----,RQ,9501,,3735N 00438W, +,ES,MWR,Mancha Real,Mancha Real,,--3-----,RQ,9501,,3747N 00337W, +,ES,MXA,Minaya,Minaya,,--3-----,RQ,9501,,3916N 00219W, +,ES,MXJ,Mollina,Mollina,,--3-----,RQ,9501,,3708N 00439W, +,ES,MXX,Maraleda,Maraleda,,0-------,RQ,9307,,3710N 00358W, +,ES,MZG,Moguer,Moguer,,--3-----,RQ,9501,,3716N 00650W, +,ES,MZJ,Manzanilla,Manzanilla,,0-------,RQ,9307,,3723N 00626W, +,ES,MZX,Manzanares,Manzanares,,--3-----,RQ,9501,,3860N 00322W, +,ES,NAV,Navia,Navia,,--3-----,RQ,9501,,4332N 00643W, +,ES,NJA,Nerja,Nerja,,--3-----,RQ,9501,,3645N 00353W, +,ES,NOR,Norena,Norena,O,--3-----,RL,0901,,4324N 00542W, +,ES,NSR,Pueblo Nuevo de San Rafael,Pueblo Nuevo de San Rafael,A,-23-----,RL,1501,,3842N 00026W, +,ES,NUL,Nules,Nules,,--3-----,RQ,9501,,3951N 00009W, +,ES,NVA,Novelda,Novelda,,--3-----,RQ,9501,,3823N 00046W, +,ES,NVS,Noves,Noves,TO,1-------,RQ,0901,,4003N 00416W, +,ES,NYO,Avinyonet del Penedes,Avinyonet del Penedes,B,-2------,RQ,0907,,4121N 00147E, +,ES,ODI,Vimbodi,Vimbodi,T,--3-----,RQ,0907,,4124N 00103E, +,ES,OHL,Orihuela,Orihuela,,--3-----,RQ,9501,,3805N 00057W, +,ES,OLD,Sant Pol de Mar,Sant Pol de Mar,B,--3-----,RQ,0907,,4136N 00237E, +,ES,OLI,Oliana,Oliana,L,--3-----,RQ,0907,,4204N 00119E, +,ES,OLV,Oliva,Oliva,,--3-----,RQ,9501,,3855N 00007W, +,ES,OMO,Salomo,Salomo,T,--3-----,RQ,0907,,4114N 00122E, +,ES,ONA,Onda,Onda,,--3-----,RQ,9501,,3958N 00016W, +,ES,ONL,Onil,Onil,,--3-----,RQ,9501,,3838N 00040W, +,ES,OOE,Olot,Olot,,--3-----,RQ,9501,,4211N 00229E, +,ES,ORO,Ororbia,Ororbia,,0-------,RQ,9307,,4249N 00145W, +,ES,OST,Sant Fost de Campsentelles,Sant Fost de Campsentelles,B,--3-----,RQ,0907,,4131N 00214E, +,ES,OSU,Osuna,Osuna,,--3-----,RQ,9501,,3714N 00506W, +,ES,OTU,Otura,Otura,,--3-----,RQ,9501,,4315N 00553W, +,ES,OVO,Oviedo,Oviedo,,--3-----,RQ,9501,,4322N 00551W, +,ES,OVS,Olivares,Olivares,,--3-----,RQ,9501,,3725N 00609W, +,ES,OVZ,Olivenza,Olivenza,,--3-----,RQ,9501,,3841N 00706W, +,ES,PAF,Pajara Fuerteventura,Pajara Fuerteventura,A,1-------,RQ,0901,,2821N 01406W, +,ES,PAI,Patino,Patino,,0-------,RQ,9307,,3620N 00560W, +,ES,PAS,Pasajes,Pasajes,,1-------,AI,9704,,4319N 00155W, +,ES,PAZ,Pilar de la Horadada,Pilar de la Horadada,A,1-------,RQ,0901,,3752N 00048W, +,ES,PBN,Pueblo Nuevo del Guadian,Pueblo Nuevo del Guadian,,0-------,RQ,9307,,3855N 00645W, +,ES,PDQ,Palma Del Condado,Palma Del Condado,,--3-----,RQ,9501,,3723N 00633W, +,ES,PDU,Paradas,Paradas,,--3-----,RQ,9501,,3717N 00530W, +,ES,PDV,Parets Del Valles,Parets Del Valles,,0-------,RQ,9307,,4134N 00214E, +,ES,PDZ,Pedraneras,Pedraneras,,0-------,RQ,9307,,3927N 00240W, +,ES,PEF,Pedrera,Pedrera,,--3-----,RQ,9501,,3714N 00454W, +,ES,PEP,Parque Empresarial Pereiro de Aguiar,Parque Empresarial Pereiro de Aguiar,OR,--3-----,RQ,1501,,4219N 00749W, +,ES,PER,Peralada,Peralada,GI,--3-----,RQ,0907,,4219N 00301E, +,ES,PEV,Pontevedra,Pontevedra,,1-3-----,RQ,9806,,4226N 00839W, +,ES,PFO,Palma Del Rio,Palma Del Rio,,--3-----,RQ,9501,,3742N 00517W, +,ES,PGI,Poligono Industrial,Poligono Industrial,MA,--3-----,RQ,1501,,3637N 00520W, +,ES,PGJ,Pego,Pego,,--3-----,RQ,9501,,3851N 00007W, +,ES,PGZ,Peligros,Peligros,,0-------,RQ,9307,,3714N 00338W, +,ES,PIA,Pinoso,Pinoso,,--3-----,RQ,9501,,3824N 00102W, +,ES,PIQ,Pilas,Pilas,,--3-----,RQ,9501,,3718N 00618W, +,ES,PJO,Pinto,Pinto,,--3-----,RQ,9501,,4014N 00342W, +,ES,PLC,Polanco,Polanco,S,1-------,RQ,0901,,4323N 00401W, +,ES,PLL,Portilla,Portilla,,--3-----,RQ,9705,,4017N 00205W, +,ES,PNA,Pamplona,Pamplona,,-234----,AI,9601,,4249N 00139W, +,ES,PNR,Penarrolla,Penarrolla,,0-------,RQ,9307,,3818N 00516W, +,ES,PON,Ponferrada,Ponferrada,,--3-----,RQ,9501,,4233N 00636W, +,ES,POR,Portugalete,Portugalete,,1-------,RQ,9506,,4319N 00301W, +,ES,PPQ,Pacs Del Penedes,Pacs Del Penedes,,0-------,RQ,9307,,4122N 00140E, +,ES,PQZ,Picasent,Picasent,,--3-----,RQ,9501,,3922N 00028W, +,ES,PRC,Porcuna,Porcuna,,--3-----,RQ,9501,,3752N 00411W, +,ES,PRL,Parla,Parla,,--3-----,RQ,9705,,4014N 00346W, +,ES,PSC,Plasencia,Plasencia,,--3-----,RQ,9501,,4002N 00605W, +,ES,PSM,Puerto de Santa Maria,Puerto de Santa Maria,,1-------,AI,9704,,3636N 00614W, +,ES,PSQ,Pesquera,Pesquera,,--3-----,RQ,9705,,4305N 00405W, +,ES,PTS,Pontejos,Pontejos,,--3-----,RQ,9806,,4126N 00542W, +,ES,PUD,Puebla de Tornesa,Puebla de Tornesa,,0-------,RQ,9307,,4006N 00000W, +,ES,PUL,Pulianas,Pulianas,,0-------,RQ,9307,,3713N 00336W, +,ES,PUO,Puertollano,Puertollano,,--3-----,RQ,9501,,3841N 00407W, +,ES,PUS,Puerto Real,Puerto Real,,--3-----,RQ,9501,,3632N 00611W, +,ES,PUW,Paracuellos,Paracuellos,,--3-----,RQ,9501,,3943N 00147W, +,ES,PUZ,Puerto de Mazarron,Puerto de Mazarron,,--3-----,RQ,9501,,3734N 00116W, +,ES,PXA,Paterna,Paterna,,--3-----,RQ,9501,,3930N 00027W, +,ES,PXP,Paiporta,Paiporta,,0-------,RQ,9307,,3926N 00025W, +,ES,PXR,Petrel,Petrel,,--3-----,RQ,9501,,3849N 00250W, +,ES,PZB,Pozoblanco,Pozoblanco,,--3-----,RQ,9501,,3823N 00451W, +,ES,PZU,Puzol,Puzol,,--3-----,RQ,9501,,3937N 00018W, +,ES,PZX,Palafolls,Palafolls,,0-------,RQ,9307,,4140N 00245E, +,ES,QFU,Corralejo,Corralejo,,1--4----,AI,9402,,2844N 01352W, +,ES,QIU,Ciudadela,Ciudadela,,1--4----,AI,9402,,4000N 00350E, +,ES,QLY,Playa Blanca,Playa Blanca,,1-------,AI,9704,,2852N 01350W, +,ES,QUR,Quart de Poblet,Quart de Poblet,,0-------,RQ,9307,,3929N 00027W, +,ES,RAM,Sant Ramon,Sant Ramon,L,--3-----,RQ,0907,,4144N 00122E, +,ES,RAO,Ribarroja,Ribarroja,,0-------,RQ,9307,,4115N 00029E, +,ES,RBS,Ribadesella,Ribadesella,,1-------,RQ,9506,,4328N 00504W, +,ES,RCL,Navarcles,Navarcles,B,--3-----,RQ,0907,,4145N 00154E, +,ES,RCV,Rincon de La Victoria,Rincon de La Victoria,,--3-----,RQ,9501,,3643N 00417W, +,ES,RDP,Renedo de Pielago,Renedo de Pielago,S,1-------,RQ,0901,,4321N 00357W, +,ES,REG,Rioseco de Guriezo,Rioseco de Guriezo,S,1-------,RQ,0901,,4322N 00319W, +,ES,REL,Petrel,Petrel,A,--3-----,RQ,0907,,3849N 00250W, +,ES,RFL,Rafal,Rafal,,0-------,RQ,9307,,3806N 00051W, +,ES,RIB,Ribadeo,Ribadeo,,1-------,AI,9704,,4332N 00703W, +,ES,RMN,Ramoneda,Ramoneda,,0-------,RQ,9307,,4205N 00112E, +,ES,RNA,Ronda,Ronda,,--3-----,RQ,9501,,3645N 00510W, +,ES,RNS,Reinosa,Reinosa,,--3-----,RQ,9705,,4300N 00408W, +,ES,ROJ,Rojales,Rojales,V,--3-----,RQ,0907,,3805N 00043W, +,ES,RON,Lantaron,Lantaron,S,1-------,RQ,0901,,4245N 00260W, +,ES,ROS,Rosas,Rosas,,1-------,RQ,9506,,4216N 00311E, +,ES,ROT,Rota,Rota,,1-------,AI,9704,,3637N 00622W, +,ES,RPP,Ripollet,Ripollet,,--3-----,RQ,9501,,4130N 00209E, +,ES,RQA,Requena,Requena,,--3-----,RQ,9501,,3929N 00106W, +,ES,RQD,Requijada,Requijada,,--3-----,RL,9811,,4049N 00246W, +,ES,RRE,Torrent,Torrent,V,--3-----,RQ,0907,,3926N 00028W, +,ES,RSB,Ribesalbes,Ribesalbes,,--3-----,RQ,9501,,4001N 00017W, +,ES,RYC,Rotgla y Corbera,Rotgla y Corbera,V,--3-----,RQ,0907,,3900N 00034W, +,ES,SAA,San Antonio,San Antonio,,1-------,AI,9704,,3711N 00307W, +,ES,SAD,Sada,Sada,,1-------,AI,9704,,4235N 00124W, +,ES,SAL,Salteras,Salteras,,0-------,RQ,9307,,3725N 00607W, +,ES,SAT,Salinetas,Salinetas,,1-------,RQ,9703,,2759N 01523W, +,ES,SAV,Sant Antoni de Vilamajor,Sant Antoni de Vilamajor,B,--3-----,RQ,0907,,4140N 00224E, +,ES,SAX,Sax,Sax,,-2------,RQ,9705,,3832N 00049W, +,ES,SBG,San Bartolome D/Grau,San Bartolome D/Grau,,0-------,RQ,9307,,4158N 00209E, +,ES,SBL,Sant Boi de Ilobregat,Sant Boi de Ilobregat,,--3-----,RQ,9705,,4142N 00202E, +,ES,SBP,Sabadell,Sabadell,,--3-----,RQ,9501,,4133N 00207E, +,ES,SCI,San Ciprian,San Ciprian,,1-------,AI,9704,,4342N 00726W, +,ES,SCL,San Clemente,San Clemente,,--3-----,RQ,9501,,3924N 00226W, +,ES,SCM,Santa Cruz de Mudela,Santa Cruz de Mudela,,--3-----,RQ,9501,,3839N 00328W, +,ES,SCQ,Santiago de Compostela,Santiago de Compostela,,---4----,AI,9601,,4254N 00831W, +,ES,SCT,Santa Cruz de Tenerife,Santa Cruz de Tenerife,,1---5---,AI,9704,,2828N 01615W, +,ES,SDB,San Andreas de La Barca,San Andreas de La Barca,,0-------,RQ,9307,,4126N 00158E, +,ES,SDD,Sant Andreu de La Barca,Sant Andreu de La Barca,B,--3-----,RQ,0901,,4127N 00158E, +,ES,SDR,Santander,Santander,,1234----,AI,9601,,4328N 00349W, +,ES,SEA,Serina,Serina,,--3-----,RQ,9501,,4210N 00245E, +,ES,SEO,San Esteban de Pravia,San Esteban de Pravia,,1-------,AI,9704,,4333N 00605W, +,ES,SEU,San Eugenio,San Eugenio,TF,--3--6--,RQ,1501,,2805N 01644W, +,ES,SEW,Se�a,Sena,S,1-3-----,RL,0901,,4323N 00325W, +,ES,SFB,San Felices de Buelna,San Felices de Buelna,,--3-----,RQ,0212,,4316N 00402W, +,ES,SFC,San Feliu de Codinas,San Feliu de Codinas,,--3-----,RQ,9501,,4141N 00210E, +,ES,SGG,Sant Gregori,Sant Gregori,,--3-----,RQ,9705,,4159N 00245E, +,ES,SGJ,Santa Margarita Monjos,Santa Margarita Monjos,,0-------,RQ,9307,,4119N 00140E, +,ES,SGR,Segorbe,Segorbe,,--3-----,RQ,9501,,3951N 00029W, +,ES,SID,San Isidro de Due�as,San Isidro de Duenas,P,1-------,RQ,0901,,4154N 00431W, +,ES,SIL,Silla,Silla,,0-------,RQ,9307,,3922N 00025W, +,ES,SJD,San Juan Despi (Dupl. SJN),San Juan Despi (Dupl. SJN),,0-------,RQ,9307,,4122N 00203E, +,ES,SJF,San Juan Le Fonts,San Juan Le Fonts,,0-------,RQ,9307,,4213N 00231E, +,ES,SJN,San Juan de Nivea,San Juan de Nivea,,1-------,RQ,8103,,4335N 00555W, +,ES,SJQ,San Justo Desvern,San Justo Desvern,,0-------,RQ,9307,,4123N 00205E, +,ES,SLM,Salamanca,Salamanca,,--34----,AI,9601,,4058N 00540W, +,ES,SMT,San Martin Del Teso,San Martin Del Teso,,0-------,RQ,9307,,3621N 00519W, +,ES,SNE,San Esteban,San Esteban,,--3-----,RQ,9501,,4333N 00605W, +,ES,SON,Soneja,Soneja,,--3-----,RQ,9501,,3949N 00026W, +,ES,SOV,Sollana,Sollana,V,1-3-----,RL,0901,,3917N 00023W, +,ES,SPA,San Pedro de Alcantara,San Pedro de Alcantara,,--3-----,RQ,9501,,3928N 00705W, +,ES,SPB,Santa Perpetua de Bogota,Santa Perpetua de Bogota,,--3-----,RQ,0201,,4132N 00211E, +,ES,SPE,Sant Pere de Ribes,Sant Pere de Ribes,,--3-----,RQ,0907,,4116N 00146E, +,ES,SPN,Santiponce,Santiponce,,--3-----,RQ,9501,,3726N 00602W, +,ES,SPO,Santa Pola,Santa Pola,,1-------,AI,9704,,3812N 00033W, +,ES,SPP,San Pedro del Pinatar,San Pedro del Pinatar,,1-------,AI,9704,,3750N 00047W, +,ES,SPR,San Pedro Riudevitlles,San Pedro Riudevitlles,,0-------,RQ,9307,,4127N 00142E, +,ES,SPS,Sant Pere Sallavinera,Sant Pere Sallavinera,B,--3-----,RQ,0907,,4144N 00134E, +,ES,SQA,Sueca,Sueca,,--3-----,RQ,9501,,3912N 00019W, +,ES,SQU,San Quirico Del Vall,San Quirico Del Vall,,0-------,RQ,9307,,4132N 00205E, +,ES,SRE,Soto del Real,Soto del Real,,--3-----,RL,0601,,4045N 00347W, +,ES,SRQ,San Roque,San Roque,,--3-----,RQ,9501,,3613N 00523W, +,ES,SRZ,Sarria de Ter,Sarria de Ter,,--3-----,RQ,9501,,4201N 00249E, +,ES,SSE,Sant Feliu Sasserra,Sant Feliu Sasserra,B,--3-----,RQ,0907,,4157N 00201E, +,ES,SSG,San Sebastian de la Gomera,San Sebastian de la Gomera,,1--4----,AI,9704,,2805N 01707W, +,ES,SSN,Solsona,Solsona,,--3-----,RQ,9501,,4160N 00131E, +,ES,SSR,San Sebastian D/L Reyes,San Sebastian D/L Reyes,,0-------,RQ,9307,,4033N 00338W, +,ES,SSY,San Sadurni D Noya,San Sadurni D Noya,,0-------,RQ,9307,,4125N 00147E, +,ES,STA,Sant Andreu,Sant Andreu,,--3-----,RQ,9705,,4126N 00212E, +,ES,STF,Sant Feliu,Sant Feliu,,--3-----,RQ,9705,,4147N 00302E, +,ES,STP,Santomera,Santomera,,--3-----,RQ,9501,,3804N 00103W, +,ES,SUD,Sudanell,Sudanell,,--3-----,RQ,9501,,4133N 00034E, +,ES,SVA,San Vicente de Alcantara,San Vicente de Alcantara,,--3-----,RQ,9501,,3922N 00708W, +,ES,SVL,Cervello,Cervello,B,--3-----,RQ,0901,,4122N 00201E, +,ES,SVQ,Sevilla,Sevilla,,12345---,AI,9601,,3723N 00560W, +,ES,SVT,Sant Vicen� de Torell�,Sant Vicenc de Torello,,0-------,RL,0101,,4204N 00216E, +,ES,SXH,San Hilario Sacalm,San Hilario Sacalm,,--3-----,RQ,9501,,4153N 00231E, +,ES,TAF,Tafalla,Tafalla,,--3-----,RQ,9501,,4232N 00140W, +,ES,TAL,El Tarajal,El Tarajal,CO,1-------,RQ,0901,,3730N 00412W, +,ES,TAR,Tarragona,Tarragona,,1234----,AI,9704,,4107N 00115E, +,ES,TBC,Torreblanca,Torreblanca,,--3-----,RQ,9501,,4013N 00012E, +,ES,TDD,Tudela de Duero,Tudela de Duero,,--3-----,RQ,9705,,4135N 00435W, +,ES,TEJ,Taradell,Taradell,,--3-----,RQ,9501,,4153N 00217E, +,ES,TEM,Tembleque,Tembleque,TO,1-3-----,RQ,0901,,3942N 00330W, +,ES,TJI,La Tejita,La Tejita,,1-------,AA,9709,,2802N 01633W, +,ES,TJR,Torrejon El Rubio,Torrejon El Rubio,,--3-----,RQ,9501,,3946N 00601W, +,ES,TLS,Torremolinos,Torremolinos,,--3-----,RQ,9501,,3637N 00430W, +,ES,TMA,Tomares,Tomares,,0-------,RQ,9307,,3723N 00603W, +,ES,TME,Tomelloso,Tomelloso,,--3-----,RQ,9501,,3910N 00301W, +,ES,TMS,Torre de Miguel Sesmero,Torre de Miguel Sesmero,BA,1-------,RQ,0901,,3837N 00648W, +,ES,TOR,Torrevieja,Torrevieja,,1-------,AI,9704,,3759N 00041W, +,ES,TOT,Tortosa,Tortosa,,1-------,RQ,8103,,4049N 00031E, +,ES,TOV,Torrelavid,Torrelavid,,0-------,RQ,9307,,4127N 00144E, +,ES,TPQ,Torrepacheco,Torrepacheco,,--3-----,RQ,9307,,3745N 00057W, +,ES,TQB,Tabernes Blanques,Tabernes Blanques,,0-------,RQ,9307,,3930N 00022W, +,ES,TQE,Terrassa,Terrassa,,0-------,RQ,9307,,4134N 00201E, +,ES,TRA,Trapaga,Trapaga,,--3-----,RQ,0101,,4318N 00302W, +,ES,TRF,Tarifa,Tarifa,CA,1-------,AI,1401,,3601N 00536W, +,ES,TRJ,Torrejon de Ardoz,Torrejon de Ardoz,,--3-----,RQ,9501,,4028N 00329W, +,ES,TSX,Tarrasa,Tarrasa,,--3-----,RQ,9501,,4134N 00201E, +,ES,TTO,Treto,Treto,,1-3-----,RQ,9806,,4313N 00324W,Cantabria +,ES,TVG,Torrelavega,Torrelavega,,--3-----,RQ,9501,,4321N 00403W, +,ES,TYZ,Talayuela,Talayuela,,--3-----,RQ,9501,,3959N 00537W, +,ES,UBD,Ubeda,Ubeda,,--3-----,RQ,9501,,3801N 00322W, +,ES,UBQ,Ubrique,Ubrique,,--3-----,RQ,9501,,3641N 00527W, +,ES,UMB,Umbrete,Umbrete,,--3-----,RQ,9501,,3722N 00609W, +,ES,USA,Usall,Usall,GI,--3-----,RQ,0907,,4209N 00245E, +,ES,UTA,Utrera,Utrera,,--3-----,RQ,9501,,3711N 00547W, +,ES,UTO,Montornes Del Valles,Montornes Del Valles,,0-------,RQ,9307,,4133N 00216E, +,ES,VAD,La Vall d'Uxo,La Vall d'Uxo,,--3-----,RL,9805,,3949N 00014W, +,ES,VAH,Valdehornillos,Valdehornillos,,0-------,RQ,9307,,3903N 00559W, +,ES,VAK,Visos Del Alcor,Visos Del Alcor,,0-------,RQ,9307,,3723N 00543W, +,ES,VAN,Villanueva de la Canada,Villanueva de la Canada,M,--3-----,RQ,0901,,4027N 00400W, +,ES,VAO,Valdemoro,Valdemoro,,--3-----,RQ,9501,,4011N 00340W, +,ES,VAR,Valderubio,Valderubio,,0-------,RQ,9307,,3714N 00349W, +,ES,VCA,Vallclara,Vallclara,,--3-----,RL,9811,,4123N 00059E, +,ES,VCH,Vilches,Vilches,,--3-----,RQ,9501,,3813N 00331W, +,ES,VCP,Valencia de la Concepcion,Valencia de la Concepcion,SE,--3-----,RQ,0212,,3725N 00604W, +,ES,VDQ,Vara de Quart,Vara de Quart,,0-------,RQ,9307,,3928N 00024W, +,ES,VDR,Villanueva Del Rio,Villanueva Del Rio,,--3-----,RQ,9501,,3738N 00541W, +,ES,VDU,Vall de Uxo,Vall de Uxo,,--3-----,RQ,9501,,3949N 00014W, +,ES,VEP,Valls,Valls,,--3-----,RQ,9501,,4117N 00115E, +,ES,VFR,Vilafranca del Penedes,Vilafranca del Penedes,,0-------,RQ,9307,,4121N 00142E, +,ES,VGL,Vergel,Vergel,,--3-----,RQ,9501,,3851N 00001E, +,ES,VGO,Vigo,Vigo,,1--4----,AI,9601,,4214N 00843W, +,ES,VGR,Valle Gran Rey,Valle Gran Rey,,1-------,AA,9709,,2807N 01719W, +,ES,VGU,Villafranco Del Guadiana,Villafranco Del Guadiana,,0-------,RQ,9307,,3853N 00652W, +,ES,VGZ,Villagonzalo,Villagonzalo,,--3-----,RQ,9501,,3852N 00612W, +,ES,VIC,Vic,Vic,,--3-----,RL,9805,,4156N 00215E, +,ES,VLA,Vallada,Vallada,,--3-----,RQ,9501,,3854N 00041W, +,ES,VLC,Valencia,Valencia,,12345---,AI,9601,,3928N 00023W, +,ES,VLL,Valladolid,Valladolid,VA,-234----,AI,1607,,4139N 00444W, +,ES,VLM,Villamayor de Monjardin,Villamayor de Monjardin,NA,-23--6--,RQ,0901,,4238N 00206W, +,ES,VLN,Villalonga,Villalonga,,--3-----,RQ,9501,,3853N 00012W, +,ES,VNA,Villena,Villena,,--3-----,RQ,9705,,3838N 00052W, +,ES,VRF,Villarrobledo,Villarrobledo,,--3-----,RQ,9501,,3916N 00236W, +,ES,VRG,Verges,Verges,,--3-----,RQ,9705,,4204N 00303E, +,ES,VSE,Vilaseca,Vilaseca,,--3-----,RQ,9501,,4322N 00717W, +,ES,VUL,Vulpellac,Vulpellac,,--3-----,RQ,0907,,4156N 00305E, +,ES,VVR,Vivares,Vivares,EX,1-------,RQ,0901,,3905N 00554W, +,ES,VVX,Villaviciosa,Villaviciosa,,--3-----,RQ,9501,,4329N 00526W, +,ES,VZR,Vinaroz,Vinaroz,,1-3-----,AI,9704,,4028N 00028E, +,ES,YAN,Gayanes,Gayanes,A,--3-----,RQ,0907,,3848N 00024W, +,ES,YEC,Yecla,Yecla,,--3-----,RQ,9501,,3837N 00107W, +,ES,ZAF,Zafra,Zafra,,--3-----,RQ,9501,,3826N 00625W, +,ES,ZAH,Zahinos,Zahinos,,--3-----,RQ,9501,,3820N 00657W, +,ES,ZAZ,Zaragoza,Zaragoza,,1234----,AI,9601,,4139N 00053W, +,ES,ZLM,San Lucar La Mayor,San Lucar La Mayor,,--3-----,RQ,9501,,3723N 00612W, +,ES,ZMY,Zumaya,Zumaya,,--3-----,RL,9805,,4318N 00215W, +,ES,ZQE,Santa Coloma de Queralt,Santa Coloma de Queralt,T,--3-----,RQ,0907,,4132N 00123E, +,ES,ZUB,Zubiri,Zubiri,,--3-----,RQ,9501,,4256N 00130W, +,ES,ZYY,Zafarraya,Zafarraya,,--3-----,RQ,9501,,3658N 00409W, +,ET,ADD,Addis Ababa,Addis Ababa,,---45---,AI,,,0902N 03845E, +,ET,AMH,Arba Mintch,Arba Mintch,,---4----,AI,9601,,0602N 03733E, +,ET,ASO,Asosa,Asosa,,---4----,AI,9601,,1004N 03433E, +,ET,AWA,Awassa,Awassa,,---4----,AI,9601,,0703N 03829E, +,ET,AXU,Axum,Axum,,---4----,AI,9601,,1407N 03844E, +,ET,BCO,Jinka,Jinka,,---4----,RQ,0901,,0547N 03634E, +,ET,BCY,Bulchi,Bulchi,,---4----,AI,9601,,0617N 03649E, +,ET,BJR,Bahar Dar,Bahar Dar,,---4----,AI,9601,,1136N 03723E, +,ET,DBM,Debra Marcos,Debra Marcos,,---4----,AI,9601,,1020N 03743E, +,ET,DEM,Dembidollo,Dembidollo,,---4----,AI,9601,,0832N 03448E, +,ET,DIR,Dire Dawa,Dire Dawa,,---45---,AI,,,0935N 04151E, +,ET,DSE,Dessie,Dessie,,---4----,AI,9601,,1107N 03938E, +,ET,GDQ,Gondar,Gondar,,---4----,AI,9601,,1237N 03728E, +,ET,GMB,Gambela,Gambela,,---4----,AI,9601,,0815N 03435E, +,ET,GOB,Goba,Goba,,---4----,AI,9601,,0700N 03958E, +,ET,GOR,Gore,Gore,,---4----,AI,9601,,0809N 03532E, +,ET,HUE,Humera,Humera,,---4----,AI,9601,,1417N 03637E, +,ET,JIM,Jimma,Jimma,,---4----,AI,9601,,0741N 03651E, +,ET,MKS,Mekane Selam,Mekane Selam,,---4----,AI,9601,,1045N 03845E, +,ET,MQX,Makale,Makale,,---4----,AI,9601,,1330N 03929E, +,ET,MTF,Mizan Teferi,Mizan Teferi,,---4----,AI,9601,,0660N 03535E, +,ET,MUJ,Mui,Mui,,---4----,AI,9601,,0603N 03533E, +,ET,MZX,Mena,Mena,,---4----,AI,,,0625N 03951E, +,ET,SXU,Soddu,Soddu,,---4----,AI,9601,,0854N 03656E, +,ET,TIE,Tippi,Tippi,,---4----,AI,9601,,0712N 03525E, +,ET,WAC,Waca,Waca,,---4----,AI,9601,,0704N 03710E, +,FI,AAN,��nekoski,Aanekoski,08,--3-----,AF,1307,,6236N 02544E, +,FI,ALV,Alavus,Alavus,03,--3-----,AF,1307,,6235N 02337E, +,FI,ATI,�ht�ri,Ahtari,,--3-----,RQ,0101,,6233N 02404E, +,FI,AVS,Aavasaksa,Aavasaksa,10,--3----B,AC,1307,,6623N 02342E, +,FI,FOR,F�rby,Forby,19,1-------,AF,1307,,6006N 02253E, +,FI,HAU,Haukipudas,Haukipudas,14,1-------,AF,1307,,6511N 02521E, +,FI,HEL,Helsinki (Helsingfors),Helsinki (Helsingfors),18,1-------,AI,1401,,6010N 02457E, +,FI,HKO,Hanko (Hang�),Hanko (Hango),18,1-------,AI,1307,,5949N 02258E, +,FI,HLK,Halikko,Halikko,19,--3-----,RL,1307,,6024N 02305E, +,FI,HMY,Tavastehus (H�meenlinna),Tavastehus (Hameenlinna),06,--3-----,AC,1307,QVM,6060N 02428E, +,FI,HRJ,Harjavalta,Harjavalta,17,--3-----,AF,1307,,6119N 02208E, +,FI,HYR,Hyryl�,Hyryla,18,--3-----,AF,1401,,6024N 02502E, +,FI,INK,Inkoo (Ing�),Inkoo (Inga),18,1-------,AI,1401,,6003N 02400E, +,FI,ISN,Isn�s,Isnas,18,1-------,AF,1401,,6023N 02560E, +,FI,JKA,Jokela,Jokela,15,--3-----,RQ,1401,,6241N 02722E, +,FI,JMS,J�ms�,Jamsa,07,--3-----,RL,1401,,6152N 02511E, +,FI,KIN,Kauniainen (Grankulla),Kauniainen (Grankulla),18,--3-----,RL,1307,,6013N 02444E, +,FI,KNP,Kankaanp��,Kankaanpaa,03,-23-----,AC,1401,,6301N 02326E, +,FI,KUL,Karhula,Karhula,09,--3-----,AF,1401,,6031N 02656E, +,FI,KUS,Kustavi (Gustavs),Kustavi (Gustavs),19,1-------,AI,1307,,6033N 02121E, +,FI,KVO,Kouvola,Kouvola,09,-23-----,AC,1401,UTI,6052N 02642E, +,FI,LAM,Lammi,Lammi,09,--3-----,RL,1401,,6101N 02617E, +,FI,LAN,L�ngn�s,Langnas,01,1------B,AC,1401,,6007N 02018E, +,FI,LHK,Luhtajoki,Luhtajoki,13,--3-----,AF,1401,,6021N 02447E, +,FI,LPI,Lappi,Lappi,14,--3-----,AF,1401,,6160N 02537E, +,FI,MAK,M�kel�,Makela,01,--3-----,RQ,1401,,6140N 02705E, +,FI,PNL,Pennala,Pennala,13,1-------,RQ,1401,,6242N 03016E, +,FI,PUU,Puumala,Puumala,04,1-------,AF,1401,,6131N 02811E, +,FI,PYH,Pyh�ranta,Pyharanta,19,--3-----,AF,1401,,6057N 02127E, +,FI,SAL,Salo,Salo,19,1-------,AF,1401,QVD,6023N 02308E, +,FI,SJY,Sein�joki,Seinajoki,03,-234----,AC,1401,,6248N 02251E, +,FI,SKB,Skogby,Skogby,18,1-------,AF,1401,,5955N 02319E, +,FI,SPK,Salpakangas,Salpakangas,18,--3-----,RL,1401,,6059N 02531E, +,FI,SRO,Somero,Somero,19,--3-----,RL,1401,,6038N 02331E, +,FI,STR,Str�mma,Stromma,19,1-------,AF,1401,,6009N 02132E, +,FI,TEI,Teijo,Teijo,19,1-------,AF,1401,,6015N 02257E, +,FI,TJA,Toijala,Toijala,11,-23-----,RL,1401,,6110N 02352E, +,FI,UUS,Uusi-Valamo/Hein�vesi,Uusi-Valamo/Heinavesi,04,1-3-----,RQ,1401,,6234N 02847E, +,FI,VAI,Vainikkala,Vainikkala,02,-2-----B,AF,1401,,6052N 02818E, +,FI,VKO,Valkom (Valko),Valkom (Valko),18,1-3-----,AC,1401,,6025N 02614E, +,FJ,BFJ,Ba,Ba,,---4----,AI,9912,,1733S 17741E, +,FJ,BVF,Bua,Bua,,---4----,AI,9912,,1648S 17837E, +,FJ,CST,Castaway,Castaway,,---4----,AI,9912,,1744S 17708E, +,FJ,ICI,Cicia,Cicia,,---4----,AI,9912,,1745S 17919W, +,FJ,KAY,Wakaya Island,Wakaya Island,,0-------,AI,9912,,1737S 17900E, +,FJ,KDV,Kandavu,Kandavu,,0-------,AI,9912,,1903S 17822E, +,FJ,KVU,Korolevu,Korolevu,,0-------,AI,9912,,1813S 17744E, +,FJ,KXF,Koro Island,Koro Island,,0-------,AI,9912,,1719S 17924E, +,FJ,LKB,Lakeba,Lakeba,,0-------,AI,9912,,1813S 17848W, +,FJ,LUC,Laucala Is,Laucala Is,,0-------,AI,9912,,1646S 17941W, +,FJ,MFJ,Moala,Moala,,0-------,AI,9912,,1837S 17952E, +,FJ,MNF,Mana Island,Mana Island,,0-------,AI,9912,,1741S 17707E, +,FJ,NAN,Nadi,Nadi,,---45---,AI,9601,,1748S 17725E, +,FJ,NGI,Ngau Island,Ngau Island,,0-------,AI,9912,,1804S 17919E, +,FJ,NTA,Natadola,Natadola,,0-------,AI,9912,,1806S 17719E, +,FJ,PHR,Pacific Harbor,Pacific Harbor,,0-------,AI,9912,,1814S 17804E, +,FJ,RBI,Rabi,Rabi,,0-------,AI,9912,,1629S 17958W, +,FJ,RTA,Rotuma,Rotuma,,1--4----,AI,9506,,1230S 17706E, +,FJ,SVU,Savusavu,Savusavu,,1--4----,AI,9601,,1647S 17920E, +,FJ,TTL,Turtle Island,Turtle Island,,0-------,AI,9912,,1657S 17723E, +,FJ,TVU,Taveuni,Taveuni,,0-------,AI,9912,,1650S 17956W, +,FJ,VAU,Vatukoula,Vatukoula,,0-------,AI,9912,,1731S 17751E, +,FJ,VTF,Vatulele,Vatulele,,0-------,AI,9912,,1833S 17738E, +,FJ,YAS,Yasawa Island,Yasawa Island,,0-------,AI,9912,,1646S 17732E, +,FK,FBE,Fox Bay,Fox Bay,,1---5---,AI,9808,,5157S 06004W, +,FK,PSY,Port Stanley,Port Stanley,,1--4----,AI,9601,,5142S 05751W, +,FM,KSA,Kosrae (ex Kusaie),Kosrae (ex Kusaie),,1--4----,AI,9601,,0519N 16259E, +,FM,PNI,Pohnpei (ex Ponape),Pohnpei (ex Ponape),,1--4----,AI,9601,,0653N 15814E, +,FM,TKK,Chuuk (ex Truk),Chuuk (ex Truk),,1--4----,AI,9506,,0727N 15151E, +,FM,ULI,Ulithi,Ulithi,,0-------,AI,9912,,0958N 13936E, +,FM,YAP,Yap,Yap,,1--4----,AI,9601,,0933N 13810E, +,FO,FAE,F�r�� Islands-Vagar Apt,Faroo Islands-Vagar Apt,,---4----,AI,9601,,6204N 00717W, +,FO,FUG,Fuglafj�rdur,Fuglafjordur,,1-------,RL,0701,,6215N 00649W, +,FO,HUS,Husevig,Husevig,,1-------,RL,8401,,6149N 00641W, +,FO,KVI,Klaksvik,Klaksvik,,1-------,RL,8401,,6214N 00635W, +,FO,LOP,Lopra,Lopra,,1-------,RQ,9506,,6127N 00646W, +,FO,SMJ,Solmundefjord,Solmundefjord,,1-------,RQ,9012,,6210N 00645W, +�,FR,BRD,Bordes,Bordes,65,--3-----,RQ,2207,,4312N 00013E,More than one place with this name@Sub +�,FR,DXA,Les Deux Alpes,Les Deux Alpes,38,--34----,AF,2207,,4501N 00607E,@Fun +x,FR,RUL,Rully,Rully,,--3-----,XX,2207,,4652N 00445E, +,GA,AKE,Akieni,Akieni,,---4----,AI,9601,,0036S 01255E, +,GA,BMM,Bitam,Bitam,,---4----,AI,9601,,0205N 01130E, +,GA,CCB,Cocobeach,Cocobeach,,1-------,RL,9811,,0100N 00935E, +,GA,CLZ,Cap Lopez,Cap Lopez,,1-------,QQ,8103,,0038S 00843E, +,GA,FOU,Fougamou,Fougamou,,---4----,AI,9601,,0113S 01035E, +,GA,GAX,Gamba,Gamba,,1--4----,AI,9601,,0243S 01001E, +,GA,KDJ,Ndjol�,Ndjole,,---4----,AI,0212,,0011S 01046E, +,GA,KDN,Ndende,Ndende,,---4----,AI,9601,,0224S 01121E, +,GA,LBQ,Lambarene,Lambarene,,---4----,AI,9601,,0042S 01013E, +,GA,LBV,Libreville,Libreville,,1--45---,AI,9601,,0025N 00927E, +,GA,LCN,Leconi,Leconi,,---4----,RQ,0901,,0138S 01336E, +,GA,MBC,Mbigou,Mbigou,,---4----,AI,9601,,0154S 01155E, +,GA,MBY,M'bya Terminal,M'bya Terminal,,1-------,RQ,9506,,0353S 01056E, +,GA,MFF,Moanda,Moanda,,---4----,AI,9601,,0133S 01313E, +,GA,MJL,Mouila,Mouila,,---4----,AI,9601,,0152S 01104E, +,GA,MKU,Makokou,Makokou,,---4----,AI,9601,,0034N 01251E, +,GA,MVB,Franceville,Franceville,,---4----,AI,8103,,0138S 01335E, +,GA,MZC,Mitzic,Mitzic,,---4----,AI,9601,,0047N 01133E, +,GA,NYA,Nyanga,Nyanga,,1-------,RQ,9506,,0154S 01123E, +,GA,OKN,Okondja,Okondja,,---4----,AI,9601,,0039S 01341E, +,GA,OWE,Owendo,Owendo,,1--4----,AI,9601,,0019N 00930E, +,GA,OYE,Oyem,Oyem,,---4----,AI,9601,,0136N 01135E, +,GA,POG,Port Gentil,Port Gentil,,1--45---,AI,9601,,0043S 00847E, +,GA,TCH,Tchibanga,Tchibanga,,---4----,AI,9601,,0255S 01060E, +,GB,ABB,Abbots Langley,Abbots Langley,HRT,--3-----,AF,9804,,5142N 00025W, +,GB,ABE,Aberdare,Aberdare,POW,--3-----,AF,9511,,5142N 00327W, +,GB,ABG,Abridge,Abridge,ESS,--3-----,AF,9811,,5139N 00007E, +,GB,ABN,Abington,Abington,NTH,--3-----,AF,9704,,5215N 00052W, +,GB,ABR,Appley Bridge,Appley Bridge,LAN,--3-----,AF,9511,,5335N 00243W, +,GB,ACH,Auchterarder,Auchterarder,PKN,--3-----,AF,1401,,5618N 00342W, +,GB,ACN,Acton,Acton,SHR,--3-----,AF,1401,,5227N 00301W, +,GB,ACR,Accrington,Accrington,LAN,--3-----,AF,9511,,5345N 00222W, +,GB,ACS,Alcester,Alcester,WAR,--3-----,AF,9511,,5212N 00152W, +,GB,ACT,Acton Grange,Acton Grange,CHE,0-------,AF,1307,,5305N 00234W, +,GB,ADB,Aldbourne,Aldbourne,WIL,--3-----,AF,9907,,5128N 00137W, +,GB,ADI,Addington,Addington,KEN,--3-----,AF,9811,,5118N 00022E, +,GB,ADL,Adlington,Adlington,LAN,--3-----,AF,9511,,5336N 00236W, +,GB,ADN,Addlestone,Addlestone,SRY,--3-----,AF,9704,,5122N 00029W, +,GB,ADY,Adderbury,Adderbury,OXF,--3-----,AF,9511,,5201N 00118W, +,GB,AEW,Hanwell,Hanwell,LND,1-------,RQ,0901,,5131N 00020W, +,GB,AEY,Arley,Arley,WAR,--3-----,AF,9704,,5230N 00135W, +,GB,AGN,Abingdon,Abingdon,OXF,--34----,AF,9511,ABB,5140N 00117W, +,GB,AIE,Aviemore,Aviemore,HLD,--3-----,RQ,0901,,5712N 00350W, +,GB,AKV,Aughnacloy,Aughnacloy,DGN,--3-----,AF,9804,,5425N 00659W, +,GB,ALB,Aldeburgh,Aldeburgh,SFK,1-3-----,AF,9811,,5209N 00136E, +,GB,ALD,Aldershot,Aldershot,HAM,--3-----,AF,9511,,5114N 00045W, +,GB,ALE,Alderley Edge,Alderley Edge,CHE,--3-----,AF,1307,,5318N 00214W, +,GB,ALF,Alfreton,Alfreton,DBY,--3-----,AF,9511,,5305N 00122W, +,GB,ALG,Alsager,Alsager,CHE,--3-----,AF,1307,,5305N 00217W, +,GB,ALM,Alnmouth,Alnmouth,NBL,1-3-----,AF,9811,,5523N 00137W, +,GB,ALN,Alton,Alton,HAM,--3-----,AF,9511,,5109N 00058W, +,GB,ALS,Alston,Alston,CMA,--3-----,AF,9511,,5448N 00226W, +,GB,ALW,Alnwick,Alnwick,NBL,--3-----,AF,9511,,5524N 00142W, +,GB,ALY,Alconbury,Alconbury,CAM,--34----,AF,9511,AYH,5221N 00016W, +,GB,AMB,Amble,Amble,NBL,1-------,AF,9511,,5519N 00135W, +,GB,AME,Amersham,Amersham,BKM,--3-----,AF,9511,,5140N 00036W, +,GB,AMG,Ambergate,Ambergate,DBY,-23-----,AF,9704,,5303N 00128W, +,GB,AML,Ambleside,Ambleside,CMA,1-3-----,AF,9811,,5426N 00258W, +,GB,AMS,Amesbury,Amesbury,WIL,--3-----,AF,9704,,5110N 00146W, +,GB,ANT,Antrim,Antrim,ANT,--3-----,AF,9511,,5443N 00613W, +,GB,ANW,Annesley Woodhouse,Annesley Woodhouse,NTT,-23-----,AF,9704,,5304N 00115W, +,GB,AON,Aston,Aston,ROT,--3--6--,RQ,1401,,5230N 00153W, +,GB,APL,Appleton,Appleton,OXF,--3-----,AF,9704,,5142N 00121W, +,GB,AQO,Ash,Ash,KEN,--3-----,AF,9704,,5116N 00117E, +,GB,ARB,Arbroath,Arbroath,ANS,1-------,AF,1401,,5634N 00235W, +,GB,ARI,Armitage,Armitage,STS,--3-----,AF,9511,,5244N 00152W, +,GB,ARL,New Alresford,New Alresford,HAM,--3-----,AF,9511,,5105N 00110W, +,GB,ARM,Armagh,Armagh,ARM,--3-----,AF,9511,,5457N 00151W, +,GB,ARN,Arnesby,Arnesby,LEC,--3-----,AF,9804,,5231N 00105W, +,GB,ARO,Arnold,Arnold,NTT,--3-----,AF,9811,,5300N 00108W, +,GB,ARR,Arrington,Arrington,CAM,1-------,AF,9704,,5208N 00003W, +,GB,ARU,Arundel,Arundel,WSX,--3-----,AF,9511,,5051N 00034W, +,GB,ASD,Ashford,Ashford,KEN,--3-----,AF,9511,QDH,5108N 00052E, +,GB,ASE,Allestree,Allestree,DBY,--3-----,AF,9907,,5257N 00129W, +,GB,ASF,Ashford,Ashford,SRY,--3-----,AF,9811,,5126N 00028W, +,GB,ASH,Ashbourne,Ashbourne,DBY,--3-----,AF,9511,,5300N 00143W, +,GB,ASO,Aston,Aston,HRT,--3-----,AF,9704,,5153N 00009W, +,GB,AST,Ashington,Ashington,NBL,--3-----,AF,9704,,5511N 00134W, +,GB,ASW,Ashwell,Ashwell,LEC,1-------,AF,9704,,5202N 00009W, +,GB,ATF,Athelstaneford,Athelstaneford,ELN,--3-----,RQ,0901,,5559N 00245W, +,GB,ATN,Aston Clinton,Aston Clinton,BKM,--3-----,AF,9704,,5148N 00044W, +,GB,ATT,Attenborough,Attenborough,NTT,-23-----,AF,9704,,5255N 00114W, +,GB,AVE,Aveley,Aveley,ESS,--3-----,AF,9511,,5130N 00015E, +,GB,AVL,Alveley,Alveley,SHR,1-------,AF,9704,,5227N 00220W, +,GB,AVR,Andover,Andover,HAM,--34----,AF,9511,ADV,5112N 00129W, +,GB,AWL,Attleborough,Attleborough,NFK,--3-----,AF,9511,,5231N 00101E, +,GB,AWR,Ailsworth,Ailsworth,CAM,--3-----,AF,9704,,5234N 00021W, +,GB,AXN,Barnham,Barnham,SFK,1-------,RQ,0901,,5223N 00045E, +,GB,AYB,Apperley Bridge,Apperley Bridge,,-----6--,RL,1107,,5350N 00142W, +,GB,AYE,Aylesham,Aylesham,KEN,-23-----,AF,9704,,5114N 00112E, +,GB,AYF,Aycliffe,Aycliffe,DUR,1-------,AF,9511,,5437N 00134W, +,GB,AYL,Aylesbury,Aylesbury,BKM,--3-----,AF,9511,,5149N 00049W, +,GB,AYS,Aylesford,Aylesford,KEN,--3-----,AF,9511,,5119N 00029E, +,GB,BAA,Bala,Bala,GWN,--3-----,RL,0002,,5255N 00336W, +,GB,BAB,Banbury,Banbury,OXF,1-------,AF,9511,,5204N 00120W, +,GB,BAE,Ballyclare,Ballyclare,ANT,--3-----,AF,9511,,5445N 00600W, +,GB,BAF,Barrowford,Barrowford,LAN,-23-----,AF,9704,,5351N 00213W, +,GB,BAG,Baginton,Baginton,WAR,--3-----,AF,9511,,5222N 00130W, +,GB,BAK,Barnoldswick,Barnoldswick,LAN,--3-----,AF,9511,,5355N 00211W, +,GB,BAL,Baldock,Baldock,HRT,--3-----,AF,9511,,5159N 00011W, +,GB,BAM,Bingham,Bingham,NTT,--3-----,AF,9704,,5257N 00057W, +,GB,BAN,Bangor,Bangor,DOW,1-3-----,RL,9904,,5314N 00408W, +,GB,BAO,Bascote,Bascote,WAR,--3-----,AF,9704,,5216N 00125W, +,GB,BAP,Bacup,Bacup,LAN,--3-----,AF,9511,,5342N 00212W, +,GB,BAS,Basildon,Basildon,ESS,--3-----,AF,9511,,5135N 00029E, +,GB,BAT,Battlesbridge,Battlesbridge,ESS,1-------,AF,9511,,5137N 00034E, +,GB,BAU,Baulking,Baulking,OXF,--3-----,AF,9511,,5137N 00133W, +,GB,BAV,Bidford,Bidford,WAR,--3-----,AF,9511,,5210N 00151W, +,GB,BAW,Baltic Wharf,Baltic Wharf,KEN,1-------,AF,1401,,5127N 00022E, +,GB,BBB,Breaston,Breaston,DRY,1-------,RQ,0901,,5254N 00119W, +,GB,BBC,Benbecula,Benbecula,,---4----,AI,0001,BEB,5728N 00721W, +,GB,BBG,Banbridge,Banbridge,BNB,--3-----,RL,9904,,5421N 00616W, +,GB,BBH,Bilborough,Bilborough,NTT,--3-----,AF,0212,,5258N 00113W, +,GB,BBR,Boroughbridge,Boroughbridge,NYK,--3-----,AF,9704,,5406N 00124W, +,GB,BBS,Blackbush,Blackbush,,---4----,AI,0001,,5159N 00254W, +,GB,BCA,Barnard Castle,Barnard Castle,DUR,--3-----,AF,9907,,5433N 00155W, +,GB,BCC,Beccles,Beccles,SFK,--3-----,AF,9704,,5228N 00134E, +,GB,BCK,Brackley,Brackley,NTH,--3-----,AF,9511,,5202N 00109W, +,GB,BCM,Balcombe,Balcombe,WSX,--3-----,RQ,0901,,5103N 00008W, +,GB,BCY,Barton in the Clay,Barton in the Clay,CBF,--3-----,AF,1307,,5158N 00025W, +,GB,BDC,Bordon Camp,Bordon Camp,CAM,--3-----,AF,9704,,5107N 00052W, +,GB,BDL,Bedale,Bedale,NYK,--3-----,AF,9704,,5417N 00135W, +,GB,BDM,Bodmin,Bodmin,CON,--3-----,AF,9704,,5028N 00443W, +,GB,BDP,Birdlip,Birdlip,GLS,--3-----,RQ,0901,,5150N 00206W, +,GB,BDU,Biddulph,Biddulph,STS,--3-----,AF,9811,,5307N 00210W, +,GB,BDX,Baldirton,Baldirton,CHW,1-------,RQ,1307,,5309N 00256W, +,GB,BEA,Beaconsfield,Beaconsfield,BKM,--3-----,AF,9511,,5136N 00039W, +,GB,BEC,Beckingham,Beckingham,LIN,1-------,AF,9511,,5304N 00042W, +,GB,BED,Bedfont,Bedfont,HNS,--3-----,RQ,1401,,5127N 00026W, +,GB,BEE,Beeston,Beeston,NTT,0-------,AF,9511,,5256N 00113W, +,GB,BEF,Bedford,Bedford,BDF,--3-----,AF,1307,XQD,5208N 00028W, +,GB,BEM,Burslem,Burslem,STS,--3-----,AF,9704,,5303N 00212W, +,GB,BEO,Burrelton,Burrelton,PKN,--3-----,AF,1401,,5631N 00318W, +,GB,BEU,Bures,Bures,SFK,--3-----,AF,9511,,5158N 00047E, +,GB,BEY,Bromley,Bromley,KEN,--3-----,AF,9704,,5106N 00051E, +,GB,BFB,Braefoot Bay,Braefoot Bay,FIF,1-------,AF,9709,,5603N 00319W, +,GB,BFH,Bramfield,Bramfield,HRT,--3-----,AF,9804,,5149N 00008W, +,GB,BFL,berinsfield,berinsfield,OXF,--3-----,RQ,0901,,5140N 00110W, +,GB,BGD,Bridgend,Bridgend,ANS,--3-----,AF,1401,,5648N 00246W, +,GB,BGK,Basingstoke,Basingstoke,HAM,--3-----,AF,9511,XOB,5116N 00105W, +,GB,BGN,Borough Green,Borough Green,KEN,-23-----,AF,9804,,5117N 00019E, +,GB,BGR,Burnham Green,Burnham Green,HRT,--3-----,AF,9704,,5150N 00010W, +,GB,BGS,Bagshot,Bagshot,SRY,--3-----,AF,9704,,5122N 00042W, +,GB,BGT,Billingshurst,Billingshurst,WSX,--3-----,AF,9511,,5101N 00027W, +,GB,BGW,Ballygowan,Ballygowan,DOW,--3-----,AF,9511,,5430N 00548W, +,GB,BHH,Buckhurst Hill,Buckhurst Hill,ESS,-23-----,AF,9704,,5138N 00002E, +,GB,BHK,Bromborough,Bromborough,WRL,1-------,AF,1401,,5320N 00259W, +,GB,BHP,Beckhampton,Beckhampton,WIL,--3-----,AF,9704,,5125N 00152W, +,GB,BHV,Buckhaven,Buckhaven,FIF,--3-----,AF,9704,,5611N 00302W, +,GB,BIC,Bicester,Bicester,OXF,--3-----,AF,9511,,5154N 00109W, +,GB,BIG,Bridgtown,Bridgtown,STS,--3-----,AF,9804,,5240N 00202W, +,GB,BIL,Billericay,Billericay,ESS,--3-----,AF,9511,,5138N 00025E, +,GB,BIP,Bishop Auckland,Bishop Auckland,DUR,1-------,AF,9511,,5440N 00141W, +,GB,BIR,Birtley,Birtley,GAT,--3-----,AF,1401,,5454N 00135W, +,GB,BIS,Bilston,Bilston,WLV,--3-----,AF,1401,,5234N 00205W, +,GB,BIW,Biggleswade,Biggleswade,CBF,--3-----,AF,1307,,5205N 00016W, +,GB,BIX,Brixworth,Brixworth,NTH,--3-----,AF,9704,,5219N 00053W, +,GB,BKD,Buckden,Buckden,CAM,1-------,AF,9704,,5218N 00015W, +,GB,BKG,Barking/London,Barking/London,ESS,123-----,AF,0201,,5132N 00005E, +,GB,BKH,Berkhamsted,Berkhamsted,HRT,--3-----,AF,9704,,5145N 00033W, +,GB,BKP,Brookmans Park,Brookmans Park,HRT,--3-----,AF,9704,,5143N 00011W, +,GB,BKR,Brockworth,Brockworth,GLS,--3-----,AF,9704,,5151N 00209W, +,GB,BKT,Brockenhurst,Brockenhurst,HAM,-23-----,AF,9804,,5049N 00135W, +,GB,BKW,Bakewell,Bakewell,DBY,--3-----,AF,9511,,5313N 00141W, +,GB,BKY,Blockley,Blockley,GLS,--3-----,AF,9907,,5201N 00144W, +,GB,BLA,Blackford,Blackford,SOM,--3-----,AF,9511,,5102N 00229W, +,GB,BLB,Blackburn,Blackburn,LAN,1-------,AF,9511,,5350N 00228W, +,GB,BLE,Bletchley,Bletchley,BKM,--3-----,AF,9511,,5160N 00044W, +,GB,BLF,Blandford Forum,Blandford Forum,DOR,--3-----,AF,9511,,5052N 00209W, +,GB,BLK,Blackpool,Blackpool,LAN,1--4----,AF,9511,,5346N 00303W, +,GB,BLM,Ballymoney,Ballymoney,BLY,--3-----,AF,9511,,5504N 00631W, +,GB,BLN,Bletchingley,Bletchingley,SRY,--3-----,AF,9704,,5114N 00006W, +,GB,BLP,Belper,Belper,DBY,--3-----,AF,9511,,5301N 00129W, +,GB,BLS,Brightlingsea,Brightlingsea,ESS,1-------,AF,9511,,5149N 00101E, +,GB,BLY,Blyth,Blyth,NBL,1-------,AF,9511,,5508N 00131W, +,GB,BMA,Burnham-on-Sea,Burnham-on-Sea,SOM,--3-----,RL,0002,,5114N 00260W, +,GB,BMB,Bamberbridge,Bamberbridge,LAN,-23-----,AF,9907,,5344N 00240W, +,GB,BMD,Borehamwood,Borehamwood,HRT,--3-----,AF,9511,,5140N 00016W, +,GB,BMN,Beaminster,Beaminster,DOR,--3-----,AF,9711,,5049N 00244W, +,GB,BMP,Brompton,Brompton,KEN,-23-----,AF,9907,,5130N 00011W, +,GB,BMR,Beaumaris,Beaumaris,GWN,1-------,AF,9511,,5316N 00406W, +,GB,BMY,Bramley,Bramley,ROT,--3-----,AF,1401,,5349N 00138W, +,GB,BNE,Bran End,Bran End,ESS,--3-----,AF,9704,,5154N 00024E, +,GB,BNF,Benfield,Benfield,DGY,--3-----,AF,9704,,5325N 00204W, +,GB,BNG,Bangor,Bangor,GWN,1-------,AF,9511,,5314N 00408W, +,GB,BNL,Binley,Binley,HAM,--3-----,AF,9704,,5117N 00124W, +,GB,BNM,Barton,Barton,CHW,1-------,AF,1401,,5305N 00250W, +,GB,BNT,Bridgnorth,Bridgnorth,SHR,--3-----,AF,9511,,5232N 00225W, +,GB,BNW,Burtonwood,Burtonwood,WRT,--34----,AF,1307,BUT,5326N 00239W, +,GB,BNX,Blackwell,Blackwell,DBY,1-------,RQ,0901,,5307N 00121W, +,GB,BOA,Bradford on Avon,Bradford on Avon,WIL,--3-----,RQ,0101,,5121N 00215W, +,GB,BOD,Boscombe,Boscombe,DOR,--3-----,AF,9511,,5044N 00150W, +,GB,BOI,Bollington,Bollington,CHE,--3-----,AF,1307,,5318N 00207W, +,GB,BOL,Botley,Botley,BKM,1-------,AF,9704,,5145N 00118W, +,GB,BOR,Borden,Borden,KEN,--3-----,AF,9511,,5120N 00041E, +,GB,BOS,Boston,Boston,LIN,1-------,AF,9511,,5259N 00001W, +,GB,BOY,Botley,Botley,HAM,--3-----,AF,9511,,5055N 00116W, +,GB,BPM,Burpham,Burpham,SRY,--3-----,AF,9804,,5115N 00033W, +,GB,BPW,Bishop's Waltham,Bishop's Waltham,HAM,--3-----,AF,9704,,5058N 00113W, +,GB,BQY,Broseley,Broseley,SHR,--3-----,AF,9704,,5237N 00229W, +,GB,BRD,Bridgend,Bridgend,AGB,--3-----,AF,1401,,5547N 00615W, +,GB,BRI,Braintree,Braintree,ESS,--3-----,AF,9511,,5153N 00033E, +,GB,BRL,Barwell,Barwell,LEC,--3-----,AF,9704,,5234N 00122W, +,GB,BRM,Brantham,Brantham,SFK,--3-----,AF,9704,,5158N 00104E, +,GB,BRN,Burnley,Burnley,LAN,1-------,AF,9511,,5347N 00215W, +,GB,BRP,Bridport,Bridport,DOR,1-------,AF,9511,,5044N 00246W, +,GB,BRR,Barra,Barra,,1--4----,AI,0001,,5700N 00728W, +,GB,BRS,Bristol,Bristol,BST,1234----,AF,0607,,5127N 00236W, +,GB,BRW,Bridgwater,Bridgwater,SOM,1-------,AF,9511,,5108N 00300W, +,GB,BRZ,Brenchley,Brenchley,KEN,--3-----,AF,9704,,5109N 00024E, +,GB,BSA,Banstead,Banstead,SRY,--3-----,RL,0002,,5115N 00011W, +,GB,BSE,Bury Saint Edmunds,Bury Saint Edmunds,SFK,--34----,AF,1101,BEQ,5215N 00043E, +,GB,BSF,Bassingfield,Bassingfield,NTT,--3-----,AF,9907,,5256N 00105W, +,GB,BSH,Brighton,Brighton,ESX,1--4----,AF,9511,,5049N 00008W, +,GB,BSL,Bosley,Bosley,CHE,1-------,AF,1307,,5311N 00207W, +,GB,BSM,Bourton,Bourton,NSM,1-------,RQ,0901,,5125N 00243W, +,GB,BSO,Bolsover,Bolsover,DBY,0-------,AF,9811,,5314N 00117W, +,GB,BSR,Bransgore,Bransgore,HAM,--3-----,AF,9804,,5046N 00143W, +,GB,BST,Bishop's Stortford,Bishop's Stortford,HRT,--3-----,AF,9511,,5152N 00010E, +,GB,BTA,Broughton Astley,Broughton Astley,LEC,--3-----,RL,0002,,5232N 00114W, +,GB,BTC,Barton Stacey,Barton Stacey,HAM,--3-----,AF,9704,,5110N 00123W, +,GB,BTE,Battle,Battle,ESX,--3-----,AF,9704,,5056N 00029E, +,GB,BTI,Bailleston,Bailleston,GLG,--3-----,RQ,0901,,5551N 00407W, +,GB,BTL,Burntisland,Burntisland,FIF,1-------,AF,9511,,5604N 00314W, +,GB,BTR,Burton upon Trent,Burton upon Trent,STS,0-------,AF,9511,,5248N 00138W, +,GB,BTS,Bircotes,Bircotes,NTT,--3-----,AF,9704,,5325N 00103W, +,GB,BTW,Betchworth,Betchworth,SRY,--3-----,AF,9704,,5114N 00016W, +,GB,BTY,Botley,Botley,OXF,--3-----,AF,9511,,5145N 00118W, +,GB,BUB,Bugbrooke,Bugbrooke,NTH,--3-----,AF,9704,,5213N 00100W, +,GB,BUE,Bursledon,Bursledon,HAM,--3-----,AF,9704,,5053N 00119W, +,GB,BUG,Bungay,Bungay,SFK,--3-----,AF,9511,,5227N 00126E, +,GB,BUI,Builth Wells,Builth Wells,POW,--3-----,AF,9704,,5209N 00324W, +,GB,BUK,Buckingham,Buckingham,BKM,--3-----,AF,9511,,5160N 00059W, +,GB,BUL,Burgess Hill,Burgess Hill,WSX,--3-----,AF,9511,,5057N 00008W, +,GB,BUM,Burnham,Burnham,BKM,--3-----,AF,9511,,5133N 00039W, +,GB,BUN,Burton,Burton,LIN,--3-----,AF,9511,,5315N 00036W, +,GB,BUR,Bourne,Bourne,LIN,--3-----,AF,9704,,5246N 00023W, +,GB,BUT,Burton Latimer,Burton Latimer,NTH,--3-----,RQ,0901,,5222N 00040W, +,GB,BUW,Burntwood,Burntwood,STS,--3-----,AF,9808,,5241N 00155W, +,GB,BUX,Buxton,Buxton,DBY,--3-----,AF,9511,,5316N 00155W, +,GB,BUZ,Burley,Burley,HAM,--3-----,AF,9704,,5050N 00142W, +,GB,BVD,Bovingdon,Bovingdon,DOR,--3-----,AF,9704,,5135N 00048W, +,GB,BVZ,Bovington Camp,Bovington Camp,DOR,-----6--,RQ,0901,,5042N 00214W, +,GB,BWD,Brentwood,Brentwood,ESS,--3-----,AF,9511,,5137N 00018E, +,GB,BWO,Bedworth,Bedworth,WAR,--3-----,AF,9901,,5230N 00128W, +,GB,BWR,Burrow,Burrow,SOM,1-------,AF,9511,,5059N 00250W, +,GB,BWS,Brownhills,Brownhills,WLL,--3-----,AF,1401,,5239N 00156W, +,GB,BWW,Brinkworth,Brinkworth,WIL,--3-----,AF,9804,,5134N 00159W, +,GB,BWX,Brettenham,Brettenham,NFK,1-------,RQ,0901,,5225N 00050E, +,GB,BXD,Boxted,Boxted,ESS,--3-----,AF,9704,,5157N 00054E, +,GB,BXR,Burwell,Burwell,CAM,--3-----,AF,9812,,5217N 00020E, +,GB,BXY,Bunny,Bunny,NTT,--3--6--,RQ,0901,,5252N 00108W, +,GB,BYC,Ballycastle,Ballycastle,ANT,1-3-----,AF,9808,,5512N 00615W, +,GB,BYE,Bushey Heath,Bushey Heath,HRT,--3-----,AF,9704,,5138N 00021W, +,GB,BYF,Byfleet,Byfleet,SRY,--3-----,AF,9511,,5120N 00028W, +,GB,BYM,Ballymena,Ballymena,BLA,-23-----,AF,9804,,5452N 00617W, +,GB,BYT,Bradworthy,Bradworthy,DEV,--3-----,RQ,0901,,5054N 00424W, +,GB,CAA,Caldecote,Caldecote,CAM,1-------,RQ,0901,,5211N 00002W, +,GB,CAC,Castle Cary,Castle Cary,SOM,--3-----,AF,9511,,5105N 00232W, +,GB,CAD,Castle Donington,Castle Donington,LEC,--3-----,AF,9511,,5250N 00120W, +,GB,CAO,Carlton,Carlton,NYK,-23-----,AF,9704,,5343N 00101W, +,GB,CAT,Catrine,Catrine,EAY,--3-----,AF,1401,,5530N 00420W, +,GB,CAX,Carlisle,Carlisle,CMA,1--4----,AF,9511,,5454N 00256W, +,GB,CAY,Camberley,Camberley,SRY,--3-----,AF,9511,,5120N 00045W, +,GB,CBH,Cobham,Cobham,KEN,--3-----,AF,9704,,5124N 00025E, +,GB,CBK,Cranbrook,Cranbrook,KEN,--3-----,AF,9511,,5106N 00032E, +,GB,CBR,Colnbrook,Colnbrook,SRY,--3-----,AF,1401,,5129N 00031W, +,GB,CBY,Corby,Corby,NTH,--3-----,AF,9511,,5229N 00042W, +,GB,CCN,Chipping Campden,Chipping Campden,GLS,--3-----,AF,9511,,5203N 00147W, +,GB,CCS,Chatteris,Chatteris,CAM,--3-----,RL,0901,,5227N 00003E, +,GB,CDA,Cheddar,Cheddar,SOM,--3-----,AF,9811,,5117N 00247W, +,GB,CDE,Chadwell Saint Mary,Chadwell Saint Mary,ESS,--3-----,AF,1101,,5129N 00022E, +,GB,CDL,Cheadle,Cheadle,STS,--3-----,AF,9511,,5259N 00160W, +,GB,CDU,Cowfold,Cowfold,WSX,-----6--,RQ,0901,,5059N 00016W, +,GB,CED,Coleford,Coleford,GLS,--3-----,AF,9511,,5148N 00237W, +,GB,CEG,Chester,Chester,CHW,1--4----,AF,1307,,5311N 00253W, +,GB,CEH,Cheadle Heath,Cheadle Heath,47,--3-----,RQ,0901,,5324N 00212W, +,GB,CEM,Clayton-le-Moors,Clayton-le-Moors,LAN,--3-----,AF,9704,,5346N 00223W, +,GB,CEN,Colerne,Colerne,WIL,--3-----,AF,9704,,5126N 00216W, +,GB,CER,Chesterton,Chesterton,STS,--3-----,AF,9704,,5302N 00215W, +,GB,CES,Chesterfield,Chesterfield,DBY,--3-----,AF,9511,,5314N 00126W, +,GB,CEY,Cowley,Cowley,OXF,--3-----,AF,9511,,5144N 00113W, +,GB,CFG,Carrickfergus,Carrickfergus,CKF,1-------,AF,9709,,5443N 00548W, +,GB,CFL,Cuckfield,Cuckfield,WSX,--3-----,AF,9811,,5100N 00008W, +,GB,CFO,Chandlers Ford,Chandlers Ford,HAM,-23-----,AF,9704,,5059N 00123W, +,GB,CGD,Claygate,Claygate,SRY,--3-----,AF,9704,,5122N 00020W, +,GB,CGH,Cranleigh,Cranleigh,SRY,--3-----,AF,9511,,5108N 00030W, +,GB,CGN,Cogenhoe,Cogenhoe,NTH,--3-----,AF,9704,,5214N 00047W, +,GB,CGS,Chessington,Chessington,SRY,--3-----,AF,9511,,5122N 00018W, +,GB,CGV,Chalgrove,Chalgrove,OXF,--3-----,AF,9901,,5140N 00105W, +,GB,CHB,Chobham,Chobham,SRY,--3-----,AF,9511,,5121N 00036W, +,GB,CHC,Checkendon,Checkendon,OXF,--3-----,AF,9704,,5132N 00102W, +,GB,CHF,Charlestown,Charlestown,CON,1-------,AF,9511,,5020N 00445W, +,GB,CHG,Charing,Charing,KEN,--3-----,AF,9704,,5113N 00047E, +,GB,CHH,Cheshunt,Cheshunt,HRT,--3-----,AF,9511,,5142N 00002W, +,GB,CHI,Chigwell,Chigwell,ESS,-23-----,AF,9811,,5137N 00005E, +,GB,CHL,Cholsey,Cholsey,OXF,--3-----,AF,9704,,5135N 00109W, +,GB,CHM,Chartham,Chartham,KEN,--3-----,AF,9511,,5115N 00101E, +,GB,CHN,Charlton,Charlton,BST,--3-----,AF,1401,,5131N 00236W, +,GB,CHP,Chipping Norton,Chipping Norton,OXF,--3-----,AF,9811,,5156N 00133W, +,GB,CHQ,Chale,Chale,IOW,--3-----,AF,9704,,5036N 00119W, +,GB,CHR,Chorley,Chorley,LAN,1-------,AF,9511,,5339N 00238W, +,GB,CHS,Chasetown,Chasetown,STS,--3-----,AF,9511,,5240N 00156W, +,GB,CHV,Chelveston,Chelveston,NTH,--3-----,AF,9511,,5219N 00033W, +,GB,CHW,Chorleywood,Chorleywood,HRT,--3-----,AF,9704,,5139N 00031W, +,GB,CHZ,Chelford,Chelford,CHE,0-------,AF,1307,,5316N 00216W, +,GB,CIL,Chilmark,Chilmark,WIL,--3-----,AF,9704,,5106N 00203W, +,GB,CIR,Cirencester,Cirencester,GLS,--3-----,AF,9511,,5143N 00158W, +,GB,CIS,Coniston,Coniston,CMA,1-3-----,AF,9811,,5422N 00305W, +,GB,CKE,Cricklade,Cricklade,WIL,--3-----,AF,9811,,5138N 00152W, +,GB,CKM,Cockermouth,Cockermouth,CMA,1-------,AF,9511,,5440N 00322W, +,GB,CKX,Clydebank/Exeter,Clydebank/Exeter,,--3-----,RQ,0901,,5554N 00424W, +,GB,CLC,Clay Cross,Clay Cross,DBY,--3-----,AF,9511,,5310N 00125W, +,GB,CLE,Cleator,Cleator,CMA,--3-----,AF,9511,,5431N 00330W, +,GB,CLF,Cliffe,Cliffe,KEN,1-3-----,AF,9711,,5109N 00122E, +,GB,CLH,Clydach,Clydach,SWA,--3-----,RL,1401,,5142N 00353W, +,GB,CLI,Clitheroe,Clitheroe,LAN,--3-----,AF,9511,,5352N 00224W, +,GB,CLL,Coleshill,Coleshill,WAR,--3-----,AF,9511,,5230N 00142W, +,GB,CLN,Colne,Colne,LAN,--3-----,AF,9511,,5351N 00210W, +,GB,CLR,Coleraine,Coleraine,CLR,1-------,AF,9511,,5508N 00640W, +,GB,CLT,Cheltenham,Cheltenham,GLS,--3-----,AF,9511,,5154N 00204W, +,GB,CLW,Colwich,Colwich,STS,--3-----,AF,9704,,5247N 00159W, +,GB,CMB,Camborne,Camborne,CON,--3-----,AF,9811,,5013N 00518W, +,GB,CME,Cheam,Cheam,SRY,--3-----,AF,9811,,5121N 00013W, +,GB,CMG,Cambridge,Cambridge,CAM,--34----,AF,9511,CBG,5212N 00007E, +,GB,CMT,Cramlington,Cramlington,NBL,--3-----,AF,9511,,5505N 00135W, +,GB,CNB,Canterbury,Canterbury,KEN,-23-----,AF,9704,,5117N 00105E, +,GB,CNE,Calne,Calne,WIL,--3-----,AF,9704,,5126N 00200W, +,GB,CNF,Carnforth,Carnforth,LAN,--3-----,AF,9511,,5408N 00246W, +,GB,CNG,Coningsby,Coningsby,LIN,--3-----,AF,9704,QCY,5305N 00010W, +,GB,CNK,Cannock,Cannock,STS,--3-----,AF,9511,,5241N 00202W, +,GB,CNN,Callington,Callington,CON,--3-----,AF,9704,,5030N 00418W, +,GB,CNR,Charnock Richard,Charnock Richard,LAN,--3-----,AF,9704,,5338N 00241W, +,GB,CNT,Consett,Consett,DUR,--3-----,AF,9511,,5451N 00150W, +,GB,CNV,Caernarfon,Caernarfon,GWN,1-------,AF,0201,,5308N 00417W, +,GB,CNW,Cornwell,Cornwell,OXF,--3-----,AF,9704,,5157N 00136W, +,GB,CNY,Chinley,Chinley,DBY,-23-----,AF,9811,,5320N 00157W, +,GB,COB,Cobham,Cobham,SRY,--3-----,AF,9511,,5120N 00025W, +,GB,COE,Clowne,Clowne,DBY,--3--6--,RQ,0901,,5316N 00116W, +,GB,COF,Coleford,Coleford,SOM,--3-----,AF,9704,,5115N 00227W, +,GB,COG,Coggeshall,Coggeshall,ESS,--3-----,AF,9511,,5153N 00041E, +,GB,COH,Cowdenbeath,Cowdenbeath,FIF,--3-----,AF,9511,,5607N 00321W, +,GB,COK,Crook,Crook,CMA,--3-----,AF,9704,,5421N 00250W, +,GB,COL,Colchester,Colchester,ESS,1-------,AF,9511,,5153N 00054E, +,GB,CON,Congleton,Congleton,CHE,--3-----,AF,1307,,5310N 00213W, +,GB,COR,Corpach,Corpach,HLD,1-------,AF,9511,,5651N 00507W, +,GB,COS,Cosham,Cosham,HAM,--3-----,AF,9511,,5051N 00104W, +,GB,COV,Coverack,Coverack,CON,1-3-----,AF,9811,,5001N 00506W, +,GB,COW,Cowes,Cowes,IOW,1-------,AF,9511,,5046N 00118W, +,GB,COY,Coryton,Coryton,ESS,1-------,AF,9511,,5131N 00314W, +,GB,COZ,Colney Heath,Colney Heath,ESX,-----6--,RQ,0901,,5144N 00015W, +,GB,CPL,Chapel en le Frith,Chapel en le Frith,DBY,-23-----,AF,9811,,5319N 00155W, +,GB,CPM,Clopton,Clopton,NTH,--3-----,RQ,0901,,5208N 00115E, +,GB,CPN,Chippenham,Chippenham,WIL,--3-----,AF,9511,,5128N 00207W, +,GB,CPP,Chapel Allerton,Chapel Allerton,SOM,--3-----,RL,0901,,5115N 00252W, +,GB,CPS,Clipstone,Clipstone,NTT,--3-----,AF,9804,,5310N 00107W, +,GB,CPT,Clipstone,Clipstone,CBF,--3-----,AF,1307,,5156N 00037W, +,GB,CRC,Church,Church,LAN,-23-----,AF,9811,,5345N 00223W, +,GB,CRE,Crewe,Crewe,CHE,--3-----,AF,1307,XVC,5306N 00226W, +,GB,CRF,Cranfield,Cranfield,CBF,--3-----,AF,1307,,5204N 00036W, +,GB,CRG,Craigavon,Craigavon,CGV,--3-----,AF,9511,,5427N 00624W, +,GB,CRH,Cradley Heath,Cradley Heath,,0-------,AF,9511,,5228N 00205W, +,GB,CRI,Crick,Crick,NTH,--3-----,AF,9511,,5136N 00244W, +,GB,CRK,Crewkerne,Crewkerne,SOM,--3-----,AF,9511,,5053N 00248W, +,GB,CRL,Croft,Croft,LEC,--3-----,AF,9808,,5233N 00115W, +,GB,CRN,Cromarty,Cromarty,HLD,1--4----,AF,9511,,5740N 00402W, +,GB,CRS,Corsham,Corsham,WIL,--3-----,AF,9704,,5126N 00211W, +,GB,CSG,Chalfont Saint Giles,Chalfont Saint Giles,BKM,--3-----,AF,1101,,5138N 00034W, +,GB,CSH,Chesham,Chesham,BKM,--3-----,AF,9511,,5142N 00037W, +,GB,CSR,Chester,Chester,CLK,1-------,RL,0901,,5311N 00253W, +,GB,CSS,Cressing,Cressing,ESS,--3-----,AF,9704,,5151N 00035E, +,GB,CTD,Castle Douglas,Castle Douglas,DGY,--3-----,AF,9704,,5456N 00356W, +,GB,CTL,Catfield,Catfield,NFK,--3-----,AF,9704,,5244N 00132E, +,GB,CTM,Chatham,Chatham,KEN,1-------,AF,9511,,5123N 00032E, +,GB,CTP,Caythorpe,Caythorpe,LIN,1-3-----,RQ,0901,,5302N 00036W, +,GB,CTR,Caterham,Caterham,SRY,-23-----,AF,9811,,5117N 00005W, +,GB,CTT,Cotterstock,Cotterstock,NTH,--3-----,AF,9704,,5230N 00028W, +,GB,CUD,Cuddington,Cuddington,BKM,--3-----,AF,9704,,5148N 00056W, +,GB,CUP,Cupar,Cupar,FIF,--3-----,AF,9511,,5619N 00301W, +,GB,CWB,Crowborough,Crowborough,ESX,--3-----,AF,9704,,5104N 00010E, +,GB,CWD,Cowden,Cowden,KEN,--3-----,AF,9704,,5109N 00006E, +,GB,CWE,Chilwell,Chilwell,NTT,--3-----,AF,9811,,5255N 00114W, +,GB,CWS,Cawston,Cawston,NFK,-23-----,AF,9704,,5246N 00111E, +,GB,CWY,Crawley,Crawley,WSX,--3-----,AF,9511,,5107N 00011W, +,GB,CXT,Cottingham,Cottingham,,--3-----,AF,9812,,5347N 00025W, +,GB,CYG,Claydon,Claydon,OXF,1-------,RQ,0901,,5209N 00120W, +,GB,CYH,Cherry Hinton,Cherry Hinton,CAM,--3-----,AF,9704,,5211N 00010E, +,GB,CYL,Crays Hill,Crays Hill,ESS,--3-----,AF,9804,,5136N 00028E, +,GB,CYP,Clydeport,Clydeport,NAY,1-------,AF,1401,,5544N 00452W, +,GB,CZT,Chard,Chard,SOM,--3-----,AF,9704,,5052N 00258W, +,GB,DAL,Dalton in Furness,Dalton in Furness,CMA,1-3-----,AF,9811,,5409N 00311W, +,GB,DBN,Debenham,Debenham,SFK,--3-----,AF,9511,,5213N 00111E, +,GB,DCP,Drumchapel,Drumchapel,GLG,0-------,AF,1401,,5555N 00422W, +,GB,DDG,Doveridge,Doveridge,DBY,--3-----,AF,9804,,5254N 00150W, +,GB,DDN,Dundrennan,Dundrennan,DGY,--3-----,AF,9808,,5448N 00357W, +,GB,DES,Desford,Desford,FLN,--3-----,AF,1401,,5238N 00117W, +,GB,DEX,Deal,Deal,KEN,1-------,AF,9511,,5113N 00124E, +,GB,DFN,Foston,Foston,DBY,1-------,RQ,0901,,5253N 00143W, +,GB,DFR,Dunfermline,Dunfermline,FIF,--3-----,AF,9511,,5604N 00328W, +,GB,DGN,Dungannon,Dungannon,DGN,--3-----,RL,9904,,5430N 00646W, +,GB,DHG,Deanshanger,Deanshanger,NTH,0-------,AF,9511,,5203N 00053W, +,GB,DHM,Denham,Denham,BKM,--3-----,RL,9912,,5134N 00030W, +,GB,DHR,Dorchester,Dorchester,DOR,--3-----,AF,9511,,5043N 00226W, +,GB,DID,Didcot,Didcot,OXF,--3-----,AF,9511,,5136N 00115W, +,GB,DIG,Dalbeattie,Dalbeattie,DGY,1-3-----,RL,0901,,5456N 00349W, +,GB,DIS,Diss,Diss,NFK,-23-----,AF,9811,,5223N 00107E, +,GB,DIT,Ditchingham,Ditchingham,NFK,--3-----,AF,9511,,5229N 00126E, +,GB,DKG,Dorking,Dorking,SRY,--3-----,AF,9511,,5114N 00020W, +,GB,DLG,Dolgellau,Dolgellau,GWN,--3-----,AF,9811,,5245N 00353W, +,GB,DLX,Dalry,Dalry,EDH,--3-----,AF,1401,,5557N 00313W, +,GB,DMC,Dymock,Dymock,GLS,--3-----,AF,9804,,5159N 00226W, +,GB,DNB,Danbury,Danbury,ESS,--3-----,AF,9704,,5143N 00035E, +,GB,DND,Riverside Park Apt/Dundee,Riverside Park Apt/Dundee,DND,---4----,AF,1401,,5627N 00301W, +,GB,DNG,Donnington,Donnington,SHR,--3-----,AF,9811,,5240N 00237W, +,GB,DNS,Durness,Durness,HLD,--3-----,AF,9811,,5834N 00445W, +,GB,DNT,Doonfoot,Doonfoot,SAY,-2------,AF,1401,,5526N 00439W, +,GB,DON,Doncaster,Doncaster,DNC,--34----,AF,1401,DCS,5331N 00108W, +,GB,DOW,Downham Market,Downham Market,NFK,--3-----,AF,9511,,5236N 00023E, +,GB,DRH,Durham,Durham,DUR,1-------,AF,9511,,5447N 00135W, +,GB,DRM,Drummore,Drummore,DGY,--3-----,AF,9811,,5441N 00454W, +,GB,DRN,Dronfield,Dronfield,DBY,--3-----,AF,9704,,5318N 00129W, +,GB,DRR,Durrington,Durrington,WSX,--3-----,AF,9804,,5050N 00025W, +,GB,DRT,Dinnington,Dinnington,ROT,--3-----,RL,0901,,5322N 00112W, +,GB,DSB,Desborough,Desborough,NTH,--3-----,AF,9704,,5226N 00049W, +,GB,DSL,Disley,Disley,SKP,-23-----,AF,1307,,5321N 00202W, +,GB,DST,Duston,Duston,NTH,--3-----,AF,9704,,5215N 00057W, +,GB,DTE,Dunstable,Dunstable,CBF,1-------,AF,1307,,5153N 00031W, +,GB,DTG,Dartington,Dartington,,--3-----,AF,0212,,5027N 00343W, +,GB,DTH,Ditchling,Ditchling,ESX,--3-----,AF,9704,,5055N 00007W, +,GB,DTT,Ditton,Ditton,KEN,--3-----,AF,9511,,5118N 00027E, +,GB,DUF,Duffield,Duffield,DBY,--3-----,AF,9511,,5259N 00129W, +,GB,DUM,Dumfries,Dumfries,DGY,1-------,AF,9511,,5503N 00336W, +,GB,DUR,Dursley,Dursley,GLS,--3-----,AF,9511,,5141N 00221W, +,GB,DUT,Drumintee,Drumintee,ARM,1-------,RQ,0901,,5406N 00625W, +,GB,DVR,Dover,Dover,KEN,1---5---,AF,9511,QQD,5108N 00119E, +,GB,DVY,Daventry,Daventry,NTH,--3-----,AF,9511,,5215N 00110W, +,GB,DVZ,Devizes,Devizes,WIL,--3-----,AF,9511,,5121N 00160W, +,GB,DWI,Dalwhinnie,Dalwhinnie,HLD,1-3-----,RQ,0901,,5656N 00415W, +,GB,DWK,Downpatrick,Downpatrick,DOW,--3-----,AF,9511,,5420N 00543W, +,GB,DWN,Darwen,Darwen,LAN,--3-----,AF,9511,,5345N 00237W, +,GB,DXY,Derby,Derby,DBY,1-------,AF,9511,XQH,5255N 00129W, +,GB,EAD,East Dereham,East Dereham,NFK,--3-----,RL,0002,,5241N 00056E, +,GB,EAN,Easton,Easton,CAM,--3-----,AF,9704,,5219N 00020W, +,GB,EAO,Easton,Easton,LIN,--3-----,RQ,0002,,5250N 00037W, +,GB,EAR,Earls Barton,Earls Barton,NTH,--3-----,AF,9511,,5216N 00045W, +,GB,EAT,Eastleigh,Eastleigh,HAM,--3-----,AF,9511,,5055N 00118W, +,GB,EAY,Eastry,Eastry,KEN,--3-----,AF,9704,,5114N 00118E, +,GB,EBB,Ebbw Vale,Ebbw Vale,BGW,--3-----,AF,1401,,5147N 00313W, +,GB,EBW,East Barkwith,East Barkwith,LIN,--3-----,RQ,0901,,5319N 00014W, +,GB,ECD,East Claydon,East Claydon,BKM,--3-----,RQ,0901,,5155N 00056W, +,GB,ECH,Eccleshall,Eccleshall,SHF,--3-----,RQ,0901,,5251N 00215W, +,GB,EDB,Enderby,Enderby,LEC,--3-----,AF,9704,,5235N 00112W, +,GB,EDE,Edenbridge,Edenbridge,KEN,--3-----,AF,9511,,5112N 00004E, +,GB,EDW,Edwinstowe,Edwinstowe,NTT,--3-----,AF,9704,,5312N 00104W, +,GB,EEB,Bewdley,Bewdley,WOR,--3-----,RQ,0901,,5223N 00219W, +,GB,EGD,East Grinstead,East Grinstead,WSX,--3-----,AF,9511,,5108N 00001W, +,GB,EGH,Egham,Egham,SRY,--3-----,AF,9511,,5126N 00033W, +,GB,EHY,East Hyde,East Hyde,CBF,123-----,RQ,1307,,5151N 00022W, +,GB,ELE,Elsenham,Elsenham,ESS,-23-----,AF,9704,,5154N 00015E, +,GB,ELH,Elmesthorpe,Elmesthorpe,LEC,--3-----,AF,9704,,5234N 00119W, +,GB,ELK,Elkesley,Elkesley,NTT,--3-----,AF,9704,,5316N 00058W, +,GB,ELL,Ellesmere Port,Ellesmere Port,CHW,1-------,AF,1307,,5317N 00254W, +,GB,ELM,Ellesmere,Ellesmere,SHR,--3-----,AF,9704,,5254N 00254W, +,GB,ELN,Ealing,Ealing,EAL,--3-----,AF,1401,,5131N 00018W, +,GB,ELT,Ellington,Ellington,CAM,--3-----,AF,9704,,5220N 00017W, +,GB,ELV,Elvington,Elvington,NYK,--3-----,AF,9511,,5112N 00116E, +,GB,ELY,Ely,Ely,CAM,--3-----,AF,9511,,5224N 00016E, +,GB,EMA,East Midlands Apt,East Midlands Apt,LEC,---4----,AF,9511,,5250N 00121W, +,GB,EMB,Emberton,Emberton,BKM,--3-----,AF,9804,,5208N 00041W, +,GB,EMN,Hempton,Hempton,NFK,1-------,RQ,0901,,5250N 00050E, +,GB,EMO,East Molesey,East Molesey,SRY,--3-----,AF,9511,,5124N 00021W, +,GB,ENF,Enfield,Enfield,ENF,--3-----,AF,1401,,5139N 00005W, +,GB,ENK,Enniskillen,Enniskillen,FER,--3-----,AF,9511,,5421N 00738W, +,GB,ENS,Eynsford,Eynsford,KEN,--3-----,AF,9811,,5121N 00012E, +,GB,ENT,Brent,Brent,,1-------,RQ,0901,,5134N 00017W, +,GB,EPP,Epping,Epping,ESS,--3-----,AF,9511,,5142N 00007E, +,GB,EPS,Epsom,Epsom,SRY,-23-----,AF,9704,,5120N 00016W, +,GB,ERB,Earby,Earby,LAN,--3-----,AF,9704,,5355N 00208W, +,GB,ERE,Stamford Bridge,Stamford Bridge,ERY,1----6--,RQ,0901,,5359N 00054W, +,GB,ERF,East Retford,East Retford,NTT,-23-----,AF,9704,,5319N 00057W, +,GB,ERL,Earls Court,Earls Court,KEC,--3-----,RL,0901,,5129N 00012W, +,GB,ERR,Berriedale,Berriedale,HLD,0-------,AF,9704,,5811N 00330W, +,GB,ESA,Eastergate,Eastergate,WSX,--3-----,AF,9704,,5050N 00039W, +,GB,ESB,East Bridgford,East Bridgford,NTT,--3-----,AF,9704,,5259N 00058W, +,GB,ESC,Eaton Socon,Eaton Socon,BDF,--3-----,AF,9704,,5213N 00017W, +,GB,ESR,Esher,Esher,SRY,--3-----,AF,9511,,5122N 00022W, +,GB,ESW,East Wellow,East Wellow,HAM,1-------,AF,9704,,5059N 00134W, +,GB,ESY,East Horsley,East Horsley,SRY,--3-----,AF,9704,,5116N 00026W, +,GB,ETA,Etchingham,Etchingham,ESX,-23-----,AF,9804,,5101N 00026E, +,GB,ETP,East Peckham,East Peckham,KEN,-23-----,AF,9704,,5113N 00023E, +,GB,ETR,Elstree,Elstree,HRT,--3-----,AF,9511,,5139N 00018W, +,GB,EVY,Eversley,Eversley,BKM,--3-----,AF,9704,,5121N 00053W, +,GB,EWE,Ewell,Ewell,SRY,--3-----,AF,9511,,5120N 00016W, +,GB,EWL,Elmswell,Elmswell,SFK,1-------,RQ,0901,,5214N 00055E, +,GB,EWM,Ewelme,Ewelme,OXF,--3-----,AF,9704,,5137N 00104W, +,GB,EXN,Exning,Exning,CAM,--3-----,AF,9704,,5215N 00021E, +,GB,EYA,Eyam,Eyam,DBY,--3-----,AF,9704,,5317N 00140W, +,GB,EYE,Eye,Eye,SFK,--3-----,AF,9511,,5219N 00109E, +,GB,EYH,Eynsham,Eynsham,OXF,--3-----,AF,9511,,5147N 00123W, +,GB,FAL,Falmouth,Falmouth,CON,1-------,AF,9511,,5009N 00504W, +,GB,FAN,Faringdon,Faringdon,OXF,--3-----,RL,0002,,5139N 00135W, +,GB,FAR,Farnham,Farnham,SRY,--3-----,AF,9511,,5113N 00048W, +,GB,FAS,Faslane,Faslane,AGB,1-------,AF,1401,,5604N 00449W, +,GB,FAV,Faversham,Faversham,KEN,1-------,AF,9511,,5119N 00053E, +,GB,FAW,Fawley,Fawley,HAM,1-------,AF,9511,,5050N 00122W, +,GB,FBN,Fulbourn,Fulbourn,CAM,--3-----,AF,9511,,5211N 00013E, +,GB,FBO,Farnborough,Farnborough,HAM,--34----,AF,9511,FAB,5118N 00045W, +,GB,FCL,Finchley,Finchley,LND,--3-----,RQ,0901,,5136N 00011W, +,GB,FDK,Fosdyke,Fosdyke,LIN,1-------,AF,9709,,5253N 00003W, +,GB,FDM,Fordham,Fordham,CAM,--3-----,AF,9907,,5219N 00023E, +,GB,FDN,Ferndown,Ferndown,DOR,--3-----,AF,9704,,5048N 00153W, +,GB,FDS,Frodsham,Frodsham,CHW,-23-----,AF,1307,,5318N 00243W, +,GB,FEA,Fetlar,Fetlar,,---4----,AI,0001,,6037N 00056W, +,GB,FEL,Feltwell,Feltwell,NFK,--3-----,AF,9511,,5229N 00031E, +,GB,FEM,Feltham,Feltham,HNS,--3-----,AF,1401,,5127N 00025W, +,GB,FEN,Fenton,Fenton,STS,--3-----,AF,9511,,5305N 00203W, +,GB,FER,Fersfield,Fersfield,NFK,--3-----,AF,9704,,5224N 00102E, +,GB,FET,Fleet,Fleet,HAM,--3-----,AF,9511,,5117N 00050W, +,GB,FFH,Felinfach,Felinfach,CGN,--3-----,RQ,0901,,5211N 00409W, +,GB,FFO,Fairford,Fairford,GLS,--3-----,AF,9511,,5143N 00147W, +,GB,FGB,Fordingbridge,Fordingbridge,HAM,--3-----,AF,9511,,5056N 00148W, +,GB,FHM,Fareham,Fareham,HAM,--3-----,AF,9511,,5051N 00111W, +,GB,FKH,Friockheim,Friockheim,ANS,--3-----,RL,0901,,5638N 00240W, +,GB,FKM,Fakenham,Fakenham,NFK,--34----,AF,9704,,5250N 00051E, +,GB,FLB,Filby,Filby,NFK,--3-----,AF,9704,,5240N 00139E, +,GB,FLC,Flitwick,Flitwick,CBF,--3-----,AF,1307,,5200N 00030W, +,GB,FLF,Fulford,Fulford,NYK,--3-----,AF,9704,,5356N 00104W, +,GB,FLH,Flotta,Flotta,ORK,1--4----,AF,9511,,5850N 00308W, +,GB,FLM,Fulham,Fulham,WND,--3-----,AF,1401,,5130N 00014W, +,GB,FLY,Filey,Filey,NYK,--3-----,AF,9704,,5413N 00017W, +,GB,FME,Frome,Frome,SOM,--3-----,AF,9511,,5114N 00219W, +,GB,FND,Finedon,Finedon,NTH,--3-----,AF,9511,,5220N 00039W, +,GB,FNL,Finningley,Finningley,DNC,--3-----,RQ,0901,,5329N 00059W, +,GB,FNW,Farnworth,Farnworth,BOL,--3-----,AF,1401,,5333N 00224W, +,GB,FOA,Foula,Foula,,---4----,AI,0001,,6008N 00204W, +,GB,FOS,Foston,Foston,DER,--3-----,RQ,0901,,5405N 00056W, +,GB,FOW,Frisby on the Wreake,Frisby on the Wreake,LEC,1-------,AF,9704,,5245N 00058W, +,GB,FOY,Fowey,Fowey,CON,1-------,AF,9511,,5020N 00438W, +,GB,FPS,Fishponds,Fishponds,BST,--3-----,RQ,0901,,5129N 00232W, +,GB,FRA,Framlingham,Framlingham,SFK,--3-----,AF,9811,,5213N 00120E, +,GB,FRC,Farnham Common,Farnham Common,BKM,--3-----,AF,9704,,5134N 00037W, +,GB,FRE,Fowlmere,Fowlmere,ESX,--3-----,RQ,0901,,5205N 00005E, +,GB,FRH,Fingringhoe,Fingringhoe,ESS,1-------,AF,9511,,5150N 00057E, +,GB,FRL,Fritchley,Fritchley,DBY,--3-----,AF,9704,,5304N 00128W, +,GB,FRT,Frant,Frant,ESX,--3-----,AF,9704,,5106N 00017E, +,GB,FSE,Fossebridge,Fossebridge,GLS,--3-----,RQ,0901,,5148N 00153W, +,GB,FSH,Felmersham,Felmersham,BDF,--3-----,AF,1307,,5213N 00033W, +,GB,FSN,Forest Town,Forest Town,NTT,-----6--,RL,0901,,5309N 00109W, +,GB,FTC,Fetcham,Fetcham,SRY,--3-----,AF,9704,,5118N 00021W, +,GB,FUC,Waterfoot,Waterfoot,IOW,1-------,RQ,0901,,5504N 00604W, +,GB,FUL,Fulmer,Fulmer,BKM,--3-----,AF,9811,,5134N 00033W, +,GB,FWL,Fontwell,Fontwell,WSX,--3-----,AF,9704,,5051N 00039W, +,GB,FXF,Foxton,Foxton,LEC,--3-----,AF,9804,,5230N 00058W, +,GB,FXT,Felixstowe,Felixstowe,SFK,1-------,AF,9511,,5158N 00121E, +,GB,FZY,Fazeley,Fazeley,STS,--3-----,RQ,0901,,5237N 00144W, +,GB,GAG,Gamlingay,Gamlingay,CAM,--3-----,AF,9511,,5209N 00011W, +,GB,GAI,Gainsborough,Gainsborough,LIN,1-------,AF,9511,,5324N 00047W, +,GB,GAL,Great Alne,Great Alne,WAR,--3-----,AF,9511,,5214N 00150W, +,GB,GAM,Great Amwell,Great Amwell,HRT,--3-----,AF,9704,,5148N 00001W, +,GB,GAW,Gaerwen,Gaerwen,GWN,1-------,AF,9511,,5313N 00416W, +,GB,GBF,Great Bridgeford,Great Bridgeford,STS,--3-----,RQ,0901,,5250N 00210W, +,GB,GBK,Great Bookham,Great Bookham,SRY,--3-----,AF,9704,,5117N 00022W, +,GB,GBS,Goring-by-Sea,Goring-by-Sea,WSX,1-3-----,RQ,0901,,5049N 00025W, +,GB,GBT,Great Barton,Great Barton,SFK,--3-----,AF,9704,,5216N 00046E, +,GB,GCH,Great Chishill,Great Chishill,CAM,--3-----,AF,9901,,5202N 00004E, +,GB,GCS,Great Coates,Great Coates,NEL,--3-----,RQ,0901,,5334N 00008W, +,GB,GDB,Guardbridge,Guardbridge,FIF,1-3-----,AF,9811,,5622N 00253W, +,GB,GDD,Guildford,Guildford,SRY,--3-----,AF,9511,,5114N 00034W, +,GB,GDF,Great Driffield,Great Driffield,ERY,--3-----,RQ,0901,,5406N 00026W, +,GB,GDM,Godmanchester,Godmanchester,CAM,--3-----,AF,9704,,5219N 00010W, +,GB,GDS,Godstone,Godstone,SRY,-23-----,AF,9704,,5113N 00003W, +,GB,GET,Great Easton,Great Easton,ESS,--3-----,AF,9812,,5155N 00021E, +,GB,GFD,Greenfield,Greenfield,BDF,--3-----,AF,9704,,5215N 00039W, +,GB,GFO,Goff's Oak,Goff's Oak,HRT,--3-----,AF,9704,,5143N 00005W, +,GB,GFT,Gosforth,Gosforth,CMA,--3-----,QQ,,,5500N 00137W, +,GB,GGV,Gargrave,Gargrave,NYK,--3-----,AF,9511,,5359N 00207W, +,GB,GHI,Greenhithe,Greenhithe,KEN,-23-----,AF,9811,,5127N 00017E, +,GB,GHY,Great Haseley,Great Haseley,OXF,--3-----,AF,9511,,5143N 00104W, +,GB,GLE,Glemsford,Glemsford,SFK,--3-----,AF,9511,,5206N 00040E, +,GB,GLF,Glenfield,Glenfield,LEC,--3-----,AF,9511,,5239N 00112W, +,GB,GLL,Gillingham,Gillingham,DOR,--3-----,AF,9704,,5102N 00217W, +,GB,GLN,Glanton,Glanton,NBL,--3-----,AF,9704,,5526N 00154W, +,GB,GLO,Gloucester,Gloucester,GLS,1--4----,AF,9511,,5152N 00215W, +,GB,GLS,Glenrothes,Glenrothes,FIF,--3-----,AF,9511,,5612N 00310W, +,GB,GNG,Goring,Goring,OXF,--3-----,AF,9704,,5131N 00107W, +,GB,GOD,Godalming,Godalming,SRY,--3-----,RL,0201,,5111N 00037W, +,GB,GOS,Gosport,Gosport,HAM,1-------,AF,9511,,5048N 00107W, +,GB,GRA,Gransden,Gransden,CAM,0-------,AF,9511,,5211N 00009W, +,GB,GRB,Great Blakenham,Great Blakenham,SFK,--3-----,AF,9511,,5207N 00106E, +,GB,GRC,Gerrards Cross,Gerrards Cross,BKM,--3-----,QQ,,,5135N 00034W, +,GB,GRD,Great Dunmow,Great Dunmow,ESS,--3-----,QQ,,,5152N 00021E, +,GB,GRH,Great Harwood,Great Harwood,LAN,1-------,AF,9511,,5347N 00224W, +,GB,GRM,Great Missenden,Great Missenden,BKM,--3-----,AF,9511,,5142N 00043W, +,GB,GRP,Gristhorpe,Gristhorpe,NYK,--3-----,QQ,,,5413N 00020W, +,GB,GRR,Great Ryburgh,Great Ryburgh,NFK,--3-----,QQ,,,5249N 00054E, +,GB,GRS,Great Sankey,Great Sankey,WRT,--3-----,AF,1307,,5323N 00239W, +,GB,GRX,Great Gransden,Great Gransden,CAM,--3-----,AF,9511,,5211N 00009W, +,GB,GRY,Glastonbury,Glastonbury,SOM,--3-----,AF,9804,,5109N 00243W, +,GB,GRZ,Great Shelford,Great Shelford,CAM,--3-----,AF,9511,,5209N 00008E, +,GB,GSA,Glensanda,Glensanda,HLD,1-------,AF,9709,,5634N 00533W, +,GB,GSF,Gosfield,Gosfield,ESS,--3-----,AF,9511,,5156N 00034E, +,GB,GSP,Glossop,Glossop,DBY,-23-----,AF,9804,,5327N 00157W, +,GB,GST,Gastard,Gastard,WIL,--3-----,QQ,,,5125N 00210W, +,GB,GSU,Great Sutton,Great Sutton,CHW,0-------,AF,1307,,5316N 00256W, +,GB,GTA,Garstang,Garstang,LAN,--3-----,AF,9811,,5354N 00246W, +,GB,GTH,Greatham,Greatham,HAM,--3-----,AF,9704,,5104N 00054W, +,GB,GTM,Grantham,Grantham,LIN,--3-----,AF,9511,XGM,5255N 00039W, +,GB,GTR,Great Brickhill,Great Brickhill,BKM,--3-----,AF,9704,,5158N 00041W, +,GB,GTT,Great Tey,Great Tey,ESS,--3-----,AF,9804,,5154N 00044E, +,GB,GTY,Great Yarmouth,Great Yarmouth,NFK,1-------,AF,9511,,5236N 00144E, +,GB,GUW,Gunness Wharf,Gunness Wharf,NLN,1-------,AF,1401,,5335N 00044W, +,GB,GVS,Gravesend,Gravesend,KEN,1-------,AF,9511,,5127N 00022E, +,GB,GWY,Great Wyrley,Great Wyrley,STS,--3-----,AF,9704,,5240N 00201W, +,GB,GYD,Great Yeldham,Great Yeldham,ESX,--3-----,RQ,0901,,5201N 00034E, +,GB,GYS,Grays,Grays,ESS,1-------,AF,9511,,5129N 00019E, +,GB,HAE,Hale,Hale,HAL,--3-----,AF,1401,,5320N 00248W, +,GB,HAH,Haywards Heath,Haywards Heath,WSX,--3-----,AF,9511,,5060N 00006W, +,GB,HAI,Hailsham,Hailsham,ESX,--3-----,AF,9511,,5052N 00016E, +,GB,HAL,Haverhill,Haverhill,SFK,--3-----,AF,9511,,5205N 00026E, +,GB,HAM,Hamble,Hamble,HAM,1-------,AF,9511,,5052N 00120W, +,GB,HAP,Hapton,Hapton,LAN,--3-----,AF,9511,,5347N 00219W, +,GB,HAR,Hardley,Hardley,HAM,--3-----,AF,9511,,5050N 00123W, +,GB,HAT,Hatfield,Hatfield,HRT,--34----,AF,9511,HTF,5146N 00014W, +,GB,HAV,Havant,Havant,HAM,--3-----,AF,9511,,5050N 00059W, +,GB,HAX,Hauxton,Hauxton,CAM,--3-----,RL,0901,,5209N 00006E, +,GB,HAY,Hayle,Hayle,CON,1-------,AF,9511,,5011N 00525W, +,GB,HBD,Haydon Bridge,Haydon Bridge,NBL,--3-----,RQ,0901,,5458N 00215W, +,GB,HBE,High Bentham,High Bentham,NYK,--3-----,AF,9511,,5407N 00231W, +,GB,HBR,Hambridge,Hambridge,SOM,--3-----,AF,9511,,5059N 00252W, +,GB,HCE,Hucclecote,Hucclecote,GLS,--3-----,AF,9511,,5151N 00211W, +,GB,HCH,Holme Chapel,Holme Chapel,LAN,--3-----,AF,9511,,5345N 00212W, +,GB,HCN,Hitchin,Hitchin,HRT,--3-----,AF,9511,,5157N 00017W, +,GB,HCY,Hockley,Hockley,ESS,-23-----,AF,9704,,5136N 00039E, +,GB,HDH,Haddenham,Haddenham,CAM,--3-----,AF,9811,,5222N 00009E, +,GB,HDL,Hadleigh,Hadleigh,SFK,--3-----,AF,9511,,5203N 00057E, +,GB,HDN,Haslingden,Haslingden,LAN,1-------,AF,9511,,5342N 00220W, +,GB,HDO,Hendon,Hendon,BNE,---4----,AF,1401,HEN,5135N 00013W, +,GB,HEA,Heacham,Heacham,NFK,--3-----,AF,0401,,5255N 00030E, +,GB,HEC,High Ercall,High Ercall,TFW,--3-----,RQ,0901,,5245N 00236W, +,GB,HED,Headcorn,Headcorn,KEN,--3-----,AF,9511,,5110N 00037E, +,GB,HEF,Hertford,Hertford,HRT,--3-----,AF,9511,,5148N 00005W, +,GB,HEI,Heighington,Heighington,DUR,--3-----,AF,9804,,5436N 00137W, +,GB,HEM,Hempstead,Hempstead,NFK,--3-----,AF,9511,,5253N 00107E, +,GB,HEO,Headley Down,Headley Down,HAM,0-------,AF,9704,,5107N 00048W, +,GB,HER,Hurstpierpoint,Hurstpierpoint,WSX,--3-----,AF,9704,,5056N 00011W, +,GB,HES,Heston,Heston,HNS,--3-----,AF,1401,,5129N 00022W, +,GB,HET,Herston,Herston,DOR,--3-----,RQ,0901,,5849N 00300W, +,GB,HEV,Hove,Hove,ESX,--3-----,AF,9511,,5050N 00010W, +,GB,HEW,Henlow,Henlow,CBF,--3-----,AF,1307,,5202N 00017W, +,GB,HEY,Chertsey,Chertsey,SRY,--3-----,AF,9511,,5124N 00030W, +,GB,HFR,Halliford,Halliford,SRY,--3--6--,RQ,0607,,5123N 00026W, +,GB,HGF,Higham Ferrers,Higham Ferrers,NTH,--3-----,AF,9811,,5218N 00036W, +,GB,HGH,Higham,Higham,KEN,-23-----,AF,9704,,5126N 00028E, +,GB,HGN,Hurst Green,Hurst Green,ESX,--3-----,AF,9704,,5101N 00028E, +,GB,HGR,Houghton Regis,Houghton Regis,CBF,--3-----,AF,1307,,5154N 00031W, +,GB,HHA,Waltham Abbey,Waltham Abbey,ESS,--3-----,AF,9511,,5141N 00000W, +,GB,HHE,Hemel Hempstead,Hemel Hempstead,HRT,--3-----,AF,9511,,5145N 00028W, +,GB,HHF,Heathfield,Heathfield,SOM,--3-----,AF,9704,,5102N 00303W, +,GB,HHN,Holehaven,Holehaven,,1-------,AF,9511,,5131N 00033E, +,GB,HIA,Henley-in-Arden,Henley-in-Arden,WAR,--3-----,RQ,0901,,5217N 00147W, +,GB,HIG,Highbridge,Highbridge,SOM,--3-----,AF,9511,,5113N 00259W, +,GB,HIL,Hinckley,Hinckley,LEC,--3-----,AF,9511,,5232N 00122W, +,GB,HIS,Histon,Histon,CAM,--3-----,AF,9811,,5213N 00007E, +,GB,HKL,Hucknall,Hucknall,NTT,-234----,AF,9811,,5302N 00112W, +,GB,HKT,Hook Norton,Hook Norton,OXF,--3-----,RQ,0901,,5160N 00129W, +,GB,HLC,Holmes Chapel,Holmes Chapel,CHE,--3-----,AF,1307,,5312N 00222W, +,GB,HLG,Halling,Halling,KEN,--3-----,AF,9811,,5121N 00027E, +,GB,HLM,Helmdon,Helmdon,NTH,--3-----,AF,9704,,5205N 00108W, +,GB,HLY,Holyhead,Holyhead,GWN,1--4----,AF,9511,,5319N 00438W, +,GB,HMB,Hambleden,Hambleden,BKM,--3-----,AF,9704,,5135N 00052W, +,GB,HMN,Hilmarton,Hilmarton,WIL,--3-----,RQ,0901,,5129N 00157W, +,GB,HMO,Hamworthy,Hamworthy,DOR,--3-----,AF,9704,,5043N 00200W, +,GB,HMR,Humber,Humber,,--3-----,AF,9811,,5212N 00241W, +,GB,HMW,Harmondsworth,Harmondsworth,HIL,--3-----,AF,1401,,5129N 00029W, +,GB,HND,Handsworth,Handsworth,SHF,--3-----,AF,1401,,5322N 00123W, +,GB,HNL,Hanley,Hanley,STS,--3-----,AF,9704,,5302N 00211W, +,GB,HNO,Henton,Henton,OXF,--3-----,AF,9704,,5143N 00054W, +,GB,HNR,Heanor,Heanor,DBY,--3-----,AF,9704,,5301N 00121W, +,GB,HNT,Hunstanton,Hunstanton,NFK,1-------,AF,9511,,5256N 00029E, +,GB,HOG,Houghton,Houghton,CAM,--3-----,AF,9704,,5220N 00007W, +,GB,HOH,Horsham,Horsham,WSX,--3-----,AF,9511,,5104N 00020W, +,GB,HOK,Hook,Hook,LIN,--3-----,AF,9907,,5326N 00027W, +,GB,HOL,Holbeach,Holbeach,LIN,--3-----,AF,9511,,5248N 00001E, +,GB,HON,Hoddesdon,Hoddesdon,HRT,--3-----,AF,9511,,5146N 00001W, +,GB,HOO,Hoo,Hoo,KEN,--3-----,AF,9511,,5120N 00118E, +,GB,HOR,Horndean,Horndean,HAM,--3-----,AF,9511,,5055N 00100W, +,GB,HOW,Holt,Holt,WIL,--3-----,AF,9804,,5121N 00213W, +,GB,HOX,Hooton,Hooton,CAM,--3-----,AF,9811,,5318N 00258W, +,GB,HOZ,Hoole,Hoole,CHW,--3-----,AF,1307,,5312N 00252W, +,GB,HPD,Harpenden,Harpenden,HRT,--3-----,AF,9511,,5149N 00021W, +,GB,HRA,Horam,Horam,ESX,--3-----,AF,9704,,5056N 00015E, +,GB,HRL,Harlow,Harlow,ESS,1-------,AF,9511,,5146N 00006E, +,GB,HRN,Herne Bay,Herne Bay,KEN,123-----,AF,9811,,5122N 00108E, +,GB,HRS,Horsmonden,Horsmonden,KEN,--3-----,AF,9511,,5108N 00027E, +,GB,HRT,Harrogate,Harrogate,NYK,---4----,AF,9511,,5360N 00132W, +,GB,HRW,Harwich,Harwich,ESS,1-------,AF,9511,QQH,5157N 00117E, +,GB,HRY,Horley,Horley,SRY,--3-----,AF,9511,,5110N 00010W, +,GB,HRZ,Hornsea,Hornsea,ERY,--3-----,RQ,0901,,5355N 00010W, +,GB,HSB,Helsby,Helsby,CHW,--3-----,AF,1307,,5317N 00246W, +,GB,HSG,Haslington,Haslington,CHE,--3-----,AF,1307,,5306N 00223W, +,GB,HSK,Hassocks,Hassocks,WSX,-23-----,AF,9811,,5055N 00009W, +,GB,HSL,Haslemere,Haslemere,SRY,-23-----,AF,9704,,5105N 00043W, +,GB,HSP,Hassop,Hassop,DBY,--3-----,AF,9811,,5315N 00140W, +,GB,HSW,Halesworth,Halesworth,SFK,--3-----,AF,9511,,5221N 00130E, +,GB,HSY,Haseley,Haseley,WAR,--3-----,AF,9704,,5220N 00140W, +,GB,HTD,Halstead,Halstead,ESS,-23-----,AF,9704,,5157N 00039E, +,GB,HTG,Hastings,Hastings,ESX,1-3-----,AF,9511,,5051N 00035E, +,GB,HTR,Hatherton,Hatherton,CHE,--3-----,AF,1307,,5301N 00228W, +,GB,HTT,Hetton,Hetton,NYK,1-------,AF,9511,,5401N 00204W, +,GB,HTW,Hartwell,Hartwell,NTH,--3-----,AF,9811,,5433N 00120W, +,GB,HUD,Huntingdon,Huntingdon,CAM,--3-----,AF,9511,XHU,5220N 00011W, +,GB,HUO,Hunton,Hunton,NYK,--3-----,AF,9704,,5420N 00143W, +,GB,HUS,Hursley,Hursley,HAM,--3-----,AF,9811,,5102N 00123W, +,GB,HVG,Hevingham,Hevingham,NFK,--3-----,AF,9907,,5245N 00115E, +,GB,HVN,Hullavington,Hullavington,WIL,--3-----,AF,9511,,5132N 00209W, +,GB,HWE,Hawes,Hawes,NYK,--3-----,AF,9511,,5418N 00212W, +,GB,HWI,Hartley Wintney,Hartley Wintney,HAM,--3-----,AF,9804,,5118N 00053W, +,GB,HWK,Hawkhurst,Hawkhurst,KEN,--3-----,AF,9511,,5103N 00031E, +,GB,HWR,Harworth,Harworth,NTT,--3-----,AF,9704,,5325N 00105W, +,GB,HWS,Haltwhistle,Haltwhistle,NBL,--3-----,AF,9511,,5458N 00227W, +,GB,HWW,Hawkwell,Hawkwell,ESS,--3-----,AF,9901,,5136N 00040E, +,GB,HWX,Hanworth,Hanworth,LND,--3-----,RQ,0901,,5126N 00023W, +,GB,HWY,High Wycombe,High Wycombe,BKM,--34----,AF,9511,HYC,5138N 00045W, +,GB,HXH,Hexham,Hexham,NBL,--3-----,AF,9901,,5458N 00206W, +,GB,HXN,Hixon,Hixon,STS,--3-----,AF,9704,,5250N 00160W, +,GB,HXO,Hoton,Hoton,LEC,--3-----,AF,9812,,5248N 00109W, +,GB,HXT,Hexton,Hexton,HRT,--3-----,AF,9511,,5158N 00024W, +,GB,HXY,Harby,Harby,NTT,--3-----,AF,9901,,5314N 00041W, +,GB,HYJ,Helston,Helston,CON,--3-----,AF,9704,,5006N 00516W, +,GB,HYM,Heysham,Heysham,LAN,1-------,AF,9511,,5403N 00253W, +,GB,HYO,Hoy,Hoy,ORK,--3-----,AF,9811,,5851N 00317W, +,GB,HYT,Hythe,Hythe,HAM,-----6--,RQ,0901,,5052N 00124W, +,GB,HYY,Henllys,Henllys,MON,--3-----,AF,1401,,5138N 00304W, +,GB,HZA,Hilsea,Hilsea,POR,--3-----,RQ,0901,,5050N 00104W, +,GB,HZD,Hersden,Hersden,KEN,--3-----,RQ,0901,,5119N 00110E, +,GB,ICT,Ilchester,Ilchester,SOM,--3-----,RQ,0901,,5100N 00241W, +,GB,IGT,Ingatestone,Ingatestone,ESS,1-------,RQ,0901,,5140N 00023E, +,GB,IIB,Irthlingborough,Irthlingborough,NTH,--3-----,AF,9511,,5220N 00037W, +,GB,IKS,Ilkeston,Ilkeston,DBY,--3-----,AF,9511,,5258N 00118W, +,GB,ILP,Islip,Islip,OXF,--3-----,AF,9808,,5149N 00114W, +,GB,IMP,Impington,Impington,CAM,--3-----,AF,9704,,5215N 00007E, +,GB,IMR,Ilminster,Ilminster,SOM,--3-----,AF,9808,,5056N 00255W, +,GB,INC,Ince,Ince,CHW,--3-----,AF,1307,,5317N 00250W, +,GB,ING,Ingham,Ingham,LIN,0-------,AF,9704,,5320N 00034W, +,GB,INK,Inverkeithing,Inverkeithing,FIF,1-------,AF,9511,,5601N 00324W, +,GB,INV,Inverness,Inverness,HLD,1--4----,AF,9511,,5729N 00413W, +,GB,IOP,Isle of Portland,Isle of Portland,DOR,--3-----,AF,9704,,5033N 00226W, +,GB,IPS,Ipswich,Ipswich,SFK,1--4----,AF,9511,IPW,5203N 00109E, +,GB,IRT,Irchester,Irchester,NTH,--3-----,RQ,0901,,5217N 00039W, +,GB,ISD,Swineshead,Swineshead,LIN,--3-----,RL,0901,,5257N 00009W, +,GB,ISS,Liss,Liss,HAM,--3-----,AF,9704,,5102N 00054W, +,GB,ITC,Itchenor,Itchenor,WSX,1-------,AF,9511,,5048N 00052W, +,GB,IVE,Iver,Iver,BKM,--3-----,AF,9511,,5131N 00030W, +,GB,IVG,Invergordon,Invergordon,HLD,1-------,AF,9511,,5742N 00410W, +,GB,IVH,Iver Heath,Iver Heath,BKM,--3-----,AF,9704,,5132N 00032W, +,GB,KBA,Kirkby in Ashfield,Kirkby in Ashfield,NTT,-23-----,AF,9704,,5306N 00115W, +,GB,KBP,Kingston Bagpuize,Kingston Bagpuize,OXF,--3-----,AF,9511,,5141N 00125W, +,GB,KDN,Kingsdown,Kingsdown,KEN,--3-----,AF,9704,,5111N 00124E, +,GB,KEG,Kegworth,Kegworth,DBY,--3-----,RL,0002,,5250N 00117W, +,GB,KEH,Kempston Hardwick,Kempston Hardwick,BDF,-23-----,AF,1307,,5205N 00030W, +,GB,KEL,Kells,Kells,ANT,--3-----,AF,9511,,5449N 00613W, +,GB,KGC,King's Cliffe,King's Cliffe,NTH,--3-----,AF,9511,,5234N 00031W, +,GB,KGL,Kings Langley,Kings Langley,HRT,--3-----,AF,9511,,5143N 00027W, +,GB,KGS,Kingsley,Kingsley,HAM,--3-----,AF,9811,,5108N 00053W, +,GB,KHM,Kirk Hammerton,Kirk Hammerton,NYK,--3-----,AF,9901,,5360N 00118W, +,GB,KIF,Kirkby in Furness,Kirkby in Furness,CMA,--3-----,RQ,0901,,5414N 00311W, +,GB,KIH,Kirkham,Kirkham,NYK,1-------,AF,9511,,5347N 00252W, +,GB,KIN,Kingswood,Kingswood,SRY,--3-----,AF,9704,,5118N 00013W, +,GB,KKD,Kirkcaldy,Kirkcaldy,FIF,1-------,AF,9511,,5607N 00309W, +,GB,KKH,Kirkheaton,Kirkheaton,NFK,1-------,RQ,0901,,5340N 00144W, +,GB,KKL,Kirkby Lonsdale,Kirkby Lonsdale,CMA,1-------,RQ,9601,,5412N 00236W, +,GB,KLR,Kilroot,Kilroot,ANT,1-------,AF,9709,,5444N 00546W, +,GB,KLW,Kenilworth,Kenilworth,WAR,--3-----,AF,9511,,5221N 00135W, +,GB,KMO,Kirby Muxloe,Kirby Muxloe,LEC,--3-----,RQ,0901,,5238N 00114W, +,GB,KMP,Kempsford,Kempsford,GLS,--3-----,AF,9704,,5140N 00146W, +,GB,KNA,Knaresborough,Knaresborough,NYK,--3-----,AF,9511,,5401N 00128W, +,GB,KNB,Barnack,Barnack,,-----6--,RL,1107,,5238N 00025W, +,GB,KND,Kendal,Kendal,CMA,--3-----,AF,9511,,5420N 00245W, +,GB,KNE,Kineton,Kineton,WAR,--3-----,AF,9704,,5209N 00130W, +,GB,KNK,Kingsnorth,Kingsnorth,KEN,1-------,AF,9511,,5107N 00052E, +,GB,KNS,Kingston,Kingston,STS,-23-----,AF,1401,,5019N 00355W, +,GB,KNT,Kenton,Kenton,SFK,--3-----,AF,9704,,5215N 00113E, +,GB,KNV,Kinver,Kinver,STS,--3-----,RQ,0901,,5227N 00214W, +,GB,KNY,Kinnerley,Kinnerley,SHR,--3-----,AF,9811,,5247N 00259W, +,GB,KPT,Knapton,Knapton,NYK,--3-----,AF,9511,,5410N 00039W, +,GB,KRA,Kilkardy,Kilkardy,FIF,-23-----,RQ,1501,,5607N 00309W, +,GB,KRE,Kentmere,Kentmere,CMA,--3-----,AF,9804,,5427N 00251W, +,GB,KRK,Kirkby Stephen,Kirkby Stephen,CMA,--3-----,AF,9511,,5428N 00221W, +,GB,KSF,Knutsford,Knutsford,CHE,1-------,AF,1307,,5318N 00222W, +,GB,KST,Keston,Keston,LND,--3-----,RQ,0901,,5122N 00002E, +,GB,KSW,Kingswood,Kingswood,GLS,--3-----,AF,9907,,5137N 00222W, +,GB,KTE,Kettlethorpe,Kettlethorpe,LIN,--3-----,AF,9804,,5316N 00044W, +,GB,KTG,Kitt Green,Kitt Green,BIR,0-------,AF,1401,,5333N 00241W, +,GB,KTH,Keith,Keith,MRY,--3-----,AF,1401,,5733N 00257W, +,GB,KTR,Kettering,Kettering,NTH,--3-----,AF,9511,,5224N 00044W, +,GB,KTT,Ketteringham,Ketteringham,NFK,1-3-----,RQ,0901,,5235N 00112E, +,GB,KUT,Kingston upon Thames,Kingston upon Thames,KTT,-23-----,AF,1401,,5125N 00018W, +,GB,KWC,Keswick,Keswick,CMA,--3-----,AF,9811,,5436N 00308W, +,GB,KWL,Kirkwall,Kirkwall,ORK,1--4----,AF,9511,KOI,5859N 00257W, +,GB,KYW,Keyworth,Keyworth,NGM,-----6--,RL,1107,,5252N 00105W, +,GB,LAD,Little Addington,Little Addington,NTH,--3-----,AF,9704,,5221N 00036W, +,GB,LAG,Lancing,Lancing,WSX,--3-----,AF,9511,,5050N 00019W, +,GB,LAI,Laindon,Laindon,ESS,--3-----,AF,9511,,5134N 00025E, +,GB,LAK,Lakenheath,Lakenheath,SFK,--3-----,AF,9511,,5225N 00031E, +,GB,LAN,Lancaster,Lancaster,LAN,1-------,AF,9511,XOL,5403N 00248W, +,GB,LAR,Larne,Larne,LRN,1-------,AF,9511,,5451N 00549W, +,GB,LAT,Langport,Langport,SOM,--3-----,AF,9511,,5102N 00250W, +,GB,LAU,Launceston,Launceston,CON,--3-----,AF,9811,,5038N 00422W, +,GB,LAX,Laxo,Laxo,ZET,1-------,AF,9711,,6021N 00112W, +,GB,LBU,Long Buckby,Long Buckby,NTH,--3-----,AF,9811,,5218N 00105W, +,GB,LBZ,Leighton Buzzard,Leighton Buzzard,CBF,--3-----,AF,1307,,5155N 00040W, +,GB,LCL,London Colney,London Colney,HRT,--3-----,AF,9811,,5143N 00018W, +,GB,LCN,Lincoln,Lincoln,LIN,1-------,AF,9511,,5314N 00032W, +,GB,LCS,Leicester,Leicester,LEC,1-------,AF,9511,QEW,5238N 00108W, +,GB,LDD,Liddington,Liddington,WIL,--3-----,AF,9704,,5131N 00142W, +,GB,LDH,Langdon Hills,Langdon Hills,ESS,--3-----,AF,9704,,5134N 00025E, +,GB,LDL,Ludlow,Ludlow,SHR,-23-----,AF,9704,,5222N 00243W, +,GB,LDO,Llandudno,Llandudno,GWN,123-----,AF,9808,,5319N 00349W, +,GB,LDV,Llandovery,Llandovery,CMN,1-------,RQ,0901,,5160N 00348W, +,GB,LDW,Llandrindod Wells,Llandrindod Wells,POW,0-------,AF,9601,,5214N 00323W, +,GB,LDY,Londonderry,Londonderry,DRY,1--4----,AF,9511,,5460N 00719W, +,GB,LEA,Long Eaton,Long Eaton,DBY,1-------,AF,9511,,5254N 00116W, +,GB,LEG,Leigh,Leigh,KEN,--3-----,AF,9511,,5112N 00012E, +,GB,LEH,Leatherhead,Leatherhead,SRY,--3-----,AF,9511,,5118N 00020W, +,GB,LEK,Leek,Leek,STS,--3-----,AF,9511,,5306N 00201W, +,GB,LEM,Lenham,Lenham,KEN,--3-----,AF,9511,,5114N 00043E, +,GB,LEN,Leiston,Leiston,SFK,--3-----,AF,9511,,5212N 00135E, +,GB,LER,Lerwick,Lerwick,ZET,1--4----,AF,9511,LWK,6009N 00109W, +,GB,LES,Lee-on-the-Solent,Lee-on-the-Solent,HAM,--3-----,AF,9704,,5048N 00112W, +,GB,LEV,Leven,Leven,FIF,--3-----,AF,9511,,5612N 00260W, +,GB,LEW,Edgeware,Edgeware,LND,1-------,RQ,0901,,5136N 00016W, +,GB,LFD,Limpsfield,Limpsfield,SRY,--3-----,AF,9704,,5114N 00002E, +,GB,LFP,Llanfairpwllgwyngyll,Llanfairpwllgwyngyll,GWN,--3-----,AF,9704,,5313N 00412W, +,GB,LFY,Llanfyllin,Llanfyllin,POW,--3-----,AF,9804,,5246N 00316W, +,GB,LGB,Long Hanborough,Long Hanborough,OXF,--3-----,AF,9704,,5149N 00124W, +,GB,LGE,Lightwater,Lightwater,SRY,--3-----,AF,9704,,5121N 00040W, +,GB,LGG,Langton Green,Langton Green,KEN,--3-----,AF,9704,,5108N 00013E, +,GB,LGN,Loughton,Loughton,BKM,--3-----,AF,9704,,5139N 00003E, +,GB,LGT,Longton,Longton,STS,--3-----,AF,9704,,5259N 00208W, +,GB,LGW,Gatwick Apt/London,Gatwick Apt/London,WSX,---4----,AF,9511,,5109N 00011W, +,GB,LGY,Loch Gelly,Loch Gelly,FIF,--3-----,AF,9704,,5607N 00317W, +,GB,LHF,Lichfield,Lichfield,STS,--3-----,AF,9511,XQT,5241N 00149W, +,GB,LHH,Little Heath,Little Heath,COV,--3-----,AF,1401,,5127N 00103W, +,GB,LHM,Laleham,Laleham,SRY,--3-----,AF,9907,,5125N 00029W, +,GB,LHN,Loughton,Loughton,ESS,--3-----,RL,0002,,5139N 00003E, +,GB,LHP,Longhope,Longhope,GLS,1-------,AF,9511,,5152N 00227W, +,GB,LHT,Little Hulton,Little Hulton,SLF,1-------,RQ,0901,,5332N 00225W, +,GB,LIF,Foston,Foston,LIN,1-------,RQ,0901,,5259N 00043W, +,GB,LIG,Lighthorne,Lighthorne,WAR,--3-----,AF,9811,,5212N 00129W, +,GB,LIM,Limavady,Limavady,LMV,--3-----,AF,9901,,5503N 00657W, +,GB,LIO,Linwood,Linwood,RFW,--3-----,RQ,0901,,5551N 00429W, +,GB,LIR,Little Rissington,Little Rissington,GLS,--3-----,AF,9511,,5153N 00143W, +,GB,LIS,Lisburn,Lisburn,LSB,--3-----,AF,9511,,5431N 00603W, +,GB,LIT,Littlehampton,Littlehampton,WSX,1-------,AF,9511,,5049N 00033W, +,GB,LKH,Locks Heath,Locks Heath,HAM,--3-----,AF,9704,,5052N 00116W, +,GB,LKT,Lower Kinnerton,Lower Kinnerton,CHW,--3-----,AF,1307,,5309N 00259W, +,GB,LLC,Little Carlton,Little Carlton,LIN,--3-----,AF,9704,,5321N 00006E, +,GB,LLH,Little Hadham,Little Hadham,HRT,--3-----,AF,9704,,5153N 00005E, +,GB,LLM,Little Milton,Little Milton,OXF,--3-----,AF,9704,,5142N 00106W, +,GB,LLO,Llanon,Llanon,CGN,1-------,RQ,1307,,5201N 00260W, +,GB,LLR,Little Horsted,Little Horsted,ESX,--3-----,AF,9704,,5056N 00006E, +,GB,LLT,Llantrisant,Llantrisant,RCT,--3-----,AF,1401,,5132N 00322W, +,GB,LLZ,Llanidloes,Llanidloes,POW,1-------,RQ,1307,,5227N 00332W, +,GB,LMB,Lamberhurst,Lamberhurst,KEN,--3-----,AF,9704,,5106N 00023E, +,GB,LMD,Long Melford,Long Melford,SFK,--3-----,AF,9804,,5204N 00043E, +,GB,LMM,Lymm,Lymm,CHE,--3-----,AF,1307,,5323N 00229W, +,GB,LMR,Lyminster,Lyminster,WSX,--3-----,AF,9907,,5051N 00033W, +,GB,LMS,Langton Matravers,Langton Matravers,DOR,--3-----,RQ,0901,,5037N 00200W, +,GB,LND,Llandow,Llandow,VGL,1-------,RQ,0901,,5127N 00331W, +,GB,LNE,Lyne,Lyne,SRY,-23-----,AF,9704,,5123N 00033W, +,GB,LNF,Lingfield,Lingfield,SRY,--3-----,AF,9704,,5111N 00001W, +,GB,LNG,Llangadog,Llangadog,CMN,1-------,RQ,0901,,5156N 00353W, +,GB,LNL,Llangollen,Llangollen,DEN,1-------,RQ,0901,,5258N 00310W, +,GB,LOC,Long Crendon,Long Crendon,BKM,--3-----,AF,9511,,5146N 00060W, +,GB,LOG,Lostock Gralam,Lostock Gralam,CHW,--3-----,AF,1307,,5316N 00228W, +,GB,LOI,Long Itchington,Long Itchington,WAR,--3-----,AF,9511,,5217N 00124W, +,GB,LOL,Lochaline,Lochaline,HLD,1-------,AF,9511,,5632N 00547W, +,GB,LOM,Long Marston,Long Marston,NYK,--3-----,RQ,0901,,5357N 00114W, +,GB,LON,London,London,LND,1---5---,AF,0701,,5131N 00006W, +,GB,LOT,Louth,Louth,LIN,--3-----,AF,9511,,5322N 00000W, +,GB,LOU,Loughborough,Loughborough,LEC,1-------,AF,9511,XQI,5246N 00112W, +,GB,LOW,Lowestoft,Lowestoft,SFK,1-------,AF,9511,,5229N 00145E, +,GB,LOZ,Lode,Lode,NFK,1-------,RQ,1501,,5235N 00020E, +,GB,LPH,Liphook,Liphook,HAM,--3-----,AF,9704,,5104N 00048W, +,GB,LRE,Longridge,Longridge,LAN,--3-----,RL,0002,,5349N 00236W, +,GB,LSN,Long Sutton,Long Sutton,LIN,--3-----,AF,9511,,5247N 00007E, +,GB,LSP,Leamington Spa,Leamington Spa,WAR,--3-----,AF,9511,,5217N 00132W, +,GB,LTC,Litchfield,Litchfield,HAM,--3-----,AF,9511,,5117N 00120W, +,GB,LTF,Langtoft,Langtoft,LIN,--3-----,AF,9804,,5242N 00020W, +,GB,LTH,Letchworth,Letchworth,HRT,--3-----,AF,9511,,5159N 00014W, +,GB,LTL,Littlebrook,Littlebrook,KEN,1-------,AF,9511,,5128N 00015E, +,GB,LTM,Llantwit Major,Llantwit Major,VGL,--3-----,AF,1401,,5124N 00329W, +,GB,LTN,Linton,Linton,KEN,--3-----,AF,9804,,5113N 00031E, +,GB,LTO,Litton,Litton,DBY,--3-----,AF,9704,,5316N 00145W, +,GB,LTT,Lutterworth,Lutterworth,LEC,--3-----,AF,9511,,5227N 00112W, +,GB,LUT,Luton,Luton,CBF,-234----,AF,1307,LTN,5157N 00032W, +,GB,LWE,Lewes,Lewes,ESX,--3-----,AF,9811,,5052N 00000E, +,GB,LWM,Low Moor,Low Moor,BKM,--3-----,AF,9704,,5345N 00146W, +,GB,LWO,Lambourn Woodlands,Lambourn Woodlands,WBK,--3-----,RQ,0901,,5129N 00133W, +,GB,LWT,West Thurrock,West Thurrock,ESS,123-----,AF,1307,,5129N 00016E, +,GB,LXW,Lower Stondon,Lower Stondon,CBF,--3-----,AF,1307,,5200N 00019W, +,GB,LYA,Lytham Saint Annes,Lytham Saint Annes,LAN,-23-----,AF,1101,,5345N 00260W, +,GB,LYH,Lyndhurst,Lyndhurst,HAM,--3-----,AF,9704,,5052N 00134W, +,GB,LYL,Leyland,Leyland,LAN,1-------,AF,9511,,5341N 00242W, +,GB,LYM,Lymington,Lymington,HAM,1-------,AF,9511,,5046N 00133W, +,GB,LYN,Lympne,Lympne,KEN,--3-----,AF,9704,,5105N 00102E, +,GB,LYS,Lyness,Lyness,ORK,1-------,AF,9511,,5850N 00312W, +,GB,LYX,Lydd,Lydd,KEN,--34----,AI,9811,,5057N 00054E, +,GB,LZD,Lizard,Lizard,CON,--3-----,AF,9811,,4958N 00512W, +,GB,MAL,Maldon,Maldon,ESS,1-------,AF,9511,,5143N 00041E, +,GB,MAR,March,March,CAM,--3-----,AF,9511,,5233N 00005E, +,GB,MAY,Mayfield,Mayfield,MLN,--3-----,AF,1401,,5552N 00302W, +,GB,MBO,Marylebone,Marylebone,WSM,-23-----,AF,1401,,5131N 00009W, +,GB,MBT,Market Bosworth,Market Bosworth,LEC,1-------,RQ,0901,,5237N 00125W, +,GB,MBY,Melton Mowbray,Melton Mowbray,LEC,--3-----,AF,9511,,5246N 00053W, +,GB,MCL,Macclesfield,Macclesfield,CHE,1-------,AF,1307,XMZ,5316N 00208W, +,GB,MDI,Ardwick,Ardwick,47,1-------,RQ,0901,,5328N 00212W, +,GB,MDO,Milden,Milden,SFK,--3-----,AF,9804,,5205N 00051E, +,GB,MDP,Market Deeping,Market Deeping,CAM,--3-----,AF,9704,,5241N 00019W, +,GB,MDS,Micheldever,Micheldever,HAM,--3-----,AF,0701,,5109N 00115W, +,GB,MDT,Maidstone,Maidstone,KEN,--3-----,AF,9511,,5116N 00031E, +,GB,MDW,Middlewich,Middlewich,CHE,1-------,AF,1307,,5312N 00227W, +,GB,MEB,Menai Bridge,Menai Bridge,GWN,1-------,AF,9511,,5314N 00410W, +,GB,MEL,Melbourn,Melbourn,CAM,--3-----,AF,9511,,5205N 00001E, +,GB,MEN,Mendlesham,Mendlesham,SFK,--3-----,AF,9511,,5215N 00105E, +,GB,MES,Medstead,Medstead,HAM,1-3-----,RQ,0901,,5108N 00104W, +,GB,MFD,Mansfield,Mansfield,NTT,--3-----,AF,9511,,5309N 00112W, +,GB,MGH,Maghera,Maghera,NBL,1-3-----,AF,9811,,5451N 00640W, +,GB,MGO,Magheramorne,Magheramorne,,1-------,AI,0002,,5449N 00546W, +,GB,MGT,Margate,Margate,KEN,1-3-----,AF,9511,,5123N 00123E, +,GB,MHE,Mochdre,Mochdre,,--3-----,AF,9901,,5229N 00322W, +,GB,MHL,Mill Hill,Mill Hill,BEN,--3-----,AF,1401,,5137N 00014W, +,GB,MHM,Martlesham,Martlesham,SFK,--3-----,AF,9511,,5205N 00117E, +,GB,MHT,Martlesham Heath,Martlesham Heath,SFK,1-------,RQ,0901,,5204N 00116E, +,GB,MIK,Milton Keynes,Milton Keynes,BKM,--34----,AF,9511,KYN,5202N 00046W, +,GB,MIL,Milton,Milton,KEN,--3-----,AF,9511,,5126N 00023E, +,GB,MIS,Mistley,Mistley,ESS,1-------,AF,9511,,5156N 00105E, +,GB,MIT,Mitcheldean,Mitcheldean,GLS,--3-----,AF,9511,,5152N 00230W, +,GB,MKD,Market Drayton,Market Drayton,SHR,--3-----,AF,9811,,5254N 00230W, +,GB,MKH,Market Harborough,Market Harborough,LEC,--3-----,AF,9704,XQM,5229N 00055W, +,GB,MKR,Market Rasen,Market Rasen,LIN,--3-----,RL,0002,,5323N 00020W, +,GB,MLB,Millbrook,Millbrook,CON,0-------,AF,9511,,5021N 00413W, +,GB,MLD,Meldreth,Meldreth,CAM,--3-----,AF,9704,,5206N 00001E, +,GB,MLG,Mallaig,Mallaig,HLD,1-------,AF,9709,,5700N 00550W, +,GB,MLH,Melksham,Melksham,WIL,--3-----,AF,9511,,5123N 00208W, +,GB,MLL,Mildenhall,Mildenhall,SFK,--34----,AF,9511,MHZ,5221N 00031E, +,GB,MLM,Millom,Millom,CMA,1-------,AF,9511,,5413N 00316W, +,GB,MLN,Malton,Malton,NYK,--3-----,AF,9511,,5408N 00048W, +,GB,MLS,Molesworth,Molesworth,CAM,--3-----,AF,9704,,5222N 00026W, +,GB,MLW,Marlow,Marlow,BKM,--3-----,AF,9511,,5134N 00047W, +,GB,MMB,Malmesbury,Malmesbury,WIL,--3-----,AF,9704,,5135N 00206W, +,GB,MMH,Medmenham,Medmenham,BKM,--3-----,AF,0507,,5133N 00050W, +,GB,MML,Melmerby,Melmerby,CMA,1-3-----,RQ,0901,,5444N 00236W, +,GB,MNN,Manningtree,Manningtree,ESS,--3-----,AF,9511,,5157N 00104E, +,GB,MOB,Mobberley,Mobberley,CHE,--3-----,AF,1307,,5319N 00219W, +,GB,MOC,Morecambe,Morecambe,LAN,--3-----,AF,9511,,5404N 00252W, +,GB,MOE,Moulsoe,Moulsoe,BKM,--3-----,AF,9704,,5204N 00041W, +,GB,MOO,Muir of Ord,Muir of Ord,HLD,--3-----,AF,9704,,5731N 00428W, +,GB,MOR,Morpeth,Morpeth,NBL,--3-----,AF,9511,,5510N 00141W, +,GB,MOU,Moulton,Moulton,NTH,--3-----,AF,9511,,5125N 00320W, +,GB,MOY,Moresby,Moresby,CMA,--3-----,AF,9704,,5434N 00333W, +,GB,MRC,Marchington,Marchington,STS,--3-----,AF,9704,,5253N 00148W, +,GB,MRD,Marden,Marden,KEN,--3-----,AF,9511,,5111N 00030E, +,GB,MRE,Mere,Mere,WIL,--3-----,AF,9811,,5105N 00216W, +,GB,MRK,Markinch,Markinch,FIF,--3-----,AF,9704,,5612N 00308W, +,GB,MRL,Marlborough,Marlborough,WIL,--3-----,AF,9704,,5125N 00144W, +,GB,MRN,Marston,Marston,OXF,--3-----,AF,9511,,5147N 00114W, +,GB,MRT,Moreton,Moreton,DOR,--3-----,AF,9511,,5042N 00218W, +,GB,MRY,Maryport,Maryport,CMA,1-3-----,AF,9811,,5442N 00329W, +,GB,MSM,Midsomer Norton,Midsomer Norton,SOM,--3-----,AF,9811,,5116N 00229W, +,GB,MTG,Matching Green,Matching Green,ESS,--3-----,AF,9704,,5147N 00013E, +,GB,MTH,Methil,Methil,FIF,1-------,AF,9511,,5611N 00301W, +,GB,MTL,Matlock,Matlock,DBY,-23-----,AF,9811,,5308N 00133W, +,GB,MTP,Mablethorpe,Mablethorpe,LIN,1-------,RQ,0901,,5320N 00016E, +,GB,MTT,Marston Trussell,Marston Trussell,NTH,--3-----,AF,9704,,5228N 00060W, +,GB,MTZ,Mortlake,Mortlake,RIC,--3-----,AF,1401,,5128N 00016W, +,GB,MUK,Muckamore,Muckamore,ANT,0-------,AF,9704,,5442N 00611W, +,GB,MUL,Mull Apt,Mull Apt,,---4----,AI,0001,ULL,5631N 00554W, +,GB,MVC,Moreton Valence,Moreton Valence,GLS,1-------,RQ,0901,,5147N 00219W, +,GB,MWA,Millwall,Millwall,,--3-----,RL,0901,,5130N 00001W, +,GB,MWD,Methwold,Methwold,NFK,--3-----,AF,9511,,5231N 00033E, +,GB,MWG,Mawgan,Mawgan,CON,--3-----,AF,9704,,5005N 00512W, +,GB,MXB,Mexborough,Mexborough,ROT,--3-----,AF,1401,,5330N 00117W, +,GB,MYT,Mytholmroyd,Mytholmroyd,CLD,--3-----,AF,1401,,5344N 00159W, +,GB,MZB,Leeming Bar,Leeming Bar,NYK,-----6--,RQ,0901,,5418N 00134W, +,GB,NAD,Alresford,Alresford,,-----6--,RL,1107,,5105N 00109W, +,GB,NAL,Northallerton,Northallerton,NYK,--3-----,AF,9511,XNO,5420N 00126W, +,GB,NAY,Newton Aycliffe,Newton Aycliffe,DUR,--3-----,AF,9511,,5437N 00134W, +,GB,NBU,Newburgh,Newburgh,FIF,1-------,AF,9711,,5621N 00314W, +,GB,NCT,Nacton,Nacton,SFK,--3-----,RL,0901,,5201N 00114E, +,GB,NDS,New Duston,New Duston,NTH,--3-----,AF,9901,,5215N 00057W, +,GB,NDY,Sanday,Sanday,ORK,1--4----,AF,9511,,5915N 00235W, +,GB,NEH,Neap House,Neap House,NLN,1-------,AF,1401,,5336N 00042W, +,GB,NFR,Friden,Friden,,1-------,RQ,0901,,5309N 00145W, +,GB,NFT,Northfleet,Northfleet,KEN,1-------,AF,9511,,5127N 00020E, +,GB,NHP,Northampton,Northampton,NTH,--34----,AF,9511,ORM,5214N 00054W, +,GB,NHV,Newhaven,Newhaven,ESX,1-------,AF,9511,,5048N 00003E, +,GB,NKT,Newmarket,Newmarket,SFK,--3-----,AF,9511,,5215N 00024E, +,GB,NLN,Nelson,Nelson,LAN,1-------,AF,9511,,5350N 00213W, +,GB,NLV,Newton Longville,Newton Longville,BKM,--3-----,AF,9704,,5159N 00046W, +,GB,NMN,New Milton,New Milton,HAM,--3-----,AF,9511,,5045N 00139W, +,GB,NMT,North Marston,North Marston,BKM,1-------,RQ,0901,,5154N 00053W, +,GB,NPR,Newport,Newport,SHR,--3-----,AF,9811,,5135N 00260W, +,GB,NPT,Newport,Newport,BGW,1-------,AF,1401,XNE,5135N 00260W, +,GB,NQY,Newquay,Newquay,CON,---4----,AF,9511,,5025N 00505W, +,GB,NRH,Northchapel,Northchapel,WSX,--3-----,AF,9704,,5104N 00038W, +,GB,NRL,North Lancing,North Lancing,WSX,--3-----,AF,9704,,5050N 00019W, +,GB,NRM,North Walsham,North Walsham,NFK,1-------,AF,9511,,5249N 00123E, +,GB,NRW,Norwich,Norwich,NFK,1--4----,AF,9511,NWI,5238N 00118E, +,GB,NRY,Newry,Newry,DOW,1-------,AF,9511,,5411N 00620W, +,GB,NSW,Newton Stewart,Newton Stewart,DGY,--3-----,AF,9704,,5458N 00429W, +,GB,NTG,Nottingham,Nottingham,NTT,1-------,AF,9511,XNM,5257N 00109W, +,GB,NTH,Northwich,Northwich,CHW,1-------,AF,1307,,5316N 00231W, +,GB,NTN,Nuneaton,Nuneaton,WAR,--3-----,AF,9511,XNV,5231N 00128W, +,GB,NTP,Nether Poppleton,Nether Poppleton,NYK,--3-----,AF,9704,,5359N 00109W, +,GB,NTS,Newtownards,Newtownards,DOW,--3-----,AF,9511,,5436N 00542W, +,GB,NTW,Nantwich,Nantwich,CHE,1-------,AF,1307,,5304N 00231W, +,GB,NUR,Nursling,Nursling,HAM,--3-----,AF,9704,,5057N 00128W, +,GB,NWK,Newark,Newark,DGY,1-------,AF,9511,,5522N 00355W, +,GB,NWO,Newton,Newton,CHW,--3-----,AF,1307,,5312N 00253W, +,GB,NWT,Newtown,Newtown,POW,--3-----,AF,9511,,5231N 00319W, +,GB,NWY,New York,New York,LIN,--3-----,AF,9704,,5305N 00008W, +,GB,NYL,Newlyn,Newlyn,CON,1-------,AF,9511,,5006N 00533W, +,GB,OBM,Ogbourne Maizey,Ogbourne Maizey,WIL,--3-----,AF,9804,,5127N 00144W, +,GB,OBY,Oldbury,Oldbury,WAR,--3-----,AF,1401,,5233N 00132W, +,GB,ODL,Old Dalby,Old Dalby,LEC,1-------,RQ,0901,,5248N 00100W, +,GB,ODM,Odiham,Odiham,HAM,--34----,AF,9704,ODH,5115N 00056W, +,GB,OET,Coleorton,Coleorton,LEC,--3-----,AF,9804,,5245N 00124W, +,GB,OGR,Ongar,Ongar,ESS,--3-----,AF,9511,,5142N 00015E, +,GB,OKM,Oakham,Oakham,LEC,-234----,AF,9804,OKH,5240N 00045W, +,GB,OLD,Old,Old,NTH,--3-----,AF,9704,,5221N 00050W, +,GB,OLN,Olney,Olney,BKM,--3-----,AF,9704,,5210N 00042W, +,GB,OLW,Old Woking,Old Woking,SRY,--3-----,AF,9511,,5118N 00033W, +,GB,OLY,Holywood,Holywood,DGY,0-------,AF,9704,,5506N 00339W, +,GB,OMA,Omagh,Omagh,OMH,--3-----,RL,9904,,5436N 00718W, +,GB,OMK,Ormskirk,Ormskirk,LAN,--3-----,AF,9511,,5334N 00253W, +,GB,ONH,Ongar Hill,Ongar Hill,ESS,--3-----,AF,9704,,5248N 00021E, +,GB,OOR,Buntingford,Buntingford,ESX,1-------,RQ,0901,,5157N 00001W, +,GB,ORP,Orchard Portman,Orchard Portman,SOM,--3-----,AF,9704,,5059N 00305W, +,GB,ORT,Orsett,Orsett,ESS,--3-----,AF,9704,,5131N 00022E, +,GB,OSN,Ossington,Ossington,NTT,--3-----,AF,9704,,5310N 00052W, +,GB,OTH,Otham,Otham,KEN,--3-----,AF,9704,,5115N 00034E, +,GB,OTT,Ottershaw,Ottershaw,SRY,--3-----,AF,9704,,5122N 00032W, +,GB,OUK,Outer Skerries,Outer Skerries,ZET,---4----,AI,0212,,6025N 00046W, +,GB,OVE,Overton,Overton,HAM,--3-----,AF,9511,,5114N 00116W, +,GB,OVR,Over,Over,CAM,--3-----,AF,9704,,5219N 00001E, +,GB,OWR,Oswestry,Oswestry,SHR,--3-----,AF,9511,,5252N 00303W, +,GB,OWW,Oswaldtwistle,Oswaldtwistle,LAN,1-------,RQ,0901,,5344N 00224W, +,GB,OXF,Oxford,Oxford,OXF,--34----,AF,9511,,5145N 00115W, +,GB,OXT,Oxshott,Oxshott,SRY,--3-----,AF,9704,,5120N 00021W, +,GB,OYL,Poyle,Poyle,WBK,1-------,RQ,1401,,5129N 00031W, +,GB,PAD,Padstow,Padstow,CON,1-------,AF,9511,,5032N 00456W, +,GB,PAL,Palnackie,Palnackie,DGY,1-------,AF,9511,,5454N 00350W, +,GB,PBK,Pinchbeck,Pinchbeck,LIN,--3-----,AF,9704,,5249N 00010W, +,GB,PBL,Parbold,Parbold,LAN,-23-----,AF,9811,,5335N 00245W, +,GB,PCL,Pickhill,Pickhill,NYK,--3-----,AF,9704,,5415N 00128W, +,GB,PCR,Puckeridge,Puckeridge,HRT,--3-----,AF,9704,,5153N 00001E, +,GB,PDH,Padiham,Padiham,LAN,--3-----,AF,9511,,5348N 00219W, +,GB,PDI,Port Dinorwic,Port Dinorwic,GWN,1-------,AF,9511,,5311N 00412W, +,GB,PDW,Paddock Wood,Paddock Wood,KEN,--3-----,AF,9511,,5111N 00023E, +,GB,PED,Pembroke Dock,Pembroke Dock,PEM,1-------,AF,1401,,5142N 00456W, +,GB,PEN,Penzance,Penzance,CON,1--4----,AF,9511,PZE,5007N 00532W, +,GB,PET,Peterborough,Peterborough,CAM,--3-----,AF,9511,XVH,5230N 00021W, +,GB,PFT,Purfleet,Purfleet,ESS,1-------,AF,9511,,5129N 00014E, +,GB,PGR,Pamber Green,Pamber Green,HAM,0-------,AF,9704,,5120N 00108W, +,GB,PGT,Polegate,Polegate,ESX,--3-----,AF,9704,,5050N 00015E, +,GB,PIT,Prittlewell,Prittlewell,ESS,--3-----,AF,9704,,5133N 00042E, +,GB,PLT,Peckleton,Peckleton,,--3-----,RQ,0104,,5236N 00118W, +,GB,PLX,Pulloxhill,Pulloxhill,CBF,--3-----,AF,1307,,5160N 00027W, +,GB,PMB,Pembury,Pembury,KEN,--3-----,AF,9704,,5108N 00019E, +,GB,PMD,Portmadoc,Portmadoc,GWN,1-------,AF,9511,,5256N 00408W, +,GB,PME,Portsmouth,Portsmouth,HAM,1--4----,AF,9511,,5051N 00059W, +,GB,PMG,Plumpton Green,Plumpton Green,ESX,--3-----,AF,9704,,5056N 00004W, +,GB,PMM,Penmaenmawr,Penmaenmawr,GWN,1-------,AF,9511,,5316N 00355W, +,GB,PNL,Ponteland,Ponteland,NBL,--3-----,AF,9704,,5503N 00145W, +,GB,PNN,Penn,Penn,BKM,-23-----,AF,9704,,5138N 00040W, +,GB,PNR,Penrith,Penrith,CMA,--3-----,AF,9704,XPF,5440N 00245W, +,GB,POB,Potters Bar,Potters Bar,HRT,--3-----,AF,9511,,5142N 00011W, +,GB,PON,Potterne,Potterne,WIL,--3-----,AF,9907,,5120N 00200W, +,GB,POO,Poole,Poole,DOR,1-------,AF,9511,,5043N 00159W, +,GB,POY,Poynton,Poynton,CHE,--3-----,AF,1307,,5321N 00207W, +,GB,PPE,Port Penrhyn,Port Penrhyn,GWN,1-------,AF,9511,,5314N 00407W, +,GB,PRC,Portchester,Portchester,HAM,--3-----,AF,9704,,5051N 00107W, +,GB,PRD,Prudhoe,Prudhoe,NBL,--3-----,AF,9704,,5457N 00152W, +,GB,PRG,Partridge Green,Partridge Green,WSX,--3-----,AF,9704,,5058N 00018W, +,GB,PRH,Portland Harbour,Portland Harbour,DOR,--3-----,AF,9704,,5035N 00227W, +,GB,PRR,Princes Risborough,Princes Risborough,BKM,--3-----,AF,9704,,5143N 00050W, +,GB,PRT,Portree,Portree,HLD,1-------,AF,9511,,5725N 00611W, +,GB,PRY,Penryn,Penryn,CON,1-------,AF,9511,,5010N 00506W, +,GB,PSV,Papa Stour,Papa Stour,,---4----,AI,0001,,6019N 00141W, +,GB,PTE,Peterlee,Peterlee,DUR,--3-----,AF,9511,,5446N 00120W, +,GB,PTF,Petersfield,Petersfield,HAM,-23-----,AF,9704,,5100N 00056W, +,GB,PTL,Portland,Portland,DOR,1-------,AF,9511,,5033N 00226W, +,GB,PTN,Puttenham,Puttenham,SRY,--3-----,AF,9704,,5113N 00041W, +,GB,PTR,Portrush,Portrush,ANT,1-------,AF,9511,,5512N 00639W, +,GB,PTS,Portslade,Portslade,ESX,1-------,AF,9511,,5051N 00013W, +,GB,PTW,Portadown,Portadown,ARM,--3-----,AF,9511,,5425N 00626W, +,GB,PUL,Pulborough,Pulborough,WSX,-23-----,AF,9907,,5057N 00031W, +,GB,PUR,Purley,Purley,WND,-23-----,AF,1401,,5120N 00007W, +,GB,PWS,Pewsey,Pewsey,WIL,-23-----,AF,9704,,5120N 00146W, +,GB,PYE,Poyle,Poyle,BKM,--3-----,AF,9907,,5129N 00031W, +,GB,PYR,Pyrford,Pyrford,SRY,--3-----,AF,9704,,5120N 00031W, +,GB,QMV,Bruton,Bruton,SOM,-23-----,AF,9704,,5107N 00227W, +,GB,QRA,Bartley,Bartley,HAM,--3-----,AF,9704,,5055N 00134W, +,GB,QUB,Queenborough,Queenborough,KEN,1-------,AF,9511,,5125N 00045E, +,GB,QVG,Sandgate,Sandgate,KEN,--3-----,AF,9704,,5104N 00109E, +,GB,QVY,South Lancing,South Lancing,WSX,--3-----,AF,9704,,5050N 00019W, +,GB,QWH,Swadlincote,Swadlincote,DBY,--3-----,AF,9704,,5246N 00133W, +,GB,RAH,Rainham,Rainham,HAV,--3-----,AF,1401,,5122N 00037E, +,GB,RAV,Ravensthorpe Dewsbury,Ravensthorpe Dewsbury,KIR,1-------,RQ,1401,,5341N 00140W, +,GB,RAW,Rawtenstall,Rawtenstall,LAN,--3-----,AF,9511,,5342N 00217W, +,GB,RBR,Robertsbridge,Robertsbridge,ESX,--3-----,AF,9704,,5059N 00028E, +,GB,RCH,Richmond,Richmond,NYK,-23-----,AF,9704,,5421N 00159W, +,GB,RCS,Rochester,Rochester,KEN,1--4----,AF,9511,,5123N 00030E, +,GB,RDB,Redbourn,Redbourn,LIN,--3-----,AF,9704,,5148N 00024W, +,GB,RDL,Radlett,Radlett,HRT,-23-----,AF,9704,,5141N 00019W, +,GB,REH,Redhill,Redhill,SRY,--34----,AF,9511,KRH,5114N 00010W, +,GB,REY,Rugeley,Rugeley,STS,--3-----,AF,9511,XRG,5246N 00156W, +,GB,RFD,Rochford,Rochford,ESS,1-------,AF,9511,,5135N 00042E, +,GB,RFF,Roecliffe,Roecliffe,NYK,--3-----,AF,9804,,5405N 00126W, +,GB,RFO,Retford,Retford,NTT,0-------,AF,9511,,5319N 00057W, +,GB,RGN,Mid Glamorgan,Mid Glamorgan,ESX,1-------,RQ,0901,,5139N 00326W, +,GB,RGR,Ringmer,Ringmer,ESX,--3-----,AF,9704,,5054N 00004E, +,GB,RGT,Reigate,Reigate,SRY,-23-----,AF,9704,,5114N 00012W, +,GB,RGV,Redgrave,Redgrave,SFK,--3-----,AF,9804,,5222N 00100E, +,GB,RHY,Rhyl,Rhyl,DEN,1-------,AF,1401,,5319N 00329W, +,GB,RID,Ridham Dock,Ridham Dock,KEN,1-------,AF,9511,,5123N 00046E, +,GB,RIN,Ringstead,Ringstead,NFK,--3-----,AF,9511,,5256N 00033E, +,GB,RIP,Ripon,Ripon,NYK,--3-----,AF,9804,,5408N 00131W, +,GB,RIW,Ringwood,Ringwood,HAM,--3-----,AF,9511,,5050N 00146W, +,GB,RKW,Rickmansworth,Rickmansworth,HRT,--3-----,AF,9511,,5138N 00028W, +,GB,RLH,Rayleigh,Rayleigh,ESS,--3-----,AF,9511,,5135N 00036E, +,GB,RMG,Ramsgate,Ramsgate,KEN,1-------,AF,9511,QQR,5120N 00125E, +,GB,RMS,Romsey,Romsey,HAM,--3-----,AF,9511,,5059N 00130W, +,GB,RNA,Rainham,Rainham,KEN,--3-----,RQ,0101,,5122N 00037E, +,GB,RNS,Ranskill,Ranskill,NTT,--3-----,AF,9704,,5323N 00101W, +,GB,RNT,Radcliffe on Trent,Radcliffe on Trent,NTT,-23-----,AF,9704,,5257N 00102W, +,GB,ROA,Roade,Roade,NTH,--3-----,AF,9511,,5210N 00054W, +,GB,ROS,Royston,Royston,HRT,--3-----,AF,9511,,5203N 00001W, +,GB,ROW,Rowhedge,Rowhedge,ESS,1-------,AF,9511,,5151N 00057E, +,GB,RPY,Ripley,Ripley,DBY,--3-----,AF,9511,,5303N 00124W, +,GB,RRK,Drybrook,Drybrook,GLS,--3-----,RQ,0901,,5151N 00231W, +,GB,RRR,Eardiston,Eardiston,SHR,1-------,RQ,0901,,5249N 00256W, +,GB,RRU,Redruth,Redruth,CON,--3-----,AF,9511,,5014N 00514W, +,GB,RRW,Rotherwas,Rotherwas,,-----6--,RL,1107,,5202N 00241W, +,GB,RSG,Rushlake Green,Rushlake Green,ESX,--3-----,AF,9704,,5056N 00019E, +,GB,RSS,Ross,Ross,DGY,--3-----,AF,9704,,5511N 00328W, +,GB,RSY,Ramsey,Ramsey,CAM,1-------,AF,9511,,5227N 00006W, +,GB,RTR,Rotherfield,Rotherfield,ESX,--3-----,AF,9704,,5104N 00014E, +,GB,RUD,Raunds,Raunds,NTH,--3-----,AF,9907,,5221N 00032W, +,GB,RUG,Rugby,Rugby,WAR,--3-----,AF,9511,XRU,5222N 00116W, +,GB,RUI,Ruislip,Ruislip,HIL,--3-----,AF,1401,,5135N 00026W, +,GB,RUS,Rushden,Rushden,NTH,--3-----,AF,9511,,5217N 00036W, +,GB,RYE,Rye,Rye,ESX,1-------,AF,9511,,5057N 00044E, +,GB,SAB,Sabden,Sabden,LAN,--3-----,AF,9511,,5350N 00220W, +,GB,SAM,Samlesbury,Samlesbury,LAN,--3-----,AF,9704,,5346N 00236W, +,GB,SAN,Sandbach,Sandbach,CHE,--3-----,AF,1307,,5309N 00222W, +,GB,SAO,Stratton,Stratton,,--3-----,AF,9511,,5050N 00431W, +,GB,SAS,Sawston,Sawston,CAM,--3-----,AF,9511,,5208N 00010E, +,GB,SAV,Stratford-upon-Avon,Stratford-upon-Avon,WAR,123-----,AA,0701,,5212N 00142W, +,GB,SAW,Saffron Walden,Saffron Walden,ESS,--3-----,AF,9511,,5201N 00014E, +,GB,SAX,Saxham,Saxham,SFK,0-------,AF,9511,,5214N 00038E, +,GB,SAY,Swanley,Swanley,KEN,--3-----,AF,9511,,5124N 00011E, +,GB,SBD,Stockbridge,Stockbridge,HAM,--3-----,AF,9811,,5107N 00130W, +,GB,SBF,South Benfleet,South Benfleet,ESS,--3-----,AF,9704,,5133N 00033E, +,GB,SBK,Scarisbrick,Scarisbrick,LAN,--3-----,AF,9811,,5337N 00256W, +,GB,SBN,Sherburn,Sherburn,DUR,--3-----,RQ,0901,,5447N 00130W, +,GB,SBO,Sutton Bonnington,Sutton Bonnington,NTT,--3-----,AF,9704,,5249N 00115W, +,GB,SBR,Shrewsbury,Shrewsbury,SHR,--3-----,AF,9511,,5242N 00245W, +,GB,SBT,Stubbington,Stubbington,HAM,--3-----,AF,9704,,5050N 00113W, +,GB,SBY,Sunbury,Sunbury,SRY,--3-----,AF,9511,,5124N 00025W, +,GB,SCA,Scarborough,Scarborough,NYK,1-------,AF,9511,,5417N 00024W, +,GB,SCR,Scrabster,Scrabster,HLD,1-------,AF,9511,,5837N 00333W, +,GB,SCS,Scatsta,Scatsta,,---4----,AI,0001,,6026N 00118W, +,GB,SCY,Stirchley,Stirchley,SHR,--3-----,AF,9811,,5226N 00155W, +,GB,SDI,Sandiacre,Sandiacre,DBY,--3-----,AF,9704,,5255N 00117W, +,GB,SDL,Snodland,Snodland,KEN,1-3-----,AF,9811,,5120N 00026E, +,GB,SDN,Shildon,Shildon,DUR,0-------,AF,9704,,5438N 00139W, +,GB,SDR,Sanderstead,Sanderstead,SRY,--3-----,AF,1401,,5120N 00005W, +,GB,SDV,Seaton Delaval,Seaton Delaval,NBL,--3-----,AF,9511,,5504N 00131W, +,GB,SDX,Stroud,Stroud,GLS,--3-----,AF,9511,,5145N 00213W, +,GB,SDY,Sandy,Sandy,CBF,--3-----,AF,1307,,5208N 00018W, +,GB,SEA,Seaham,Seaham,DUR,1-------,AF,9511,,5450N 00120W, +,GB,SEH,Sedbergh,Sedbergh,CMA,--3-----,AF,9511,,5421N 00229W, +,GB,SEN,Southend Municipal Apt,Southend Municipal Apt,ESS,--34----,RQ,0101,,5134N 00042E, +,GB,SET,Settle,Settle,NYK,-23-----,AF,9704,,5404N 00217W, +,GB,SEV,Sevenoaks,Sevenoaks,KEN,--3-----,AF,9511,,5116N 00012E, +,GB,SFE,Stoke Ferry,Stoke Ferry,NFK,--3-----,AF,9704,,5234N 00031E, +,GB,SFL,Stotfold,Stotfold,HRT,--3-----,RQ,0101,,5201N 00014W, +,GB,SFO,Stapleford,Stapleford,NTT,--3-----,RL,0002,,5256N 00116W, +,GB,SFV,Stanford in the Vale,Stanford in the Vale,OXF,--3-----,AF,9704,,5138N 00131W, +,GB,SFW,Scapa Flow,Scapa Flow,ORK,1-------,AF,9511,,5853N 00304W, +,GB,SGD,Sunningdale,Sunningdale,WNM,--3-----,AF,0507,,5124N 00038W, +,GB,SGH,Seighford,Seighford,STS,--3-----,AF,9704,,5249N 00210W, +,GB,SGL,Sunninghill,Sunninghill,SRY,--3-----,AF,9704,,5124N 00039W, +,GB,SGT,Stillington,Stillington,NYK,1----6--,RQ,0901,,5406N 00108W, +,GB,SHA,Shrivenham,Shrivenham,OXF,--3-----,AF,9704,,5136N 00140W, +,GB,SHB,Shaftesbury,Shaftesbury,DOR,--3-----,AF,9511,,5100N 00212W, +,GB,SHD,South Darenth,South Darenth,KEN,--3-----,AF,9704,,5124N 00015E, +,GB,SHF,Shefford,Shefford,BDF,--3-----,AF,9511,,5202N 00020W, +,GB,SHH,Shipdham,Shipdham,NFK,--3-----,AF,9704,,5238N 00055E, +,GB,SHL,Shenfield,Shenfield,ESS,--3-----,AF,9704,,5138N 00020E, +,GB,SHM,Shepton Mallet,Shepton Mallet,SOM,--3-----,AF,9511,,5111N 00233W, +,GB,SHP,Shepherds Bush,Shepherds Bush,HMF,--3-----,AF,1401,,5130N 00013W, +,GB,SHQ,South Heighton,South Heighton,ESX,--3-----,AF,9704,,5048N 00003E, +,GB,SHR,Sherborne,Sherborne,DOR,--3-----,AF,9511,,5057N 00231W, +,GB,SHS,Sheerness,Sheerness,KEN,1-------,AF,9511,,5126N 00046E, +,GB,SHT,Shotton,Shotton,DUR,1-------,AF,1401,,5436N 00154W, +,GB,SHV,Shell Haven,Shell Haven,ESS,1-------,AF,9511,,5130N 00029E, +,GB,SIL,Silloth,Silloth,CMA,1-------,AF,9511,,5452N 00323W, +,GB,SIN,Singleton,Singleton,LAN,--3-----,AF,9704,,5351N 00257W, +,GB,SIT,Sittingbourne,Sittingbourne,KEN,--3-----,AF,9511,,5120N 00044E, +,GB,SIY,Shirley,Shirley,DBY,--3-----,AF,1401,,5258N 00140W, +,GB,SKD,Skelmersdale,Skelmersdale,LAN,--3-----,AF,9511,,5333N 00247W, +,GB,SKI,Skipton,Skipton,NYK,--3-----,AF,9511,,5358N 00201W, +,GB,SKY,Isle of Skye Apt,Isle of Skye Apt,,---4----,AI,0212,SKL,5715N 00549W, +,GB,SLA,Saint Leonards,Saint Leonards,ESX,--3-----,AF,1101,,5150N 00213W, +,GB,SLE,Sleaford,Sleaford,LIN,--3-----,AF,9511,,5260N 00025W, +,GB,SLI,Slinfold,Slinfold,WSX,--3-----,AF,9511,,5104N 00024W, +,GB,SLK,Shiplake,Shiplake,OXF,-23-----,AF,9704,,5130N 00054W, +,GB,SLR,Silchester,Silchester,HAM,--3-----,AF,9511,,5121N 00106W, +,GB,SLS,Salisbury,Salisbury,WIL,--3-----,AF,9511,XSR,5104N 00148W, +,GB,SLT,Saltney,Saltney,FLN,--3-----,AF,1401,,5311N 00256W, +,GB,SLW,Slawston,Slawston,LEC,--3-----,AF,9704,,5233N 00051W, +,GB,SLY,Sileby,Sileby,LEC,--3-----,AF,9511,,5244N 00106W, +,GB,SMD,Small Dole,Small Dole,WSX,--3-----,AF,9704,,5054N 00016W, +,GB,SMI,South Mimms,South Mimms,HRT,--3-----,AF,9511,,5142N 00014W, +,GB,SML,Stramshall,Stramshall,STS,--3-----,AF,9704,,5255N 00153W, +,GB,SMR,Somerton,Somerton,SOM,--3-----,AF,9704,,5104N 00245W, +,GB,SND,Southend,Southend,ESS,1-------,AF,9511,SEN,5134N 00042E, +,GB,SNG,Singleton,Singleton,WSX,--3-----,AF,9704,,5055N 00045W, +,GB,SNL,Stanley,Stanley,DUR,--3-----,AF,9804,,5452N 00142W, +,GB,SNS,Stromness,Stromness,ORK,1-------,AF,9511,,5858N 00318W, +,GB,SNT,Saint Neots,Saint Neots,CAM,--3-----,AF,1101,,5217N 00013W, +,GB,SNW,Saint Andrews,Saint Andrews,FIF,1-34----,AF,1101,ADX,5620N 00247W, +,GB,SNY,Stoke by Nayland,Stoke by Nayland,SFK,--3-----,AF,9704,,5159N 00054E, +,GB,SOE,Stoke,Stoke,CHW,--3-----,AF,1401,,5315N 00252W, +,GB,SOH,Southam,Southam,WAR,--3-----,AF,9511,,5215N 00123W, +,GB,SOM,Somercotes,Somercotes,DBY,--3-----,AF,9511,,5305N 00122W, +,GB,SON,Standon,Standon,STS,--3-----,AF,9804,,5255N 00217W, +,GB,SOO,South Ockendon,South Ockendon,ESS,--3-----,AF,9511,,5131N 00017E, +,GB,SOS,Saint Osyth,Saint Osyth,ESS,--3-----,AF,1101,,5148N 00105E, +,GB,SOU,Southampton,Southampton,HAM,1--4----,AF,9511,,5054N 00122W, +,GB,SOX,Stanton,Stanton,SFK,--3-----,AF,9704,,5219N 00053E, +,GB,SOY,Stronsay,Stronsay,,---4----,AI,0001,,5907N 00234W, +,GB,SPA,Spalding,Spalding,LIN,--3-----,AF,9511,,5247N 00009W, +,GB,SPB,Steeple Bumpstead,Steeple Bumpstead,ESS,--3-----,AF,9704,,5203N 00027E, +,GB,SPD,Shepshed,Shepshed,LEC,--3-----,AF,9811,,5246N 00118W, +,GB,SPE,Spellbrook,Spellbrook,HRT,--3-----,AF,9511,,5150N 00009E, +,GB,SPM,Shipham,Shipham,SOM,--3-----,AF,9704,,5119N 00247W, +,GB,SPN,Spennymoor,Spennymoor,DUR,--3-----,AF,9511,,5442N 00136W, +,GB,SPO,Spondon,Spondon,DBY,--3-----,AF,9511,,5256N 00123W, +,GB,SPR,Sparkford,Sparkford,SOM,--3-----,AF,9704,,5102N 00234W, +,GB,SPU,Sherbourne,Sherbourne,WAR,--3-----,AF,9811,,5215N 00137W, +,GB,SRD,Stafford,Stafford,STS,--3-----,AF,9511,XVB,5248N 00207W, +,GB,SRN,Storrington,Storrington,WSX,--3-----,AF,9511,,5055N 00027W, +,GB,SRS,Sherston,Sherston,WIL,--3-----,AF,9704,,5134N 00213W, +,GB,SSA,Stanstead Abbots,Stanstead Abbots,HRT,--3-----,AF,9704,,5147N 00001E, +,GB,SSC,Seascale,Seascale,CMA,-23-----,AF,9704,,5424N 00329W, +,GB,SSG,Sissinghurst,Sissinghurst,KEN,--3-----,AF,9704,,5106N 00032E, +,GB,SSS,Sharpness,Sharpness,GLS,1-------,AF,9511,,5143N 00228W, +,GB,SST,Shenstone,Shenstone,STS,-23-----,AF,9811,,5237N 00151W, +,GB,STA,Southwater,Southwater,WSX,--3-----,AF,9704,,5101N 00021W, +,GB,STD,Strood,Strood,KEN,0-------,AF,9511,,5104N 00039E, +,GB,STE,Street,Street,SOM,--3-----,AF,9511,,5108N 00244W, +,GB,STG,Seething,Seething,NFK,--3-----,AF,9704,,5232N 00125E, +,GB,STI,Saint Ives,Saint Ives,CAM,--3-----,AF,1101,,5220N 00005W, +,GB,STL,Saint Austell,Saint Austell,CON,--3-----,AF,1101,,5020N 00448W, +,GB,STN,Stansted Apt/London,Stansted Apt/London,ESS,---4----,AF,9511,,5153N 00014E, +,GB,STR,Stranraer,Stranraer,DGY,1-------,AF,9511,,5454N 00502W, +,GB,STS,Staines,Staines,SRY,--3-----,AF,9511,,5126N 00031W, +,GB,STU,Studley,Studley,WAR,--3-----,AF,9704,,5216N 00154W, +,GB,STV,Stevenage,Stevenage,HRT,--3-----,AF,9511,XVJ,5154N 00012W, +,GB,STW,Stowmarket,Stowmarket,SFK,--3-----,AF,9511,,5211N 00060E, +,GB,STX,Stone,Stone,STS,--3-----,AF,9511,,5254N 00209W, +,GB,SUD,Sudbury,Sudbury,SFK,--3-----,AF,9511,,5202N 00044E, +,GB,SUH,Spurn Head,Spurn Head,,1-------,AF,9811,,5334N 00007E, +,GB,SUL,Sullom Voe,Sullom Voe,ZET,1-------,AF,9511,,6028N 00118W, +,GB,SWB,Swanscombe,Swanscombe,KEN,-23-----,AF,9811,,5127N 00018E, +,GB,SWD,Southwold,Southwold,SFK,1-------,AF,9511,,5220N 00141E, +,GB,SWF,South Woodham Ferrers,South Woodham Ferrers,ESS,-23-----,AF,9804,,5139N 00037E, +,GB,SWK,Swanwick,Swanwick,HAM,-23-----,AF,9704,,5053N 00116W, +,GB,SWL,Stanwell,Stanwell,SRY,--3-----,AF,9511,,5127N 00029W, +,GB,SWO,South Weston,South Weston,OXF,--3-----,AF,9704,,5141N 00059W, +,GB,SWW,Sawbridgeworth,Sawbridgeworth,HRT,--3-----,AF,9704,,5149N 00009E, +,GB,SWY,Scalloway,Scalloway,ZET,1-------,AF,9511,,6008N 00117W, +,GB,SXM,Saxmundham,Saxmundham,SFK,--3-----,AF,9511,,5213N 00130E, +,GB,SXX,Seal,Seal,KEN,--3-----,AF,9804,,5116N 00015E, +,GB,SXY,Shipley,Shipley,WSX,--3-----,AF,9704,,5059N 00022W, +,GB,SYC,Sayers Common,Sayers Common,WSX,--3-----,AF,9704,,5057N 00012W, +,GB,SYK,Suckley,Suckley,WOR,-----6--,RL,1107,,5210N 00224W, +,GB,SYM,Symbister,Symbister,ZET,1-------,AF,9711,,6020N 00102W, +,GB,SYN,Shoeburyness,Shoeburyness,ESS,-23-----,AF,9804,,5132N 00048E, +,GB,SYS,Syston,Syston,LEC,--3-----,AF,9511,,5242N 00105W, +,GB,SYW,Sywell,Sywell,NTH,--3-----,AF,9511,,5218N 00048W, +,GB,SZM,Soham,Soham,CAM,--3-----,AF,9704,,5220N 00020E, +,GB,TAF,Stamford,Stamford,LIN,--3-----,AF,9511,,5239N 00029W, +,GB,TAU,Taunton,Taunton,SOM,--3-----,AF,9511,,5101N 00306W, +,GB,TAW,Tamworth,Tamworth,STS,--3-----,AF,9511,,5238N 00142W, +,GB,TAY,Tayport,Tayport,FIF,1-------,AF,9511,,5627N 00253W, +,GB,TBG,Trowbridge,Trowbridge,WIL,--3-----,AF,9511,,5119N 00212W, +,GB,TBL,Saint Albans,Saint Albans,HRT,-23-----,AF,1101,,5145N 00020W, +,GB,TBS,Tibshelf,Tibshelf,DBY,--3-----,AF,9704,,5309N 00121W, +,GB,TCH,Ticehurst,Ticehurst,ESX,--3-----,AF,9704,,5103N 00025E, +,GB,TCK,Ibstock,Ibstock,LEC,--3-----,RL,0901,,5241N 00124W, +,GB,TDG,Tandragee,Tandragee,ARM,--3-----,AF,9804,,5421N 00625W, +,GB,TDN,Toddington,Toddington,BDF,--3-----,AF,9704,,5157N 00032W, +,GB,TDS,Tadcaster,Tadcaster,NYK,--3-----,AF,9511,,5353N 00116W, +,GB,TDT,Thames Ditton,Thames Ditton,SRY,--3-----,AF,9704,,5123N 00020W, +,GB,TDW,Tadworth,Tadworth,SRY,-23-----,AF,9704,,5117N 00014W, +,GB,TEB,Tewkesbury,Tewkesbury,GLS,--3-----,AF,9511,,5160N 00209W, +,GB,TEF,Telford,Telford,SHR,--3-----,AF,9511,,5243N 00243W, +,GB,TET,Tetbury,Tetbury,GLS,--3-----,AF,9511,,5138N 00210W, +,GB,TFD,Thetford,Thetford,NFK,--3-----,AF,9511,,5225N 00045E, +,GB,TFF,Trottiscliffe,Trottiscliffe,KEN,--3-----,AF,9704,,5119N 00022E, +,GB,TFX,Turnford,Turnford,HRT,-----6--,RL,1107,,5144N 00002W, +,GB,THB,Thornbridge,Thornbridge,DBY,0-------,AF,9511,,5314N 00142W, +,GB,THC,Three Legged Cross,Three Legged Cross,DOR,--3-----,AF,9907,,5051N 00153W, +,GB,THE,Thame,Thame,OXF,--3-----,AF,9511,,5145N 00059W, +,GB,THN,Thornton,Thornton,LAN,--3-----,AF,9511,,5353N 00301W, +,GB,THO,Thormanby,Thormanby,NYK,--3-----,AF,9511,,5410N 00115W, +,GB,THP,Thamesport,Thamesport,KEN,1-------,AF,9511,,5126N 00041E, +,GB,THS,Thames Haven,Thames Haven,ESS,1-------,AF,9511,,5131N 00030E, +,GB,TIL,Tilbury,Tilbury,ESS,1-------,AF,9511,,5128N 00021E, +,GB,TKG,Throcking,Throcking,HRT,--3-----,AF,9704,,5157N 00003W, +,GB,TKW,Tockwith,Tockwith,NYK,--3-----,AF,9704,,5358N 00117W, +,GB,TLG,Tylers Green,Tylers Green,BKM,--3-----,AF,9704,,5139N 00042W, +,GB,TLH,Thurleigh,Thurleigh,BDF,--3-----,AF,1307,,5213N 00028W, +,GB,TLQ,Totton,Totton,HAM,--3-----,AF,9704,,5055N 00130W, +,GB,TLW,Taplow,Taplow,BKM,-23-----,AF,9704,,5133N 00041W, +,GB,TMS,Thurmaston,Thurmaston,LEC,--3-----,AF,9811,,5241N 00105W, +,GB,TNB,Tonbridge,Tonbridge,KEN,--3-----,AF,9511,,5111N 00016E, +,GB,TNL,Tunstall,Tunstall,STS,--3-----,AF,9811,,5251N 00220W, +,GB,TNN,Hilton,Hilton,CAM,1-------,RQ,0901,,5217N 00007W, +,GB,TOA,Tomatin,Tomatin,HLD,--3-----,AF,9704,,5720N 00359W, +,GB,TOF,Toft,Toft,LIN,--3-----,AF,9704,,5322N 00025W, +,GB,TOL,Tollesbury,Tollesbury,ESS,1-------,AF,9511,,5145N 00051E, +,GB,TOO,Toomebridge,Toomebridge,ANT,--3-----,AF,9511,,5445N 00628W, +,GB,TOW,Towcester,Towcester,NTH,--3-----,AF,9704,,5208N 00059W, +,GB,TPC,Templecombe,Templecombe,SOM,--3-----,AF,9704,,5100N 00225W, +,GB,TPL,Tarporley,Tarporley,CHW,--3-----,AF,1307,,5310N 00240W, +,GB,TPP,Thrupp,Thrupp,GLS,--3-----,AF,9704,,5144N 00212W, +,GB,TPS,Thrapston,Thrapston,NTH,--3-----,AF,9811,,5224N 00032W, +,GB,TRE,Tiree,Tiree,,---4----,AI,0001,,5629N 00655W, +,GB,TRI,Tring,Tring,HRT,--3-----,AF,9511,,5148N 00040W, +,GB,TRK,Thurrock,Thurrock,ESS,--3-----,AF,9511,,5130N 00024E, +,GB,TRU,Truro,Truro,CON,1-------,AF,9511,,5016N 00503W, +,GB,TSK,Thirsk,Thirsk,NYK,--3-----,AF,9811,XTK,5414N 00121W, +,GB,TSW,Tilsworth,Tilsworth,BDF,--3-----,AF,9704,,5155N 00035W, +,GB,TTD,Tenterden,Tenterden,KEN,--3-----,AF,9704,,5104N 00042E, +,GB,TUT,Tutbury,Tutbury,STS,-23-----,AF,9704,,5251N 00142W, +,GB,TUW,Tunbridge Wells,Tunbridge Wells,KEN,--3-----,AF,9511,,5108N 00016E, +,GB,TUX,Tuxford,Tuxford,NTT,--3-----,AF,9511,,5314N 00054W, +,GB,TVL,Tovil,Tovil,KEN,--3-----,AF,9704,,5116N 00031E, +,GB,TVN,Tiverton,Tiverton,,--3-----,AF,9511,,5054N 00329W, +,GB,TVT,Stretton,Stretton,LEC,-----6--,RQ,1007,,5242N 00133W, +,GB,TWD,Trawden,Trawden,LAN,--3-----,AF,9704,,5351N 00208W, +,GB,TWL,Tingwall,Tingwall,ZET,1--4----,AF,9711,,6010N 00113W, +,GB,TWW,Tow Law,Tow Law,DUR,--3-----,AF,9511,,5445N 00149W, +,GB,TXD,Thaxted,Thaxted,ESS,--3-----,AF,9704,,5157N 00021E, +,GB,TYH,Teynham,Teynham,KEN,-23-----,AF,9907,,5121N 00049E, +,GB,UBA,Distington,Distington,CMA,--3-----,RQ,0901,,5435N 00331W, +,GB,UCK,Uckfield,Uckfield,ESX,--3-----,AF,9511,,5058N 00006E, +,GB,UFG,Uffington,Uffington,OXF,--3-----,AF,9704,,5136N 00134W, +,GB,UHL,Upper Holloway,Upper Holloway,ISL,--3-----,RL,0901,,5306N 00130W, +,GB,UIG,Uig,Uig,HLD,1-3-----,AF,9711,,5735N 00622W, +,GB,ULL,Ullapool,Ullapool,HLD,1-------,AF,9511,,5754N 00510W, +,GB,ULV,Ulverston,Ulverston,CMA,--3-----,AF,9511,,5411N 00305W, +,GB,UND,Lund,Lund,ERY,--3-----,RQ,0901,,5355N 00031W, +,GB,UPD,Upper Dicker,Upper Dicker,ESX,--3-----,AF,9704,,5052N 00013E, +,GB,UPW,Upwood,Upwood,CAM,--3-----,AF,9704,,5226N 00009W, +,GB,URL,Lurgan,Lurgan,ARM,--3-----,AF,9511,,5428N 00620W, +,GB,UTH,Southam,Southam,GLS,--3-----,RQ,0901,,5156N 00203W, +,GB,UTN,Upton,Upton,LIN,--3-----,AF,1401,,5322N 00042W, +,GB,UTX,Uttoxeter,Uttoxeter,STS,-23-----,AF,9704,,5254N 00152W, +,GB,VDM,Long Sutton,Long Sutton,SOM,-----6--,RL,1107,,5102N 00246W, +,GB,VER,Verwood,Verwood,DOR,--3-----,AF,9511,,5053N 00153W, +,GB,VGN,Virginia Water,Virginia Water,SRY,--3-----,AF,9704,,5124N 00034W, +,GB,VOB,Vobster,Vobster,SOM,--3-----,AF,9704,,5114N 00226W, +,GB,WAA,Watlington,Watlington,NFK,--3-----,AF,9704,,5240N 00024E, +,GB,WAC,Waltham Cross,Waltham Cross,HRT,--3-----,AF,9511,,5141N 00002W, +,GB,WAF,Watford,Watford,HRT,1-------,AF,9511,,5139N 00024W, +,GB,WAL,Walsall,Walsall,WLL,--3-----,AF,1401,,5235N 00159W, +,GB,WAM,Warminster,Warminster,WIL,--3-----,RL,0002,,5113N 00210W, +,GB,WAR,Ware,Ware,HRT,--3-----,AF,9511,,5149N 00002W, +,GB,WAT,Watchet,Watchet,SOM,1-------,AF,9511,,5111N 00320W, +,GB,WAV,Watford Village,Watford Village,,0-------,AF,9511,,5219N 00107W, +,GB,WAW,Warwick,Warwick,CMA,--3-----,AF,9511,,5217N 00135W, +,GB,WBC,Wombourne,Wombourne,STS,--3-----,AF,9811,,5232N 00211W, +,GB,WBG,Woodbridge,Woodbridge,SFK,--34----,AF,9511,BWY,5206N 00119E, +,GB,WBH,Wimbish,Wimbish,ESS,--3-----,AF,9704,,5160N 00018E, +,GB,WBN,Woburn,Woburn,BDF,--3-----,AF,9511,,5206N 00030W, +,GB,WBR,Weybridge,Weybridge,SRY,--3-----,AF,9511,,5122N 00027W, +,GB,WBT,West Byfleet,West Byfleet,SRY,--3-----,AF,9511,,5120N 00030W, +,GB,WCT,Wincanton,Wincanton,SOM,--3-----,AF,9511,,5103N 00225W, +,GB,WCU,Whitchurch,Whitchurch,SOM,--3-----,AF,9811,,5059N 00224W, +,GB,WCW,West Challow,West Challow,OXF,--3-----,AF,9704,,5136N 00128W, +,GB,WDA,Woodhall,Woodhall,NYK,--3-----,AF,9704,,5418N 00202W, +,GB,WDD,Waddington,Waddington,LAN,--34----,AF,9704,WTN,5354N 00225W, +,GB,WDH,Woodhall Spa,Woodhall Spa,LIN,--3-----,AF,9511,,5309N 00013W, +,GB,WDL,Windlesham,Windlesham,SRY,--3-----,AF,9704,,5122N 00041W, +,GB,WDM,Windermere,Windermere,CMA,-23-----,AF,9811,,5423N 00254W, +,GB,WDS,Woodstock,Woodstock,OXF,--3-----,AF,9704,,5151N 00121W, +,GB,WEE,Weedon,Weedon,BKM,--3-----,AF,9511,,5151N 00049W, +,GB,WEH,Winchmore Hill,Winchmore Hill,BKM,--3-----,RQ,0101,,5138N 00006W, +,GB,WEL,Wellingborough,Wellingborough,NTH,--3-----,AF,9511,XWE,5218N 00042W, +,GB,WEM,Welham Green,Welham Green,HRT,-23-----,AF,9804,,5144N 00013W, +,GB,WEN,West End,West End,HAM,--3-----,AF,9704,,5056N 00120W, +,GB,WEQ,Westcott,Westcott,,--3-----,AF,9704,,5151N 00058W, +,GB,WER,Westerham,Westerham,KEN,--3-----,AF,9704,,5115N 00004E, +,GB,WES,Weston,Weston,HRT,--3-----,AF,9704,,5157N 00010W, +,GB,WEY,Weymouth,Weymouth,DOR,1-------,AF,9511,,5037N 00227W, +,GB,WFI,Westfield,Westfield,,--3-----,AF,9811,,5055N 00034E, +,GB,WFO,Westcliffe on Sea,Westcliffe on Sea,ESS,--3-----,AF,9704,,5132N 00041E, +,GB,WGC,Welwyn Garden City,Welwyn Garden City,HRT,-23-----,AF,9704,,5148N 00012W, +,GB,WGE,Wantage,Wantage,OXF,--3-----,AF,9704,,5135N 00125W, +,GB,WGH,Wingham,Wingham,KEN,--3-----,AF,9704,,5116N 00113E, +,GB,WGR,Bangor-is-y-coed,Bangor-is-y-coed,WRX,--3-----,RL,0901,,5300N 00255W, +,GB,WGS,Wigston,Wigston,LEC,--3-----,AF,9811,,5235N 00106W, +,GB,WGT,Wigton,Wigton,CMA,--3-----,AF,9511,,5449N 00310W, +,GB,WHA,Whatton,Whatton,NTT,--3-----,AF,9511,,5257N 00054W, +,GB,WHC,Whitchurch,Whitchurch,SHR,--3-----,RL,0002,,5258N 00241W, +,GB,WHF,Wethersfield,Wethersfield,ESS,--3-----,AF,9704,,5157N 00031E, +,GB,WHG,Washington,Washington,WSX,--3-----,AF,9704,,5054N 00024W, +,GB,WHM,Wetherden,Wetherden,SFK,--3-----,AF,9804,,5214N 00056E, +,GB,WHO,West Horndon,West Horndon,ESS,--3-----,AF,0212,,5134N 00021E, +,GB,WHP,Wheathampstead,Wheathampstead,HRT,--3-----,AF,9704,,5149N 00018W, +,GB,WHT,Whitton,Whitton,NBL,--3-----,AF,9811,,5517N 00158W, +,GB,WHU,Woodhurst,Woodhurst,CAM,--3-----,AF,9704,,5222N 00004W, +,GB,WHV,Whitehaven,Whitehaven,CMA,1-------,AF,9511,,5433N 00335W, +,GB,WHY,Whalsay,Whalsay,,---4----,AI,0001,WHS,6022N 00057W, +,GB,WIC,Wick,Wick,HLD,1--4----,AF,9511,,5826N 00305W, +,GB,WID,Wickford,Wickford,ESS,--3-----,AF,9511,,5137N 00031E, +,GB,WIG,Wigtown,Wigtown,DGY,1-------,AF,9511,,5452N 00426W, +,GB,WIH,Witham,Witham,ESS,--3-----,AF,9511,,5148N 00038E, +,GB,WII,Willen,Willen,BKM,--3-----,AF,9704,,5204N 00043W, +,GB,WIM,Wimborne Minster,Wimborne Minster,DOR,--3-----,AF,9511,,5048N 00159W, +,GB,WIN,Witney,Witney,OXF,--3-----,AF,9511,,5147N 00129W, +,GB,WIR,Wirksworth,Wirksworth,DBY,--3-----,AF,9511,,5305N 00134W, +,GB,WIS,Wisbech,Wisbech,CAM,1-------,AF,9511,,5240N 00010E, +,GB,WIV,Wivenhoe,Wivenhoe,ESS,1-------,AF,9511,,5151N 00058E, +,GB,WKG,Woking,Woking,SRY,--3-----,AF,9511,XWO,5119N 00033W, +,GB,WKI,West Kirby,West Kirby,WRL,123-----,AF,1401,,5322N 00311W, +,GB,WKN,Walkern,Walkern,HRT,--3-----,AF,9704,,5155N 00007W, +,GB,WLA,Wallasea,Wallasea,ESS,1-------,AF,9709,,5137N 00050E, +,GB,WLD,Welford,Welford,NTH,--3-----,AF,9511,,5127N 00125W, +,GB,WLF,Wallingford,Wallingford,OXF,--3-----,AF,9704,,5136N 00108W, +,GB,WLH,Dawlish,Dawlish,DEV,--3-----,RQ,0901,,5035N 00328W, +,GB,WLN,Welwyn,Welwyn,HRT,--3-----,AF,9511,,5148N 00012W, +,GB,WLS,Wells,Wells,SOM,1-------,AF,9511,,5113N 00239W, +,GB,WLT,Wilton,Wilton,WIL,--3-----,AF,9511,,5105N 00152W, +,GB,WLV,Waterlooville,Waterlooville,HAM,--3-----,AF,9511,,5053N 00102W, +,GB,WLY,Warley,Warley,,0-------,AF,9511,,5343N 00155W, +,GB,WMF,Walmer,Walmer,KEN,1-3-----,AF,9811,,5112N 00124E, +,GB,WMG,Woolmer Green,Woolmer Green,HRT,--3-----,AF,9704,,5151N 00011W, +,GB,WMK,Wickham Market,Wickham Market,SFK,--3-----,AF,9511,,5209N 00122E, +,GB,WMN,West Meon,West Meon,HAM,--3-----,AF,9704,,5101N 00105W, +,GB,WNB,Wootton Bassett,Wootton Bassett,WIL,--3-----,AF,9704,,5133N 00154W, +,GB,WNC,Wilnecote,Wilnecote,STS,--3-----,AF,9704,,5237N 00140W, +,GB,WNE,Winchester,Winchester,HAM,--3-----,AF,9511,,5104N 00119W, +,GB,WNF,Winchfield,Winchfield,HAM,-23-----,AF,9704,,5117N 00055W, +,GB,WNH,Warlingham,Warlingham,SRY,--3-----,AF,9804,,5119N 00003W, +,GB,WNW,Winfrith Newburgh,Winfrith Newburgh,DOR,--3-----,AF,9704,,5040N 00216W, +,GB,WOA,Welford on Avon,Welford on Avon,WAR,--3-----,AF,9704,,5210N 00147W, +,GB,WOD,Woldingham,Woldingham,SRY,--3-----,AF,9704,,5117N 00003W, +,GB,WOH,Woodford Halse,Woodford Halse,NTH,--3-----,AF,9704,,5210N 00112W, +,GB,WOI,Worthing,Worthing,NFK,--3-----,AF,9704,,5244N 00058E, +,GB,WON,Witton,Witton,NFK,--3-----,AF,9511,,5250N 00128E, +,GB,WOO,Worlington,Worlington,SFK,--3-----,AF,9704,,5220N 00029E, +,GB,WOR,Workington,Workington,CMA,1-------,AF,9511,,5438N 00333W, +,GB,WOS,Woburn Sands,Woburn Sands,BKM,--3-----,AF,9511,,5201N 00039W, +,GB,WOY,Woodbury,Woodbury,,--3-----,AF,0212,,5041N 00324W, +,GB,WPS,Welshpool,Welshpool,POW,--3-----,AF,9805,,5240N 00309W, +,GB,WPT,Warrenpoint,Warrenpoint,DOW,1-------,AF,9511,,5406N 00615W, +,GB,WQT,Welton,Welton,CMA,--3-----,AF,9704,,5218N 00109W, +,GB,WRG,Werrington,Werrington,CAM,--3-----,AF,9704,,5040N 00422W, +,GB,WRK,Worksop,Worksop,NTT,--3-----,AF,9511,,5318N 00107W, +,GB,WRL,Warton,Warton,WAR,--3-----,AF,9907,,5409N 00249W, +,GB,WRO,Wrotham,Wrotham,KEN,--3-----,AF,9804,,5119N 00018E, +,GB,WRS,Worsley,Worsley,SLF,--3-----,AF,1401,,5330N 00223W, +,GB,WRT,Warton,Warton,LAN,--3-----,AF,9811,,5409N 00249W, +,GB,WRY,Westray,Westray,ORK,1--4----,AF,9511,,5918N 00258W, +,GB,WSF,West Stafford,West Stafford,DOR,--3-----,AF,9704,,5042N 00223W, +,GB,WSL,Winslow,Winslow,BKM,--3-----,AF,9811,,5157N 00053W, +,GB,WSN,Weston,Weston,STS,--3-----,AF,9704,,5242N 00217W, +,GB,WSO,Whetstone,Whetstone,LEC,--3-----,AF,9704,,5234N 00111W, +,GB,WSS,Warsash,Warsash,HAM,--3-----,AF,9812,,5051N 00118W, +,GB,WSW,Wilmslow,Wilmslow,CHE,--3-----,AF,1307,,5320N 00214W, +,GB,WSY,Westbury,Westbury,WIL,--3-----,AF,9511,,5116N 00211W, +,GB,WTF,Whittlesford,Whittlesford,CAM,--3-----,AF,9811,,5207N 00009E, +,GB,WTH,Withnell,Withnell,LAN,--3-----,AF,9704,,5342N 00233W, +,GB,WTM,West Hallam,West Hallam,DBY,--3-----,AF,9704,,5258N 00122W, +,GB,WTN,Waddington,Waddington,LIN,--3-----,AF,9511,,5310N 00032W, +,GB,WTS,Whitstable,Whitstable,KEN,1-------,AF,9511,,5122N 00101E, +,GB,WTT,Watton,Watton,NFK,--3-----,AF,9511,,5234N 00050E, +,GB,WUF,Wolvey,Wolvey,HAM,1-------,RQ,0901,,5230N 00122W, +,GB,WUG,Wooburn Green,Wooburn Green,BKM,--3-----,AF,9704,,5135N 00041W, +,GB,WVC,Wolvercote,Wolvercote,OXF,--3-----,AF,9704,,5147N 00117W, +,GB,WVF,Wivelsfield Green,Wivelsfield Green,ESX,--3-----,AF,9704,,5058N 00004W, +,GB,WVT,Wolverton,Wolverton,BKM,--3-----,AF,9511,,5204N 00049W, +,GB,WWK,Warwick,Warwick,WAR,--3-----,AF,9511,,5217N 00135W, +,GB,WWL,Gowdall,Gowdall,YOR,1-------,RQ,0901,,5342N 00104W, +,GB,WWW,Hutton Cranswick,Hutton Cranswick,ERY,1-------,RQ,0901,,5358N 00026W, +,GB,WXN,Willaston,Willaston,CHW,--3-----,AF,1401,,5318N 00300W, +,GB,WXR,Worth,Worth,WSX,--3-----,AF,9812,,5107N 00009W, +,GB,WYA,Wykeham,Wykeham,NYK,--3-----,AF,9704,,5414N 00031W, +,GB,WYB,Whaley Bridge,Whaley Bridge,DBY,-23-----,AF,9811,,5320N 00159W, +,GB,WYD,Wymondham,Wymondham,NFK,--3-----,AF,9907,,5235N 00107E, +,GB,WYM,Wylam,Wylam,NBL,--3-----,AF,9704,,5459N 00149W, +,GB,XAS,Saxby-All-Sts,Saxby-All-Sts,LIN,--3-----,RQ,0901,,5338N 00030W, +,GB,YAL,Yalding,Yalding,KEN,--3-----,AF,9511,,5113N 00026E, +,GB,YAT,Yate,Yate,GLS,--3-----,AF,9811,,5132N 00225W, +,GB,YEB,Bourne End,Bourne End,BKM,--3-----,AF,9704,,5135N 00043W, +,GB,YEO,Yeovil,Yeovil,SOM,--34----,AF,9511,,5057N 00238W, +,GB,YKE,Yoker,Yoker,GLG,1-------,RQ,0901,,5553N 00423W, +,GB,YLL,Yelland,Yelland,,1-------,AF,0212,,5104N 00409W, +,GB,YLY,Hartley,Hartley,CMA,1-------,RQ,0901,,5428N 00219W, +,GB,YRK,York,York,NYK,1-------,AF,9511,QQY,5358N 00105W, +,GB,YTE,Yateley,Yateley,HAM,--3-----,AF,9804,,5120N 00049W, +,GB,YUR,Church Stretton,Church Stretton,SHR,-23-----,AF,9804,,5232N 00248W, +,GB,YVZ,Stonehouse,Stonehouse,GLS,1-------,AF,9704,,5145N 00217W, +,GB,ZCT,Roydon,Roydon,ESS,-----6--,RL,0901,,5146N 00002E, +,GB,ZCX,Sibsey,Sibsey,LIN,-----6--,RL,0901,,5302N 00001E, +,GB,ZOR,Martock,Martock,SOM,--3-----,AF,9704,,5058N 00246W, +,GD,GND,Grenada,Grenada,,---45---,AI,9601,,1207N 06141W, +,GD,GRE,Grenville,Grenville,,1-------,QQ,8103,,1207N 06137W, +,GD,HIL,"Hillsborough, Carriacou Is","Hillsborough, Carriacou Is",,1-------,QQ,8103,,1229N 06127W, +,GD,STG,Saint George's,Saint George's,,1-------,AI,9401,,1203N 06145W, +,GE,BUS,Batumi,Batumi,,1--4----,AI,9601,,4139N 04138E, +,GE,GUR,Gurjaani,Gurjaani,,--3-----,RL,9906,,4145N 04548E, +,GE,KUT,Kutaisi,Kutaisi,,---4----,AI,0001,,4216N 04242E, +,GE,PTI,Poti,Poti,,1-------,QQ,9207,,4208N 04140E, +,GH,ACC,Accra,Accra,,---45---,AI,,,0533N 00012W, +,GH,ADA,Ada,Ada,,1-------,QQ,8103,,0555N 00034W, +,GH,AXI,Axim,Axim,,1-------,QQ,8103,,0452N 00215W, +,GH,CCT,Cape Coast,Cape Coast,,1-------,QQ,8103,,0506N 00115W, +,GH,KIT,Keta,Keta,,1-------,QQ,8103,,0555N 00059E, +,GH,KMS,Kumasi,Kumasi,,---4----,AI,9601,,0642N 00137W, +,GH,NYI,Sunyani,Sunyani,,---4----,AI,9601,,0720N 00220W, +,GH,SEK,Sekondi,Sekondi,,1-------,QQ,8103,,0456N 00145W, +,GH,SHA,Shama,Shama,,1-------,QQ,8103,,0501N 00138W, +,GH,SPD,Saltpond,Saltpond,,1-------,RQ,9506,,0512N 00103W, +,GH,TEM,Tema,Tema,,1-------,QQ,8103,,0540N 00001W, +,GH,TKD,Takoradi,Takoradi,,1--45---,AI,9601,,0456N 00145W, +,GH,TML,Tamale,Tamale,,---4----,AI,0001,,0924N 00051W, +,GH,WEA,Winneba,Winneba,,1-------,QQ,8103,,0521N 00037W, +,GI,GIB,Gibraltar,Gibraltar,,1--45---,AI,9601,,3608N 00521W, +,GL,CNP,Neerlerit Inaat,Neerlerit Inaat,,---4----,AI,0001,,7045N 02239W, +,GL,DAN,Daneborg,Daneborg,,1-------,QQ,8401,,7418N 02013W, +,GL,DUN,Dundas,Dundas,,---4----,AI,0001,,7634N 06847W, +,GL,FHN,Kangerdluarssoruseg (F�ringehavn,Kangerdluarssoruseg (Faringehavn,,1-------,AI,8401,,6342N 05133W, +,GL,IUT,Ivigtut,Ivigtut,,1-------,QQ,8401,,6112N 04810W, +,GL,JAV,Ilulissat (Jakobshavn),Ilulissat (Jakobshavn),,1--4----,AI,8401,,6913N 05106W, +,GL,JCH,Qasigiannguit (Christianshaab),Qasigiannguit (Christianshaab),,1--4----,AI,9601,,6849N 05112W, +,GL,JEG,Aasiaat (Egedesminde),Aasiaat (Egedesminde),,1--4----,AI,8401,,6843N 05251W, +,GL,JFR,Paamiut (Fredrikshaab),Paamiut (Fredrikshaab),,1--4----,QQ,8401,,6160N 04940W, +,GL,JGO,Qeqertarsuaq (Godhavn),Qeqertarsuaq (Godhavn),,1--4----,AI,9601,,6915N 05332W, +,GL,JGR,Kangilinguit (Gronnedal),Kangilinguit (Gronnedal),,1--4----,AI,8401,,6114N 04806W, +,GL,JHS,Sisimiut (Holsteinsborg),Sisimiut (Holsteinsborg),,1--4----,AI,8401,,6656N 05340W, +,GL,JJU,Qaqortoq (Julianehaab),Qaqortoq (Julianehaab),,1--4----,AI,9601,,6043N 04602W, +,GL,JNN,Nanortalik,Nanortalik,,1--4----,AI,9401,,6008N 04515W, +,GL,JNS,Narsaq,Narsaq,,---4----,AI,9601,,6055N 04603W, +,GL,JRK,Arsuk,Arsuk,,---4----,AI,0001,,6110N 04827W, +,GL,JSU,Maniitsoq (Sukkertoppen),Maniitsoq (Sukkertoppen),,1--4----,AI,8401,,6525N 05254W, +,GL,JUV,Upernavik,Upernavik,,---4----,AI,9601,,7247N 05609W, +,GL,KUS,Kulusuk,Kulusuk,,1--4----,AI,,,6535N 03711W, +,GL,MRG,Mesters Vig,Mesters Vig,,1-------,QQ,8401,,7214N 02355W, +,GL,NAQ,Qaanaaq,Qaanaaq,,1--4----,AI,9506,,7728N 06913W, +,GL,NUG,Nuugaatsiaq,Nuugaatsiaq,,--3-----,RQ,0901,,7132N 05313W, +,GL,QUE,Qullissat,Qullissat,,---4----,RQ,0901,,7005N 05300W, +,GL,SFJ,Kangerlussuaq (Sondre Stromfjord,Kangerlussuaq (Sondre Stromfjord,,---4----,AI,8401,,6701N 05041W, +,GL,UAK,Narsarsuaq,Narsarsuaq,,1--4----,AI,9601,,6109N 04525W, +,GL,UMD,Uummannaq,Uummannaq,,1--4----,AI,9601,,7040N 05208W, +,GM,BAK,Bakau,Bakau,,----5---,AI,9808,,1329N 01641W, +,GM,BAN,Bansang,Bansang,,----5---,AI,9808,,1326N 01440W, +,GM,BJL,Banjul,Banjul,,1--45---,AI,9601,,1327N 01635W, +,GM,BRB,Brikama Ba,Brikama Ba,,----5---,AI,9808,,1332N 01456W, +,GM,BSS,Basse Santa Su,Basse Santa Su,,----5---,AI,9808,,1319N 01413W, +,GM,BWI,Bwiam,Bwiam,,----5---,AI,9808,,1314N 01605W, +,GM,FAR,Farafenni,Farafenni,,----5---,AI,9808,,1334N 01536W, +,GM,KUN,Kuntair,Kuntair,,----5---,AI,9808,,1332N 01613W, +,GM,MAK,Mansa Konko,Mansa Konko,,----5---,AI,9808,,1328N 01532W, +,GM,SKE,Serekunda,Serekunda,,----5---,AI,9601,,1326N 01640W, +,GN,BTY,Benty,Benty,,1-------,QQ,8103,,0910N 01313W, +,GN,CKY,Conakry,Conakry,,1--45---,AI,9601,,0931N 01342W, +,GN,FAA,Faranah,Faranah,,---4----,AI,0001,,1003N 01044W, +,GN,FIG,Fria,Fria,,---4----,AI,0001,,1022N 01335W, +,GN,GII,Siguiri,Siguiri,,---4----,AI,0001,,1125N 00911W, +,GN,KNN,Kankan,Kankan,,---4----,AI,0001,,1023N 00918W, +,GN,KSI,Kissidougou,Kissidougou,,---4----,AI,0001,,0912N 01006W, +,GN,LEK,Labe,Labe,,---4----,AI,0001,,1119N 01217W, +,GN,MCA,Macenta,Macenta,,---4----,AI,2101,,0833N 00928W, +,GN,NZE,Nzerekore,Nzerekore,,---4----,AI,0001,,0746N 00849W, +,GN,SBI,Koundara,Koundara,,---4----,AI,0001,,1229N 01318W, +,GQ,BSG,Bata,Bata,,1--45---,RQ,9506,,0152N 00946E, +,GQ,COG,Cogo,Cogo,,1-------,RQ,9506,,0105N 00942E, +,GQ,LUB,Luba,Luba,BS,1-------,RQ,1307,,0328N 00833E, +,GQ,RMN,Rio Muni,Rio Muni,,--3-----,RQ,9307,,0130N 01030E, +,GQ,SIS,Santa Isabel,Santa Isabel,,----5---,AI,9601,,0345N 00846E, +,GQ,SSG,Malabo,Malabo,BN,1--4----,AI,1801,,0345N 00846E, +,GR,AGS,Agios Stefanos,Agios Stefanos,,0-------,RQ,9307,,3808N 02351E, +,GR,AGY,Argyroupoli,Argyroupoli,A1,--3-----,RL,0901,,4060N 02256E, +,GR,ALM,Almiros,Almiros,,--3-----,RQ,9501,,3652N 02532E, +,GR,AMS,Adhamas,Adhamas,,--3-----,RL,9811,,3644N 02427E, +,GR,ARG,Argos (Argolis),Argos (Argolis),,--3-----,AA,1307,,3738N 02244E, +,GR,AVL,Avlon,Avlon,,--3-----,RQ,9501,,3815N 02342E, +,GR,DOM,Domokos,Domokos,,0-------,RQ,9307,,3908N 02218E, +,GR,DRM,Drama,Drama,,--3-----,RQ,9501,,4109N 02409E, +,GR,ELA,Elatia,Elatia,,--3-----,RQ,9501,,3839N 02249E, +,GR,ELL,Ellasona,Ellasona,,0-------,RQ,9307,,3954N 02211E, +,GR,EPS,Eginio Pierias,Eginio Pierias,61,--3-----,RQ,0901,,4030N 02233E, +,GR,ETL,Etolikon,Etolikon,,0-------,RQ,9307,,3826N 02121E, +,GR,HRI,Halandri,Halandri,A1,--3-----,RQ,0901,,3801N 02348E, +,GR,IKN,Ikonian,Ikonian,,0-------,RQ,9307,,3748N 02042E, +,GR,INF,Inofyta,Inofyta,,0-------,RQ,9307,,3818N 02338E, +,GR,JSY,Syros (Syra),Syros (Syra),,1-------,AI,9601,,3726N 02455E, +,GR,KFL,Kefallinia,Kefallinia,,--3-----,RQ,9501,EFL,3816N 02032E, +,GR,KLP,Kalampaka,Kalampaka,44,--3-5---,RL,1107,,3942N 02138E, +,GR,KOR,Koropion,Koropion,,0-------,RQ,9307,,3754N 02352E, +,GR,KPO,Koropi,Koropi,,--3-----,RQ,9501,,3754N 02352E, +,GR,KRI,Krioneri,Krioneri,,--3-----,RQ,9501,,3510N 02610E, +,GR,KYP,Kyparissia,Kyparissia,,0-------,RQ,9307,,3715N 02140E, +,GR,KZS,Kastelorizo,Kastelorizo,,---4----,AI,0001,,3609N 02935E, +,GR,LOU,Loutraki,Loutraki,,--3-----,RQ,9501,,3758N 02259E, +,GR,LXS,Lemnos,Lemnos,,---4----,AI,9601,,3955N 02509E, +,GR,MAL,Malaoi,Malaoi,,0-------,AA,1307,,3648N 02251E, +,GR,MHO,Marathonas,Marathonas,A1,--3-----,RQ,0901,,3809N 02358E, +,GR,MMS,Metamorfosis,Metamorfosis,,0-------,RQ,9307,,3705N 02145E, +,GR,NAV,Navarino,Navarino,,0-------,RQ,9012,,3655N 02142E, +,GR,NIK,Nikaia,Nikaia,,--3-----,RQ,0101,,4105N 02332E, +,GR,PAT,Panetolion,Panetolion,,0-------,RQ,9307,,3835N 02127E, +,GR,PHE,Porto Heli,Porto Heli,,1-------,AI,9812,,3720N 02309E, +,GR,PLT,Plati,Plati,,0-------,RL,0201,,4038N 02232E, +,GR,PPK,Papadianika/Asopos,Papadianika/Asopos,16,--3-----,RQ,0901,,3643N 02252E, +,GR,PRI,Peristeri,Peristeri,,--3-----,RQ,9307,,3801N 02342E, +,GR,PVK,Preveza/Lefkas,Preveza/Lefkas,,1--4----,AI,9601,,3857N 02045E, +,GR,PYR,Pyrgos,Pyrgos,,1--4----,AI,9601,,3740N 02126E, +,GR,RAF,Rafina,Rafina,,1-------,AI,9601,,3801N 02400E, +,GR,REN,Rentis,Rentis,,0-------,RQ,9307,,3758N 02340E, +,GR,RHO,Rhodes,Rhodes,,1--45---,AI,9601,,3610N 02755E, +,GR,RIO,Rio,Rio,,1-------,AI,9812,,3818N 02147E, +,GR,SAA,Istiaia,Istiaia,04,--3-----,RQ,0901,,3856N 02310E, +,GR,SAP,Stavros Agias Paraskevis,Stavros Agias Paraskevis,,--3-----,RQ,0207,,3801N 02351E, +,GR,SCR,Stavrochorion,Stavrochorion,57,1-------,RQ,0901,,3504N 02557E, +,GR,SGB,Saint George,Saint George,,1-------,RQ,1101,,4036N 02212E, +,GR,SID,Sidirokastro,Sidirokastro,,0-------,RQ,9307,,4114N 02323E, +,GR,SIK,Sikionia,Sikionia,,1-------,QQ,8103,,3755N 02232E, +,GR,SKO,Skopelos,Skopelos,,1-------,AI,9601,,3908N 02341E, +,GR,SKY,Skydra,Skydra,,0-------,RQ,9307,,4046N 02209E, +,GR,SMI,Samos,Samos,,1--4----,AI,9601,,3743N 02649E, +,GR,SNK,Salonika,Salonika,54,1-------,RQ,0901,,4039N 02256E, +,GR,SOR,Soupri,Soupri,,1-3-5---,RL,1107,,3906N 02254E, +,GR,SRI,Serrai,Serrai,,--3-----,RQ,9501,,4105N 02333E, +,GR,STI,Stratoni,Stratoni,,1-------,AI,9812,,4031N 02350E, +,GR,STY,Stylinda,Stylinda,,0-------,RQ,9307,,3855N 02237E, +,GR,SUD,Suda Bay,Suda Bay,,1-------,AI,9704,,3530N 02404E, +,GR,TRI,Trikala,Trikala,,0-------,RQ,9307,,3933N 02146E, +,GR,TRP,Tripolis,Tripolis,,--3-----,RQ,9501,,3732N 02221E, +,GR,TSO,Thasos,Thasos,,1-------,AI,9704,,4041N 02439E, +,GR,VEL,Velo,Velo,,0-------,RQ,9307,,3759N 02246E, +,GR,VER,Veria,Veria,,0-------,RQ,9307,,4031N 02212E, +,GR,VOT,Votanikos,Votanikos,,0-------,RQ,9307,,3759N 02342E, +,GR,YLI,Yali Island,Yali Island,,1-------,RQ,8103,,3640N 02707E, +,GR,ZEA,Zea Island,Zea Island,,0-------,RQ,9012,,3737N 02420E, +,GS,LEH,Leith Harbour,Leith Harbour,,1-------,RQ,9506,,5409S 03641W, +,GT,AAZ,Quetzaltenango,Quetzaltenango,,--34----,AI,0101,,1451N 09131W, +,GT,ANT,Antigua,Antigua,,0-------,QQ,,,1433N 09044W, +,GT,CBV,Coban,Coban,,--34----,AI,9704,,1528N 09022W, +,GT,CHI,Chimaltenango,Chimaltenango,,-23-----,RQ,9501,,1440N 09049W, +,GT,CIQ,Chiquimula,Chiquimula,,---4----,AI,0001,,1448N 08933W, +,GT,CMM,Carmelita,Carmelita,,---4----,AI,0001,,1728N 09003W, +,GT,COY,Cuyotenango,Cuyotenango,,--3-----,RQ,0101,,1433N 09134W, +,GT,ELE,El Estor,El Estor,18,1-------,RQ,0901,,1532N 08920W, +,GT,ENJ,El Naranjo,El Naranjo,,---4----,AI,0001,,1714N 09048W, +,GT,ERH,El Rancho,El Rancho,,0-------,RQ,9307,,1455N 09000W, +,GT,ESC,Escuintla,Escuintla,,--3-----,RQ,9501,,1418N 09047W, +,GT,FRA,Fraijanes,Fraijanes,,0-------,RQ,9307,,1428N 09026W, +,GT,FRS,Flores,Flores,,---4----,AI,9601,,1656N 08953W, +,GT,GUA,Guatemala City,Guatemala City,,---45---,AI,9601,,1439N 09031W, +,GT,HUG,Huehuetenango,Huehuetenango,,---4----,AI,0001,,1519N 09128W, +,GT,LAA,La Aurora,La Aurora,,1-------,RQ,0407,,1407N 09051W, +,GT,LAF,La Fragua,La Fragua,,0-------,RQ,9307,,1458N 08933W, +,GT,MAZ,Mazatenango,Mazatenango,,--3-----,RQ,9501,,1432N 09130W, +,GT,PAL,Palin,Palin,,0-------,RQ,9307,,1424N 09042W, +,GT,PBR,Puerto Barrios,Puerto Barrios,,1--4----,AI,9601,,1544N 08836W, +,GT,PCG,Paso Caballos,Paso Caballos,,---4----,AI,0001,,1716N 09014W, +,GT,PRQ,Puerto Quetzal,Puerto Quetzal,,1-------,RQ,9506,,1357N 09047W, +,GT,RIH,Rio Hondo,Rio Hondo,,0-------,RQ,9307,,1503N 08935W, +,GT,RTE,Retalhuleu,Retalhuleu,,--3-----,RQ,9501,,1432N 09141W, +,GT,RUV,Rubelsanto,Rubelsanto,,---4----,AI,0001,,1559N 09027W, +,GT,SJP,San Jos� Pinula,San Jose Pinula,,--3-----,RQ,0101,,1433N 09025W, +,GT,SNJ,San Jose,San Jose,,1-3-5---,AI,9401,,1355N 09049W, +,GT,TKM,Tikal,Tikal,,---4----,AI,9601,,1438N 09034W, +,GT,TUC,Tecun Uman,Tecun Uman,09,1-------,RQ,0901,,1439N 09032W, +,GT,VIN,Villa Nueva,Villa Nueva,,1-------,RQ,9307,,1432N 09036W, +,GT,ZAC,Zacapa,Zacapa,,--3-----,RQ,9501,,1458N 08932W, +,GU,AGA,Agana,Agana,,--3-----,RQ,9501,,1328N 14444E, +,GU,APR,Apra (Agana),Apra (Agana),,1-------,RQ,9506,,1326N 14440E, +,GU,DED,Dededo,Dededo,,--3-----,RQ,9501,,1331N 14450E, +,GU,GUM,Guam,Guam,,1--45---,AI,9601,,1330N 14448E, +,GY,AHL,Aishalton,Aishalton,,---4----,AI,0001,,0229N 05919W, +,GY,BCG,Bemichi,Bemichi,,---4----,AI,0001,,0738N 05858W, +,GY,BMJ,Baramita,Baramita,,---4----,AI,0001,,0722N 06029W, +,GY,GEO,Georgetown,Georgetown,,1--45---,AI,9601,,0649N 05810W, +,GY,GFO,Bartica,Bartica,,1--4----,AI,9506,,0625N 05837W, +,GY,IMB,Imbaimadai,Imbaimadai,,---4----,AI,0001,,0542N 06018W, +,GY,KAI,Kaieteur,Kaieteur,,---4----,AI,0001,,0510N 05930W, +,GY,KAR,Kamarang,Kamarang,,---4----,AI,0001,,0552N 06037W, +,GY,KKG,Konawaruk,Konawaruk,,---4----,AI,0001,,0515N 05902W, +,GY,KPG,Kurupung,Kurupung,,---4----,AI,0001,,0613N 06009W, +,GY,KRG,Karasabai,Karasabai,,---4----,AI,0001,,0402N 05933W, +,GY,KRM,Karanambo,Karanambo,,---4----,AI,0001,,0345N 05919W, +,GY,KTO,Kato,Kato,,---4----,AI,0001,,0439N 05949W, +,GY,LTM,Lethem,Lethem,,---4----,AI,0001,,0326N 05945W, +,GY,LUB,Lumid Pau,Lumid Pau,,---4----,AI,0001,,0224N 05928W, +,GY,MHA,Mahdia,Mahdia,,---4----,AI,0001,,0517N 05909W, +,GY,MWJ,Matthews Ridge,Matthews Ridge,,---4----,AI,0001,,0729N 06009W, +,GY,MYM,Monkey Mountain,Monkey Mountain,,---4----,AI,0001,,0427N 05936W, +,GY,NAI,Annai,Annai,,---4----,AI,0001,,0357N 05908W, +,GY,NAM,New Amsterdam,New Amsterdam,,1--4----,AI,0001,QSX,0615N 05731W, +,GY,OGL,Ogle,Ogle,,---4----,AI,0001,,0648N 05806W, +,GY,ORJ,Orinduik,Orinduik,,---4----,AI,0001,,0444N 06002W, +,GY,PIQ,Pipillipai,Pipillipai,,---4----,AI,0001,,0522N 06022W, +,GY,PKM,Port Kaituma,Port Kaituma,,---4----,AI,2101,,0744N 05953W, +,GY,PMT,Paramakotoi,Paramakotoi,,---4----,AI,0001,,0443N 05942W, +,GY,PRR,Paruima,Paruima,,---4----,AI,0001,,0549N 06104W, +,GY,SDC,Sandcreek,Sandcreek,,---4----,AI,0001,,0260N 05931W, +,GY,SKM,Skeldon,Skeldon,,---4----,AI,0001,,0553N 05708W, +,GY,USI,Mabaruma,Mabaruma,,---4----,AI,0001,,0813N 05946W, +,HK,ALC,Ap Lei Chau,Ap Lei Chau,,1-------,RQ,0901,,2214N 11409E, +,HK,HKG,Hong Kong,Hong Kong,,1--45---,AI,9601,,2219N 11410E, +,HK,LAM,Lamma Island,Lamma Island,,1-------,RQ,0901,,2212N 11407E, +,HK,TOL,Tolo Harbour,Tolo Harbour,,1-------,QQ,8103,,2227N 11411E, +,HK,VIC,Victoria,Victoria,,1-------,QQ,8103,,2217N 11410E, +,HK,YUE,Yuen Long,Yuen Long,,1-------,RQ,0901,,2227N 11402E, +,HK,ZTW,Tsuen Wan,Tsuen Wan,,---4----,AI,0001,,2222N 11407E, +,HN,AMP,Amapala,Amapala,,1-------,AI,9401,,1318N 08739W, +,HN,BHG,Brus Laguna,Brus Laguna,,---4----,AI,9601,,1546N 08432W, +,HN,CAA,Catacamas,Catacamas,,---4----,AI,0001,,1451N 08554W, +,HN,CDD,Cauquira,Cauquira,,---4----,AI,0001,,1519N 08335W, +,HN,CHO,Choloma,Choloma,,--3-----,RQ,9501,,1537N 08757W, +,HN,CYL,Coyoles,Coyoles,,---4----,AI,0001,,1527N 08640W, +,HN,EDQ,Erandique,Erandique,,---4----,AI,0001,,1414N 08828W, +,HN,GAC,Gracias,Gracias,,---4----,AI,0001,,1435N 08835W, +,HN,GJA,Guanaja,Guanaja,,1--4----,AI,9601,,1629N 08553W, +,HN,GUO,Gualaco,Gualaco,,---4----,AI,0001,,1502N 08604W, +,HN,IRN,Iriona,Iriona,,---4----,AI,0001,,1558N 08506W, +,HN,JUT,Juticalpa,Juticalpa,,---4----,AI,0001,,1440N 08613W, +,HN,LCE,La Ceiba,La Ceiba,,1--4----,AI,9601,,1547N 08648W, +,HN,LEZ,La Esperanza,La Esperanza,,---4----,AI,0001,,1418N 08811W, +,HN,LLH,Las Limas,Las Limas,,---4----,AI,0001,,1348N 08637W, +,HN,LMH,Limon,Limon,,---4----,AI,0001,,1552N 08530W, +,HN,LUI,La Union,La Union,,---4----,AI,9601,,1501N 08643W, +,HN,MRJ,Marcala,Marcala,,---4----,AI,0001,,1409N 08802W, +,HN,OAN,Olanchito,Olanchito,,---4----,AI,9601,,1529N 08634W, +,HN,PCA,Puerto Castilla,Puerto Castilla,,1-------,RQ,9506,,1601N 08557W, +,HN,PCH,Palacios,Palacios,,---4----,AI,0001,,1557N 08456W, +,HN,PCR,Puerto Cort�s,Puerto Cortes,,1---5---,AI,9401,,1551N 08757W, +,HN,PEU,Puerto Lempira,Puerto Lempira,,---4----,AI,9601,,1516N 08346W, +,HN,SAP,San Pedro Sula,San Pedro Sula,,1--45---,AI,9601,,1530N 08800W, +,HN,SCD,Sulaco,Sulaco,,---4----,AI,0001,,1455N 08716W, +,HN,SET,San Esteban,San Esteban,,---4----,AI,0001,,1513N 08546W, +,HN,SLO,San Lorenzo,San Lorenzo,,1-------,RQ,9506,,1325N 08727W, +,HN,TCF,Tocoa,Tocoa,,---4----,AI,9601,,1539N 08600W, +,HN,TEA,Tela,Tela,,1--4----,AI,9601,,1547N 08727W, +,HN,TGU,Tegucigalpa,Tegucigalpa,,1--45---,AI,9601,,1406N 08712W, +,HN,TJI,Trujillo,Trujillo,,1--4----,AI,9601,,1555N 08557W, +,HN,UII,Utila,Utila,,---4----,AI,9601,,1606N 08657W, +,HN,VLN,Villa Nueva,Villa Nueva,,0-------,QQ,,,1304N 08705W, +,HN,VTA,Victoria,Victoria,,---4----,AI,0001,,1456N 08723W, +,HR,DKC,Donji Kraljevec,Donji Kraljevec,,--3-----,QQ,0212,,4622N 01639E, +,HR,KFR,Kanfanar,Kanfanar,07,1-------,RQ,0901,,4507N 01350E, +,HR,SVM,Savski Marof,Savski Marof,01,-----6--,RQ,0901,,4552N 01543E, +,HT,ACA,Les Cayes,Les Cayes,SD,1-------,AI,1307,,1812N 07345W, +,HT,FLI,Fort Liberte,Fort Liberte,NE,1-------,QQ,1307,,1940N 07150W, +,HT,GVS,Gona�ves,Gonaives,AR,1-------,AI,1307,,1927N 07241W, +,HT,JAK,Jacmel,Jacmel,SE,1--4----,RQ,1307,,1814N 07232W, +,HT,JEE,J�r�mie,Jeremie,GA,1--4----,AI,1307,,1839N 07407W, +,HT,MIR,Miragoane,Miragoane,NI,1-------,QQ,1307,,1827N 07305W, +,HT,PAP,Port-au-Prince,Port-au-Prince,OU,1--45---,AI,1307,,1833N 07220W, +,HT,PDP,Port de Paix,Port de Paix,NO,--3-----,RQ,1307,,1956N 07250W, +,HU,AGG,Aggtelek,Aggtelek,,--3-----,QQ,8202,,4828N 02030E, +,HU,ALG,Algyo,Algyo,CS,--3-----,RQ,0901,,4620N 02013E, +,HU,APG,Apostag,Apostag,,--3-----,RQ,0101,,4653N 01858E, +,HU,BAL,Balassagyarmat,Balassagyarmat,,--3-----,QQ,8202,,4805N 01918E, +,HU,BUC,Bucsu,Bucsu,,--3-----,QQ,8202,,4716N 01630E, +,HU,CGD,Csongrad,Csongrad,,--3-----,RL,0002,,4643N 02009E, +,HU,CSE,Csengersima,Csengersima,,--3-----,QQ,8202,,4752N 02244E, +,HU,CSK,Kaszok,Kaszok,BK,--3-----,RQ,0901,,4629N 01758E, +,HU,CSS,Szegvar,Szegvar,CS,-----6--,RQ,1007,,4635N 02013E, +,HU,DEB,Debrecen,Debrecen,,1--4----,AI,9601,,4732N 02138E, +,HU,DKZ,Dunakeszi,Dunakeszi,,0-------,QQ,,,4738N 01908E, +,HU,DSZ,Dunaharaszti,Dunaharaszti,,0-------,QQ,,,4722N 01906E, +,HU,EGR,Eger,Eger,,0-------,QQ,,,4754N 02022E, +,HU,EPE,Eperjeske,Eperjeske,,-2------,QQ,8202,,4821N 02213E, +,HU,ERC,Ercsi,Ercsi,FE,1-------,RQ,0901,,4715N 01854E, +,HU,EST,Esztergom,Esztergom,,1-------,QQ,8202,,4747N 01844E, +,HU,GER,Gerend�s,Gerendas,BE,--3-----,RL,0907,,4636N 02051E, +,HU,GYE,Gyekenyes,Gyekenyes,,-2------,QQ,8202,,4614N 01701E, +,HU,GYH,Gyomaendrod,Gyomaendrod,,--3-----,RQ,9501,,4656N 02050E, +,HU,GYU,Gyula,Gyula,,--3-----,QQ,8202,,4639N 02116E, +,HU,HAT,Hatvan,Hatvan,,0-------,RQ,9307,,4740N 01940E, +,HU,HEG,Hegyeshalom,Hegyeshalom,,-23-----,QQ,8202,,4755N 01709E, +,HU,KCS,Kecskemet,Kecskemet,,0-------,QQ,,,4654N 01942E, +,HU,KEL,Kelebia,Kelebia,,-2------,QQ,8202,,4612N 01936E, +,HU,KET,Ketegyhaza,Ketegyhaza,BE,1-3-----,RQ,0901,,4633N 02111E, +,HU,KSK,Kiskunhalas,Kiskunhalas,,0-------,QQ,,,4626N 01929E, +,HU,LET,Letenye,Letenye,,--3-----,QQ,8202,,4626N 01643E, +,HU,LUK,Luk�csh�za,Lukacshaza,VA,--3-----,RL,0901,,4720N 01635E, +,HU,MCQ,Miskolc,Miskolc,,1--4----,AI,9601,,4806N 02047E, +,HU,MGF,Magyarfalva,Magyarfalva,,-2------,QQ,8202,,4738N 01636E, +,HU,NAG,Nagylak,Nagylak,,--3-----,QQ,8202,,4610N 02043E, +,HU,NGY,Nagykanizsa,Nagykanizsa,,--3-----,RQ,9501,,4627N 01660E, +,HU,NOV,Novaj,Novaj,HE,-----6--,RL,1107,,4751N 02029E, +,HU,PAR,Parassapuszta,Parassapuszta,,--3-----,QQ,8202,,4803N 01858E, +,HU,PCL,P�csely,Pecsely,,-23-----,RL,1107,,4657N 01747E, +,HU,RJK,Rajka,Rajka,,-23-----,QQ,8202,,4760N 01712E, +,HU,SOP,Sopron,Sopron,,-23-----,QQ,8202,,4741N 01636E, +,HU,SZE,Szeged,Szeged,,1-------,QQ,8202,,4615N 02009E, +,HU,SZL,Szolnok,Szolnok,,0-------,QQ,,,4711N 02012E, +,HU,SZO,Szob,Szob,,-2------,QQ,8202,,4749N 01852E, +,HU,SZY,Szombathely,Szombathely,,--3-----,RQ,9501,,4714N 01637E, +,HU,TOM,Tompa,Tompa,,--3-----,QQ,8202,,4612N 01932E, +,HU,UDV,Udvar,Udvar,,--3-----,QQ,8202,,4554N 01840E, +,HU,XEL,Kecel,Kecel,BK,1----6--,RL,1107,,4631N 01915E, +,HU,ZAR,Aszar,Aszar,BK,1-------,RQ,0901,,4731N 01800E, +,ID,ABU,Atambua,Atambua,,--3-----,RQ,9501,,0906S 12453E, +,ID,ADB,Adang Bay,Adang Bay,,1-------,RQ,8103,,0145S 11620E, +,ID,AHI,Amahai,Amahai,,---4----,AI,9601,,0318S 12900E, +,ID,AJN,"Arjuna, Java","Arjuna, Java",,1-------,QQ,8103,,0655S 10736E, +,ID,AMA,"Amamapare, Ij","Amamapare, Ij",,1-------,RQ,9506,,0450S 13650E, +,ID,AMI,Mataram,Mataram,,---4----,AI,0001,,0835S 11606E, +,ID,AMQ,"Ambon, Molucas","Ambon, Molucas",,1-------,QQ,8103,,0337S 12810E, +,ID,API,Api Api,Api Api,,0-------,RQ,9506,,0122N 10151E, +,ID,ARD,Alor Island,Alor Island,,---4----,AI,0001,,0817S 12447E, +,ID,AUN,Arun,Arun,,1-------,RQ,9506,,0513N 09705E, +,ID,BAL,Balongan Terminal,Balongan Terminal,,1-------,RQ,9506,,0623S 10824E, +,ID,BDJ,Banjarmasin,Banjarmasin,,1--4----,AI,9601,,0319S 11436E, +,ID,BDO,"Bandung, Java","Bandung, Java",,---45---,AI,9601,,0655S 10737E, +,ID,BEJ,Berau,Berau,,---4----,AI,9601,,0249S 10125E, +,ID,BGG,Banggai,Banggai,,1-------,QQ,8103,,0135S 12330E, +,ID,BIK,"Biak, Irian Jaya","Biak, Irian Jaya",,1--4----,AI,9601,,0057S 13556E, +,ID,BIT,"Bitung, Sulawesi","Bitung, Sulawesi",,1-------,QQ,8103,,0127N 12512E, +,ID,BJG,Bolaang,Bolaang,,---4----,AI,0001,,0054N 12409E, +,ID,BJU,"Banjuwangi, Java","Banjuwangi, Java",,1-------,QQ,8103,,0812S 11421E, +,ID,BJW,Bajawa,Bajawa,,---4----,AI,0001,,0847S 12058E, +,ID,BKA,Bekasi,Bekasi,,--3-----,RQ,0101,,0614S 10660E, +,ID,BKI,"Bengkalis, St","Bengkalis, St",,0-------,RQ,9506,,0128N 10207E, +,ID,BKS,"Bengkulu, Sumatra","Bengkulu, Sumatra",,1--4----,AI,9506,,0331S 10232E, +,ID,BLL,"Blang Lancang, St","Blang Lancang, St",,1-------,RQ,9506,,0513N 09629E, +,ID,BLW,"Belawan, Sumatra","Belawan, Sumatra",,1-------,QQ,8103,,0346N 09839E, +,ID,BMU,"Bima, Sb","Bima, Sb",,1--4----,AI,9506,,0828S 11843E, +,ID,BTH,Batam (ex Batu Besar),Batam (ex Batu Besar),,---4----,AI,0001,,0106N 10402E, +,ID,BTJ,Banda Aceh,Banda Aceh,,---4----,AI,9601,,0533N 09519E, +,ID,BTN,Banten,Banten,,1-------,RL,9811,,0602S 10610E, +,ID,BUA,Bula,Bula,,1-------,RQ,9506,,0306S 13029E, +,ID,BUG,"Buleleng, Bali","Buleleng, Bali",,1-------,RQ,9506,,0813S 11459E, +,ID,BUI,Bokondini,Bokondini,,---4----,AI,9601,,0341S 13841E, +,ID,BUN,Buatan,Buatan,,0-------,RQ,9506,,0050N 12021E, +,ID,BUW,"Baubau, Butung","Baubau, Butung",,---4----,QQ,8103,,0528S 12236E, +,ID,BXD,Bade,Bade,,---4----,AI,9601,,0710S 13936E, +,ID,BXT,"Bontang, Kl","Bontang, Kl",,1--4----,RQ,9506,,0007N 11728E, +,ID,CEB,"Celukan Bawang, Bl","Celukan Bawang, Bl",,1-------,RQ,9506,,0811S 11450E, +,ID,CGK,Soekarno-Hatta Apt/Jakarta,Soekarno-Hatta Apt/Jakarta,,---4----,AI,9601,,0608S 10639E, +,ID,CTT,Ciputat,Ciputat,,--3-----,RQ,0101,,0619S 10643E, +,ID,DJB,"Jambi, Sumatra","Jambi, Sumatra",,1--4----,AI,9601,,0138S 10257E, +,ID,DUM,"Dumai, Sumatra","Dumai, Sumatra",,1--4----,AI,9601,,0140N 10127E, +,ID,ENE,"Ende, Flores","Ende, Flores",,---4----,QQ,8103,,0833S 12249E, +,ID,EWE,Ewer,Ewer,,---4----,AI,0001,,0530S 13805E, +,ID,EWI,Enarotali,Enarotali,,---4----,AI,9601,,0356S 13623E, +,ID,FKQ,"Fak Fak, Irian Jaya","Fak Fak, Irian Jaya",,1--4----,AI,9601,,0256S 13218E, +,ID,FOO,Numfoor,Numfoor,,---4----,AI,9601,,0102S 13453E, +,ID,GAG,Gag Island,Gag Island,,--3-----,RQ,9501,,0027S 12953E, +,ID,GEB,Gebe,Gebe,,--34----,RQ,9506,,0005S 12927E, +,ID,GIL,"Gilimanuk, Bali","Gilimanuk, Bali",,1-------,QQ,8103,,0810S 11426E, +,ID,GLX,"Galela, Halmahera","Galela, Halmahera",,---4----,QQ,8103,,0149N 12751E, +,ID,GNS,"Gunung Sitoli, St","Gunung Sitoli, St",,1--4----,RQ,9506,,0117N 09736E, +,ID,GTO,"Gorontalo, Sulawesi","Gorontalo, Sulawesi",,1--4----,AI,9601,,0043N 12227E, +,ID,ILA,Illaga,Illaga,,---4----,AI,9601,,0400S 13739E, +,ID,JBG,Jatibarang,Jatibarang,,--3-----,RQ,0101,,0703S 11020E, +,ID,JEM,Jember,Jember,,--3-----,RL,0001,,0810S 11342E, +,ID,JTH,Jatitujuh,Jatitujuh,,--3-----,RQ,0101,,0639S 10814E, +,ID,KAM,"Kambunong, Celebes","Kambunong, Celebes",,1-------,RQ,8103,,0152S 11940E, +,ID,KAS,"Kasim, Ij","Kasim, Ij",,1-------,RQ,9506,,0118S 13101E, +,ID,KAT,Kalianget,Kalianget,,0-------,RQ,9506,,0703S 11357E, +,ID,KBF,Karubaga,Karubaga,,---4----,AI,0001,,0341S 13829E, +,ID,KBU,Kotabaru,Kotabaru,,---4----,AI,0001,,0314S 11614E, +,ID,KDI,"Kendari, Sulawesi","Kendari, Sulawesi",,1--4----,AI,9601,,0360S 12231E, +,ID,KEI,Kepi,Kepi,,---4----,AI,9601,,0632S 13919E, +,ID,KEQ,Kebar,Kebar,,---4----,AI,9601,,0048S 13303E, +,ID,KJN,Kajang,Kajang,,--3-----,RL,9811,,0733S 11133E, +,ID,KKA,"Kuala Kapuas, Kl","Kuala Kapuas, Kl",,1-------,RQ,9506,,0301S 11423E, +,ID,KKB,"Kunak, Borneo","Kunak, Borneo",,1-------,RQ,8103,,0441N 11815E, +,ID,KLQ,Keluang,Keluang,,---4----,AI,0001,,0224S 10408E, +,ID,KNG,"Kaimana, Irian Jaya","Kaimana, Irian Jaya",,---4----,QQ,8103,,0355S 13303E, +,ID,KOD,Kotabangun,Kotabangun,,---4----,AI,0001,,0154S 11611E, +,ID,KOE,"Kupang, Timor","Kupang, Timor",,1--4----,AI,9601,,1010S 12335E, +,ID,KOX,Kokonao,Kokonao,,---4----,AI,0001,,0443S 13627E, +,ID,KPN,"Kotapinang, Baru","Kotapinang, Baru",,1-------,RQ,8103,,0154N 10004E, +,ID,KRC,Kerinci,Kerinci,,---4----,AI,0001,,0023N 10151E, +,ID,KTG,"Ketapang, Kl","Ketapang, Kl",,1--4----,AI,9506,,0654S 11317E, +,ID,LAS,"Langsa, Sumatra","Langsa, Sumatra",,1-------,QQ,8103,,0428N 09758E, +,ID,LAT,"Lalang Terminal, St","Lalang Terminal, St",,1-------,RQ,9506,,0111N 10213E, +,ID,LBW,Long Bawan,Long Bawan,,---4----,AI,0001,,0354N 11542E, +,ID,LHK,Lhoknga,Lhoknga,,--3-----,RQ,9506,,0528N 09516E, +,ID,LIF,Lifamatola,Lifamatola,,1-------,RQ,8103,,0149S 12626E, +,ID,LII,Mulia,Mulia,,---4----,AI,9601,,0535N 09520E, +,ID,LKA,Larantuka,Larantuka,,---4----,AI,9601,,0819S 12260E, +,ID,LLA,"Lawe-Lawe, Kl","Lawe-Lawe, Kl",,1-------,RQ,9506,,0120S 11642E, +,ID,LLN,Kelila,Kelila,,---4----,AI,0001,,0344S 13843E, +,ID,LMB,Lombok Strait,Lombok Strait,,0-------,RQ,9506,,0830S 11550E, +,ID,LPU,Long Apung,Long Apung,,---4----,AI,0001,,0142N 11458E, +,ID,LRT,Larat,Larat,,--3-----,RL,9805,,0711S 13156E, +,ID,LSX,Lhok Sukon,Lhok Sukon,,---4----,AI,0001,,0503N 09719E, +,ID,LUV,Langgur,Langgur,,---4----,AI,9601,,0540S 13244E, +,ID,LUW,Luwuk,Luwuk,,1--4----,AI,9601,,0057S 12247E, +,ID,LWE,Lewoleba,Lewoleba,,---4----,AI,0001,,0822S 12325E, +,ID,LYK,Lunyuk,Lunyuk,,---4----,AI,0001,,0858S 11714E, +,ID,MAJ,"Majene, Sv","Majene, Sv",,1-------,RQ,9506,,0333S 11858E, +,ID,MAL,Mangole,Mangole,,1--4----,AI,9601,,0152S 12550E, +,ID,MAN,Manggar,Manggar,,0-------,RQ,9506,,0252S 10817E, +,ID,MDC,Manado,Manado,,1--45---,AI,9601,,0129N 12450E, +,ID,MDP,Mindiptana,Mindiptana,,---4----,AI,9601,,0605S 14044E, +,ID,MEQ,"Meulaboh, Sumatra","Meulaboh, Sumatra",,1--4----,AI,9601,,0409N 09608E, +,ID,MES,"Medan, Sumatra","Medan, Sumatra",,1--45---,AI,9601,,0335N 09840E, +,ID,MJU,Mamuju,Mamuju,,1--4----,AI,9601,,0241S 11853E, +,ID,MJY,Mangunjaya,Mangunjaya,,---4----,AI,0001,,0657S 10643E, +,ID,MKQ,"Merauke, Irian Jaya","Merauke, Irian Jaya",,1--4----,AI,9601,,0828S 14020E, +,ID,MKW,"Manokwari, Irian Jaya","Manokwari, Irian Jaya",,1--4----,AI,9601,,0051S 13404E, +,ID,MLG,Malang,Malang,,--34----,AI,0001,,0759S 11238E, +,ID,MLI,"Malili, Sulawesi","Malili, Sulawesi",,1-------,QQ,8103,,0237S 12107E, +,ID,MNT,"Mantang, Riau","Mantang, Riau",,1-------,QQ,8103,,0046N 10431E, +,ID,MOF,"Maumere, Flores","Maumere, Flores",,1--4----,AI,9601,,0837S 12212E, +,ID,MPC,Muko-Muko,Muko-Muko,,---4----,AI,0001,,0213S 09932E, +,ID,MPN,Muara Pantai,Muara Pantai,,1-------,RL,1107,,0045S 10143E, +,ID,MRI,"Musi River, Sumatra","Musi River, Sumatra",,1-------,RQ,9506,,0317S 10231E, +,ID,MRK,"Merak, Java","Merak, Java",,1-------,QQ,8103,,0556S 10600E, +,ID,MSI,Masalembo,Masalembo,,---4----,AI,0001,,0530S 11426E, +,ID,MTU,Muturi,Muturi,,1-------,RQ,8103,,0214S 13335E, +,ID,MUF,Muting,Muting,,---4----,AI,9601,,0719S 14033E, +,ID,MUO,"Muntok, Banka","Muntok, Banka",,1-------,QQ,8103,,0204S 10510E, +,ID,MWK,Matak,Matak,,---4----,AI,0001,,0319N 10616E, +,ID,MXB,Masamba,Masamba,,---4----,AI,9601,,0233S 12020E, +,ID,NAF,Banaina,Banaina,,---4----,AI,0001,,0243N 11708E, +,ID,NAH,Naha,Naha,,---4----,AI,9601,,0342N 12532E, +,ID,NBX,Nabire,Nabire,,---4----,AI,9601,,0322S 13530E, +,ID,NKD,Sinak,Sinak,,---4----,AI,0001,,0349S 13751E, +,ID,NNX,Nunukan,Nunukan,,1--4----,AI,9601,,0403N 11740E, +,ID,NPO,Nangapinoh,Nangapinoh,,---4----,AI,0001,,0020S 11144E, +,ID,NRE,Namrole,Namrole,,---4----,AI,0001,,0351S 12644E, +,ID,NTI,Bintuni,Bintuni,,---4----,AI,9601,,0207S 13332E, +,ID,OBD,Obano,Obano,,---4----,AI,0001,,0355S 13614E, +,ID,OBI,Obi Island,Obi Island,,1-------,RQ,9506,,0132S 12747E, +,ID,OKL,Oksibil,Oksibil,,---4----,AI,0001,,0454S 14038E, +,ID,OKQ,"Okaba, Irian Jaya","Okaba, Irian Jaya",,---4----,QQ,8103,,0805S 13943E, +,ID,OLO,Olee Lheue,Olee Lheue,,1-------,QQ,8103,,0533N 09517E, +,ID,ONI,Moanamani,Moanamani,,---4----,AI,9601,,0400S 13602E, +,ID,OZI,Morotai I,Morotai I,,---4----,AI,0001,,0219N 12827E, +,ID,PAG,"Pagatan, Kalimantan","Pagatan, Kalimantan",,1-------,QQ,8103,,0335S 11559E, +,ID,PAP,Pare Pare,Pare Pare,,0-------,RQ,9506,,0400S 11937E, +,ID,PAS,Pasir Panjang,Pasir Panjang,,1-------,QQ,8103,,0709S 10848E, +,ID,PBW,Palibelo,Palibelo,,---4----,AI,0001,,0833S 11844E, +,ID,PCB,Pondok Cabe,Pondok Cabe,,---4----,AI,0001,,0620S 10646E, +,ID,PDO,Pendopo,Pendopo,,---4----,AI,0001,,0348S 10259E, +,ID,PEM,"Pemangkat, Kl","Pemangkat, Kl",,0-------,RQ,9506,,0106S 10953E, +,ID,PEX,"Pekalongan, Java","Pekalongan, Java",,1-------,QQ,8103,,0703S 10937E, +,ID,PGK,"Pangkalpinang, Banka","Pangkalpinang, Banka",,1-------,QQ,8103,,0207S 10607E, +,ID,PGX,"Pangkal Balam, Banka","Pangkal Balam, Banka",,1-------,QQ,8103,,0206S 10608E, +,ID,PJG,"Panjang (Lampung, Sumatra)","Panjang (Lampung, Sumatra)",,-2------,RQ,9506,,0113S 12947E, +,ID,PKN,Pangkalanbuun,Pangkalanbuun,,1--4----,AI,9601,,0241S 11137E, +,ID,PKR,"Pangkalan Brandan, Sumatra","Pangkalan Brandan, Sumatra",,1-------,QQ,8103,,0401N 09817E, +,ID,PKS,"Pangkalan Susu, Sumatra","Pangkalan Susu, Sumatra",,1-------,QQ,8103,,0407N 09813E, +,ID,PKU,"Pekanbaru, Sumatra","Pekanbaru, Sumatra",,---4----,QQ,8103,,0032N 10127E, +,ID,PKY,Palangkaraya,Palangkaraya,,---4----,AI,0001,,0212S 11355E, +,ID,PLM,"Palembang, Sumatra","Palembang, Sumatra",,1--4----,AI,9601,,0259S 10445E, +,ID,PNG,Penuba,Penuba,,1-------,RQ,9506,,0018S 10427E, +,ID,PNJ,Panjang,Panjang,,1-------,RQ,9506,,0528S 10519E, +,ID,PNK,"Pontianak, Kalimantan","Pontianak, Kalimantan",,1--45---,AI,9601,,0001S 10921E, +,ID,PNN,"Pamanukan, Java","Pamanukan, Java",,1-------,QQ,8103,,0617S 10749E, +,ID,PPJ,Pulau Panjang,Pulau Panjang,,---4----,AI,0001,,0011N 09918E, +,ID,PRN,"Panarukan, Java","Panarukan, Java",,1-------,QQ,8103,,0742S 11356E, +,ID,PRO,"Probolinggo, Java","Probolinggo, Java",,1-------,QQ,8103,,0745S 11313E, +,ID,PSJ,"Poso, Sulawesi","Poso, Sulawesi",,1--4----,AI,9601,,0139S 12033E, +,ID,PSS,"Pulau Sambu, Riau","Pulau Sambu, Riau",,1-------,QQ,8103,,0110N 10354E, +,ID,PSU,Putussibau,Putussibau,,---4----,AI,0001,,0052N 11255E, +,ID,PTL,"Pantoloan, Sv","Pantoloan, Sv",,1-------,RQ,9506,,0043S 11951E, +,ID,PTO,Port Okha,Port Okha,,0-------,RQ,9012,,2228N 06905E, +,ID,PWL,Purwokerto,Purwokerto,,---4----,AI,0001,,0726S 10914E, +,ID,RAQ,Raha,Raha,,---4----,AI,9601,,0450S 12243E, +,ID,RDE,Merdey,Merdey,,---4----,AI,0001,,0134S 13323E, +,ID,REM,Rembang,Rembang,,0-------,RQ,9506,,0642S 11121E, +,ID,RGT,"Rengat, Sumatra","Rengat, Sumatra",,1--4----,AI,9601,,0020S 10226E, +,ID,RKO,Sipora,Sipora,,---4----,AI,0001,,0213S 09939E, +,ID,RSK,Ransiki,Ransiki,,---4----,AI,0001,,0131S 13411E, +,ID,RTG,"Ruteng, Flores","Ruteng, Flores",,---4----,QQ,8103,,0837S 12028E, +,ID,RTI,Roti,Roti,,---4----,AI,0001,,1041S 12313E, +,ID,RUF,Yuruf,Yuruf,,---4----,AI,0001,,0336S 14054E, +,ID,SAE,Sangir,Sangir,,---4----,AI,0001,,0355N 09718E, +,ID,SAU,Sawu,Sawu,,---4----,AI,0001,,1031S 12153E, +,ID,SBG,"Sabang, Sumatra","Sabang, Sumatra",,1-------,QQ,8103,,0554N 09519E, +,ID,SBS,"Sambas, Kalimantan","Sambas, Kalimantan",,1-------,QQ,8103,,0131N 10925E, +,ID,SDJ,Sidoarjo,Sidoarjo,JI,1-------,RQ,0901,,0727S 11243E, +,ID,SEQ,"Sungai Pakning, Sumatra","Sungai Pakning, Sumatra",,1--4----,AI,9601,,0122N 10208E, +,ID,SER,Serang,Serang,,--3-----,RQ,0101,,0607S 10609E, +,ID,SIQ,Singkep Isl Apt,Singkep Isl Apt,,---4----,QQ,0307,,0029S 10435E, +,ID,SIW,Sibisa,Sibisa,,---4----,AI,0001,,0236N 09858E, +,ID,SKI,"Sangkulirang, Kalimantan","Sangkulirang, Kalimantan",,1-------,QQ,8103,,0059N 11802E, +,ID,SKW,"Singkawang, Kalimantan","Singkawang, Kalimantan",,1-------,QQ,8103,,0054N 10859E, +,ID,SLG,"Sibolga, Sumatra","Sibolga, Sumatra",,1-------,QQ,8103,,0144N 09847E, +,ID,SMB,"Semangka Bay, St","Semangka Bay, St",,1-------,RQ,9506,,0542S 10446E, +,ID,SMQ,"Sampit, Kalimantan","Sampit, Kalimantan",,1--4----,AI,9601,,0232S 11257E, +,ID,SNG,Sinabang,Sinabang,,1-3-----,RL,9805,,0229N 09623E, +,ID,SOC,Solo City,Solo City,,---4----,AI,9601,,0734S 11049E, +,ID,SOQ,Sorong,Sorong,,1--4----,AI,9601,,0052S 13115E, +,ID,SPH,Senipah Terminal,Senipah Terminal,,1-------,RQ,9506,,0057S 11710E, +,ID,SQG,Sintang,Sintang,,---4----,AI,0001,,0004N 11129E, +,ID,SQN,Sanana,Sanana,,---4----,AI,0001,,0214S 12556E, +,ID,SQR,Soroako,Soroako,,---4----,AI,9601,,0234S 12124E, +,ID,SRI,"Samarinda, Kalimantan","Samarinda, Kalimantan",,1--4----,AI,9601,,0030S 11708E, +,ID,SSO,Susu,Susu,,1-------,RQ,9506,,0407N 09813E, +,ID,STU,Satui,Satui,,1-------,RL,9811,,0347S 11526E, +,ID,SUG,"Sungai Gerong, Sumatra","Sungai Gerong, Sumatra",,1-------,QQ,8103,,0257S 10453E, +,ID,SUP,"Sumenep, Madura","Sumenep, Madura",,1--4----,AI,9601,,0701S 11352E, +,ID,SUQ,"Sungai Guntung, Sumatra","Sungai Guntung, Sumatra",,1-------,QQ,8103,,0018N 10337E, +,ID,SUS,"Susoh, Sumatra","Susoh, Sumatra",,1-------,QQ,8103,,0344N 09649E, +,ID,SWQ,Sumbawa,Sumbawa,,1--4----,AI,9601,,0836S 11716E, +,ID,SXK,Saumlaki,Saumlaki,,---4----,AI,0001,,0758S 13118E, +,ID,TAL,Tanah Laut,Tanah Laut,KS,1-------,RQ,1501,,0348S 11448E, +,ID,TBA,"Tanjung Bara, Kl","Tanjung Bara, Kl",,0-------,RQ,9506,,0033N 11739E, +,ID,TBG,"Teluk Betung, Sumatra","Teluk Betung, Sumatra",,1-------,QQ,8103,,0527S 10516E, +,ID,TBO,Tobelo,Tobelo,,1-------,RL,9811,,0145N 12800E, +,ID,TEG,"Tegal, Java","Tegal, Java",,1-------,QQ,8103,,0703S 10908E, +,ID,TIM,Tembagapura,Tembagapura,,---4----,AI,0001,,0409S 13705E, +,ID,TJS,Tanjung Selor,Tanjung Selor,,---4----,AI,0001,,0251N 11722E, +,ID,TKG,Bandar Lampung,Bandar Lampung,,---4----,AI,0001,,0527S 10516E, +,ID,TLI,Tolitoli,Tolitoli,,1--4----,AI,9601,,0102N 12049E, +,ID,TMC,Tambolaka,Tambolaka,,---4----,AI,0001,,0925S 11915E, +,ID,TMH,"Tanahmerah, Kalimantan","Tanahmerah, Kalimantan",,---4----,QQ,8103,,0304S 11617E, +,ID,TMY,Tiom,Tiom,,---4----,AI,0001,,0355S 13827E, +,ID,TNB,Tanah Grogot,Tanah Grogot,,---4----,AI,0001,,0155S 11612E, +,ID,TPK,"Tapaktuan, Sumatra","Tapaktuan, Sumatra",,---4----,QQ,8103,,0315N 09711E, +,ID,TRK,"Tarakan, Kalimantan","Tarakan, Kalimantan",,1-------,QQ,8103,,0318N 11738E, +,ID,TSY,Tasikmalaya,Tasikmalaya,,---4----,AI,0001,,0720S 10813E, +,ID,TTE,"Ternate, Halmahera","Ternate, Halmahera",,1--4----,AI,9601,,0132N 12734E, +,ID,TTI,Tebingtinggi,Tebingtinggi,,--3-----,RL,0307,,0051N 10243E, +,ID,TXM,Teminabuan,Teminabuan,,---4----,AI,0001,,0126S 13201E, +,ID,UBR,Ubrub,Ubrub,,---4----,AI,0001,,0340S 14053E, +,ID,UOL,Buol,Buol,,---4----,AI,0001,,0110N 12126E, +,ID,UPG,"Ujung Pandang, Sulawesi","Ujung Pandang, Sulawesi",,1--45---,AI,9601,,0508S 11925E, +,ID,WAR,Waris,Waris,,---4----,AI,0001,,0314S 14059E, +,ID,WBA,Wahai,Wahai,,---4----,AI,0001,,0248S 12930E, +,ID,WMX,Wamena,Wamena,,---4----,AI,9601,,0405S 13856E, +,ID,WON,Wonosari,Wonosari,,--3-----,RQ,0101,,0758S 11036E, +,ID,WSR,Wasior,Wasior,,---4----,AI,0001,,0244S 13430E, +,ID,ZEG,Senggo,Senggo,,---4----,AI,0001,,0541S 13921E, +,ID,ZRI,"Serui, Irian Jaya","Serui, Irian Jaya",,---4----,QQ,8103,,0153S 13615E, +,IE,ABB,Abbeyleix,Abbeyleix,,--3-----,AF,9508,,5255N 00721W, +,IE,ARA,Ardara,Ardara,,--3-----,RQ,9705,,5446N 00825W, +,IE,ARH,Arklow Head (Ie009),Arklow Head (Ie009),WW,1-------,RQ,0901,,5247N 00608W, +,IE,ARK,Arklow,Arklow,,1-------,AF,9508,,5248N 00609W, +,IE,ASH,Ashbourne,Ashbourne,,--3-----,AF,9508,,5331N 00624W, +,IE,ASK,Askeaton,Askeaton,,--3-----,AF,9508,,5236N 00859W, +,IE,ATH,Athlone,Athlone,,----5---,RQ,9701,,5325N 00757W, +,IE,ATY,Athy,Athy,,-23-----,RQ,9705,,5260N 00659W, +,IE,AUG,Aughinish Island,Aughinish Island,,1-------,AF,9508,,5310N 00904W, +,IE,BAE,Ballinasloe,Ballinasloe,,--3-----,AF,9508,,5320N 00813W, +,IE,BAL,Baldonnel,Baldonnel,,---4----,AF,9508,,5318N 00626W, +,IE,BAM,Ballinamore,Ballinamore,,--3-----,RL,0006,,5403N 00748W,Leitrim +,IE,BFT,Ballyfermot,Ballyfermot,D,-----6--,RQ,0901,,5320N 00621W, +,IE,BHS,Ballyhaunis,Ballyhaunis,,--3-----,RL,9811,,5346N 00846W, +,IE,BLG,Ballygar,Ballygar,,--3-----,RQ,9705,,5331N 00820W, +,IE,BRO,Ballinrobe,Ballinrobe,MO,-----6--,RQ,0901,,5338N 00915W, +,IE,BSN,Ballyshannon,Ballyshannon,,--3-----,AF,9508,,5430N 00811W, +,IE,BTM,Baltimore,Baltimore,,1-------,AI,9704,,5129N 00922W, +,IE,BUC,Buncrana,Buncrana,,1-------,AF,9508,,5508N 00727W, +,IE,CAA,Castlerea,Castlerea,,--3-----,AF,9508,,5346N 00829W, +,IE,CAL,Castleconnell,Castleconnell,,--3-----,AF,9508,,5243N 00829W, +,IE,CAM,Castlebellingham,Castlebellingham,,--3-----,AF,9508,,5354N 00623W, +,IE,CAN,Carrickcarnan,Carrickcarnan,,--3-----,AF,9508,,5406N 00622W, +,IE,CAR,Carlingford,Carlingford,,1-3-----,RL,0006,,5402N 00611W, +,IE,CAS,Carrickmacross,Carrickmacross,,--3-----,AF,9508,,5359N 00643W, +,IE,CAU,Causeway,Causeway,,--3-----,RL,9901,,5225N 00943W, +,IE,CAV,Cavan,Cavan,,--3-----,AF,9508,,5359N 00722W, +,IE,CAW,Carlow,Carlow,,--3-----,AF,9508,,5241N 00638W, +,IE,CFN,Donegal,Donegal,DL,1-34----,AI,0907,,5439N 00807W, +,IE,CHR,Caher,Caher,,--3-----,AF,9508,,5222N 00755W, +,IE,CLA,Clara,Clara,,--3-----,RL,9811,,5321N 00737W,Offaly +,IE,CLB,Castlebar,Castlebar,,--34----,AI,0001,,5351N 00918W, +,IE,CLE,Clonee,Clonee,,--3-----,AF,9508,,5325N 00626W, +,IE,CLH,Coolshannagh,Coolshannagh,MN,--3-----,RL,0701,,5416N 00658W, +,IE,CLI,Clifden,Clifden,,123-----,RQ,9805,,5329N 01001W,Galway +,IE,CLK,Clondalkin,Clondalkin,,--3-----,AF,9508,,5319N 00624W, +,IE,CLL,Clonmel,Clonmel,,--3-----,AF,9508,,5221N 00742W, +,IE,CLO,Cloghore,Cloghore,,--3-----,AF,9508,,5429N 00806W, +,IE,COB,Cobh,Cobh,,1-------,AF,9508,,5151N 00818W, +,IE,COL,Collinstown,Collinstown,,--3-----,AF,9508,,5339N 00713W, +,IE,CRO,Crookhaven,Crookhaven,,1-------,AF,9508,,5128N 00944W, +,IE,DDK,Dundalk,Dundalk,,1-------,AF,9508,,5400N 00624W, +,IE,DER,Derryveagh,Derryveagh,,0-------,AF,9508,,5336N 00751W, +,IE,DIN,Dingle,Dingle,,1-------,AF,9508,,5208N 01016W, +,IE,DNB,Dunboyne,Dunboyne,,--3-----,RL,9811,,5325N 00629W, +,IE,DNM,Dunmore East,Dunmore East,,1-------,AF,9508,,5209N 00660W, +,IE,DNW,Dunmanway,Dunmanway,,--3-----,AF,9508,,5143N 00907W, +,IE,DRO,Drogheda,Drogheda,,1-------,AF,9508,,5343N 00621W, +,IE,DUB,Dublin,Dublin,,12-45---,AF,9508,,5321N 00616W, +,IE,EBF,Broadford,Broadford,CW,1-------,RQ,0901,,5248N 00838W, +,IE,ENN,Enniscorthy,Enniscorthy,,--3-----,AF,9508,,5230N 00634W, +,IE,FER,Fermoy,Fermoy,,--3-----,RL,9811,,5208N 00817W,Cork +,IE,FID,Fiddown,Fiddown,,1-------,AF,9508,,5220N 00719W, +,IE,FOV,Foynes,Foynes,,1-------,AF,9508,,5237N 00907W, +,IE,GRN,Greenore,Greenore,,1-------,AF,9508,,5402N 00608W, +,IE,GWY,Galway,Galway,,1-345---,AF,9508,,5316N 00903W, +,IE,HAU,Haulbowline,Haulbowline,,1-------,AF,9508,,5150N 00818W, +,IE,HOL,Holywood,Holywood,CW,--3-----,RQ,0901,,5335N 00616W, +,IE,HOW,Howth,Howth,,1-------,AI,9704,,5323N 00604W, +,IE,IIA,Inishmaan,Inishmaan,,---4----,AI,0001,,5305N 00935W, +,IE,INQ,Inisheer,Inisheer,,---4----,AI,0001,,5303N 00932W, +,IE,IOR,Inishmore,Inishmore,,---4----,AI,0001,,5307N 00942W, +,IE,JMT,Jamestown,Jamestown,LM,--3-----,RQ,0901,,5356N 00802W, +,IE,KBS,Killybegs,Killybegs,,1-------,AF,9508,,5438N 00827W, +,IE,KCL,Kilclare,Kilclare,,0-------,RQ,9811,,5401N 00801W, +,IE,KCT,Kingscourt,Kingscourt,,--3-----,RL,9811,,5354N 00648W, +,IE,KEN,Kenmare,Kenmare,,--3-----,RL,1301,,5153N 00935W,Kerry +,IE,KIC,Kilcoole,Kilcoole,WW,1-3-----,RQ,0901,,5306N 00604W, +,IE,KID,Killenard,Killenard,LS,--3-5---,RL,1107,,5308N 00709W, +,IE,KIK,"Kill, Kildare","Kill, Kildare",,--3-----,RQ,0201,,5315N 00635W, +,IE,KIL,Kildare,Kildare,,--3-----,AF,9508,,5309N 00655W, +,IE,KIR,Kerry County,Kerry County,,---4----,AI,0001,,5152N 00935W, +,IE,KKA,Kilmokea,Kilmokea,,1-------,AF,9508,,5218N 00659W, +,IE,KLA,Killala,Killala,,1-3-----,RL,9901,,5413N 00914W,Mayo +,IE,KLK,Kilkenny,Kilkenny,,--3-----,AF,9508,KKY,5239N 00715W, +,IE,KLN,Kinsale,Kinsale,,1-------,AF,9508,,5142N 00831W, +,IE,KLR,Kilrush,Kilrush,,1-------,AI,9704,,5238N 00929W, +,IE,KLY,Killarney,Killarney,,-23-----,RQ,9705,,5204N 00930W, +,IE,KNG,Kinnegad,Kinnegad,WH,1-------,RQ,0901,,5327N 00706W, +,IE,KNT,Kanturk,Kanturk,,--3-----,RQ,9705,,5211N 00854W, +,IE,KSL,Kinsealy,Kinsealy,D,--3-----,RQ,0901,,5325N 00610W, +,IE,LEI,Leitrim,Leitrim,,--3-----,AF,9508,,5408N 00803W, +,IE,LEX,Leixlip,Leixlip,,--3-----,AF,9508,,5322N 00629W, +,IE,LIF,Lifford,Lifford,,--3-----,AF,9508,,5450N 00729W, +,IE,LMK,Limerick,Limerick,,1--45---,AF,9508,,5240N 00838W, +,IE,LON,Longford,Longford,,--3-----,AF,9508,,5344N 00747W, +,IE,LOU,Loughrea,Loughrea,,--3-----,AF,9508,,5312N 00834W, +,IE,LST,Listowel,Listowel,,--3-----,RQ,9705,,5227N 00929W, +,IE,LTH,Louth,Louth,,--3-----,RQ,9705,,5357N 00632W, +,IE,LTR,Letterkenny,Letterkenny,,--3-----,AF,9508,,5457N 00744W, +,IE,MAG,Maghera,Maghera,,1-3-----,RL,9811,,5348N 00702W,Donegal +,IE,MAL,Mallow,Mallow,,--3-----,AF,9508,,5208N 00839W, +,IE,MAY,Maynooth,Maynooth,,--3-----,AF,9508,,5323N 00636W, +,IE,MCR,Macroom,Macroom,,--3-----,RL,0002,,5154N 00858W, +,IE,MID,Midleton,Midleton,,--3-----,AF,9508,,5155N 00810W, +,IE,MLL,Mulligan,Mulligan,,--3-----,RQ,9705,,5337N 00647W, +,IE,MOB,Moy Bridge,Moy Bridge,,--3-----,AF,9508,,5424N 00659W, +,IE,MON,Monaghan,Monaghan,,--3-----,AF,9508,,5415N 00658W, +,IE,MOT,Moneypoint,Moneypoint,,1-------,AF,9508,,5236N 00925W, +,IE,MUL,Mullingar,Mullingar,,--3-----,AF,9508,,5332N 00720W, +,IE,NEW,Newcastle West,Newcastle West,,--3-----,AF,9508,,5227N 00903W, +,IE,NEX,Newtown,Newtown,WX,1-------,RQ,0901,,5212N 00632W, +,IE,NOC,Knock,Knock,,---4----,AI,0001,,5348N 00855W,ex Connaught +,IE,ORK,Cork,Cork,,1--45---,AF,9508,,5154N 00828W, +,IE,QSH,Cashel,Cashel,,--3-----,AF,9508,,5231N 00753W, +,IE,RAM,Rathmore,Rathmore,,--3-----,RL,0006,,5205N 00913W, +,IE,RAV,Rossaveel,Rossaveel,,1-------,AF,9508,,5316N 00932W, +,IE,ROE,Rosslare,Rosslare,,1-------,AF,9508,,5215N 00620W, +,IE,ROS,Rosslare Harbour,Rosslare Harbour,,1-------,AI,9704,,5215N 00620W, +,IE,RSC,Roscrea,Roscrea,,--3-----,AF,9508,,5257N 00747W, +,IE,RVM,River Moy,River Moy,,1-------,AF,9508,,5411N 00909W, +,IE,SAG,Saggart,Saggart,,--3-----,AF,9508,,5316N 00627W, +,IE,SCF,Scariff,Scariff,,--3-----,RL,9811,,5255N 00832W,Clare +,IE,SLI,Sligo,Sligo,,1-------,AF,9508,SXL,5412N 00844W, +,IE,SXL,Sligo Apt,Sligo Apt,,---4----,AF,9508,,5417N 00836W, +,IE,TAR,Tarbert,Tarbert,,1-------,AF,9508,,5234N 00922W, +,IE,TEM,Templemore,Templemore,,--3-----,AF,9508,,5248N 00750W, +,IE,THO,Thomastown,Thomastown,,--3-----,AF,9508,,5232N 00708W, +,IE,THR,Thurles,Thurles,,-23-----,RQ,9705,,5241N 00749W, +,IE,TIV,Tivoli,Tivoli,,1-------,AF,9508,,5154N 00826W, +,IE,TLK,Castlenock,Castlenock,CW,1-------,RQ,0901,,5323N 00621W, +,IE,TME,Tramore,Tramore,,1-------,RL,9811,,5210N 00709W, +,IE,TPY,Tipperary,Tipperary,,--3-----,AF,9508,,5228N 00810W, +,IE,TRA,Tralee,Tralee,,1-------,AI,9704,,5216N 00942W,Kerry +,IE,TRI,Trim,Trim,,--3-----,AF,9508,,5333N 00648W, +,IE,TUB,Tubbercurry,Tubbercurry,,--3-----,AF,9508,,5406N 00833W, +,IE,TUW,Tullow,Tullow,,--3-----,AF,9508,,5242N 00824W, +,IE,VIR,Virginia,Virginia,,--3-----,AF,9508,,5350N 00705W, +,IE,WAL,Walkinstown,Walkinstown,,0-------,AF,9508,,5319N 00620W, +,IE,WES,Westport,Westport,,1-------,AF,9508,,5348N 00931W, +,IE,WEX,Wexford,Wexford,,1--4----,AF,9508,,5220N 00628W, +,IE,WHI,Whitegate,Whitegate,,1-------,AF,9508,,5150N 00814W, +,IE,WIC,Wicklow,Wicklow,,1-------,AF,9508,,5259N 00602W, +,IE,WIL,Wilton,Wilton,CO,1----6--,RQ,1007,,5153N 00830W, +,IE,YOU,Youghal,Youghal,,1-------,AF,9508,,5157N 00751W, +,IL,ACR,Acre,Acre,,1-------,QQ,8103,,3256N 03505E, +,IL,AKL,Ashkelon,Ashkelon,,1-------,RQ,9506,,3140N 03434E, +,IL,ARV,Arava,Arava,,--3----B,AF,9803,,3104N 03502E, +,IL,ASH,Ashdod,Ashdod,,1-------,QQ,8103,,3148N 03439E, +,IL,BAT,Bat Yam,Bat Yam,,--3-----,RL,9901,,3201N 03445E, +,IL,BEV,Beer Sheba,Beer Sheba,,---4----,AI,9601,,3115N 03448E, +,IL,BRN,Bitanit,Bitanit,,--3----B,AF,9803,,3303N 03521E, +,IL,EIY,Ein Yahav,Ein Yahav,,---4----,AI,0001,,3039N 03514E, +,IL,ETH,Elat (Eilath),Elat (Eilath),,1--4----,AI,9601,,2933N 03457E, +,IL,HAD,Hadera,Hadera,,1-------,QQ,8103,,3226N 03455E, +,IL,KSW,Kiryat Shmona,Kiryat Shmona,,---4----,AI,0001,,3312N 03534E, +,IL,MTL,Matula,Matula,,--3----B,AF,9803,,3317N 03535E, +,IL,MTZ,Masada,Masada,,---4----,AI,0001,,3241N 03536E, +,IL,NZN,Nizana,Nizana,,--3----B,AF,9803,,3053N 03425E, +,IL,QIS,Qiryat Shemona,Qiryat Shemona,,--3-----,RL,9901,,3312N 03534E, +,IL,RHN,Rosh Hanikra,Rosh Hanikra,,--3----B,AF,9803,,3305N 03507E, +,IL,RPN,Rosh Pina,Rosh Pina,,---4----,AI,9601,,3258N 03533E, +,IL,SED,Sedom,Sedom,,---4----,AI,9601,,3106N 03523E, +,IL,SHI,Beit Hashita,Beit Hashita,,--3-----,RL,0901,,3233N 03526E, +,IL,TAB,Taba Border Crossing,Taba Border Crossing,,--3----B,AF,1307,,2929N 03454E, +,IL,TCL,Tirat Carmel,Tirat Carmel,,--3-----,RL,0003,,3246N 03458E, +,IL,VDA,Ovda,Ovda,,---4----,AI,0001,,2956N 03456E, +,IL,YOT,Yotvata,Yotvata,,---4----,AI,0001,,2954N 03504E, +,IN,ABG,Alibag,Alibag,MH,1-------,AA,0006,,1839N 07253E, +,IN,ACH,Achra,Achra,MH,1-------,AA,0006,,1612N 07327E, +,IN,ADI,Androth Is,Androth Is,LD,1-------,AA,0006,,1049N 07341E, +,IN,AGR,Agra,Agra,UP,---4-6--,AA,0002,,2711N 07801E,ICD/CFS = BLJ +,IN,AGX,Agatti Island,Agatti Island,,---4----,AI,0001,,1051N 07211E, +,IN,AJL,Aizawl,Aizawl,,---4----,AI,0001,,2345N 09244E, +,IN,AKD,Akola,Akola,,---4----,AI,0001,,2043N 07700E, +,IN,ALA,Alang SBY,Alang SBY,,12------,RN,0407,,2124N 07211E, +,IN,AMG,Amingaon (Gauhati),Amingaon (Gauhati),AS,-----6--,AA,0002,,2611N 09140E,ICD/CFS +,IN,AMI,Andorth Is,Andorth Is,LD,1-------,AA,0006,,1049N 07341E, +,IN,ANL,Arnala,Arnala,MH,1-------,AA,0006,,1928N 07244E, +,IN,APT,Anaparti,Anaparti,AP,-----6--,AA,0002,,1655N 08158E,ICD/CFS +,IN,ARR,Aroor,Aroor,KL,-----6--,AA,0002,,0953N 07618E,ICD/CFS +,IN,ATQ,Amritsar,Amritsar,PB,---4-6--,AA,0002,,3138N 07452E,ICD/CFS = ASR Rajasans +,IN,ATT,Attari,Attari,PB,-2------,AA,1207,,3136N 07436E, +,IN,BAW,Bawal,Bawal,HR,1-------,RL,1407,,2804N 07635E, +,IN,BBI,Bhubaneswar,Bhubaneswar,OR,---4----,AA,0002,,2016N 08550E, +,IN,BDA,Bandra,Bandra,MH,1-------,AA,0201,,1903N 07250E, +,IN,BDG,Badagara,Badagara,KL,1-------,AA,0006,,1136N 07535E, +,IN,BDI,Baddi,Baddi,HP,--3-----,RL,1501,,3056N 07648E, +,IN,BDR,Baindur,Baindur,KA,1-------,AA,0006,,1352N 07438E, +,IN,BED,Bedi,Bedi,GJ,1-------,AA,0002,,2228N 07045E,Incl JGA Jamnagar & Rozi +,IN,BEK,Bareilly,Bareilly,UP,---4----,AA,0002,,2821N 07925E, +,IN,BEP,Bellary,Bellary,,---4----,AI,0001,,1509N 07655E, +,IN,BET,Betul,Betul,GA,1-------,AA,0002,,1503N 07359E, +,IN,BEY,Beypore,Beypore,KL,1-------,RL,0002,,1111N 07549E, +,IN,BGU,Bairgania,Bairgania,BR,-------B,AA,0006,,2644N 08517E, +,IN,BGW,Bhagwa,Bhagwa,GJ,1-------,AA,0006,,2529N 07227E, +,IN,BHJ,Bhuj,Bhuj,,---4----,AI,9601,,2315N 06940E, +,IN,BHL,Bhilwara,Bhilwara,RJ,-----6--,AA,0002,,2521N 07438E,ICD/CFS +,IN,BHM,Bheemunipatnam,Bheemunipatnam,AP,1-------,RL,0002,,1753N 08327E, +,IN,BID,Bidar,Bidar,KA,-----6--,RQ,1007,,1755N 07732E, +,IN,BKB,Bikaner,Bikaner,,---4----,AI,0001,,2801N 07319E, +,IN,BKT,Bankot,Bankot,MH,1-------,AA,0006,,1759N 07303E, +,IN,BLK,Belekeri,Belekeri,KA,1-------,AA,0002,,1441N 07501E, +,IN,BLM,Bilimora,Bilimora,GJ,1-------,AA,0006,,2046N 07258E, +,IN,BLP,Belapur,Belapur,MH,1-------,AA,0006,,1902N 07303E, +,IN,BLT,Balet,Balet,ML,-------B,AA,0006,,2640N 07752E, +,IN,BMR,Barmer,Barmer,RJ,-2------,AA,1207,,2545N 07124E, +,IN,BNR,Bhimnagar,Bhimnagar,BR,-------B,AA,0006,,2631N 08658E, +,IN,BRC,Baroda,Baroda,GJ,-----6--,AA,0002,,2218N 07312E,ICD/CFS +,IN,BSA,Banbasa,Banbasa,UP,-------B,AA,0006,,2860N 08004E, +,IN,BSR,Bulsar,Bulsar,GJ,1-------,AA,0006,,2036N 07256E, +,IN,BTK,Bhatkal,Bhatkal,KA,1-------,AA,0006,,1359N 07433E, +,IN,BTR,Bitra Is,Bitra Is,LD,1-------,AA,0006,,1133N 07209E, +,IN,BUD,Budge-Budge,Budge-Budge,WB,1-------,RL,0002,,2228N 08810E, +,IN,BUP,Bhatinda,Bhatinda,PB,---4-6--,AA,0002,,3015N 07501E,ICD/CFS = BTI +,IN,BW2,Bhiwani,Bhiwani,HR,-----6--,RL,1107,,2848N 07608E, +,IN,BWD,Bhiwadi,Bhiwadi,RJ,-----6--,AA,0002,,2812N 07650E,ICD/CFS +,IN,BWN,Bhiwandi,Bhiwandi,MH,1-------,AA,0006,,1918N 07304E, +,IN,BYT,Beyt,Beyt,GJ,1-------,AA,0006,,2227N 06906E, +,IN,CAM,Cambay,Cambay,GJ,1-------,RL,0002,,2219N 07237E, +,IN,CAP,Calingapatam,Calingapatam,AP,1-------,RL,0002,,1820N 08407E, +,IN,CBD,Car Nicobar,Car Nicobar,,---4----,AI,0001,,0911N 09246E, +,IN,CBL,Chandbali,Chandbali,OR,1-------,RL,0002,,2046N 08644E, +,IN,CDL,Cuddalore,Cuddalore,TN,1-------,AA,0002,,1145N 07945E, +,IN,CDP,Cuddapah,Cuddapah,,---4----,AI,0001,,1430N 07850E, +,IN,CHP,Champai,Champai,MZ,-------B,AA,0006,,2328N 09320E, +,IN,CHR,Chapora,Chapora,GA,1-------,AA,0006,,1536N 07345E, +,IN,CJB,Coimbatore,Coimbatore,TN,---4-6--,AA,0002,,1100N 07658E,ICD/CFS = CBE +,IN,CLX,Chirala,Chirala,AP,-----6--,AA,0002,,1550N 08022E,ICD/CFS +,IN,COH,Cooch Behar,Cooch Behar,,---4----,AI,0001,,2619N 08928E, +,IN,COL,Colochel,Colochel,,1-------,QQ,8112,,0811N 07715E, +,IN,CRN,Cornwallis,Cornwallis,AN,1-------,AA,0006,,2836N 07714E, +,IN,CTI,Chetlat Is,Chetlat Is,LD,1-------,AA,0006,,1142N 07243E, +,IN,DAH,Dahej,Dahej,GJ,1-------,AA,0002,,2143N 07235E, +,IN,DAI,Darjeeling,Darjeeling,,---4----,AI,0001,,2702N 08816E, +,IN,DAM,Daman,Daman,DD,1--4----,AA,0002,NMB,2025N 07252E, +,IN,DBD,Dhanbad,Dhanbad,,---4----,AI,0001,,2348N 08626E, +,IN,DEL,Delhi,Delhi,DL,---45---,AA,0002,,2837N 07713E, +,IN,DEP,Deparizo,Deparizo,,---4----,AI,0001,,2759N 09413E, +,IN,DHM,Dharamsala,Dharamsala,,---4----,AI,0001,,3213N 07619E, +,IN,DHR,Dholera,Dholera,GJ,1-------,AA,0006,,2215N 07212E, +,IN,DHU,Dahanu,Dahanu,MH,1-------,AA,0002,,1959N 07244E, +,IN,DIB,Dibrugarh,Dibrugarh,,---4----,AI,0001,,2729N 09454E, +,IN,DIU,Diu,Diu,DD,1--4----,AI,9601,,2043N 07059E, +,IN,DIV,Div,Div,GJ,1-------,AA,0002,,2414N 09339E, +,IN,DLA,Dharchula,Dharchula,UP,-------B,AA,0006,,2951N 08032E, +,IN,DLU,Dalu,Dalu,ML,-------B,AA,0006,,2514N 09012E, +,IN,DMT,Dharamtar,Dharamtar,MH,1-------,AA,0002,,1843N 07302E, +,IN,DMU,Dimapur,Dimapur,,---4----,AI,0001,,2555N 09343E, +,IN,DRG,Darranga,Darranga,AS,-------B,AA,0006,,2648N 09130E, +,IN,DRK,Dwarka (Rupen),Dwarka (Rupen),GJ,1-------,AA,0006,,2215N 06858E, +,IN,DRL,Dabolim,Dabolim,GA,1-------,RL,0002,,1523N 07351E, +,IN,DSK,Dhanu-shkodi,Dhanu-shkodi,TN,1-------,AA,0006,,0911N 07925E, +,IN,DTW,Dantiwara,Dantiwara,MH,1-------,AA,0006,,2514N 07320E, +,IN,DUR,Durgapur,Durgapur,WB,--3--6--,RL,0701,,2332N 08720E, +,IN,DWA,Dwarka,Dwarka,GJ,1-------,RL,0002,,2215N 06858E, +,IN,DWK,Dawki,Dawki,ML,-------B,AA,0006,,2511N 09201E, +,IN,ENR,Ennore,Ennore,TN,1-------,AA,0002,,1314N 08019E, +,IN,FBD,Faridabad,Faridabad,HR,--3--6--,AA,0002,QNF,2824N 07719E, +,IN,GAI,Gauriphanta,Gauriphanta,UP,-------B,AA,0006,,2841N 08033E, +,IN,GAL,Galgalia,Galgalia,BR,-------B,AA,0006,,2632N 08807E, +,IN,GAW,Guwahati,Guwahati,AS,-2------,RL,0002,,2611N 09145E, +,IN,GAY,Gaya,Gaya,,---4----,AA,0002,,2448N 08500E, +,IN,GED,Gede,Gede,WB,-2------,AA,1207,,2329N 08847E, +,IN,GHA,Ghogha,Ghogha,GJ,1-------,AA,0006,,2141N 07217E, +,IN,GJI,Gunji,Gunji,UP,-------B,AA,0006,,2051N 07808E, +,IN,GKJ,Golakganj,Golakganj,AS,-2------,AA,1207,,2606N 08950E, +,IN,GOI,Goa,Goa,,---4----,AI,0001,,2805N 09323E, +,IN,GPR,Gopalpur,Gopalpur,OR,1-------,AA,0002,,1916N 08454E, +,IN,GTR,Guntur,Guntur,AP,-23-----,RL,0002,,1617N 08027E, +,IN,GUM,Gummidipoondi,Gummidipoondi,AN,--3-----,RQ,0901,,1325N 08005E, +,IN,GUX,Guna,Guna,,---4----,AI,0001,,2439N 07719E, +,IN,HAL,Haldia,Haldia,WB,1-------,AA,0002,,2202N 08804E, +,IN,HBX,Hubli,Hubli,,---4----,AI,0001,,1521N 07508E, +,IN,HGL,Hingalganj,Hingalganj,WB,-------B,AA,0006,,2228N 08859E, +,IN,HIP,Himachal Pradesh,Himachal Pradesh,AN,1-3-----,RQ,0901,,3141N 07631E, +,IN,HJR,Khajuraho,Khajuraho,,---4----,AI,9601,,2451N 07956E, +,IN,HLD,Haldibari,Haldibari,AS,-2------,AA,1207,,2620N 08847E, +,IN,HLI,Hilli,Hilli,WB,-------B,AA,0006,,2517N 08900E, +,IN,HON,Honavar,Honavar,KA,1-------,RL,0002,,1417N 07427E, +,IN,HRN,Harnai,Harnai,MH,1-------,AA,0006,,1750N 07305E, +,IN,HSS,Hissar,Hissar,,---4----,AI,0001,,2907N 07511E, +,IN,HTS,Hatisar,Hatisar,AS,-------B,AA,0006,,2126N 08329E, +,IN,HYD,Hyderabad,Hyderabad,TG,--34-6--,AA,1607,,1722N 07828E,ICD/CFS = SNF +,IN,IMF,Imphal,Imphal,MN,---4----,AA,0002,,2448N 09356E, +,IN,IXA,Agartala,Agartala,,---4----,AI,9601,,2350N 09117E, +,IN,IXB,Bagdogra,Bagdogra,WB,---4----,AA,0002,,2642N 08819E, +,IN,IXD,Allahabad,Allahabad,,---4----,AI,9601,,2526N 08150E, +,IN,IXE,Mangalore,Mangalore,KA,1--4----,AA,0002,,1252N 07451E, +,IN,IXG,Belgaum,Belgaum,,---4----,AI,9601,,1551N 07430E, +,IN,IXH,Kailashahar,Kailashahar,,---4----,AI,0001,,2419N 09160E, +,IN,IXK,Keshod,Keshod,,---4----,AI,9601,,2118N 07015E, +,IN,IXL,Leh,Leh,,---4----,AI,9601,,3410N 07735E, +,IN,IXN,Khowai,Khowai,,---4----,AI,0001,,2405N 09136E, +,IN,IXP,Pathankot,Pathankot,,---4----,AI,0001,,3216N 07539E, +,IN,IXQ,Kamalpur,Kamalpur,,---4----,AI,0001,,2455N 08749E, +,IN,IXS,Silchar,Silchar,,---4----,AI,9601,,2450N 09248E, +,IN,IXT,Pasighat,Pasighat,,---4----,AI,0001,,2804N 09520E, +,IN,IXU,Aurangabad,Aurangabad,,---4----,AI,9601,,2445N 08422E, +,IN,IXZ,Port Blair,Port Blair,AN,1--4----,AA,0002,,1140N 09244E, +,IN,JAK,Jakhau,Jakhau,GJ,1-------,AA,0002,,2313N 06843E, +,IN,JAL,Jalgaon,Jalgaon,MH,-----6--,AA,0002,,2060N 07534E,ICD/CFS +,IN,JBN,Jogbani,Jogbani,BR,-------B,AA,0006,,2624N 08716E, +,IN,JDA,Jodia,Jodia,GJ,1-------,AA,0002,,2242N 07018E, +,IN,JGA,Jamnagar,Jamnagar,,---4----,AI,0001,,2228N 07003E, +,IN,JGB,Jagdalpur,Jagdalpur,,---4----,AI,0001,,1905N 08201E, +,IN,JGD,Jaigad,Jaigad,MH,1-------,AA,0006,,1718N 07313E, +,IN,JHO,Jhulaghat (Pithoragarh),Jhulaghat (Pithoragarh),UP,-------B,AA,0006,,2934N 08023E, +,IN,JIG,Jaigaon,Jaigaon,WB,-------B,AA,0006,,2651N 08923E, +,IN,JLR,Jabalpur,Jabalpur,,---4----,AI,0001,,2310N 07957E, +,IN,JPG,Jalpaiguri,Jalpaiguri,WB,-------B,AA,0006,,2631N 08843E, +,IN,JRH,Jorhat,Jorhat,,---4----,AI,9601,,2645N 09412E, +,IN,JSA,Jaisalmer,Jaisalmer,,---4----,AI,0001,,2655N 07055E, +,IN,JTP,Jaitapur,Jaitapur,MH,1-------,AA,0006,,2052N 07720E, +,IN,JUC,Jalandhar,Jalandhar,PB,-----6--,AA,0002,,3120N 07535E,ICD/CFS +,IN,JWA,Jarwa,Jarwa,UP,-------B,AA,0006,,2739N 08231E, +,IN,KAK,Kakinada,Kakinada,AP,1----6--,AA,0002,,1657N 08214E, +,IN,KAL,Kallai,Kallai,KL,1-------,AA,0006,,1114N 07547E, +,IN,KBT,Khambhat,Khambhat,GJ,1-------,RL,0002,,2219N 07237E, +,IN,KDD,Karedu,Karedu,AP,-----6--,AA,0002,,1511N 08004E,ICD/CFS +,IN,KDI,Kadmat Is,Kadmat Is,LD,1-------,AA,0006,,1113N 07247E, +,IN,KIW,Kelwa,Kelwa,MH,1-------,AA,0006,,2212N 07614E, +,IN,KKM,Kanyakumari,Kanyakumari,TN,1-------,RQ,0901,,0805N 07733E, +,IN,KLY,Kalyan,Kalyan,MH,1-------,AA,0006,,1914N 07308E, +,IN,KNL,Kunauli,Kunauli,BR,-------B,AA,0006,,2624N 08642E, +,IN,KNU,Kanpur,Kanpur,UP,---4-6--,AA,0002,,2628N 08019E,ICD/CFS = CPC +,IN,KOD,Kodinar,Kodinar,GJ,1-------,RL,0002,,2048N 07042E, +,IN,KOK,Koka,Koka,GJ,1-------,AA,0002,,2112N 07947E, +,IN,KRI,Krishnapatnam,Krishnapatnam,AP,1-------,AA,0002,,1415N 08007E, +,IN,KRK,Karaikal,Karaikal,PY,1-------,AA,0002,,1055N 07950E, +,IN,KRN,Karanja,Karanja,MH,1-------,AA,0006,,2029N 07729E, +,IN,KRP,Kiranpani,Kiranpani,MH,1-------,AA,0006,,1543N 07343E, +,IN,KRW,Karwar,Karwar,KA,1-------,AA,0002,,1449N 07408E,Incl Sardeshivagad +,IN,KSG,Kasargod,Kasargod,KL,1-------,AA,0006,,1230N 07459E, +,IN,KSH,Kelshi,Kelshi,MH,1-------,AA,0006,,1755N 07304E, +,IN,KTD,Kotda,Kotda,GJ,1-------,AA,0006,,2421N 07311E, +,IN,KTI,Kiltan Is,Kiltan Is,LD,1-------,AA,0006,,1129N 07300E, +,IN,KTU,Kota,Kota,RJ,---4-6--,AA,0002,,2510N 07551E,ICD/CFS +,IN,KUN,Kundla,Kundla,GJ,--3-----,RL,9805,,2120N 07119E, +,IN,KUU,Kulu,Kulu,,---4----,AI,0001,,2940N 07936E, +,IN,KVI,Kavi,Kavi,GJ,1-------,AA,0006,,2212N 07238E, +,IN,KVL,Kovalam,Kovalam,KL,1-------,AA,0006,,0823N 07659E, +,IN,KWA,Khunwa,Khunwa,UP,-------B,AA,0006,,2727N 08260E, +,IN,LDA,Malda,Malda,,---4----,AI,0001,,2500N 08808E, +,IN,LKO,Lucknow,Lucknow,UP,---4----,AA,0002,,2650N 08056E, +,IN,LUH,Ludhiana,Ludhiana,PB,---4-6--,AA,0002,,3055N 07551E,ICD/CFS = LDH +,IN,MAL,Malpe,Malpe,KA,1-------,AA,0002,,1321N 07442E, +,IN,MAT,Mathura,Mathura,UP,-23-----,RQ,0901,,2730N 07741E, +,IN,MBD,Pakwara (Moradabad),Pakwara (Moradabad),UP,-----6--,AA,0002,,2851N 07844E,ICD/CFS +,IN,MDP,Mandapam,Mandapam,TN,1-------,AA,0002,,0917N 07909E, +,IN,MDW,Meadows,Meadows,AN,1-------,AA,0006,,0957N 07624E, +,IN,MER,Meerut,Meerut,UP,--3--6--,AA,0002,,2859N 07742E,ICD/CFS = MTC +,IN,MGH,Mahendraganj,Mahendraganj,ML,-------B,AA,0006,,2518N 08951E, +,IN,MGR,Mangrol,Mangrol,GJ,1-------,AA,0002,,2135N 07251E, +,IN,MHA,Mahuva,Mahuva,GJ,1-------,AA,0002,,2105N 07146E, +,IN,MHI,Mohali,Mohali,MH,--3-----,RL,0002,,2116N 07849E, +,IN,MLI,Maroli,Maroli,GJ,1-------,AA,0002,,2101N 07253E, +,IN,MLP,Mallipuram,Mallipuram,KL,1-------,AA,0006,,1839N 08405E, +,IN,MLW,Malwan,Malwan,MH,1-------,AA,0006,,2414N 07321E, +,IN,MNB,Munabao,Munabao,RJ,-2------,AA,1207,,2545N 07017E, +,IN,MNR,Manori,Manori,MH,1-------,AA,0006,,2043N 07907E, +,IN,MNU,Manu,Manu,AS,--3----B,AA,0501,,2732N 07416E, +,IN,MNW,Mandwa,Mandwa,MH,1-------,AA,0006,,2025N 07637E, +,IN,MOH,Mohanbari,Mohanbari,,---4----,AI,0001,,2744N 07520E, +,IN,MRA,Mora,Mora,MH,1-------,AA,0006,,2019N 07536E, +,IN,MRE,Moreh,Moreh,ML,-------B,AA,0006,,2415N 09418E, +,IN,MRK,Malappuram,Malappuram,KL,1-------,RQ,0901,,1103N 07605E, +,IN,MUN,Mundra,Mundra,GJ,1-------,AA,0002,,2250N 06943E, +,IN,MUR,Murad,Murad,MH,1-------,RL,0002,,2957N 07705E, +,IN,MYQ,Mysore,Mysore,,---4----,AI,0001,,1218N 07639E, +,IN,MZA,Muzaffarnagar,Muzaffarnagar,,---4----,AI,0001,,2928N 07742E, +,IN,MZU,Muzaffarpur,Muzaffarpur,,---4----,AI,0001,,2607N 08523E, +,IN,NAG,Nagpur,Nagpur,MH,---4-6--,AA,0002,,2109N 07905E,ICD/CFS = NGP +,IN,NAV,Navlakhi,Navlakhi,GJ,1-------,AA,0002,,2258N 07027E, +,IN,NDC,Nanded,Nanded,,---4----,AI,0001,,1909N 07720E, +,IN,NDG,Nandgaon,Nandgaon,MH,1-------,AA,0006,,1743N 07543E, +,IN,NEL,Nellore,Nellore,AP,1-------,RL,0002,,1427N 07959E, +,IN,NKN,Namkhana,Namkhana,WB,-------B,AA,0006,,2146N 08814E, +,IN,NML,New Mangalore,New Mangalore,KA,1-------,AA,0002,,1256N 07449E, +,IN,NPG,Nampong,Nampong,AP,-------B,AA,0006,,2718N 09607E, +,IN,NPR,Nagapur,Nagapur,MH,--3-----,RL,9806,,2010N 07641E, +,IN,NSA,Nhava Sheva (Jawaharlal Nehru),Nhava Sheva (Jawaharlal Nehru),MH,1-------,AA,0002,,1857N 07257E, +,IN,NVY,Neyveli,Neyveli,,---4----,AI,0001,,1132N 07929E, +,IN,OKH,Okha,Okha,GJ,1-------,AA,0002,,2228N 06905E, +,IN,OMN,Osmanabad,Osmanabad,,---4----,AI,0001,,1811N 07603E, +,IN,ONJ,Onjal,Onjal,GJ,1-------,AA,0006,,2051N 07251E, +,IN,PAB,Bilaspur,Bilaspur,,---4----,AI,0001,,2205N 08208E, +,IN,PAN,Panaji Port,Panaji Port,GA,1-------,AA,0002,,1530N 07349E, +,IN,PAP,Panipat,Panipat,HR,-23-----,RL,0002,,2923N 07659E, +,IN,PAT,Patna,Patna,BR,---4----,AA,0002,,2537N 08507E, +,IN,PBD,Porbandar,Porbandar,GJ,1--4----,AA,0002,,2138N 06937E, +,IN,PDD,Padubidri,Padubidri,KA,1-------,AA,0501,,1308N 07446E, +,IN,PDI,Padi,Padi,,--3-----,RQ,9806,,1306N 08012E, +,IN,PEE,Peenya,Peenya,,--3-----,RL,1107,,1302N 07732E, +,IN,PER,Perundurai,Perundurai,TN,1-3-----,RQ,0901,,1117N 07735E, +,IN,PGH,Pantnagar,Pantnagar,,---4----,AI,9601,,2902N 07929E, +,IN,PHB,Phulbari,Phulbari,AS,-------B,AA,0006,,2722N 09555E, +,IN,PIR,Pithampur,Pithampur,MP,--3--6--,AA,0002,,2237N 07541E,ICD/CFS = IND +,IN,PMB,Pamban,Pamban,TN,1-------,AA,0006,,0914N 07920E, +,IN,PMP,Pimpri,Pimpri,MH,-----6--,AA,0002,,2122N 07752E,ICD/CFS +,IN,PNJ,Panjim,Panjim,GA,1-------,AA,0006,,1530N 07350E, +,IN,PNN,Ponnani,Ponnani,KL,1-------,AA,0006,,1047N 07555E, +,IN,PNP,Babarpur,Babarpur,HR,-----6--,AA,0002,,2928N 07657E,ICD/CFS +,IN,PNQ,Pune,Pune,MH,-234-6--,AA,1801,,1831N 07351E, +,IN,PNT,Panitankit (Nazalbari),Panitankit (Nazalbari),WB,-------B,AA,0006,,2638N 08810E, +,IN,PPG,Patparganj,Patparganj,DL,--3--6--,AA,0002,,2837N 07717E, +,IN,PSH,Palshet,Palshet,MH,1-------,AA,0006,,1726N 07312E, +,IN,PTL,Patli,Patli,HR,-----6--,RQ,0901,,2825N 07652E, +,IN,PUL,Pulicat,Pulicat,TN,1-------,RL,0002,,1325N 08019E, +,IN,PUR,Puri,Puri,OR,1-------,RL,0002,,1948N 08550E, +,IN,PUT,Puttaparthi,Puttaparthi,,---4----,AI,0001,,1410N 07749E, +,IN,PYB,Jeypore,Jeypore,,---4----,AI,0001,,1852N 08234E, +,IN,QUI,Quilon,Quilon,KL,1-------,RL,0002,,0853N 07636E, +,IN,RAM,Rameshwaram,Rameshwaram,TN,1-------,AA,0002,,0917N 07919E, +,IN,RAY,Rayapalayam,Rayapalayam,AN,--3-----,RQ,0901,,1112N 07740E, +,IN,RDP,Radhikapur,Radhikapur,WB,-2------,AA,1207,,2539N 08827E, +,IN,RED,Redi,Redi,MH,1-------,AA,0002,,1545N 07340E, +,IN,REW,Rewa,Rewa,,---4----,AI,0001,,2432N 08118E, +,IN,RGH,Balurghat,Balurghat,,---4----,AI,0001,,2513N 08847E, +,IN,RJA,Rajahmundry,Rajahmundry,,---4----,AI,0001,,1700N 08147E, +,IN,RJI,Rajouri,Rajouri,,---4----,AI,0001,,3323N 07419E, +,IN,RJR,Rajpuri,Rajpuri,MH,1-------,AA,0006,,3105N 07744E, +,IN,RKG,Rajakkamangalam,Rajakkamangalam,KL,1-------,AA,0006,,0808N 07722E, +,IN,RMD,Ramagundam,Ramagundam,,---4----,AI,0001,,1846N 07929E, +,IN,RNG,Ranaghat,Ranaghat,WB,-2------,AA,1207,,2310N 08834E, +,IN,RRI,Raili,Raili,BR,1-------,RL,0002,,2314N 08053E, +,IN,RRK,Rourkela,Rourkela,,---4----,AI,0001,,2214N 08452E, +,IN,RTC,Ratnagiri,Ratnagiri,MH,1--4----,AA,0002,,1660N 07318E, +,IN,RUP,Rupsi,Rupsi,,---4----,AI,0001,,2608N 08954E, +,IN,RXL,Raxaul,Raxaul,BR,-------B,AA,0006,,2659N 08451E, +,IN,SAB,Sabroom,Sabroom,TR,-------B,AA,0006,,2300N 09144E, +,IN,SAC,Sachin (Surat),Sachin (Surat),GJ,-----6--,AA,0002,,2105N 07253E,ICD/CFS +,IN,SAD,Sanathnagar,Sanathnagar,HR,1-3-----,RL,0607,,1729N 07825E, +,IN,SAL,Salaya,Salaya,GJ,1-------,AA,0002,,2219N 06936E, +,IN,SAR,Sardar,Sardar,AN,--3-----,RQ,0901,,3317N 07442E, +,IN,SHI,Shirola,Shirola,KA,1-------,RL,0002,,1550N 07533E, +,IN,SHL,Shillong,Shillong,,---4----,AI,0001,,2535N 09153E, +,IN,SIM,Sima/Navabunder,Sima/Navabunder,GJ,1-------,AA,0006,,2311N 06935E, +,IN,SLT,Salt Lake,Salt Lake,WB,--3--6--,AA,0401,,2235N 08824E, +,IN,SLV,Simla,Simla,,---4----,AI,0001,,3106N 07710E, +,IN,SMR,Simor,Simor,GJ,1-------,AA,0006,,2306N 07241E, +,IN,SNB,Sonabarsa,Sonabarsa,DL,-------B,AA,0006,,2003N 08237E, +,IN,SNL,Sonauli,Sonauli,UP,-------B,AA,0006,,2728N 08328E, +,IN,SPR,Sirpur,Sirpur,AN,--3-----,RQ,0901,,1929N 07934E, +,IN,SRE,Saharanpur,Saharanpur,UP,-----6--,AA,0002,,2958N 07733E,ICD/CFS +,IN,STA,Satara,Satara,MH,--3-----,RQ,0901,,1741N 07400E, +,IN,STI,Sitai,Sitai,WB,-------B,AA,0006,,2603N 08920E, +,IN,STP,Satpati,Satpati,MH,1-------,AA,0006,,1951N 07838E, +,IN,SXR,Srinagar,Srinagar,JK,---4----,AA,0002,,3404N 07449E, +,IN,SXV,Salem,Salem,TN,---4-6--,AA,0002,,1139N 07809E,ICD/CFS = SXT +,IN,TAM,Tamilnada,Tamilnada,AN,--3-----,RQ,0901,,1100N 07900E, +,IN,TEI,Tezu,Tezu,,---4----,AI,0001,,2756N 09610E, +,IN,TEL,Tellicherry,Tellicherry,KL,1-------,AA,0002,,1145N 07529E, +,IN,TEZ,Tezpur,Tezpur,,---4----,AI,9601,,2637N 09248E, +,IN,THE,Theni,Theni,TN,-----6--,RQ,0901,,1001N 07729E, +,IN,THL,Thal,Thal,MH,1-------,AA,0006,,1842N 07251E, +,IN,TIR,Tirupati,Tirupati,,---4----,AI,9601,,1338N 07925E, +,IN,TJA,Talaja,Talaja,GJ,1-------,AA,0002,,2121N 07202E, +,IN,TJV,Thanjavur,Thanjavur,,---4----,AI,0001,,1047N 07908E, +,IN,TKN,Tikonia,Tikonia,UP,-------B,AA,0006,,2823N 08058E, +,IN,TKS,Tenkasi,Tenkasi,TN,1-------,RQ,0901,,0857N 07718E, +,IN,TMP,Trombay,Trombay,MH,1-------,AA,0006,,1902N 07257E, +,IN,TNA,Thana,Thana,MH,1-------,AA,0006,,1835N 07727E, +,IN,TND,Tondi,Tondi,TN,1-------,AA,0006,,2416N 07659E, +,IN,TNG,Tungi,Tungi,WB,-------B,AA,0006,,1903N 07329E, +,IN,TPH,Thopputhurai,Thopputhurai,TN,1-------,AA,0006,,1024N 07951E, +,IN,TPN,Talpona,Talpona,GA,1-------,AA,0006,,1459N 07402E, +,IN,TRA,Tranquebar,Tranquebar,TN,1-------,RL,0002,,1102N 07951E, +,IN,TRP,Tarapur,Tarapur,MH,1-------,AA,0006,,2036N 07617E, +,IN,TRZ,Tiruchirapalli,Tiruchirapalli,TN,---4----,AA,0002,,1047N 07842E, +,IN,TUN,Tuna,Tuna,GJ,1-------,AA,0002,,2259N 07005E, +,IN,TYR,Tirukkadayyur,Tirukkadayyur,TN,1-------,AA,0002,,1104N 07949E, +,IN,UDR,Udaipur,Udaipur,RJ,---4-6--,AA,0002,,2435N 07341E,ICD/CFS = UDZ +,IN,ULW,Ulwa,Ulwa,MH,1-------,AA,0006,,3124N 07725E, +,IN,UMB,Umbergoan,Umbergoan,GJ,1-------,AA,0002,,2012N 07251E, +,IN,UND,Secunderabad,Secunderabad,AP,--3-----,RL,9805,,1726N 07830E, +,IN,UTN,Uttan,Uttan,MH,1-------,AA,0006,,1917N 07247E, +,IN,VAD,Vadinar,Vadinar,GJ,1-------,AA,0002,,2224N 06943E, +,IN,VEN,Vengurla,Vengurla,MH,1-------,RL,0002,,1551N 07338E, +,IN,VGA,Vijayawada,Vijayawada,,---4----,AI,9601,,1631N 08037E, +,IN,VIG,Vizagapatanam,Vizagapatanam,DL,1-------,RQ,0901,,1742N 08318E, +,IN,VKM,Valinokkam,Valinokkam,TN,1-------,AA,0002,,0910N 07839E, +,IN,VRU,Vadarevu,Vadarevu,AP,1-------,AA,0006,,1548N 08025E, +,IN,VSV,Varsova,Varsova,MH,1-------,AA,0006,,1917N 07254E, +,IN,VVA,Veraval,Veraval,GJ,1-------,AA,0002,,2055N 07022E, +,IN,VYD,Vijaydurg,Vijaydurg,MH,1-------,AA,0006,,1633N 07320E, +,IN,VZJ,Vazhinjam,Vazhinjam,KL,1-------,AA,0002,,0823N 07700E, +,IN,WAL,Waluj (Aurangabad),Waluj (Aurangabad),MH,-----6--,AA,0002,,1951N 07515E,ICD/CFS +,IN,WGC,Warrangal,Warrangal,,---4----,AI,0001,,1800N 07935E, +,IO,DGA,Diego Garcia,Diego Garcia,,----5---,AI,0201,,0720S 07228E, +,IQ,ALF,Abu Al Fulus,Abu Al Fulus,,1-------,RQ,9811,,3027N 04801E, +,IQ,ALK,Abu Al Khasib,Abu Al Khasib,,--3-----,RL,9805,,3027N 04759E,Tammar +,IQ,AMA,Amara (Al-Amarah),Amara (Al-Amarah),,0-------,RQ,9601,,3151N 04709E, +,IQ,ARK,Arak,Arak,,0-------,RQ,9012,,3338N 04405E, +,IQ,BSR,Basra,Basra,BA,1-------,AI,1407,,3030N 04749E, +,IQ,DIW,Diwaniyah,Diwaniyah,,0-------,RQ,9012,,3157N 04459E, +,IQ,DOK,Dohuk,Dohuk,,0-------,RQ,9012,,3651N 04260E, +,IQ,FAL,Falluja,Falluja,,0-------,RQ,9012,,3321N 04347E, +,IQ,FAO,Fao,Fao,,1-------,QQ,8103,,2958N 04828E, +,IQ,HIT,Hit,Hit,,0-------,RQ,9012,,3338N 04250E, +,IQ,HND,Hindiya,Hindiya,,0-------,RQ,9012,,3233N 04413E, +,IQ,IKD,Iskandariyha,Iskandariyha,,1-------,QQ,8103,,3254N 04421E, +,IQ,KAR,Karbala,Karbala,,1-------,QQ,8103,,3237N 04402E, +,IQ,KAZ,Khor al Zubair,Khor al Zubair,,1-------,RQ,9506,,3014N 04746E, +,IQ,KFA,Kufa,Kufa,,0-------,RQ,9012,,3202N 04424E, +,IQ,KHA,Khor Al Amaya,Khor Al Amaya,,1-------,QQ,8103,,2947N 04848E, +,IQ,KIK,Kirkuk,Kirkuk,,1-------,AI,9401,,3528N 04424E, +,IQ,KUT,Al Kut,Al Kut,,0-------,RQ,9012,,3230N 04550E, +,IQ,MAN,Mandali,Mandali,,1-------,QQ,8103,,3345N 04533E, +,IQ,RMD,Ramadi,Ramadi,,0-------,RQ,9012,,3326N 04318E, +,IQ,RTM,Ratawi,Ratawi,,0-------,RQ,9012,,3038N 04713E, +,IQ,SMW,Samawa (As-Samawah),Samawa (As-Samawah),,0-------,RQ,9601,,3117N 04521E, +,IQ,SYH,Sulaymaniyah,Sulaymaniyah,,--3-----,RQ,0212,,3533N 04527E, +,IQ,TKT,Tikrit,Tikrit,,0-------,RQ,9012,,3437N 04341E, +,IR,ABD,Abadan,Abadan,,1--45---,AI,9601,,3022N 04816E, +,IR,ACZ,Zabol,Zabol,,---4----,AI,0001,,3102N 06130E, +,IR,ADU,Ardabil,Ardabil,,---4----,AI,0001,,3815N 04818E, +,IR,ASR,Astara,Astara,,0-------,RQ,9506,,3825N 04852E, +,IR,AWZ,Ahwaz,Ahwaz,,---4----,AI,9601,,3119N 04841E, +,IR,AZD,Yazd,Yazd,,1--4----,AI,9601,,3153N 05422E, +,IR,BAJ,Bajgiran,Bajgiran,,----5---,AI,9805,,3737N 05825E, +,IR,BBL,Babolsar,Babolsar,,---4----,AI,0001,,3642N 05239E, +,IR,BSR,Bandar Shahid Rajaee,Bandar Shahid Rajaee,,1-------,RQ,0401,,2706N 05604E, +,IR,BXR,Bam,Bam,,---4----,AI,0001,,2906N 05821E, +,IR,CKT,Sarakhs,Sarakhs,,---4----,AI,0001,,3632N 06109E, +,IR,ESF,Esfahan,Esfahan,,--3-----,RQ,9501,,3240N 05140E, +,IR,GHA,Ghazvin (Qazwin),Ghazvin (Qazwin),,0-------,RQ,9601,,3536N 04702E, +,IR,GSM,Gheshm,Gheshm,,---4----,AI,0001,,2650N 05600E, +,IR,HDM,Hamadan,Hamadan,,---4----,AI,0001,,3448N 04831E, +,IR,HOR,Hormuz,Hormuz,,0-------,RQ,9506,,2704N 05628E, +,IR,IAQ,Bahregan,Bahregan,,---4----,AI,0001,,2950N 05016E, +,IR,IFN,Isfahan,Isfahan,,12-4----,AI,9601,,3240N 05140E, +,IR,IMH,Imam Hasan,Imam Hasan,,1-------,RQ,9506,,3422N 04544E, +,IR,JAK,Jask,Jask,,0-------,RQ,9506,,2539N 05746E, +,IR,KAS,Kashan,Kashan,,1-------,QQ,8103,,3359N 05127E, +,IR,KER,Kerman,Kerman,,---4----,AI,9601,,3018N 05704E, +,IR,KHA,Khaneh,Khaneh,,---4----,AI,0001,,3241N 05249E, +,IR,KHD,Khorramabad,Khorramabad,,---4----,AI,0001,,3329N 04821E, +,IR,KHK,Khark Island,Khark Island,,1--4----,AI,9601,,2914N 05019E, +,IR,KHO,Khorramshahr,Khorramshahr,,1-------,QQ,8103,,3026N 04811E, +,IR,KHS,Khosravi,Khosravi,,----5---,AI,9805,,3424N 04528E, +,IR,KNR,Kangan,Kangan,,---4----,AI,0001,,2750N 05204E, +,IR,LRR,Lar,Lar,,---4----,AI,0001,,2740N 05419E, +,IR,LVP,Lavan,Lavan,,1--4----,AI,9601,,2649N 05316E, +,IR,MHD,Mashad,Mashad,,---4----,AI,9601,,3618N 05936E, +,IR,NSH,Now Shahr,Now Shahr,,1-------,RQ,9506,,3805N 04825E, +,IR,OSM,Mosul,Mosul,,0-------,RQ,9012,,3622N 04307E, +,IR,QSH,Qeshm island,Qeshm island,,--3-----,RQ,9705,,2646N 05551E, +,IR,QSM,Qeshm,Qeshm,,--3-----,RL,9805,,2657N 05616E, +,IR,RAS,Rasht,Rasht,,---4----,AI,0001,,3717N 04935E, +,IR,RJN,Rafsanjan,Rafsanjan,,---4----,AI,0001,,3024N 05560E, +,IR,RZR,Ramsar,Ramsar,,---4----,AI,0001,,3655N 05039E, +,IR,SAN,Sahlan,Sahlan,,--3-----,RQ,0006,,3810N 04608E, +,IR,SDG,Sanandaj,Sanandaj,,---4----,AI,0001,,3519N 04660E, +,IR,SIX,Sari,Sari,,1-------,QQ,8103,,3634N 05304E, +,IR,SRJ,Sirjan,Sirjan,,--3-----,RQ,9705,SYJ,2927N 05540E, +,IR,SRY,Sary,Sary,,---4----,AI,0001,,3729N 04511E, +,IR,SXI,Sirri Island,Sirri Island,,1--4----,AI,9601,,2555N 05431E, +,IR,SYZ,Shiraz,Shiraz,,1--4----,AI,9601,,2936N 05232E, +,IR,TAJ,Tajabad,Tajabad,,----5---,AI,9805,,3555N 04711E, +,IR,TBZ,Tabriz,Tabriz,,1--4----,AI,9601,,3804N 04618E, +,IR,TCX,Tabas,Tabas,,---4----,AI,0001,,3336N 05655E, +,IR,WPS,Persepolis,Persepolis,,---4----,AI,0001,,2956N 05253E, +,IR,XBJ,Birjand,Birjand,,---4----,AI,0001,,3252N 05913E, +,IR,ZAH,Zahedan,Zahedan,,---4----,AI,9601,,2930N 06051E, +,IR,ZBR,Chah Bahar,Chah Bahar,,1--4----,AI,0212,,2518N 06036E, +,IS,AEY,Akureyri Apt,Akureyri Apt,,---4----,AC,9601,,6540N 01804W, +,IS,AKR,Akranes,Akranes,,1-------,AC,9601,,6419N 02205W, +,IS,AKU,Akureyri,Akureyri,,1-------,AC,9601,,6541N 01807W, +,IS,BGJ,Borgarfj�rdur eystri,Borgarfjordur eystri,,1-------,AC,9703,,6532N 01349W, +,IS,BIU,Bildudalur Apt,Bildudalur Apt,,---4----,AI,9601,,6538N 02333W, +,IS,BLO,Blonduos,Blonduos,,1--4----,AC,9601,,6540N 02017W, +,IS,BOI,Bordeyri,Bordeyri,,1-------,AC,9601,,6512N 02106W, +,IS,BOR,Borgarnes,Borgarnes,,1-------,AC,9601,,6432N 02155W, +,IS,BRE,Breiddalsvik,Breiddalsvik,,1-------,AC,9601,BXV,6448N 01400W, +,IS,DPV,Djupavik,Djupavik,,1-------,AC,9601,,6557N 02133W, +,IS,DRA,Drangsnes,Drangsnes,,1-------,AC,9601,,6541N 02127W, +,IS,EGS,Egilsstadir,Egilsstadir,,---4----,AC,9601,,6516N 01424W, +,IS,FAG,Fagurholsmyri,Fagurholsmyri,,---4----,AC,9601,,6353N 01639W, +,IS,FAS,Faskrudsfj�rdur,Faskrudsfjordur,,1--4----,AC,9601,,6456N 01401W, +,IS,FLA,Flateyri,Flateyri,,1-------,AC,9601,FLI,6603N 02331W, +,IS,GJR,Gjogur,Gjogur,,---4----,AC,9601,,6559N 02121W, +,IS,GRD,Gardur,Gardur,,1-------,AI,0201,,6404N 02239W, +,IS,GRF,Grundarfj�rdur,Grundarfjordur,,1-------,AC,9601,GUU,6456N 02316W, +,IS,GRT,Grundartangi,Grundartangi,,1-------,AC,9601,,6422N 02147W, +,IS,GRY,Grimsey,Grimsey,,---4----,AC,9601,,6633N 01800W, +,IS,GUF,Gufunes/Reykjavik,Gufunes/Reykjavik,,1-------,AC,9601,,6409N 02149W, +,IS,HAF,Hafnarfj�rdur,Hafnarfjordur,,1-------,AC,9601,,6404N 02157W, +,IS,HJA,Hjalteyri,Hjalteyri,,1-------,AC,9601,,6551N 01812W, +,IS,HRI,Hrisey,Hrisey,,1-------,AC,9601,,6600N 01823W, +,IS,HUS,Husavik - h�fn,Husavik - hofn,,1-------,AC,9601,HZK,6603N 01720W, +,IS,HVM,Hvammstangi,Hvammstangi,,1-------,AC,9601,,6524N 02057W, +,IS,ISA,Isafj�rdur - h�fn,Isafjordur - hofn,,1-------,AC,9601,IFJ,6604N 02309W, +,IS,KJF,Skerjafj�rdur,Skerjafjordur,,1-------,AC,9601,,6408N 02157W, +,IS,KOP,Kopasker - h�fn,Kopasker - hofn,,1-------,AC,9601,OPA,6618N 01627W, +,IS,MJO,Mjofj�rdur,Mjofjordur,,1-------,AC,9601,,6512N 01348W, +,IS,MVA,Myvatn,Myvatn,,---4----,AC,9601,,6536N 01659W, +,IS,NES,Neskaupstadur,Neskaupstadur,,1-------,AC,9601,,6509N 01341W, +,IS,NJA,Njardvik,Njardvik,,1-------,AC,9601,,6358N 02233W, +,IS,NOU,Nordurfj�rdur,Nordurfjordur,,1-------,AC,9601,NOR,6603N 02133W, +,IS,OLF,Olafsfj�rdur,Olafsfjordur,,1-------,AC,9601,OFJ,6604N 01839W, +,IS,PAT,Patreksfj�rdur - h�fn,Patreksfjordur - hofn,,1-------,AC,9601,PFJ,6536N 02360W, +,IS,RFJ,Reydarfj�rdur,Reydarfjordur,,1-------,AC,9601,,6502N 01413W, +,IS,SAN,Sandgerdi,Sandgerdi,,1-------,AC,9601,,6402N 02242W, +,IS,SAU,Saudarkrokur - h�fn,Saudarkrokur - hofn,,1-------,AC,9601,SAK,6545N 01938W, +,IS,SEL,Selfoss,Selfoss,,--3-----,AC,9601,,6356N 02100W, +,IS,SEY,Seydisfj�rdur,Seydisfjordur,,1-------,AC,9601,SEJ,6516N 01400W, +,IS,SFS,Selfoss - Apt,Selfoss - Apt,,---4----,AC,9601,,6356N 02102W, +,IS,SIG,Siglufj�rdur - h�fn,Siglufjordur - hofn,,1-------,AC,9601,SIJ,6609N 01854W, +,IS,STR,Straumsvik,Straumsvik,,1-------,AC,9601,,6403N 02202W, +,IS,STY,Stykkisholmur - h�fn,Stykkisholmur - hofn,,1-------,AC,9601,SYK,6505N 02244W, +,IS,SUD,Sudureyri/Sugandafjord,Sudureyri/Sugandafjord,,1-------,AC,9601,SUY,6608N 02332W, +,IS,SUV,Sudavik,Sudavik,,1-------,AC,9601,,6602N 02259W, +,IS,SVA,Svalbardseyri,Svalbardseyri,,1-------,AC,9601,,6545N 01805W, +,IS,TAL,Talknafj�rdur/Sveinseyri,Talknafjordur/Sveinseyri,,1-------,AC,9601,TLK,6538N 02349W, +,IS,TEY,Thingeyri,Thingeyri,,1--4----,AC,9601,,6553N 02330W, +,IS,THH,Thorlakshofn,Thorlakshofn,,1-------,AC,9601,,6351N 02123W, +,IS,THO,Thorshofn,Thorshofn,,1--4----,AC,9601,,6612N 01520W, +,IS,VES,Vestmannaeyjar - h�fn,Vestmannaeyjar - hofn,,1-------,AC,9601,VEY,6323N 02021W, +,IT,AAC,Cardano al Campo,Cardano al Campo,VA,--3-----,RQ,0901,,4539N 00846E, +,IT,AAG,Casagiove,Casagiove,CE,--3-----,RQ,0901,,4104N 01418E, +,IT,ABN,Albino,Albino,BG,-23-----,RL,1801,,4546N 00948E, +,IT,ACA,Acate,Acate,RG,--3-----,RL,1801,,3702N 01430E, +,IT,ACR,Acireale,Acireale,,--3-----,RQ,9501,,3737N 01510E, +,IT,ADN,Aldino,Aldino,BZ,--3-----,RL,1801,,4622N 01121E, +,IT,ADR,Andria,Andria,BT,--3-----,RL,1801,,4114N 01618E, +,IT,AFR,Afragola,Afragola,NA,--3-----,RL,1801,,4056N 01419E, +,IT,AIA,Airasca,Airasca,,--3-----,RL,0001,,4455N 00729E, +,IT,AKA,Arluno,Arluno,,--3-----,RL,9805,,4530N 00856E, +,IT,AKD,Arzergrande,Arzergrande,PD,--3-----,RL,1801,,4516N 01203E, +,IT,ALA,Ala,Ala,TN,-23-----,RL,1801,,4545N 01100E, +,IT,ALB,Albizzate,Albizzate,VA,--3-----,RL,1801,,4543N 00848E, +,IT,ALC,Alcamo,Alcamo,TP,--3-----,RL,1801,,3759N 01258E, +,IT,ALI,Alicudi,Alicudi,,1-------,AI,9601,,3833N 01421E, +,IT,ALL,Albenga,Albenga,SV,---4----,AI,1801,,4403N 00813E, +,IT,ALT,Altare,Altare,SV,--3-----,RL,1801,,4420N 00820E, +,IT,AMB,Ambivere,Ambivere,BG,--3-----,RQ,0901,,4543N 00933E, +,IT,AMD,San Martino di Trecate,San Martino di Trecate,NO,-----6--,RQ,0901,,4527N 00847E, +,IT,ANA,Anagni,Anagni,FR,--3-----,RL,1801,,4145N 01309E, +,IT,ANO,Aliano,Aliano,MT,--3-----,RL,1801,,4019N 01614E, +,IT,APZ,Ampezzo,Ampezzo,UD,--3-----,RL,1801,,4625N 01247E, +,IT,ARE,Arezzo,Arezzo,AR,--3-----,RL,1801,,4328N 01153E, +,IT,ARI,Arzignano,Arzignano,VI,--3-----,RL,1801,,4531N 01120E, +,IT,ARO,Adro,Adro,BS,--3-----,RL,1801,,4537N 00958E, +,IT,ARS,Arsiero,Arsiero,VI,--3-----,RL,1801,,4548N 01121E, +,IT,ARZ,Arzano,Arzano,NA,--3-----,RL,1801,,4055N 01416E, +,IT,ASA,Albano Sant Alessandro,Albano Sant Alessandro,BG,--3-----,RL,1801,,4541N 00946E, +,IT,ASL,Asola,Asola,MN,--3-----,RL,1801,,4513N 01025E, +,IT,ASM,Albisola Marina,Albisola Marina,SV,--3-----,RL,1801,,4420N 00830E, +,IT,ASO,Asolo,Asolo,TV,--3-----,RL,1801,,4548N 01155E, +,IT,ASP,Ascoli Piceno,Ascoli Piceno,,--3-----,RQ,9501,QNO,4251N 01335E, +,IT,ASS,Assago,Assago,,0-------,RQ,9307,,4524N 00908E, +,IT,ATM,Altamura,Altamura,,--3-----,RQ,9705,,4050N 01633E, +,IT,AVA,Albavilla,Albavilla,CO,--3-----,RL,1801,,4548N 00911E, +,IT,AVI,Aviano,Aviano,PN,--3-----,RL,1801,,4604N 01235E, +,IT,AVN,Avenza,Avenza,,--3-----,RQ,9705,,4403N 01004E, +,IT,AVR,Arcevia,Arcevia,AN,--3-----,RL,1801,,4330N 01256E, +,IT,AVZ,Avezzano,Avezzano,AQ,--3-----,RL,1801,AVB,4202N 01326E, +,IT,BAA,Bagnaria Arsa,Bagnaria Arsa,UD,--3-----,RL,1801,,4553N 01317E, +,IT,BAC,Baraccola,Baraccola,,--3-----,RQ,0201,,4334N 01331E, +,IT,BAG,Bagno-Rubiera,Bagno-Rubiera,,--3-----,RL,0001,,4439N 01045E, +,IT,BAO,Basiano,Basiano,,--3-----,RL,0001,,4534N 00928E, +,IT,BBB,Bibbiena,Bibbiena,AR,--3-----,RL,1801,,4342N 01149E, +,IT,BCI,Bacoli,Bacoli,NA,--3-----,RL,1801,,4048N 01405E, +,IT,BCN,Basilicagoiano,Basilicagoiano,PR,--3-----,RQ,1101,,4442N 01024E, +,IT,BDA,Buttigliera d'Asti,Buttigliera d'Asti,AT,--3-----,RL,1801,,4501N 00757E, +,IT,BDF,Bianconese di Fontevivo,Bianconese di Fontevivo,,--3-----,RQ,9705,,4451N 01013E, +,IT,BDG,Bassano del Grappa,Bassano del Grappa,VI,--3-----,RL,1801,,4546N 01144E, +,IT,BED,Bedizzole(Brescia),Bedizzole(Brescia),BS,--3-----,RL,1801,,4531N 01025E, +,IT,BEL,Bellano,Bellano,LC,--3-----,RL,1801,,4603N 00918E, +,IT,BGE,Barge,Barge,CN,--3-----,RL,1801,,4444N 00719E, +,IT,BGG,Baggiovara,Baggiovara,,--3-----,RQ,9705,,4439N 01055E, +,IT,BGM,Borgosesia,Borgosesia,VC,--3-----,RL,1801,,4543N 00817E, +,IT,BGN,Brugnera,Brugnera,PN,--3-----,RL,1801,,4554N 01232E, +,IT,BGP,Bagnolo in Piano,Bagnolo in Piano,RE,--3-----,RQ,1801,,4446N 01040E, +,IT,BGR,Bolgare,Bolgare,BG,--3-----,RL,1801,,4538N 00949E, +,IT,BGT,Borgo Ticino,Borgo Ticino,NO,--3-----,RL,1801,,4541N 00836E, +,IT,BGZ,Breganze,Breganze,VI,--3-----,RL,1801,,4542N 01134E, +,IT,BHI,Bolgheri,Bolgheri,,-23-----,RL,9805,,4314N 01037E, +,IT,BIB,Bibbiano,Bibbiano,RE,--3-----,RQ,0901,,4440N 01028E, +,IT,BIE,Biella,Biella,BI,--3-----,RL,1801,,4534N 00803E, +,IT,BIO,Binasco,Binasco,,--3-----,RQ,9806,,4520N 00906E, +,IT,BIR,Bairo,Bairo,,--3-----,RL,0307,,4523N 00745E, +,IT,BLI,Bardolino,Bardolino,VR,--3-----,RL,1801,,4533N 01043E, +,IT,BLL,Bellusco,Bellusco,,--3-----,RQ,9705,QBV,4537N 00925E, +,IT,BLX,Belluno,Belluno,BL,---4----,AI,1801,,4608N 01213E, +,IT,BLZ,Bolzaneto,Bolzaneto,,--3-----,RQ,9705,,4428N 00854E, +,IT,BMO,Bovisio Masciago,Bovisio Masciago,MB,--3-----,RL,1801,,4537N 00909E, +,IT,BMR,Borgomanero,Borgomanero,NO,--3-----,RL,1801,,4542N 00828E, +,IT,BMZ,Borgo a Mozzano,Borgo a Mozzano,LU,--3-----,RL,1801,,4359N 01033E, +,IT,BND,Bando,Bando,,--3-----,RQ,9705,,4553N 01255E, +,IT,BNO,Bregnano,Bregnano,CO,--3-----,RL,1801,,4542N 00904E, +,IT,BNS,Bagnasco,Bagnasco,CN,--3-----,RL,1801,,4418N 00803E, +,IT,BOI,Budoia,Budoia,PN,--3-----,RQ,0901,,4603N 01232E, +,IT,BOL,Bolognetta,Bolognetta,,--3-----,RQ,9501,,3758N 01327E, +,IT,BOM,Bomporto,Bomporto,MO,--3-----,RL,1801,,4444N 01102E, +,IT,BON,Bondeno,Bondeno,,--3-----,RQ,9501,,4453N 01125E, +,IT,BOO,Borgolavezzaro,Borgolavezzaro,NO,--3-----,RL,1801,,4519N 00842E, +,IT,BOR,Borgo Di Trevi,Borgo Di Trevi,,0-------,RQ,9307,,4252N 01244E, +,IT,BPG,Borgo Panigale,Borgo Panigale,,-2------,RQ,9705,,4431N 01117E, +,IT,BRA,Bra,Bra,CN,-23-----,RL,1801,,4442N 00751E, +,IT,BRC,Brescia,Brescia,BS,--3-----,RL,1801,,4532N 01013E, +,IT,BRE,Brescello,Brescello,,--3-----,RQ,9501,QBS,4454N 01031E, +,IT,BRF,Barrafranca,Barrafranca,EN,--3-----,RL,1801,,3722N 01412E, +,IT,BRG,Briga Novarese,Briga Novarese,NO,--3-----,RL,1801,,4544N 00827E, +,IT,BSD,Borgo San Dalmazzo,Borgo San Dalmazzo,CN,--3-----,RL,1801,,4420N 00729E, +,IT,BSG,Brisighella,Brisighella,RA,--3-----,RL,1801,,4413N 01146E, +,IT,BSL,Borgo San Lorenzo,Borgo San Lorenzo,,--3-----,RQ,9705,,4357N 01123E, +,IT,BSN,Busana,Busana,RE,--3-----,RL,1801,,4422N 01019E, +,IT,BSO,Bresso,Bresso,,--3-----,RL,0001,,4532N 00911E, +,IT,BTO,Bitonto,Bitonto,,-23-----,RQ,9806,,4107N 01641E, +,IT,BTT,Buttrio,Buttrio,UD,--3-----,RL,1801,,4601N 01320E, +,IT,BUA,Busto Arsizio,Busto Arsizio,VA,-23-----,RL,2007,,4537N 00851E, +,IT,BUC,Buccinasco,Buccinasco,,0-------,RQ,9307,,4525N 00906E, +,IT,BUG,Busto Garolfo,Busto Garolfo,,0-------,RQ,9307,,4533N 00853E, +,IT,BUN,Bruino,Bruino,,--3-----,RQ,9705,,4501N 00728E, +,IT,BUS,Bussero,Bussero,,--3-----,RQ,9705,,4532N 00922E, +,IT,BVA,Badia Calavena,Badia Calavena,VR,--3-----,RL,1801,,4534N 01109E, +,IT,BVI,Brivio,Brivio,LC,-23-----,RL,1801,,4545N 00927E, +,IT,BVL,Bovolone,Bovolone,VR,-23-----,RL,1801,,4515N 01107E, +,IT,BVN,Baveno,Baveno,VB,-23-----,RL,1801,,4555N 00830E, +,IT,BVS,Boves,Boves,CN,--3-----,RL,1801,,4420N 00733E, +,IT,BVT,Borgonovo Val Tidone,Borgonovo Val Tidone,PC,--3-----,RL,1801,,4501N 00927E, +,IT,BWA,Busca,Busca,CN,--3-----,RL,1801,,4431N 00728E, +,IT,BZD,Bruzolo di Susa,Bruzolo di Susa,,--3-----,RQ,9705,,4509N 00712E, +,IT,BZO,Bolzano,Bolzano,BZ,--34----,AI,1801,,4630N 01121E, +,IT,CAB,Cabiate,Cabiate,CO,--3-----,RL,1801,,4540N 00910E, +,IT,CAC,Carcare,Carcare,SV,--3-----,RL,1801,,4421N 00817E, +,IT,CAE,Canegrate,Canegrate,,--3-----,RL,0001,,4534N 00856E, +,IT,CAF,Casalfiumanese,Casalfiumanese,,--3-----,RL,0006,,4418N 01137E, +,IT,CAI,Caivano,Caivano,,--3-----,RQ,9501,,4057N 01419E, +,IT,CAL,Calenzano,Calenzano,,--3-----,RQ,9008,QCL,4352N 01110E, +,IT,CAM,Cambiago,Cambiago,,0-------,RQ,9307,,4534N 00926E, +,IT,CAN,Canelli,Canelli,,--3-----,RQ,9501,,4443N 00817E, +,IT,CAO,Camerano,Camerano,AN,--3-----,RL,1501,,4332N 01333E, +,IT,CAP,Campodarsego,Campodarsego,,--3-----,RL,0001,,4530N 01154E, +,IT,CAV,Cavallirio,Cavallirio,NO,--3-----,RL,1801,,4540N 00824E, +,IT,CBG,Cisano Bergamasco,Cisano Bergamasco,,--3-----,RL,0001,,4545N 00928E, +,IT,CBL,Castel Bolognese,Castel Bolognese,,--3-----,RL,0001,,4419N 01148E, +,IT,CBO,Castel Boglione,Castel Boglione,AT,--3-----,RL,1801,,4443N 00823E, +,IT,CBT,Caresanablot,Caresanablot,,--3-----,RL,0307,,4521N 00823E, +,IT,CBX,Carobbio degli Angeli,Carobbio degli Angeli,,--3-----,RL,9805,,4540N 00950E, +,IT,CBZ,Campi Bisenzio,Campi Bisenzio,,-2------,RQ,9705,,4349N 01108E, +,IT,CCA,Civita Castellana,Civita Castellana,,--3-----,RQ,9501,,4218N 01225E, +,IT,CCC,Cecchina,Cecchina,,0-------,RQ,9307,,4142N 01239E, +,IT,CCH,Collecchio,Collecchio,,--3-----,RQ,9705,,4445N 01013E, +,IT,CCN,Cascina,Cascina,,-23-----,RQ,9705,,4341N 01033E, +,IT,CDE,Castione Andevenno,Castione Andevenno,,--3-----,RQ,0101,,4610N 00948E, +,IT,CDF,Cortina d'Ampezzo,Cortina d'Ampezzo,,---4----,AI,0001,,4632N 01208E, +,IT,CDG,Chiusa D Ginestreto,Chiusa D Ginestreto,,0-------,RQ,9307,,4352N 01249E, +,IT,CDI,Calderari,Calderari,,--3-----,RQ,9705,,3734N 01422E, +,IT,CDO,Ca' Degli Oppi,Ca' Degli Oppi,,--3-----,RL,0001,,4518N 01108E, +,IT,CDP,Cecchini di Pasiano,Cecchini di Pasiano,,--3-----,RQ,9705,,4552N 01237E, +,IT,CDS,Calendasco,Calendasco,,--3-----,RQ,0101,,4505N 00936E, +,IT,CEA,Cerignola,Cerignola,,--3-----,RQ,9501,,4116N 01554E, +,IT,CEB,Cesana Brianza,Cesana Brianza,,--3-----,RQ,0201,,4549N 00918E, +,IT,CED,Castelnuovo del Garda,Castelnuovo del Garda,,--3-----,RQ,9705,,4526N 01046E, +,IT,CEE,Cermenate,Cermenate,CO,--3-----,RL,1801,,4542N 00905E, +,IT,CEG,Castegnato,Castegnato,,--3-----,RL,0001,,4534N 01007E, +,IT,CEM,Cesano Maderno,Cesano Maderno,,--3-----,RL,0001,,4538N 00909E, +,IT,CEN,Cesara Novara,Cesara Novara,VB,--3-----,RL,1801,,4550N 00822E, +,IT,CEO,Castello,Castello,,--3-----,RQ,9705,,4457N 00915E, +,IT,CER,Ceranesi,Ceranesi,GE,--3-----,RL,1801,,4431N 00853E, +,IT,CET,Certaldo,Certaldo,,--3-----,RL,0001,,4333N 01102E, +,IT,CEU,Cairate,Cairate,,--3-----,RL,9805,,4541N 00852E, +,IT,CEZ,Cesena,Cesena,,-23-----,RQ,9806,,4408N 01215E, +,IT,CFD,Castelfidardo,Castelfidardo,,--3-----,RQ,9705,,4328N 01333E, +,IT,CFE,Castelfranco Emilia,Castelfranco Emilia,,--3-----,RQ,9705,,4436N 01103E, +,IT,CFO,Colleferro,Colleferro,,--3-----,RL,9901,,4144N 01300E, +,IT,CGI,Casnigo,Casnigo,,--3-----,RL,0001,,4549N 00952E, +,IT,CGL,Castiglione,Castiglione,,-23-----,RQ,9705,,4234N 01313E, +,IT,CGM,Crugola di Mornago,Crugola di Mornago,,-23-----,RL,9805,CUF,4544N 00845E, +,IT,CGO,Cogollo del Cengio,Cogollo del Cengio,,--3-----,RQ,9501,,4547N 01126E, +,IT,CGV,Cologna Veneta,Cologna Veneta,,--3-----,RQ,9705,,4519N 01123E, +,IT,CHA,Chiavazza,Chiavazza,,0-------,RQ,9307,,4534N 00804E, +,IT,CHE,Cherasco,Cherasco,,--3-----,RL,0001,,4439N 00751E, +,IT,CHO,Chiampo,Chiampo,,--3-----,RQ,9501,,4533N 01117E, +,IT,CHR,Chiara,Chiara,,--3-----,RQ,9705,,4531N 00743E, +,IT,CHV,Chiavenna,Chiavenna,,--3-----,RQ,9705,,4619N 00924E, +,IT,CIA,Ciampino Apt/Roma,Ciampino Apt/Roma,,---4----,AI,,,4148N 01235E, +,IT,CIF,Cividale del Friuli,Cividale del Friuli,,-23-----,RQ,9705,,4606N 01326E, +,IT,CII,Chieti,Chieti,CH,--3-----,RL,1801,,4221N 01410E, +,IT,CIM,Cimadolmo,Cimadolmo,TV,--3-----,RL,1801,,4547N 01222E, +,IT,CIN,Cambiano,Cambiano,,-23-----,RQ,9705,,4458N 00747E, +,IT,CIS,Cisterna di Latina,Cisterna di Latina,,--3-----,RQ,9705,,4135N 01250E, +,IT,CIY,Comiso,Comiso,,---4----,AI,0001,,3657N 01436E, +,IT,CIZ,Cizzolo,Cizzolo,,--3-----,RL,0001,,4501N 01040E, +,IT,CLG,Casalgrande,Casalgrande,,--3-----,RQ,9501,,4435N 01044E, +,IT,CLL,Collebeato,Collebeato,,--3-----,RL,0001,,4535N 01013E, +,IT,CLO,Ceriano Laghetto,Ceriano Laghetto,,--3-----,RL,0001,,4538N 00905E, +,IT,CLT,Collalto,Collalto,,--3-----,RQ,9705,,4552N 01212E, +,IT,CMA,Castel Madama,Castel Madama,,--3-----,RQ,9501,,4159N 01252E, +,IT,CMG,Castel Maggiore,Castel Maggiore,,--3-----,RQ,9705,,4435N 01122E, +,IT,CMI,Carmignano di Brenta,Carmignano di Brenta,,--3-----,RL,9805,,4538N 01142E, +,IT,CMN,Cormano,Cormano,MI,--3-----,RL,1601,,4533N 00910E, +,IT,CMR,Crema,Crema,CR,--3-----,RL,1801,,4522N 00941E, +,IT,CMS,Cormons,Cormons,,--3-----,RL,0001,,4557N 01328E, +,IT,CMZ,Costa di Mezzate,Costa di Mezzate,,--3-----,RL,9805,,4540N 00948E, +,IT,CNA,Corana,Corana,,--3-----,RQ,9705,,4504N 00858E, +,IT,CND,Candiana,Candiana,,--3-----,RL,0001,,4513N 01159E, +,IT,CNG,Castel San Giovanni,Castel San Giovanni,,--3-----,RQ,0101,,4504N 00926E, +,IT,CNL,Colognola ai Colli,Colognola ai Colli,,--3-----,RQ,9705,,4526N 01111E, +,IT,CNN,Castronno,Castronno,,-23-----,RQ,9705,,4545N 00849E, +,IT,CNO,Cernusco,Cernusco,,0-------,RQ,9307,,4531N 00920E, +,IT,COB,Campobasso,Campobasso,CB,--3-----,RL,1801,,4134N 01440E, +,IT,COG,Conegliano,Conegliano,,--3-----,RQ,9501,,4553N 01218E, +,IT,COI,Collesalvetti,Collesalvetti,,--3-----,RL,0001,,4335N 01029E, +,IT,COL,Colico,Colico,,--3-----,RQ,9501,,4608N 00922E, +,IT,CON,Condove,Condove,,--3-----,RQ,9501,,4507N 00719E, +,IT,COO,Coriano,Coriano,,--3-----,RQ,9501,,4358N 01236E, +,IT,COR,Corcagnano,Corcagnano,,0-------,RQ,9307,,4443N 01018E, +,IT,COS,Cossato,Cossato,,--3-----,RQ,9501,,4534N 00811E, +,IT,CPF,Capodarco di Fermo,Capodarco di Fermo,,--3-----,RQ,0104,,4311N 01346E, +,IT,CPI,Capriate San Gervasio,Capriate San Gervasio,,--3-----,RL,0001,,4537N 00932E, +,IT,CPO,Crespellano,Crespellano,,--3-----,RL,0001,,4431N 01108E, +,IT,CPR,Castano Primo,Castano Primo,,--3-----,RQ,9705,,4533N 00847E, +,IT,CPS,Camposampiero,Camposampiero,,--3-----,RQ,9705,,4534N 01156E, +,IT,CPU,Capua,Capua,,-23-----,RQ,9705,,4106N 01413E, +,IT,CQQ,Ciserano,Ciserano,,--3-----,RL,9805,,4535N 00936E, +,IT,CRA,Carrara,Carrara,MS,--3-----,RL,1801,,4405N 01006E, +,IT,CRB,Carbonera,Carbonera,,--3-----,RQ,9705,,4541N 01217E, +,IT,CRE,Cremona,Cremona,CR,--3-----,RL,1801,,4508N 01001E, +,IT,CRI,Cosseria,Cosseria,SV,--3-----,RL,1801,,4422N 00814E, +,IT,CRL,Capriano del Colle,Capriano del Colle,,--3-----,RL,9805,,4527N 01008E, +,IT,CRM,Carmagnola,Carmagnola,,--3-----,RQ,9501,,4451N 00743E, +,IT,CRN,Corniglio,Corniglio,,--3-----,RQ,9501,,4429N 01005E, +,IT,CRP,Carpenedolo,Carpenedolo,BS,--3-----,RL,1801,,4522N 01026E, +,IT,CRU,Carugate,Carugate,,--3-----,RL,0001,,4533N 00921E, +,IT,CRX,Cerea,Cerea,,--3-----,RL,0004,,4512N 01113E, +,IT,CSC,Castellina in Chianti,Castellina in Chianti,,--3-----,RQ,9705,,4328N 01117E, +,IT,CSE,Casarile,Casarile,,0-------,RQ,9307,,4519N 00906E, +,IT,CSI,Casinalbo,Casinalbo,,0-------,RQ,9307,,4436N 01051E, +,IT,CSM,Casalmaggiore,Casalmaggiore,,--3-----,RL,0002,,4459N 01025E, +,IT,CSN,Casandrino,Casandrino,NA,--3-----,RL,1801,,4056N 01415E, +,IT,CSO,Cassino,Cassino,,--3-----,RQ,9501,,4130N 01350E, +,IT,CSP,Cassano Spinola,Cassano Spinola,,--3-----,RQ,9501,,4446N 00852E, +,IT,CST,Caserta,Caserta,,--3-----,RQ,9501,,4105N 01420E, +,IT,CSZ,Castellanza,Castellanza,,--3-----,RQ,9501,,4537N 00854E, +,IT,CTD,Castenedolo,Castenedolo,,--3-----,RQ,9501,,4528N 01018E, +,IT,CTG,Casteggio,Casteggio,,--3-----,RQ,9501,,4501N 00907E, +,IT,CTN,Castagnaro,Castagnaro,,-23-----,RQ,9705,,4507N 01125E, +,IT,CTO,Castellarano,Castellarano,,--3-----,RQ,9501,,4431N 01044E, +,IT,CTS,Caltanissetta,Caltanissetta,CL,--3-----,RL,1801,,3729N 01404E, +,IT,CTT,Crocetta,Crocetta,,--3-----,RQ,9705,,4428N 01142E, +,IT,CUE,Clusone,Clusone,,-23-----,RL,9805,,4553N 00957E, +,IT,CUN,Cuneo,Cuneo,CN,--3-----,RL,1801,,4423N 00733E, +,IT,CUR,Curno,Curno,,--3-----,RQ,0101,,4541N 00937E, +,IT,CUS,Cusinati Di Rosa,Cusinati Di Rosa,,0-------,RQ,9307,,4542N 01147E, +,IT,CVA,Castellana,Castellana,,--3-----,RQ,9705,,4449N 00944E, +,IT,CVG,Caravaggio,Caravaggio,,--3-----,RQ,9705,,4530N 00939E, +,IT,CVP,Castelvetro Piacentino,Castelvetro Piacentino,,--3-----,RQ,9705,,4506N 00959E, +,IT,CVZ,Cavarzere,Cavarzere,,--3-----,RQ,9705,,4508N 01205E, +,IT,CXM,Carmignano,Carmignano,,--3-----,RL,9805,,4349N 01101E, +,IT,CXN,Cotignola,Cotignola,,--3-----,RL,9811,,4423N 01156E, +,IT,CXV,Casale,Casale,,--3-----,RL,9805,,4258N 01248E,cf IT CSS +,IT,CYX,Castelvetrano,Castelvetrano,TP,--3-----,RQ,1101,,3741N 01248E, +,IT,CZX,Cannizzaro,Cannizzaro,,--3-----,RQ,1101,,3733N 01508E, +,IT,DCI,Decimomannu,Decimomannu,,---4----,AI,0001,,3919N 00858E, +,IT,DDA,Atripalda,Atripalda,AV,--3-----,RQ,1101,,4055N 01450E, +,IT,DDO,Dogana do Ortonovo,Dogana do Ortonovo,,--3-----,RL,9805,,4404N 01002E, +,IT,DEV,Dervio,Dervio,,--3-----,RQ,9501,,4605N 00918E, +,IT,DGL,Domegliara,Domegliara,,--3-----,RQ,9705,,4531N 01049E, +,IT,DME,Dalmine,Dalmine,,-23-----,RQ,9705,,4539N 00936E, +,IT,DOG,Dogana,Dogana,,0-------,RQ,9307,,4258N 01119E, +,IT,DOL,Dolo,Dolo,,--3-----,RQ,9501,,4525N 01205E, +,IT,DOM,Domodossola,Domodossola,,--3-----,RQ,9501,,4607N 00817E, +,IT,DOS,Dosimo,Dosimo,,0-------,RQ,9307,,4511N 01005E, +,IT,DRI,Calderara di Reno,Calderara di Reno,,--3-----,RL,9805,,4434N 01116E, +,IT,DSF,Villa del Conte,Villa del Conte,,--3-----,RQ,1101,,4535N 01152E, +,IT,DUV,Dueville,Dueville,,--3-----,RQ,9705,,4538N 01133E, +,IT,DVO,Daverio,Daverio,,--3-----,RQ,9705,,4547N 00846E, +,IT,EBA,Elba,Elba,,---4----,AI,0001,,4247N 01020E, +,IT,EBB,Eboli,Eboli,,--3-----,RQ,9501,,4037N 01503E, +,IT,ENO,Enna,Enna,,--3-----,RQ,9501,,3734N 01417E, +,IT,ENT,Lentini,Lentini,,--3-----,RQ,9501,,3717N 01460E, +,IT,EPI,Empoli,Empoli,,--3-----,RL,0003,,4343N 01057E, +,IT,ERB,Erba,Erba,,--3-----,RQ,9501,,4549N 00913E, +,IT,ERC,Ercolano,Ercolano,,--3-----,RQ,9501,,4048N 01422E, +,IT,EST,Este,Este,,-23-----,RQ,9705,,4513N 01140E, +,IT,FAA,Fagagna,Fagagna,,--3-----,RL,9805,,4607N 01305E, +,IT,FAE,Faenza,Faenza,,--3-----,RQ,9501,,4417N 01153E, +,IT,FAL,Falconara,Falconara,,1-------,AI,9704,,4338N 01324E, +,IT,FBI,Fombio,Fombio,,--3-----,RL,0001,,4508N 00941E, +,IT,FBO,Firenzuola,Firenzuola,,--3-----,RL,9805,,4407N 01123E, +,IT,FBR,Fabriano,Fabriano,,--3-----,RQ,9705,,4320N 01254E, +,IT,FDR,Fabrica di Roma,Fabrica di Roma,,--3-----,RQ,9705,,4220N 01218E, +,IT,FDV,Fossalta di Piave,Fossalta di Piave,,--3-----,RL,9805,,4539N 01231E, +,IT,FDZ,Fidenza,Fidenza,PR,--3-----,RL,1801,,4452N 01004E, +,IT,FEG,Fegino,Fegino,,0-------,RQ,9307,,4426N 00853E, +,IT,FEO,Flero,Flero,,--3-----,RL,9811,,4529N 01011E, +,IT,FGA,Formigosa,Formigosa,,--3-----,RQ,0212,,4507N 01052E, +,IT,FGN,Figino,Figino,,--3-----,RQ,9705,,4232N 01308E, +,IT,FIE,Finale Emilia,Finale Emilia,,--3-----,RQ,9501,,4450N 01118E, +,IT,FIU,Fiume Veneto,Fiume Veneto,,--3-----,RL,9805,,4556N 01244E, +,IT,FLM,Flumeri,Flumeri,,--3-----,RQ,9705,,4105N 01509E, +,IT,FLO,Folignano,Folignano,,--3-----,RQ,9705,,4249N 01338E, +,IT,FLR,Firenze,Firenze,,---4----,QQ,8103,,4346N 01115E, +,IT,FMG,Formigine,Formigine,,-23-----,RQ,9705,,4435N 01051E, +,IT,FMN,Fermignano,Fermignano,,--3-----,RL,9805,,4341N 01239E, +,IT,FNO,Fanano,Fanano,,--3-----,RQ,9501,,4412N 01048E, +,IT,FOG,Foggia,Foggia,FG,--3-----,RL,1801,,4128N 01533E, +,IT,FON,Fornacette,Fornacette,,0-------,RQ,9307,,4340N 01035E, +,IT,FPO,Filicudi Porto,Filicudi Porto,,1-------,AI,9812,,3834N 01435E, +,IT,FPP,Forlimpopoli,Forlimpopoli,,--3-----,RQ,9705,,4411N 01208E, +,IT,FRA,Frascati,Frascati,,--3-----,RQ,9501,QFR,4148N 01241E, +,IT,FRL,Forli,Forli,,--34----,AI,9601,,4413N 01202E, +,IT,FRO,Frosinone,Frosinone,,--3-----,RQ,9501,,4139N 01321E, +,IT,FRR,Ferrara,Ferrara,FE,--3-----,RL,1801,,4450N 01137E, +,IT,FRZ,Ferrazza,Ferrazza,,--3-----,RL,9805,,4238N 01320E, +,IT,FSS,Fossano,Fossano,,-23-----,RQ,9705,,4433N 00744E, +,IT,FSZ,Figino Serenza,Figino Serenza,,--3-----,RQ,9705,,4543N 00908E, +,IT,FTE,Feltre,Feltre,,-23-----,RQ,9705,,4601N 01154E, +,IT,FTF,Fontanafredda,Fontanafredda,,--3-----,RL,9805,,4558N 01234E, +,IT,FTO,Felitto,Felitto,,--3-----,RQ,9705,,4022N 01515E, +,IT,FUC,Fucecchio,Fucecchio,,--3-----,RQ,9501,,4344N 01048E, +,IT,FUT,Fiesso Umbertiano,Fiesso Umbertiano,,--3-----,RQ,9705,,4458N 01136E, +,IT,FVR,Favara,Favara,,--3-----,RQ,9501,,3719N 01340E, +,IT,GAO,Gallico,Gallico,,--3-----,RQ,9501,,3810N 01539E, +,IT,GAV,Gavi,Gavi,AL,--3-----,RL,1801,,4441N 00849E, +,IT,GBA,Galbiate,Galbiate,,--3-----,RL,9805,,4549N 00923E, +,IT,GDF,Gemona del Friuli,Gemona del Friuli,,--3-----,RQ,9705,,4617N 01308E, +,IT,GFT,Ginestra,Ginestra,,--3-----,RL,9805,,4056N 01544E, +,IT,GGL,Graglia,Graglia,,--3-----,RL,9805,,4534N 00759E, +,IT,GGS,Villaggio Sereno,Villaggio Sereno,,--3-----,RL,0607,,4531N 01011E, +,IT,GIC,Greve in Chianti,Greve in Chianti,,--3-----,RQ,9705,,4335N 01119E, +,IT,GII,Giannutri,Giannutri,,1-------,AI,9812,,4215N 01106E, +,IT,GIP,San Giovanni in Persiceto,San Giovanni in Persiceto,,--3-----,RL,0004,,4438N 01111E, +,IT,GLL,Galliera,Galliera,,0-------,RQ,9307,,4445N 01126E, +,IT,GLS,Gallese,Gallese,,--3-----,RQ,1101,,4222N 01224E, +,IT,GMB,Gambara,Gambara,,--3-----,RQ,9705,,4515N 01018E, +,IT,GME,Gorla Minore,Gorla Minore,,--3-----,RQ,9806,,4539N 00854E, +,IT,GOR,Gorgona,Gorgona,,1-------,AI,9812,QGO,4326N 00954E, +,IT,GOS,Ginostra,Ginostra,,--3-----,RQ,9705,,3847N 01512E, +,IT,GRG,Grugliasco,Grugliasco,,0-------,RQ,9004,,4504N 00735E, +,IT,GRZ,Grezzana,Grezzana,,--3-----,RQ,9705,,4531N 01101E, +,IT,GTC,Gattatico,Gattatico,,--3-----,RL,9805,,4448N 01027E, +,IT,GUA,Guardamiglio,Guardamiglio,LO,--3-----,RL,1801,,4507N 00941E, +,IT,GUE,Guarene,Guarene,,--3-----,RQ,0201,,4444N 00802E, +,IT,GUS,Guastalla,Guastalla,,--3-----,RQ,9501,,4455N 01039E, +,IT,GVE,Galliera Veneta,Galliera Veneta,,--3-----,RL,0001,,4540N 01150E, +,IT,GVT,Gravellona Toce,Gravellona Toce,,--3-----,RQ,9705,,4556N 00826E, +,IT,GZA,Gorizia,Gorizia,,--3-----,RQ,9008,,4557N 01338E, +,IT,GZO,Gozzano,Gozzano,,--3-----,RQ,9501,,4545N 00826E, +,IT,IDQ,Bresseo di Teolo,Bresseo di Teolo,PD,--3-----,RL,0701,,4522N 01143E, +,IT,IML,Imola,Imola,,--3-----,RQ,9501,,4421N 01143E, +,IT,INV,Invorio,Invorio,,--3-----,RQ,9501,,4545N 00829E, +,IT,IOB,Baiso,Baiso,RE,--3-----,RL,1801,,4430N 01036E, +,IT,IOE,Issogne,Issogne,,--3-----,RQ,0101,,4539N 00741E, +,IT,ISP,Ispica,Ispica,,--3-----,RQ,9501,,3647N 01454E, +,IT,ISS,Isola Santo Stefano,Isola Santo Stefano,,1-------,AI,9812,,4047N 01327E, +,IT,IST,Istrana,Istrana,,-23-----,RQ,9705,,4541N 01206E, +,IT,JCO,Jerago con Orago,Jerago con Orago,,--3-----,RL,0001,,4542N 00848E, +,IT,LAM,La Morra,La Morra,CN,--3-----,RL,1801,,4438N 00756E, +,IT,LAR,Larderello,Larderello,,--3-----,RQ,9501,,4314N 01053E, +,IT,LBD,Lombardore,Lombardore,,--3-----,RQ,9705,,4514N 00744E, +,IT,LCC,Lecce,Lecce,,---4----,AI,0001,,4021N 01810E, +,IT,LCG,Lucignano,Lucignano,,--3-----,RQ,9705,,4316N 01145E, +,IT,LCO,Lecco,Lecco,,-23-----,RQ,9705,,4551N 00923E, +,IT,LCV,Lucca,Lucca,,--3-----,RQ,9501,,4351N 01030E, +,IT,LDI,Lodi,Lodi,,-23-----,RQ,9705,,4519N 00930E, +,IT,LDV,Lugo di Vicenza,Lugo di Vicenza,VI,--3-----,RQ,0212,,4545N 01131E, +,IT,LEE,Levate,Levate,,--3-----,RQ,0212,,4538N 00937E, +,IT,LEU,Leumann,Leumann,,--3-----,RQ,0101,,4504N 00734E, +,IT,LGN,Legnano,Legnano,,--3-----,RQ,9705,,4536N 00855E, +,IT,LGO,Lancenigo,Lancenigo,,--3-----,RQ,9705,,4543N 01216E, +,IT,LIA,Loiano,Loiano,,--3-----,RQ,9705,,4416N 01119E, +,IT,LIM,Limito,Limito,,0-------,RQ,9307,,4529N 00920E, +,IT,LIN,Linate Apt/Milano,Linate Apt/Milano,,---45---,AI,,,4528N 00917E, +,IT,LIU,Linosa,Linosa,,1--4----,AI,9601,,3552N 01252E, +,IT,LJB,Lastra a Signa,Lastra a Signa,,--3-----,RL,9805,,4346N 01106E,cf IT LTA +,IT,LKT,Lunata,Lunata,,--3-----,RL,9805,,4351N 01033E, +,IT,LMA,Limena,Limena,,--3-----,RQ,9705,,4528N 01151E, +,IT,LMB,Limbiate,Limbiate,MB,--3-----,RL,1801,,4536N 00907E, +,IT,LSA,Limite sull'Arno,Limite sull'Arno,,--3-----,RL,0001,,4345N 01059E, +,IT,LSN,Latisana,Latisana,,-23-----,RQ,9705,,4547N 01260E, +,IT,LSO,Lissone,Lissone,,-23-----,RL,9805,,4537N 00914E, +,IT,LTA,Lastra,Lastra,,--3-----,RQ,9705,,4405N 01127E, +,IT,LTN,Latina,Latina,,--3-----,RQ,9501,,4128N 01254E, +,IT,LUI,Luino,Luino,,--3-----,RQ,9501,,4560N 00844E, +,IT,LVR,Lovere,Lovere,,--3-----,RQ,9705,,4549N 01005E, +,IT,MAE,Maerne,Maerne,,0-------,RQ,9307,,4531N 01209E, +,IT,MAN,Mantova,Mantova,,--3-----,RQ,9501,,4509N 01048E, +,IT,MAS,Motta sant Anastasia,Motta sant Anastasia,,--3-----,RQ,0101,,3731N 01458E, +,IT,MBC,"Misterbianco, Catania","Misterbianco, Catania",,--3-----,RL,0201,,3731N 01500E, +,IT,MCE,Mariano Comense,Mariano Comense,,--3-----,RL,0001,,4542N 00911E, +,IT,MCI,Monleone di Cicagna,Monleone di Cicagna,,0-------,RQ,9307,,4424N 00915E, +,IT,MCR,Mezzocorona,Mezzocorona,,--3-----,RQ,9705,,4613N 01107E, +,IT,MCV,Molinetto-Ciliverghe,Molinetto-Ciliverghe,,--3-----,RL,0001,,4532N 01019E, +,IT,MDC,Marina di Carrara,Marina di Carrara,,1-------,AI,9704,,4402N 01003E, +,IT,MDD,Madonna dell'Olmo,Madonna dell'Olmo,,--3-----,RQ,0201,,4425N 00733E, +,IT,MDG,Modigliana,Modigliana,,--3-----,RQ,9501,,4410N 01148E, +,IT,MDM,Marina di Montemarciano,Marina di Montemarciano,,--3-----,RQ,0101,,4339N 01321E, +,IT,MDO,Meduno,Meduno,,-23-----,RQ,9705,,4613N 01247E, +,IT,MDR,Morciano di Romagna,Morciano di Romagna,RN,--3-----,RL,1801,,4355N 01239E, +,IT,MEL,Melilli,Melilli,,--3-----,AI,1101,,3711N 01508E, +,IT,MER,Merone,Merone,,--3-----,RQ,9705,,4547N 00915E, +,IT,MES,Mesagne,Mesagne,,--3-----,RQ,9501,QME,4034N 01749E, +,IT,MEZ,Mezzolombardo,Mezzolombardo,,--3-----,RQ,9501,,4613N 01106E, +,IT,MGA,Magenta,Magenta,,--3-----,RL,0001,,4528N 00853E, +,IT,MGG,Maggiore,Maggiore,,--3-----,RQ,9501,,4628N 01022E, +,IT,MIA,Mira,Mira,,-23-----,RQ,9705,,4525N 01212E, +,IT,MID,Mirandola,Mirandola,,-23-----,RQ,9705,,4453N 01104E, +,IT,MIG,Monteriggioni,Monteriggioni,,--3-----,RL,0002,,4323N 01113E, +,IT,MIL,Milano,Milano,,--3-5---,AI,1101,,4528N 00911E, +,IT,MJC,Mollicciara,Mollicciara,,0-------,RQ,9307,,4405N 01001E, +,IT,MLC,Montalcino,Montalcino,,--3-----,RQ,9705,,4303N 01129E, +,IT,MLN,Maslianico,Maslianico,,--3-----,RL,9805,,4551N 00903E, +,IT,MLO,Malo,Malo,,--3-----,RQ,9705,,4540N 01122E, +,IT,MLZ,Milazzo,Milazzo,,1-------,AI,9704,,3813N 01514E, +,IT,MMO,Marettimo,Marettimo,,1-------,AI,9812,,3758N 01204E, +,IT,MNA,Manta,Manta,,--3-----,RL,0005,,4437N 00729E, +,IT,MNB,Montelabbate,Montelabbate,,--3-----,RQ,9705,,4351N 01247E, +,IT,MNC,Mandrio di Correggio,Mandrio di Correggio,,--3-----,RL,9805,,4448N 01048E, +,IT,MNF,Monfalcone,Monfalcone,,1-------,AI,9704,,4548N 01332E, +,IT,MNG,Mignagola di Carbonera,Mignagola di Carbonera,TV,--3-----,RQ,1901,,4541N 01219E, +,IT,MNO,Monsano,Monsano,,--3-----,RQ,9806,,4334N 01315E, +,IT,MNP,Monopoli,Monopoli,,1-------,AI,9704,,4057N 01718E, +,IT,MNR,Minerbio,Minerbio,,--3-----,RQ,9705,,4437N 01129E, +,IT,MOA,Montebelluna,Montebelluna,,--3-----,RQ,9501,,4547N 01203E, +,IT,MOC,Morano Calabro,Morano Calabro,,--3-----,RQ,9501,,3951N 01608E, +,IT,MOD,Modena,Modena,MO,-2------,RL,1801,,4439N 01056E, +,IT,MOE,Monselice,Monselice,,--3-----,RQ,9501,,4515N 01145E, +,IT,MOI,Moimacco,Moimacco,UD,--3-----,RL,1801,,4605N 01323E, +,IT,MOK,Montelupo Albese,Montelupo Albese,,--3-----,RQ,9501,,4437N 00803E, +,IT,MOL,Molfetta,Molfetta,,1-------,AI,9704,,4112N 01636E, +,IT,MOP,Monte Porzio,Monte Porzio,,--3-----,RQ,9501,,4341N 01303E, +,IT,MOR,Mordano,Mordano,,0-------,RQ,9307,,4424N 01149E, +,IT,MOS,Morolo,Morolo,,--3-----,RQ,9501,,4138N 01312E, +,IT,MOT,Monsummano Terme,Monsummano Terme,,--3-----,RQ,9501,,4352N 01049E, +,IT,MOZ,Mozzanica,Mozzanica,BG,--3-----,RL,1801,,4529N 00941E, +,IT,MPP,Mappano,Mappano,,--3-----,RQ,9705,,4509N 00742E, +,IT,MPT,Monteveglio,Monteveglio,,--3-----,RL,9805,,4428N 01106E, +,IT,MRB,Manerbio,Manerbio,BS,--3-----,RL,1801,,4521N 01008E, +,IT,MRE,Montale Rangone,Montale Rangone,,--3-----,RL,0001,,4435N 01055E, +,IT,MRO,Montirone,Montirone,,--3-----,RL,0002,,4527N 01014E, +,IT,MRS,Marsciano,Marsciano,,--3-----,RQ,9501,,4255N 01220E, +,IT,MRV,Marano Vicentino,Marano Vicentino,,--3-----,RQ,9705,,4542N 01126E, +,IT,MSL,Massa Lombarda,Massa Lombarda,,-23-----,RQ,9705,,4427N 01150E, +,IT,MSN,Messina,Messina,,1-------,AI,9704,,3812N 01533E, +,IT,MSO,Millesimo,Millesimo,SV,--3-----,RL,1801,,4422N 00812E, +,IT,MSP,Monte San Pietro,Monte San Pietro,,--3-----,RL,0001,,4426N 01109E, +,IT,MSS,Massarosa,Massarosa,,--3-----,RQ,9705,,4352N 01020E, +,IT,MTA,Mortara,Mortara,,--3-----,RL,9901,,4515N 00844E, +,IT,MTC,Marano Ticino,Marano Ticino,,--3-----,RQ,9705,,4538N 00838E, +,IT,MTG,Montegiorgio,Montegiorgio,,--3-----,RQ,9705,,4308N 01332E, +,IT,MTO,Molteno,Molteno,,--3-----,RL,0001,,4547N 00918E, +,IT,MUS,Mussolente,Mussolente,,--3-----,RQ,9501,,4547N 01148E, +,IT,MXP,Malpensa Apt/Milano,Malpensa Apt/Milano,,---4----,AI,,,4536N 00843E, +,IT,MZO,Melzo,Melzo,,0-------,RQ,9601,,4530N 00925E, +,IT,MZZ,Mozzecane,Mozzecane,,-23-----,RQ,9705,,4519N 01049E, +,IT,NCO,Noceto,Noceto,,--3-----,RQ,0101,,4449N 01011E, +,IT,NER,Nerviano,Nerviano,,--3-----,RL,0001,,4533N 00858E, +,IT,NFA,Novafeltria,Novafeltria,,--3-----,RQ,0101,,4354N 01217E, +,IT,NGR,Negrar,Negrar,VR,--3-----,RL,1801,,4532N 01056E, +,IT,NIC,Pian di Macina,Pian di Macina,,--3-----,RL,0607,,4424N 01120E, +,IT,NIG,Cannigione,Cannigione,,1-------,RQ,0901,,4106N 00926E, +,IT,NLO,Nichelino,Nichelino,,--3-----,RL,9811,,4460N 00739E, +,IT,NML,Novate Milanese,Novate Milanese,,0-------,RQ,9307,,4532N 00908E, +,IT,NOE,Nove,Nove,,--3-----,RQ,9705,,4544N 01141E, +,IT,NOL,Nola,Nola,,--3-----,RQ,0101,,4055N 01432E, +,IT,NON,Nonantola,Nonantola,,--3-----,RQ,9501,,4441N 01103E, +,IT,NOR,Nogara,Nogara,,-23-----,RQ,9705,,4511N 01104E, +,IT,NRC,Nogarole Rocca,Nogarole Rocca,,--3-----,RL,9811,,4518N 01053E, +,IT,NSC,Niscemi,Niscemi,,--3-----,RQ,9501,,3709N 01424E, +,IT,NSY,Sigonella,Sigonella,,---4----,AI,0001,,3728N 01458E, +,IT,NVE,Nuvolento,Nuvolento,,--3-----,RQ,9705,,4533N 01023E, +,IT,NVL,Nuvolera,Nuvolera,,--3-----,RL,9805,,4532N 01022E, +,IT,NVM,Novate Mezzola,Novate Mezzola,,--3-----,RQ,9705,,4613N 00927E, +,IT,NVO,Nuova Olonio,Nuova Olonio,,0-------,RQ,9307,,4610N 00926E, +,IT,NVR,Novara,Novara,,--3-----,RQ,9501,,4527N 00837E, +,IT,NVT,Novedrate,Novedrate,,--3-----,RQ,9705,,4542N 00907E, +,IT,OBS,Orbassano,Orbassano,,--3-----,RQ,9705,,4500N 00732E, +,IT,OCI,Occhieppo Inferiore,Occhieppo Inferiore,,--3-----,RQ,9501,,4533N 00801E, +,IT,OCO,Occimiano,Occimiano,,--3-----,RQ,9806,,4504N 00830E, +,IT,ODL,Odolo,Odolo,,--3-----,RQ,9705,,4539N 01023E, +,IT,ODZ,Oderzo,Oderzo,,--3-----,RQ,9501,,4547N 01230E, +,IT,OGG,Oggiono,Oggiono,,-2------,RQ,9705,,4548N 00921E, +,IT,OHB,Occhiobello,Occhiobello,,--3-----,RQ,9705,,4455N 01135E, +,IT,OLC,Olgiate Comasco,Olgiate Comasco,,--3-----,RL,0006,,4547N 00858E, +,IT,OLE,Oleggio,Oleggio,,-23-----,RQ,9705,,4536N 00838E, +,IT,OLG,Olginate,Olginate,,--3-----,RQ,9705,,4548N 00925E, +,IT,OLO,Olona,Olona,,--3-----,RQ,9705,,4510N 00922E, +,IT,OMM,Oste-Montemurlo,Oste-Montemurlo,,--3-----,RQ,9705,,4354N 01102E, +,IT,OMO,Como,Como,,--3-----,RQ,9501,,4549N 00905E, +,IT,ONE,Oneglia,Oneglia,,1-------,AI,9601,,4353N 00802E, +,IT,ONN,Osmannoro,Osmannoro,,--3-----,RL,9805,,4348N 01111E, +,IT,OPD,Ospedaletti,Ospedaletti,IM,--3-----,RL,1801,,4348N 00743E, +,IT,ORA,Ora,Ora,,--3-----,RL,0001,,4621N 01118E, +,IT,ORI,Orio Litta (Milano),Orio Litta (Milano),LO,--3-----,RL,1801,,4510N 00933E, +,IT,ORT,Orta Nova,Orta Nova,,--3-----,RQ,9705,,4120N 01543E, +,IT,OSG,Orsago,Orsago,,-23-----,RQ,9705,,4556N 01225E, +,IT,OSP,Ospitaletto,Ospitaletto,,--3-----,RQ,9501,,4533N 01004E, +,IT,OSS,Osio Sotto,Osio Sotto,,--3-----,RQ,0212,,4537N 00935E, +,IT,OTN,Ortona,Ortona,,1-------,AI,9704,,4221N 01424E, +,IT,OTO,Otranto,Otranto,,1-------,AI,9704,,4009N 01829E, +,IT,OVD,Ovada,Ovada,,--3-----,RQ,9501,,4438N 00839E, +,IT,PAB,Popoli,Popoli,PE,--3-----,RQ,1101,,4210N 01350E, +,IT,PAC,Pachino,Pachino,,--3-----,RQ,9501,,3643N 01505E, +,IT,PAI,Pagani,Pagani,,--3-----,RL,0101,,4045N 01437E, +,IT,PAM,Ponte a Moriano,Ponte a Moriano,,--3-----,RQ,9705,,4355N 01032E, +,IT,PAN,Panarea,Panarea,,1-------,AI,9601,,3838N 01504E, +,IT,PAU,Palau,Palau,,1-------,AI,9812,,4111N 00923E, +,IT,PAV,Pavia,Pavia,,--3-----,RQ,9501,,4511N 00909E, +,IT,PAZ,Porto Azzurro,Porto Azzurro,,1-------,AI,9704,,4246N 01024E, +,IT,PCB,Pessano con Bornago,Pessano con Bornago,,--3-----,RL,0001,,4533N 00923E, +,IT,PCE,Porto Cervo,Porto Cervo,,1-------,AI,9601,,4108N 00932E, +,IT,PCH,Peschici,Peschici,,1-------,AI,9812,,4157N 01601E, +,IT,PCO,Percoto,Percoto,,--3-----,RQ,9705,,4558N 01319E, +,IT,PCS,Porto Corsini,Porto Corsini,,0-------,RQ,9012,,4430N 01217E, +,IT,PCZ,Piacenza,Piacenza,,--3-----,RQ,9501,,4503N 00942E, +,IT,PDA,Padova,Padova,PD,--3-----,RL,1801,,4524N 01152E, +,IT,PDD,Paderno Dugnano,Paderno Dugnano,,0-------,RQ,9307,,4534N 00910E, +,IT,PDG,Pove del Grappa,Pove del Grappa,,--3-----,RL,0001,,4548N 01144E, +,IT,PDI,Porto d'Ischia,Porto d'Ischia,,1-------,AI,9601,,4045N 01356E, +,IT,PDL,Ponte dell'Olio,Ponte dell'Olio,,--3-----,RQ,9705,,4452N 00939E, +,IT,PDO,Pandino,Pandino,,--3-----,RQ,9705,,4524N 00933E, +,IT,PEE,Paese,Paese,,--3-----,RL,0101,,4540N 01209E, +,IT,PEG,Perugia,Perugia,,--34----,AI,9601,,4307N 01223E, +,IT,PEM,Porto Empedocle,Porto Empedocle,,1-------,AI,9704,,3717N 01332E, +,IT,PET,Pettinengo,Pettinengo,BI,--3-----,RL,1801,QPC,4537N 00806E, +,IT,PFE,Portoferraio,Portoferraio,,1-------,AI,9704,,4249N 01019E, +,IT,PGA,Porto Garibaldi,Porto Garibaldi,,1-------,AI,9601,,4441N 01214E, +,IT,PGG,Poggibonsi,Poggibonsi,,--3-----,RQ,9705,,4328N 01109E, +,IT,PGQ,Ponte Buggianese,Ponte Buggianese,,--3-----,RL,9805,,4350N 01045E, +,IT,PIE,Pietrasanta,Pietrasanta,,--3-----,RQ,9501,,4358N 01014E, +,IT,PII,Pignataro Interamna,Pignataro Interamna,,--3-----,RQ,0101,,4126N 01347E, +,IT,PIL,Pinerolo,Pinerolo,,--3-----,RL,9811,,4453N 00720E, +,IT,PIN,Pianella,Pianella,,--3-----,RQ,9501,,4224N 01403E, +,IT,PIO,Piombino,Piombino,,1-------,AI,9704,,4255N 01032E, +,IT,PIS,Pistoia,Pistoia,,--3-----,RQ,9501,,4356N 01055E, +,IT,PIT,Piantedo,Piantedo,,--3-----,RQ,9705,,4608N 00926E, +,IT,PKF,Prati,Prati,,--3-----,RL,9805,QPR,4154N 01228E, +,IT,PLA,Pradalunga,Pradalunga,,--3-----,RQ,0101,,4545N 00947E, +,IT,PLB,Policastro Bussentino,Policastro Bussentino,,--3-----,RQ,9501,QEZ,4005N 01531E, +,IT,PLI,Porto Lignano,Porto Lignano,,1-------,AI,9812,,4542N 01309E, +,IT,PLM,Palazzolo Milanese,Palazzolo Milanese,MI,--3-----,RQ,0212,,4535N 00910E, +,IT,PLO,Pioltello,Pioltello,,-23-----,RQ,8607,,4530N 00920E, +,IT,PLS,Polesine,Polesine,,--3-----,RQ,9705,,4429N 01059E, +,IT,PLU,Peschiera del Garda,Peschiera del Garda,,--3-----,RL,9805,,4526N 01042E, +,IT,PMC,Premariacco,Premariacco,UD,--3-----,RL,1801,,4604N 01324E, +,IT,PMZ,Porto Maurizio,Porto Maurizio,,1-------,AI,9601,,4353N 00801E, +,IT,PNG,Porto Nogaro,Porto Nogaro,,1-------,AI,9501,,4549N 01313E, +,IT,PNL,Pantelleria,Pantelleria,,1--4----,AI,9601,,3650N 01157E, +,IT,PNO,Ponte Nova,Ponte Nova,,0-------,RQ,9307,,4626N 01129E, +,IT,POC,Porcari,Porcari,,--3-----,RL,2101,,4350N 01037E, +,IT,POD,Podenzano,Podenzano,PC,--3-----,RL,1801,,4457N 00941E, +,IT,PON,Pontassieve,Pontassieve,,--3-----,RQ,9501,,4346N 01126E, +,IT,POO,Pontedassio,Pontedassio,IM,--3-----,RL,1801,,4356N 00801E, +,IT,POS,Positano,Positano,,1-------,AI,9812,,4038N 01429E, +,IT,POZ,Pozzuoli,Pozzuoli,,1-------,AI,9704,,4049N 01407E, +,IT,PRA,Pratrivero,Pratrivero,,0-------,RQ,9307,,4540N 00811E, +,IT,PRD,Pordenone,Pordenone,,--3-----,RQ,9501,QAD,4557N 01240E, +,IT,PRM,Pregnana Milanese,Pregnana Milanese,,--3-----,RQ,9501,,4531N 00900E, +,IT,PRN,Porrena,Porrena,,0-------,RQ,9307,,4345N 01145E, +,IT,PRO,Procida,Procida,,1-------,AI,9601,,4046N 01401E, +,IT,PRS,Persico,Persico,,0-------,RQ,9307,,4511N 01005E, +,IT,PRT,Porretta Terme,Porretta Terme,,--3-----,RQ,9705,,4410N 01058E, +,IT,PSA,Pisa,Pisa,,---4----,AI,9601,,4343N 01024E, +,IT,PSB,Peschiera Borromeo,Peschiera Borromeo,,-23-----,RQ,9705,,4526N 00919E, +,IT,PSE,Pescate,Pescate,,--3-----,RQ,0101,,4550N 00924E, +,IT,PSO,Palazzolo sull'Oglio,Palazzolo sull'Oglio,,--3-----,RL,0001,,4536N 00953E, +,IT,PSS,Porto Santo Stefano,Porto Santo Stefano,,1-------,AI,9704,,4226N 01107E, +,IT,PST,Pastrengo,Pastrengo,,--3-----,RQ,9501,,4530N 01048E, +,IT,PTA,Pontinia,Pontinia,,--3-----,RL,0001,,4125N 01303E, +,IT,PTD,Pontedecimo,Pontedecimo,,--3-----,RQ,9705,,4430N 00854E, +,IT,PTF,Portofino,Portofino,GE,1-------,AI,1801,,4418N 00913E, +,IT,PTO,Porto Torres,Porto Torres,SS,1-------,AI,1801,,4050N 00824E, +,IT,PTP,Potenza Picena,Potenza Picena,,--3-----,RQ,9501,,4322N 01337E, +,IT,PTR,Paterno,Paterno,,--3-----,RQ,9501,,4023N 01544E, +,IT,PTV,Piano Tavola,Piano Tavola,,--3-----,RQ,0101,,3732N 01459E, +,IT,PVA,Prevalle,Prevalle,,--3-----,RL,0001,,4533N 01025E, +,IT,PVC,Pratovecchio,Pratovecchio,,--3-----,RQ,9705,,4347N 01143E, +,IT,PVI,Poviglio,Poviglio,,--3-----,RQ,9705,,4451N 01032E, +,IT,PXZ,Panzano,Panzano,,-23-----,RL,9805,,4444N 01050E, +,IT,PZA,Pallanza,Pallanza,,0-------,RQ,9307,,4555N 00833E, +,IT,PZB,Piazza Brembana,Piazza Brembana,,--3-----,RQ,9705,,4557N 00941E, +,IT,PZE,Ponzone,Ponzone,,--3-----,RQ,9501,,4435N 00828E, +,IT,PZF,Pozzolo Formigaro,Pozzolo Formigaro,,--3-----,RQ,9705,,4448N 00847E, +,IT,PZO,Ponzano Magra,Ponzano Magra,SP,--3-----,RQ,0212,,4409N 00956E, +,IT,QCS,Cosenza,Cosenza,,---4----,AI,9601,,3919N 01615E, +,IT,QER,San Rocco di Guastalla,San Rocco di Guastalla,RE,-----6--,AA,1801,,4452N 01039E, +,IT,QGO,Santo Stefano di Magra,Santo Stefano di Magra,SP,--3-----,RL,1801,,4410N 00955E, +,IT,QLO,Qualiano,Qualiano,,--3-----,RQ,0101,,4055N 01409E, +,IT,QRC,Querceta,Querceta,,0-------,RQ,9307,,4359N 01012E, +,IT,QTO,Quarto,Quarto,,--3-----,RQ,9705,,4053N 01408E, +,IT,RAC,Racconigi,Racconigi,,--3-----,RL,0001,,4446N 00741E, +,IT,RAN,Ravenna,Ravenna,,1-------,AI,9601,,4425N 01212E, +,IT,RBC,Robecco,Robecco,,-23-----,RQ,9705,,4442N 00920E, +,IT,RBS,Robassomero,Robassomero,,--3-----,RQ,9705,,4512N 00734E, +,IT,RDD,Ravadese,Ravadese,PR,--3-----,RQ,1101,,4452N 01022E, +,IT,RDG,Riva del Garda,Riva del Garda,,--3-----,RQ,9705,,4553N 01050E, +,IT,REN,Rogeno,Rogeno,,--3-----,RL,0001,,4547N 00916E, +,IT,RFC,Refrontolo,Refrontolo,,--3-----,RL,9805,,4555N 01212E, +,IT,RFN,Rufina,Rufina,,--3-----,RQ,9705,,4350N 01129E, +,IT,RGA,Ragusa,Ragusa,,--3-----,RQ,9501,,3655N 01443E, +,IT,RGB,Ragogna,Ragogna,,--3-----,RL,0601,,4610N 01259E, +,IT,RGG,Rodi Garganico,Rodi Garganico,,1-------,AI,9812,,4156N 01553E, +,IT,RGO,Reggiolo,Reggiolo,,--3-----,RQ,9705,,4455N 01048E, +,IT,RHI,Reschigliano,Reschigliano,PD,-----6--,RL,1801,,4529N 01156E, +,IT,RIB,Rivalta Bormida,Rivalta Bormida,,--3-----,RQ,0201,,4443N 00833E, +,IT,RIO,Rivoli Veronese,Rivoli Veronese,,--3-----,RL,0001,,4534N 01049E, +,IT,RIV,Rivalta Scrivia,Rivalta Scrivia,,-23-----,RQ,8607,,4451N 00849E, +,IT,RLL,Rutigliano,Rutigliano,,--3-----,RQ,9705,,4101N 01700E, +,IT,RMA,Rio Marina,Rio Marina,,1-------,AI,9704,,4249N 01026E, +,IT,RNT,Recanati,Recanati,,--3-----,RQ,9501,,4324N 01333E, +,IT,ROG,"Rogoredo, Milan","Rogoredo, Milan",,-2------,RQ,8909,,4526N 00915E, +,IT,RON,Rondissone,Rondissone,,--3-----,RL,0001,,4515N 00758E, +,IT,ROS,Rosa,Rosa,,-23-----,RQ,9705,,3834N 01435E, +,IT,ROT,Roteglia,Roteglia,,0-------,RQ,9307,,4429N 01041E, +,IT,ROV,Roveleto,Roveleto,,0-------,RQ,9307,,4458N 00951E, +,IT,RPB,Ripaberarda,Ripaberarda,,0-------,RQ,9307,,4255N 01336E, +,IT,RQI,Rocca Pietore,Rocca Pietore,,--3-----,RQ,9501,,4626N 01159E, +,IT,RQS,Rocca San Casciano,Rocca San Casciano,,--3-----,RQ,9501,,4404N 01151E, +,IT,RRO,Sorrento,Sorrento,,1-------,AI,9601,,4037N 01422E, +,IT,RSA,Resana,Resana,,-23-----,RQ,9705,,4538N 01157E, +,IT,RSC,Rescaldina,Rescaldina,,0-------,RQ,9307,,4537N 00857E, +,IT,RSL,Rio Saliceto,Rio Saliceto,,--3-----,RL,9805,,4449N 01048E, +,IT,RTI,Rieti,Rieti,,--3-----,RQ,9501,,4224N 01252E, +,IT,RTO,Rovereto,Rovereto,,-23-----,RQ,9705,,4553N 01103E, +,IT,RUB,Rubiera,Rubiera,,--3-----,RQ,9008,,4439N 01047E, +,IT,RUS,Rovereto sulla Secchia,Rovereto sulla Secchia,MO,--3-----,RQ,0901,,4450N 01057E, +,IT,RVL,Rivoli,Rivoli,,--3-----,RQ,9705,,4504N 00731E, +,IT,RVR,Revere,Revere,,--3-----,RQ,9705,,4503N 01108E, +,IT,RVV,Rivarolo Canavese,Rivarolo Canavese,,--3-----,RQ,9501,,4520N 00743E, +,IT,RZO,Rozzano,Rozzano,,--3-----,RQ,9705,,4523N 00909E, +,IT,SAH,Santa Maria a Monte,Santa Maria a Monte,PI,--3-----,RQ,0901,,4342N 01042E, +,IT,SAI,Sant'Agata Irpina,Sant'Agata Irpina,AV,--3-----,RQ,0212,,4050N 01450E, +,IT,SAL,Salerno,Salerno,,1-3-----,AI,9704,,4041N 01446E, +,IT,SAN,Sandigliano,Sandigliano,BI,--3-----,RL,1801,,4531N 00805E, +,IT,SAR,San Rocco,San Rocco,,--3-----,RQ,9501,,4521N 00933E, +,IT,SAT,Sant' Antioco,Sant' Antioco,,1-------,AI,9601,,3904N 00827E, +,IT,SAU,Sessa Aurunca,Sessa Aurunca,,--3-----,RQ,9501,,4114N 01356E, +,IT,SAV,Savignone,Savignone,GE,--3-----,RL,1801,,4434N 00859E, +,IT,SBA,Solbiate Arno,Solbiate Arno,,--3-----,RL,0001,,4543N 00849E, +,IT,SBC,Sambuca di Pesa,Sambuca di Pesa,,--3-----,RQ,9705,,4334N 01113E, +,IT,SBI,Stabbia,Stabbia,,--3-----,RL,0001,,4347N 01050E, +,IT,SBM,Solara di Bomporto,Solara di Bomporto,,--3-----,RQ,9705,,4446N 01106E, +,IT,SBO,Solbiate Olona,Solbiate Olona,,--3-----,RL,0001,,4539N 00853E, +,IT,SBT,Solbiate,Solbiate,,--3-----,RQ,9705,,4539N 00853E, +,IT,SCA,Scandiano,Scandiano,,--3-----,RQ,9501,,4436N 01041E, +,IT,SCD,San Candido,San Candido,,--3-----,RQ,9705,,4644N 01217E, +,IT,SCG,Sommacampagna,Sommacampagna,,--3-----,RL,9811,,4524N 01050E, +,IT,SCH,Schio,Schio,,--3-----,RQ,9501,,4543N 01121E, +,IT,SCI,Scicli,Scicli,,--3-----,RQ,9501,,3648N 01442E, +,IT,SCL,Sacile,Sacile,,--3-----,RQ,9705,QSR,4557N 01230E, +,IT,SCM,San Clemente,San Clemente,,--3-----,RL,9805,,4356N 01238E, +,IT,SCR,Santa Croce,Santa Croce,,--3-----,RQ,9501,,4334N 01205E, +,IT,SCT,Saint Christophe,Saint Christophe,,--3-----,RQ,0104,,4545N 00721E, +,IT,SDA,Spino d'Adda,Spino d'Adda,,--3-----,RQ,9705,,4524N 00929E, +,IT,SDL,Soiano Del Lago,Soiano Del Lago,,--3-----,RL,9805,,4532N 01031E, +,IT,SDR,Sarmeola di Rubano,Sarmeola di Rubano,,--3-----,RL,0001,,4525N 01149E, +,IT,SDT,San Donato,San Donato,,--3-----,RQ,9705,,4254N 01245E, +,IT,SDV,Seghe di Velo,Seghe di Velo,VI,--3-----,RQ,0212,,4548N 01122E, +,IT,SEC,Settimello-Calenzano,Settimello-Calenzano,,--3-----,RL,0001,,4351N 01111E, +,IT,SEE,Sesto Calende,Sesto Calende,,--3-----,RQ,9705,,4543N 00838E, +,IT,SET,Settecamini,Settecamini,,0-------,RQ,9307,,4156N 01238E, +,IT,SEV,Seveso,Seveso,,--3-----,RL,0001,,4539N 00908E, +,IT,SFP,San Felice sul Panaro,San Felice sul Panaro,,-23-----,RQ,9705,,4450N 01109E, +,IT,SFR,San Fior,San Fior,,--3-----,RL,0002,,4555N 01221E, +,IT,SGB,San Giovanni Bianco,San Giovanni Bianco,,--3-----,RQ,9705,,4552N 00939E, +,IT,SGE,Segrate,Segrate,,--3-----,RL,0001,,4529N 00918E, +,IT,SGL,San Giovanni Lupatoto,San Giovanni Lupatoto,,--3-----,RQ,9501,,4523N 01103E, +,IT,SGN,San Giovanni al Natisone,San Giovanni al Natisone,,--3-----,RQ,9501,,4559N 01324E, +,IT,SGO,Seregno,Seregno,,-23-----,RQ,9705,,4539N 00912E, +,IT,SGR,Salgareda,Salgareda,TV,--3-----,RL,1801,,4542N 01230E, +,IT,SGV,San Giovanni Valdarno,San Giovanni Valdarno,,-23-----,RQ,9705,,4334N 01132E, +,IT,SIE,Sesto Imolese,Sesto Imolese,,--3-----,RQ,0101,,4428N 01144E, +,IT,SIL,San Giorgio a Liri,San Giorgio a Liri,,--3-----,RL,9811,,4124N 01346E, +,IT,SIR,Siracusa,Siracusa,,1-------,AI,9704,,3704N 01517E, +,IT,SLG,Solignano,Solignano,,--3-----,RQ,9501,,4437N 00959E, +,IT,SLR,Solero,Solero,,--3-----,RQ,9705,,4455N 00831E, +,IT,SLS,San Lazzaro di Savena,San Lazzaro di Savena,,--3-----,RL,0001,,4428N 01124E, +,IT,SLT,Spoleto,Spoleto,,-23-----,RQ,9705,,4244N 01244E, +,IT,SLU,Salussola,Salussola,,--3-----,RQ,9501,,4527N 00807E, +,IT,SMC,Santa Maria Capua Vetere,Santa Maria Capua Vetere,,--3-----,RQ,9501,,4105N 01415E, +,IT,SMG,San Michele di Ganzaria,San Michele di Ganzaria,,--3-----,RQ,9501,,3717N 01426E, +,IT,SMI,San Miniato,San Miniato,,--3-----,RQ,9501,,4321N 01120E, +,IT,SML,Santa Margherita Ligure,Santa Margherita Ligure,GE,1-------,AI,1801,,4420N 00913E, +,IT,SMP,San Michele Prazzo,San Michele Prazzo,,--3-----,RQ,9501,,4430N 00704E, +,IT,SMX,San Michele Extra,San Michele Extra,,--3-----,RQ,9501,,4526N 01103E, +,IT,SNA,Siena,Siena,,--3-----,RQ,9501,SAY,4319N 01120E, +,IT,SND,Sondrio,Sondrio,,-23-----,RQ,9705,,4610N 00952E, +,IT,SNO,Seano,Seano,,--3-----,RL,9805,,4350N 01101E, +,IT,SNP,San Pietro,San Pietro,,--3-----,RQ,1101,,4308N 01216E, +,IT,SNS,San Nicola la Strada,San Nicola la Strada,CE,--3-----,RQ,0212,,4103N 01420E, +,IT,SNT,San Nicolo a Trebbia,San Nicolo a Trebbia,,--3-----,RQ,0101,,4503N 00937E, +,IT,SOE,Soleto,Soleto,,--3-----,RQ,0101,,4011N 01812E, +,IT,SOG,Somaglia,Somaglia,,--3-----,RL,0307,,4509N 00938E, +,IT,SOR,Sorbolo,Sorbolo,,--3-----,RQ,9501,,4451N 01027E, +,IT,SOS,Sossano,Sossano,VI,--3-----,RL,1801,,4522N 01131E, +,IT,SOZ,Solza,Solza,,--3-----,RL,0307,,4541N 00929E, +,IT,SPC,San Pancrazio,San Pancrazio,,--3-----,RQ,9705,,4635N 01105E, +,IT,SPL,Spello,Spello,,--3-----,RQ,9501,,4259N 01240E, +,IT,SPN,Spinetta,Spinetta,,--3-----,RQ,9501,,4426N 00912E, +,IT,SPR,Spoltore,Spoltore,,--3-----,RQ,0101,,4227N 01408E, +,IT,SPS,San Pietro in Casale,San Pietro in Casale,,--3-----,RQ,9705,,4442N 01124E, +,IT,SRC,Santeramo in Colle,Santeramo in Colle,,--3-----,RQ,9705,,4048N 01645E, +,IT,SRD,Sordevolo,Sordevolo,,--3-----,RQ,9705,,4534N 00758E, +,IT,SRE,San Remo,San Remo,IM,1-------,AI,1801,,4349N 00746E, +,IT,SRG,Sarego,Sarego,,--3-----,RQ,9705,,4524N 01124E, +,IT,SRN,Saronno,Saronno,,--3-----,RQ,9501,,4538N 00902E, +,IT,SRR,Serralunga D'alba,Serralunga D'alba,CN,--3-----,RL,1801,,4437N 00800E, +,IT,SRV,Serravalle Scrivia,Serravalle Scrivia,,--3-----,RQ,9501,,4444N 00851E, +,IT,SSA,San Salvo,San Salvo,,--3-----,RQ,9501,,4203N 01444E, +,IT,SSG,Sesto San Giovanni,Sesto San Giovanni,,--3-----,RQ,9501,,4532N 00914E, +,IT,SSL,Sassello,Sassello,,--3-----,RQ,9705,,4429N 00829E, +,IT,SSN,Assemini,Assemini,,-23--6--,RQ,0901,,3917N 00900E, +,IT,SSU,Sassuolo,Sassuolo,,--3-----,RQ,9501,,4432N 01047E, +,IT,STF,Sesto Fiorentino,Sesto Fiorentino,,--3-----,RQ,9705,,4350N 01112E, +,IT,STG,Stagno,Stagno,,-23-----,RQ,9705,,4336N 01021E, +,IT,STI,Settimo Milanese,Settimo Milanese,MI,--3-----,RL,0212,,4529N 00903E, +,IT,STO,Solto Collina,Solto Collina,,--3-----,RQ,9705,,4547N 01002E, +,IT,STR,Stromboli,Stromboli,,1-------,AI,9601,,3848N 01513E, +,IT,STT,Settimo Torinese,Settimo Torinese,,--3-----,RQ,9501,,4508N 00746E, +,IT,SUF,Lamezia-Terme,Lamezia-Terme,,---4----,RQ,,,3858N 01618E, +,IT,SUS,Susegana,Susegana,,--3-----,RQ,9501,,4551N 01215E, +,IT,SVC,San Vito lo Capo,San Vito lo Capo,,1-------,AI,9602,,3810N 01244E, +,IT,SVI,Strevi,Strevi,AL,--3-----,RL,1801,,4442N 00831E, +,IT,SVL,San Vito di Leguzzano,San Vito di Leguzzano,,--3-----,RL,0001,,4541N 01123E, +,IT,SVO,San Severo,San Severo,,-23-----,RQ,9705,,4141N 01523E, +,IT,SVT,San Vito al Tagliamento,San Vito al Tagliamento,,--3-----,RQ,9705,,4555N 01251E, +,IT,SZA,Suzzara,Suzzara,,--3-----,RQ,9501,,4460N 01045E, +,IT,SZJ,Scanzano Jonico,Scanzano Jonico,,--3-----,RQ,9705,,4015N 01641E, +,IT,SZN,San Zeno naviglio,San Zeno naviglio,,--3-----,RQ,9705,,4529N 01013E, +,IT,TAL,Talamone,Talamone,,1-------,AI,9704,,4233N 01108E, +,IT,TAT,Torrevecchia Teatina,Torrevecchia Teatina,,--3-----,RQ,9806,,4223N 01413E, +,IT,TCR,Trescore Cremasco,Trescore Cremasco,CR,--3-----,RL,0701,,4524N 00937E, +,IT,TDS,Torino di Sangro,Torino di Sangro,,--3-----,RL,0001,,4211N 01432E, +,IT,TDZ,Toscanella Di Dozza,Toscanella Di Dozza,,0-------,RQ,9307,,4423N 01138E, +,IT,TEG,Tregnago,Tregnago,,--3-----,RL,0001,,4531N 01110E, +,IT,TEL,Telgate,Telgate,,--3-----,RL,0001,,4538N 00951E, +,IT,TEV,Tavernelle Vicentina-Altavilla Vicentina,Tavernelle Vicentina-Altavilla Vicentina,,--3-----,RQ,0201,,4531N 01127E, +,IT,TFV,Trasaghis,Trasaghis,UD,--3-----,RQ,1101,,4617N 01305E, +,IT,TGN,Trevignano,Trevignano,,--3-----,RQ,9705,,4544N 01206E, +,IT,TGO,Turbigo,Turbigo,,--3-----,RQ,9501,,4532N 00844E, +,IT,TGR,Torregrande,Torregrande,,1-------,AI,9601,,3954N 00831E, +,IT,THE,Thiene,Thiene,,--3-----,RQ,9501,,4542N 01129E, +,IT,TIV,Tivoli,Tivoli,,--3-----,RQ,9501,,4158N 01248E, +,IT,TMI,Termoli,Termoli,,1-------,AI,9601,,4160N 01460E, +,IT,TNI,Trani,Trani,,1-------,AI,9601,,4117N 01625E, +,IT,TNO,Tirano,Tirano,,--3-----,RQ,9705,,4613N 01010E, +,IT,TOA,Torre Annunziata,Torre Annunziata,,1-------,AI,9704,,4045N 01427E, +,IT,TOM,Tombolo,Tombolo,PD,--3-----,RL,1801,,4539N 01150E, +,IT,TOR,Tornaco,Tornaco,NO,--3-----,RL,1801,,4521N 00843E, +,IT,TRA,Turate,Turate,CO,--3-----,RL,1801,,4539N 00900E, +,IT,TRC,Terracina,Terracina,,1-------,AI,9601,,4117N 01315E, +,IT,TRD,Tradate,Tradate,,--3-----,RQ,9501,,4543N 00854E, +,IT,TRE,Trecate,Trecate,,--3-----,RQ,9501,,4526N 00844E, +,IT,TRL,Trambileno,Trambileno,,--3-----,RQ,0212,,4550N 01108E, +,IT,TRN,Torino,Torino,,---45---,AI,9601,,4504N 00741E, +,IT,TRR,Terruggia,Terruggia,,--3-----,RQ,9705,,4505N 00827E, +,IT,TRS,Trieste,Trieste,,12-4----,AI,2007,,4539N 01347E, +,IT,TSL,Torre d'Isola,Torre d'Isola,PV,--3-----,RQ,0901,,4513N 00905E, +,IT,TST,Trestina,Trestina,,--3-----,RQ,9705,,4322N 01214E, +,IT,TTA,Tortona,Tortona,AL,--3-----,RL,1801,,4454N 00852E, +,IT,TTF,Tirrenia,Tirrenia,,--3-----,RQ,9501,,4338N 01018E, +,IT,TVD,Tavarnelle val di Pesa,Tavarnelle val di Pesa,,--3-----,RQ,1101,,4334N 01110E, +,IT,TVG,Treviglio,Treviglio,,--3-----,RQ,9501,,4531N 00936E, +,IT,TXO,Torgiano,Torgiano,,--3-----,RL,9805,,4302N 01226E, +,IT,UBE,Ubersetto,Ubersetto,MO,--3-----,RQ,0401,,4433N 01051E, +,IT,UDN,Udine,Udine,,---4----,AI,9601,,4604N 01314E, +,IT,UDS,Sedegliano,Sedegliano,UD,--3-----,RQ,1101,,4601N 01259E, +,IT,URG,Urgnano,Urgnano,BG,--3-----,RL,1801,,4536N 00942E, +,IT,UST,Ustica,Ustica,,1-------,AI,9601,,3843N 01311E, +,IT,VAD,Vado/Bologna,Vado/Bologna,,--3-----,RQ,1101,,4419N 01115E, +,IT,VAR,Varese,Varese,,--3-----,RQ,9501,,4549N 00850E, +,IT,VBA,Vignole Borbera,Vignole Borbera,,--3-----,RQ,9705,,4443N 00853E, +,IT,VBN,Vobarno,Vobarno,BS,--3-----,RQ,0901,,4539N 01030E, +,IT,VCA,Villanova Camposanpiero,Villanova Camposanpiero,,--3-----,RQ,9704,,4529N 01158E, +,IT,VCO,Vico,Vico,,--3-----,RQ,9705,,4549N 00904E, +,IT,VDA,Vada,Vada,,1-------,AI,9601,,4321N 01027E, +,IT,VDC,Vighizzolo Di Cantu,Vighizzolo Di Cantu,,--3-----,RL,9805,,4544N 00909E, +,IT,VDO,Vado/Lucca,Vado/Lucca,,--3-----,RQ,1101,,4419N 01115E, +,IT,VDR,Verderio,Verderio,LC,--3-----,RL,1801,,4540N 00926E, +,IT,VED,Velo D'astico,Velo D'astico,VI,--3-----,RL,1801,,4547N 01122E, +,IT,VEG,Venegono,Venegono,,--3-----,RQ,9501,,4544N 00854E, +,IT,VEP,Vitorchiano,Vitorchiano,,--3-----,RL,9805,,4228N 01210E, +,IT,VER,Verolanuova,Verolanuova,,--3-----,RQ,9501,,4520N 01005E, +,IT,VES,Vescovato,Vescovato,,--3-----,RQ,0901,,4511N 01010E, +,IT,VEV,Vittuone,Vittuone,,--3-----,RL,9805,,4529N 00857E, +,IT,VGH,Voghera,Voghera,,--3-----,RQ,9501,,4460N 00901E, +,IT,VGI,Veggiano,Veggiano,PD,--3-----,RL,1801,,4527N 01143E, +,IT,VGL,Vagliagli,Vagliagli,,--3-----,RQ,9705,,4325N 01121E, +,IT,VGO,Valdagno,Valdagno,,--3-----,RQ,9705,,4538N 01118E, +,IT,VGV,Vigevano,Vigevano,,--3-----,RQ,9705,,4519N 00852E, +,IT,VGZ,Vigolzone,Vigolzone,,--3-----,RQ,9704,,4455N 00940E, +,IT,VIA,Viareggio,Viareggio,,1-------,AI,9704,,4352N 01015E, +,IT,VIC,Vicenza,Vicenza,,--3-----,RQ,9501,,4533N 01133E, +,IT,VIE,Vieste,Vieste,,1-------,AI,9601,,4153N 01611E, +,IT,VIG,Vigliano,Vigliano,,--3-----,RQ,1101,,4252N 01241E, +,IT,VIL,Villa d'Ogna,Villa d'Ogna,,--3-----,RQ,1101,,4554N 00956E, +,IT,VIT,Viterbo,Viterbo,,--3-----,RQ,9501,,4225N 01206E, +,IT,VIZ,Vigonza,Vigonza,,--3-----,RL,9811,,4527N 01159E, +,IT,VLA,Volla,Volla,,--3-----,RQ,0101,,4053N 01421E, +,IT,VLB,Villalba,Villalba,,--3-----,RQ,9501,,3739N 01351E, +,IT,VLD,Villa di Serio,Villa di Serio,,--3-----,RQ,9704,,4543N 00944E, +,IT,VLG,Volargne,Volargne,,--3-----,RQ,9705,,4533N 01049E, +,IT,VLM,Valmadrera,Valmadrera,,--3-----,RQ,9008,,4551N 00921E, +,IT,VMF,Villanova Monferrato,Villanova Monferrato,,--3-----,RQ,9704,,4511N 00829E, +,IT,VNA,Villanova d'Ardenghi,Villanova d'Ardenghi,,--3-----,RL,0001,,4510N 00903E, +,IT,VNO,Veniano,Veniano,,--3-----,RQ,9705,,4543N 00859E, +,IT,VOD,Villadose,Villadose,,--3-----,RQ,1101,,4504N 01154E, +,IT,VOE,Laveno,Laveno,,--3-----,RL,9805,,4559N 01016E, +,IT,VOL,Volvera,Volvera,,0-------,RQ,9307,,4457N 00731E, +,IT,VOR,Villorba,Villorba,,--3-----,RQ,0101,,4544N 01215E, +,IT,VPI,Volpiano,Volpiano,,--3-----,RQ,9705,,4512N 00747E, +,IT,VRA,Verolavecchia,Verolavecchia,BS,--3-----,RL,1801,,4520N 01003E, +,IT,VRD,Verdello,Verdello,,--3-----,RL,0201,,4536N 00938E, +,IT,VRG,Vergnasco,Vergnasco,,--3-----,RQ,9704,,4529N 00805E, +,IT,VRN,Verona,Verona,,-2-4----,AI,2007,,4526N 01060E, +,IT,VSC,Vezzano sul Crostolo,Vezzano sul Crostolo,,--3-----,RQ,1101,,4436N 01033E, +,IT,VSI,Villastellone,Villastellone,,--3-----,RL,9805,,4455N 00745E, +,IT,VSN,Villasanta,Villasanta,,--3-----,RQ,9704,,4536N 00918E, +,IT,VSO,Vasto,Vasto,,1-------,AI,9704,,4207N 01442E, +,IT,VTA,Villotta di Chions,Villotta di Chions,,--3-----,RQ,9705,,4552N 01245E, +,IT,VTM,Vertemate,Vertemate,,--3-----,RQ,9704,,4544N 00905E, +,IT,VTT,Ventotene,Ventotene,,1-------,AI,9601,,4048N 01326E, +,IT,VUL,Vulcano porto,Vulcano porto,,1-------,AI,9601,,3825N 01457E, +,IT,VVA,Vibo Valentia,Vibo Valentia,,1-------,AI,9601,,3840N 01606E, +,IT,VVE,Valvasone,Valvasone,PN,--3-----,RL,1801,,4560N 01252E, +,IT,VVL,Villaverla,Villaverla,,--3-----,RQ,9705,,4539N 01130E, +,IT,VVO,Vinovo,Vinovo,,--3-----,RQ,1101,,4457N 00738E, +,IT,VZZ,Vezzano,Vezzano,,--3-----,RQ,9705,,4605N 01060E, +,IT,ZBO,Zero Branco,Zero Branco,,--3-----,RL,0001,,4536N 01210E, +,IT,ZCC,Zeccone,Zeccone,,--3-----,RQ,9704,,4515N 00912E, +,IT,ZCO,Zocco,Zocco,,--3-----,RQ,9705,,4536N 00956E, +,IT,ZGO,Zogno,Zogno,,--3-----,RQ,9705,,4548N 00940E, +,IT,ZKT,Isola del Gran Sasso d'Italia,Isola del Gran Sasso d'Italia,TA,-----6--,RL,1801,,4230N 01340E, +,IT,ZMD,Novello,Novello,,--3-----,RL,9805,,4435N 00756E, +,IT,ZML,Zimella,Zimella,,--3-----,RQ,9705,,4522N 01120E, +,IT,ZNC,Zanica,Zanica,,--3-----,RQ,9705,,4538N 00941E, +,IT,ZOL,Zola Predosa,Zola Predosa,,0-------,RQ,9307,,4429N 01113E, +,IT,ZPZ,Spezzano,Spezzano,,--3-----,RQ,0201,,4432N 01051E, +,IT,ZRM,Zermeghedo,Zermeghedo,,--3-----,RQ,9704,,4528N 01122E, +,IT,ZUG,Zugliano,Zugliano,VI,--3-----,RL,1801,,4544N 01131E, +,IT,ZVO,Zevio,Zevio,,--3-----,RQ,9705,,4523N 01108E, +,JM,ALP,Alligator Pond,Alligator Pond,,1-------,QQ,8103,,1752N 07734W, +,JM,BLR,Black River,Black River,,1-------,QQ,8103,,1801N 07751W, +,JM,BWN,Bowden,Bowden,,1-------,QQ,8103,,1753N 07619W, +,JM,FMH,Falmouth,Falmouth,,1-------,QQ,8103,,1830N 07739W, +,JM,KIN,Kingston,Kingston,,1--45---,AI,9601,,1758N 07648W, +,JM,LUC,Lucea,Lucea,,--3-----,RL,0002,,1827N 07810W, +,JM,MBJ,Montego Bay,Montego Bay,,1--4----,AI,9601,,1828N 07755W, +,JM,MVJ,Mandeville,Mandeville,,---4----,AI,9601,,1803N 07730W, +,JM,NEG,Negril,Negril,,---4----,AI,0001,,1817N 07821W, +,JM,OCJ,Ocho Rios,Ocho Rios,,1--4----,AI,9601,,1824N 07706W, +,JM,PEV,Port Esquivel,Port Esquivel,,1-------,QQ,8103,,1754N 07708W, +,JM,PKS,Port Kaiser,Port Kaiser,,1-------,QQ,8103,,1752N 07736W, +,JM,PMO,Port Morant,Port Morant,,1-------,QQ,8103,,1754N 07618W, +,JM,POT,Port Antonio,Port Antonio,,1--4----,AI,9601,,1811N 07627W, +,JM,PRO,Port Royal,Port Royal,,1-------,QQ,8103,,1756N 07651W, +,JM,RIB,Rio Bueno,Rio Bueno,,1-------,RQ,9506,,1828N 07728W, +,JM,ROP,Rocky Point,Rocky Point,,1-------,RQ,9506,,1746N 07716W, +,JM,SPT,Spanish Town,Spanish Town,,--3-----,RL,0002,,1760N 07657W, +,JM,SRI,Salt River,Salt River,,1-------,QQ,8103,,1750N 07711W, +,JO,AMM,Amman,Amman,,---45---,AI,9601,,3157N 03555E, +,JO,QIR,Irbid,Irbid,,--3-----,AI,9901,,3233N 03551E, +,JP,AAM,"Ama, Shimane","Ama, Shimane",32,1-------,AF,9907,,3606N 13306E, +,JP,ABA,Abashiri,Abashiri,01,1-------,AF,9907,,4401N 14416E, +,JP,ABO,Aboshi/Himeji,Aboshi/Himeji,28,1-------,AF,9907,,3447N 13435E, +,JP,ABU,Aburatsu,Aburatsu,45,1-------,AF,9907,,3135N 13124E, +,JP,AGJ,Aguni,Aguni,47,1--4----,AI,9907,,2635N 12714E, +,JP,AGN,Agenosho,Agenosho,35,1-------,AF,9907,,3354N 13216E, +,JP,AGS,Ageshima,Ageshima,37,1-------,AF,9907,,3806N 13815E, +,JP,AII,Aio,Aio,35,1-------,AF,9907,,3360N 13126E, +,JP,AIK,"Aikawa, Niigata","Aikawa, Niigata",15,1-------,AF,9907,,3802N 13814E, +,JP,AIM,Aishima,Aishima,35,1-------,AF,9907,,3430N 13117E, +,JP,AIN,Ainoura/Sasebo,Ainoura/Sasebo,42,1-------,AF,9907,,3310N 12939E, +,JP,AJI,Aji,Aji,37,1-------,AF,9907,,3423N 13409E, +,JP,AJK,Ajigasawa,Ajigasawa,02,1-------,AF,9907,,4047N 14014E, +,JP,AJN,Ajino,Ajino,33,1-------,AF,9907,,3428N 13348E, +,JP,AJO,Anjo,Anjo,23,--3-----,AF,9907,,3457N 13705E, +,JP,AJR,"Ajiro, Shizuoka","Ajiro, Shizuoka",22,1-------,AF,9907,,3503N 13905E, +,JP,AJX,Aja,Aja,47,1-------,AF,9907,,2614N 12741E, +,JP,AKA,Akashi,Akashi,28,1-------,AF,9907,,3441N 13457E, +,JP,AKD,Akadomari,Akadomari,15,1-------,AF,9907,,3753N 13824E, +,JP,AKE,Akkeshi,Akkeshi,01,1-------,AF,9907,,4303N 14451E, +,JP,AKJ,Asahikawa,Asahikawa,01,---4----,AF,9907,,4346N 14222E, +,JP,AKM,Akamizu,Akamizu,46,1-------,AF,9907,,3134N 13037E, +,JP,AKN,Akune,Akune,46,1-------,AF,9907,,3201N 13012E, +,JP,AKO,Akoh,Akoh,28,1-------,AF,9907,,3445N 13423E, +,JP,AKT,Akitsu,Akitsu,34,1-------,AF,9907,,3419N 13250E, +,JP,AKZ,Aika,Aika,32,1-------,AF,9907,,3511N 13650E, +,JP,AMA,Amagasaki,Amagasaki,28,1-------,AF,9907,,3444N 13525E, +,JP,AMG,Asamogawa,Asamogawa,26,1-------,AF,9907,,3541N 13501E, +,JP,AMI,Atami,Atami,22,1-------,AF,9907,,3505N 13904E, +,JP,AMJ,Amaji,Amaji,39,1-------,AF,9907,,3248N 13239E, +,JP,AMM,"Ama, Hyogo","Ama, Hyogo",28,1-------,AF,9907,,3413N 13444E, +,JP,AMR,Arimura,Arimura,46,1-------,AF,9907,,3133N 13040E, +,JP,ANA,Anan,Anan,36,1-------,AF,9907,,3355N 13440E, +,JP,ANB,Anbo,Anbo,46,1-------,AF,9907,,3019N 13039E, +,JP,ANE,Anegasaki,Anegasaki,12,1-------,AF,9907,,3529N 14001E, +,JP,ANI,Kani,Kani,21,--3-----,QQ,0701,,3526N 13704E, +,JP,ANM,Anamizu,Anamizu,17,1-------,AF,9907,,3714N 13655E, +,JP,AOE,Aoe,Aoe,35,1-------,AF,9907,,3437N 13345E, +,JP,AOG,Aogashima,Aogashima,13,1-------,AF,9907,,3228N 13946E, +,JP,AOI,Aoki,Aoki,37,1-------,AF,9907,,3422N 13342E, +,JP,AOJ,Aomori,Aomori,02,1--4----,AF,9907,,4049N 14045E, +,JP,AOK,Aokata,Aokata,42,1-------,AF,9907,,3259N 12904E, +,JP,AON,Aonae,Aonae,01,1-------,AF,9907,,4204N 13927E, +,JP,AOS,Aoshima,Aoshima,42,1-------,AF,9907,,3325N 12941E, +,JP,ARA,Arari,Arari,22,1-------,AF,9907,,3450N 13846E, +,JP,ARG,Amurogama,Amurogama,46,1-------,AF,9907,,2813N 12918E, +,JP,ARK,Arikawa,Arikawa,42,1-------,AF,9907,,3149N 13040E, +,JP,ARO,Arao,Arao,43,1-------,AF,9907,,3259N 13026E, +,JP,ARZ,Arouzu,Arouzu,38,1-------,AF,9907,,3412N 13306E, +,JP,ASA,Asa,Asa,35,1-------,AF,9907,,3404N 13111E, +,JP,ASJ,Amamioshima,Amamioshima,46,1--4----,AF,9907,,2819N 12924E, +,JP,ASK,"Akasaki, Tottori","Akasaki, Tottori",31,1-------,AF,9907,,3531N 13339E, +,JP,ASM,Asami,Asami,43,1-------,AF,9907,,3351N 13245E, +,JP,AST,Ashitoku,Ashitoku,46,1-------,AF,9907,,2826N 12937E, +,JP,ASW,Asakawa,Asakawa,36,1-------,AF,9907,,3339N 13423E, +,JP,ASZ,"Ashiya, Fukuoka","Ashiya, Fukuoka",40,1-------,AF,9907,,3354N 13040E, +,JP,ATK,Atsuki,Atsuki,35,1-------,AF,9907,,3352N 13209E, +,JP,ATM,Atsumi,Atsumi,23,1-------,AF,9907,,3439N 13704E, +,JP,ATT,Atatajima,Atatajima,34,1-------,AF,9907,,3412N 13218E, +,JP,AWA,Awa,Awa,47,1-------,AF,9907,,2637N 12755E, +,JP,AWS,Awashima,Awashima,37,1-------,AF,9907,,3416N 13338E, +,JP,AWZ,Awazu,Awazu,36,1-------,AF,9907,,3410N 13437E, +,JP,AXT,Akita,Akita,05,1--4----,AF,9907,,3943N 14006E, +,JP,AYU,Ayukawa,Ayukawa,04,1-------,AF,9907,,3344N 13531E, +,JP,AZJ,"Ajiro, Tottori","Ajiro, Tottori",31,1-------,AF,9907,,3535N 13418E, +,JP,AZU,Azu,Azu,42,1-------,AF,9907,,3506N 13700E, +,JP,BEP,"Beppu, Shimane","Beppu, Shimane",32,1-------,AF,9907,,3607N 13302E, +,JP,BOM,Boma,Boma,46,1-------,AF,9907,,2748N 12859E, +,JP,BPU,"Beppu, Oita","Beppu, Oita",44,1--4----,AF,9907,,3317N 13129E, +,JP,BYO,Byobu,Byobu,37,1-------,AF,9907,,3435N 13546E, +,JP,CHB,Chiba,Chiba,12,1-------,AF,9907,,3537N 14007E, +,JP,CHF,Chofu,Chofu,35,1-------,AF,9907,,3540N 13933E, +,JP,CHH,Chichii,Chichii,32,1-------,AF,9907,,3605N 13307E, +,JP,CHI,China,China,46,1-------,AF,9907,,2721N 12834E, +,JP,CHK,Chikubushima,Chikubushima,25,1-------,AF,0207,,3525N 13609E, +,JP,CHO,Choshi,Choshi,12,1-------,AF,9907,,3544N 14050E, +,JP,CHU,Churui,Churui,01,1-------,AF,9907,,4343N 14505E, +,JP,CKM,Chikumi,Chikumi,32,1-------,AF,9907,,3534N 13308E, +,JP,CNS,Chinase,Chinase,46,1-------,AF,9907,,2823N 12927E, +,JP,CTA,Chita,Chita,23,1-------,AF,9907,,3458N 13652E, +,JP,CTS,Chitose Apt/Sapporo,Chitose Apt/Sapporo,01,---4----,AF,9907,,4247N 14142E, +,JP,CYZ,Chiyozaki,Chiyozaki,24,1-------,AF,9907,,3440N 13529E, +,JP,DAT,Date,Date,01,1-------,AF,9907,,4228N 14052E, +,JP,DNA,Kadena,Kadena,47,---45---,AF,0006,,2622N 12746E, +,JP,DTU,Daito,Daito,42,1-------,AF,9907,,3443N 13538E, +,JP,EGS,Eigashima,Eigashima,28,1-------,AF,9907,,3441N 13455E, +,JP,EII,Ei,Ei,28,1-------,AF,9907,,3428N 13449E, +,JP,EIS,Eishi,Eishi,46,1-------,AF,9907,,3149N 12952E, +,JP,EJM,Ejima,Ejima,37,1-------,AF,9907,,3428N 13360E, +,JP,EKZ,Enokizu,Enokizu,42,1-------,AF,9907,,3312N 13023E, +,JP,EMM,Erimo,Erimo,01,1-------,AF,9907,,4201N 14309E, +,JP,ENA,Ena,Ena,07,1-------,AF,9907,,3527N 13725E, +,JP,ENN,En,En,46,1-------,AF,9907,,2828N 12935E, +,JP,ENR,"Enoura, Kagawa","Enoura, Kagawa",37,1-------,AF,9907,,3422N 13343E, +,JP,ESI,Esashi/Hiyama,Esashi/Hiyama,01,1-------,AF,9907,,4152N 14008E, +,JP,ESK,Esaki,Esaki,35,1-------,AF,9907,,3439N 13139E, +,JP,ESM,Eshima,Eshima,32,1-------,AF,9907,,3531N 13312E, +,JP,ESS,Esashi/Soya,Esashi/Soya,01,1-------,AF,9907,,4152N 14008E, +,JP,ETA,Etajima,Etajima,34,1-------,AF,9907,,3410N 13228E, +,JP,ETM,Etomo,Etomo,32,1-------,AF,9907,,3532N 13259E, +,JP,EZA,Ezaki,Ezaki,47,1-------,AF,9907,,3437N 13358E, +,JP,FAE,"Fukae, Nagasaki","Fukae, Nagasaki",42,1-------,AF,9907,,3318N 12938E, +,JP,FCM,Fuchinomoto,Fuchinomoto,42,1-------,AF,9907,,3246N 12839E, +,JP,FGW,Futagawa,Futagawa,46,1-------,AF,9907,,3135N 13048E, +,JP,FHR,Furubira,Furubira,01,1-------,AF,9907,,4316N 14038E, +,JP,FJN,Fujino,Fujino,46,1-------,AF,9907,,3137N 13038E, +,JP,FKA,Fukaya,Fukaya,11,-2------,AF,9907,,3612N 13917E, +,JP,FKD,Fukuda,Fukuda,34,1-------,AF,9907,,3427N 13233E, +,JP,FKE,"Fukue, Aichi","Fukue, Aichi",23,1-------,AF,9907,,3509N 13655E, +,JP,FKH,"Fukae, Hiroshima","Fukae, Hiroshima",34,1-------,AF,9907,,3410N 13227E, +,JP,FKI,Fukai,Fukai,33,1-------,AF,9907,,2427N 12413E, +,JP,FKJ,Fukui,Fukui,18,1-------,AF,9907,,3604N 13614E, +,JP,FKK,"Fukaura, Aomori","Fukaura, Aomori",02,1-------,AF,9907,,4039N 13956E, +,JP,FKR,"Fukaura, Ehime","Fukaura, Ehime",38,1-------,AF,9907,,3257N 13235E, +,JP,FKW,Furukawa,Furukawa,04,-23-----,AF,9907,,3512N 14003E, +,JP,FKY,"Fukuyama, Hiroshima","Fukuyama, Hiroshima",34,1-------,AF,9907,,3429N 13322E, +,JP,FMD,Futamado,Futamado,43,1-------,AF,9907,,3225N 13024E, +,JP,FMT,"Futamata, Kagoshima","Futamata, Kagoshima",46,1-------,AF,9907,,3137N 13039E, +,JP,FNB,Funabashi,Funabashi,12,1-------,AF,9907,,3542N 13959E, +,JP,FND,Funadomari,Funadomari,01,1-------,AF,9907,,4416N 14522E, +,JP,FNK,Funagawa,Funagawa,05,1-------,AF,9907,,3953N 13951E, +,JP,FNR,Funaura,Funaura,47,1-------,AF,9907,,2424N 12348E, +,JP,FNS,Funakoshi,Funakoshi,38,1-------,AF,9907,,3416N 13310E, +,JP,FNU,Funauki,Funauki,47,1-------,AF,9907,,2420N 12344E, +,JP,FRA,"Fukura, Hyogo","Fukura, Hyogo",28,1-------,AF,9907,,3416N 13442E, +,JP,FRK,Furuike,Furuike,28,1-------,AF,9907,,3444N 13420E, +,JP,FRM,"Furue, Miyazaki","Furue, Miyazaki",45,1-------,AF,9907,,3243N 13149E, +,JP,FRS,"Furusato, Nagasaki","Furusato, Nagasaki",42,1-------,AF,9907,,3440N 12928E, +,JP,FSH,Funakakushi,Funakakushi,37,1-------,AF,9907,,4131N 14022E, +,JP,FSK,Fushiki,Fushiki,16,1-------,AF,9907,,3629N 13715E, +,JP,FTG,Futago,Futago,32,1-------,AF,9907,,3530N 13310E, +,JP,FTM,Futenma,Futenma,47,1-------,AF,9907,,2618N 12746E, +,JP,FUE,Fuke,Fuke,27,1-------,AF,9907,,3419N 13509E, +,JP,FUI,Fuji,Fuji,22,--3-----,AF,9907,,3510N 13841E, +,JP,FUM,Fukami,Fukami,43,1-------,AF,9907,,3215N 13048E, +,JP,FUO,Fukuro,Fukuro,30,1-------,AF,9907,,3644N 13852E, +,JP,FUR,"Fukuura, Ehime","Fukuura, Ehime",38,1-------,AF,9907,,3255N 13230E, +,JP,FUS,Fushimi-Ku,Fushimi-Ku,26,--3-----,RL,1107,,3457N 13546E, +,JP,FUT,Futajima,Futajima,40,--3-----,AF,9907,,3354N 13045E, +,JP,FUW,Fukawa,Fukawa,35,1-------,AF,9907,,3602N 13947E, +,JP,FYM,"Fukuyama, Kagoshima","Fukuyama, Kagoshima",46,1-------,AF,9907,,3140N 13051E, +,JP,GAJ,Yamagata,Yamagata,06,---4----,AF,9907,,3815N 14020E, +,JP,GAM,Gamagori,Gamagori,23,1-------,AF,9907,,3450N 13714E, +,JP,GIF,Gifu,Gifu,21,--3-----,AF,0006,QGU,3525N 13646E, +,JP,GKN,Gokan,Gokan,33,1-------,AF,9907,,3432N 13359E, +,JP,GKS,Gokasho,Gokasho,24,1-------,AF,9907,,3433N 13543E, +,JP,GNG,Gunge,Gunge,28,1-------,AF,9907,,3505N 13513E, +,JP,GNW,Ginowan,Ginowan,47,1-------,AF,9907,,2617N 12747E, +,JP,GOI,Goi/Ichihara,Goi/Ichihara,12,1-------,AF,9907,,3527N 14023E, +,JP,GON,Gonoura,Gonoura,42,1-------,AF,9907,,3345N 12941E, +,JP,HAA,Hami,Hami,46,1-------,AF,9907,,3120N 13102E, +,JP,HAC,Hachijojima,Hachijojima,13,---4----,AF,9907,,3306N 13948E, +,JP,HAD,Heda,Heda,22,1-------,AF,9907,,3537N 13428E, +,JP,HAG,Hagi,Hagi,35,1-------,AF,9907,,3424N 13124E, +,JP,HAH,Hashima,Hashima,35,1-------,AF,9907,,3402N 13223E, +,JP,HAI,Haiki,Haiki,42,1-------,AF,9907,,3308N 12948E, +,JP,HAM,Hamasarufutsu,Hamasarufutsu,01,1-------,AF,9907,,4516N 14214E, +,JP,HAN,Hannan,Hannan,27,1-------,AF,9907,,3422N 13514E, +,JP,HAR,Hara,Hara,42,1-------,AF,9907,,3558N 13815E, +,JP,HAS,Hashihama,Hashihama,38,1-------,AF,9907,,3406N 13258E, +,JP,HBA,Haibara,Haibara,22,--3-----,AF,9907,,3432N 13557E, +,JP,HBB,"Habu, Yamaguchi","Habu, Yamaguchi",35,1-------,AF,9907,,3403N 13105E, +,JP,HBO,Haboro,Haboro,01,1-------,AF,9907,,4422N 14142E, +,JP,HDA,Handa,Handa,23,1-------,AF,9907,,3454N 13656E, +,JP,HDK,Hidaka,Hidaka,30,1-------,AF,9907,,3356N 13508E, +,JP,HDO,Himedo,Himedo,43,1-------,AF,9907,,3226N 13025E, +,JP,HEA,Hiketa,Hiketa,37,1-------,AF,9907,,3414N 13424E, +,JP,HED,Hetono,Hetono,46,1-------,AF,9907,,2749N 12854E, +,JP,HEI,Henza,Henza,47,1-------,AF,9907,,2621N 12758E, +,JP,HET,Heta,Heta,46,1-------,AF,9907,,3110N 13046E, +,JP,HGU,Hirugaura,Hirugaura,42,1-------,AF,9907,,3419N 12917E, +,JP,HHE,Hachinohe,Hachinohe,02,1--4----,AF,9907,,4031N 14129E, +,JP,HHR,Higashiharima,Higashiharima,28,1-------,AF,9907,,3442N 13449E, +,JP,HIA,Hiagari/Kitakiushu,Hiagari/Kitakiushu,40,1-------,AF,9907,,3354N 13052E, +,JP,HIB,Hibi,Hibi,33,1-------,AF,9907,,3427N 13355E, +,JP,HIC,Hitachinaka,Hitachinaka,08,1-------,AF,9907,,3624N 14032E, +,JP,HIE,Hikone,Hikone,25,1-------,AF,9907,,3515N 13613E, +,JP,HIJ,Hiroshima,Hiroshima,34,1--4----,AF,9907,,3424N 13227E, +,JP,HIK,Hiki,Hiki,30,1-------,AF,9907,,3334N 13526E, +,JP,HIM,Himeji,Himeji,28,1-------,AF,9907,,3449N 13441E, +,JP,HIN,Hinase,Hinase,33,1-------,AF,9907,,3444N 13415E, +,JP,HIR,Hiroo,Hiroo,01,1-------,AF,9907,,4217N 14319E, +,JP,HIS,Hikoshima,Hikoshima,35,1-------,AF,9907,,3356N 13055E, +,JP,HJA,Honjima,Honjima,37,1-------,AF,9907,,3423N 13346E, +,JP,HJI,Hiji,Hiji,44,1-------,AF,9907,,3322N 13132E, +,JP,HJM,Hamajima,Hamajima,24,1-------,AF,9907,,3418N 13645E, +,JP,HJO,Hojo,Hojo,38,1-------,AF,9907,,3359N 13247E, +,JP,HKD,Hakodate,Hakodate,01,1--4----,AF,9907,,4146N 14044E, +,JP,HKI,Hikami,Hikami,28,--3-----,AF,9907,,3511N 13503E, +,JP,HKJ,Hamasaka,Hamasaka,28,1-------,AF,9907,,3538N 13427E, +,JP,HKK,Hyakkan,Hyakkan,43,1-------,AF,9907,,3418N 13317E, +,JP,HKM,Honkushima,Honkushima,38,1-------,AF,9907,,3313N 13231E, +,JP,HKN,Hekinan,Hekinan,23,1-------,AF,9907,,3452N 13659E, +,JP,HKR,Hikari,Hikari,35,1-------,AF,9907,,3358N 13157E, +,JP,HMA,Hishima,Hishima,35,1-------,AF,9907,,3429N 13123E, +,JP,HMC,Hamochi,Hamochi,15,1-------,AF,9907,,3752N 13819E, +,JP,HMD,Hamada,Hamada,32,1-------,AF,9907,,3454N 13205E, +,JP,HMG,Hamaguri,Hamaguri,38,1-------,AF,9907,,3313N 13232E, +,JP,HMH,Himeshima,Himeshima,44,1-------,AF,9907,,3343N 13139E, +,JP,HMI,Hatami,Hatami,34,1-------,AF,9907,,3411N 13233E, +,JP,HMJ,Himi,Himi,16,1-------,AF,9907,,3652N 13658E, +,JP,HMK,Himekawa,Himekawa,15,1-------,AF,9907,,4204N 14035E, +,JP,HMM,Hamamatsu,Hamamatsu,22,1-------,AF,9907,,3443N 13744E, +,JP,HMN,Hamana,Hamana,22,1-------,AF,9907,,3449N 13747E, +,JP,HMW,Hamawaki,Hamawaki,42,1-------,AF,9907,,3316N 13129E, +,JP,HMX,Hamasaki,Hamasaki,47,1-------,AF,9907,,3336N 13142E, +,JP,HNA,Hanamaki,Hanamaki,03,---4----,AF,9907,,3923N 14107E, +,JP,HND,Haneda Apt/Tokyo,Haneda Apt/Tokyo,13,---4----,AF,9907,,3533N 13947E, +,JP,HNE,Hane,Hane,44,1-------,AF,9907,,3339N 13131E, +,JP,HNG,Hinagu,Hinagu,43,1-------,AF,9907,,3226N 13035E, +,JP,HNJ,"Honjo, Kyoto","Honjo, Kyoto",26,1-------,AF,9907,,3516N 13524E, +,JP,HNK,Hanasaki,Hanasaki,01,1-------,AF,9907,,4317N 14535E, +,JP,HNN,Honmoku,Honmoku,14,1-3-----,AF,9907,,3524N 13941E, +,JP,HNO,Hadano,Hadano,14,--3-----,AF,9907,,3522N 13915E, +,JP,HNS,Hinoshima,Hinoshima,43,1-------,AF,9907,,3223N 13025E, +,JP,HNY,Hanyu,Hanyu,32,1-------,AF,9907,,3529N 13310E, +,JP,HOD,Hondo,Hondo,43,1-------,AF,9907,,3518N 13639E, +,JP,HON,"Honjo, Akita","Honjo, Akita",05,1-------,AF,9907,,4008N 14021E, +,JP,HOS,"Hoshika, Saga","Hoshika, Saga",41,1-------,AF,9907,,3327N 12947E, +,JP,HPP,Hoppozaki,Hoppozaki,46,1-------,AF,9907,,3213N 13007E, +,JP,HRA,Hirao,Hirao,35,1-------,AF,9907,,3356N 13204E, +,JP,HRD,Hirado,Hirado,42,1-------,AF,9907,,3322N 12933E, +,JP,HRE,Horie,Horie,38,1-------,AF,9907,,3135N 13034E, +,JP,HRH,Hirohata,Hirohata,28,1-------,AF,9907,,3447N 13524E, +,JP,HRJ,Hirai,Hirai,35,1-------,AF,9907,,3409N 13128E, +,JP,HRK,Hirakata,Hirakata,08,1-------,AF,9907,,3449N 13540E, +,JP,HRM,Haramachi,Haramachi,07,1-------,AF,9907,,3740N 14101E, +,JP,HRO,Hiro,Hiro,34,1-------,AF,9907,,3415N 13650E, +,JP,HRR,Hirara,Hirara,47,1-------,AF,9907,,2456N 12514E, +,JP,HRS,Hirase,Hirase,43,1-------,AF,9907,,3346N 13535E, +,JP,HRW,Hiraiwa,Hiraiwa,45,1-------,AF,9907,,3223N 13137E, +,JP,HSH,Hashi,Hashi,32,1-------,AF,9907,,3605N 13301E, +,JP,HSK,Hamasako,Hamasako,42,1-------,AF,9907,,3244N 12839E, +,JP,HSM,Hososhima,Hososhima,45,1-------,AF,9907,,3225N 13140E, +,JP,HSN,Hisanohama,Hisanohama,07,1-------,AF,9907,,3709N 14100E, +,JP,HSR,Hashirajima,Hashirajima,35,1-------,AF,9907,,3401N 13225E, +,JP,HSS,Hase,Hase,46,1-------,AF,9907,,3526N 13412E, +,JP,HSU,Hamasuki,Hamasuki,46,1-------,AF,9907,,3212N 13007E, +,JP,HSW,Hirasawa,Hirasawa,05,1-------,AF,9907,,3918N 13958E, +,JP,HTC,Hitachi,Hitachi,08,1-------,AF,9907,,3636N 14039E, +,JP,HTK,Hitakatsu,Hitakatsu,42,1-------,AF,9907,,3439N 12928E, +,JP,HTM,"Futami, Tokyo","Futami, Tokyo",13,1-------,AF,9907,,2706N 14212E, +,JP,HTS,Hitsushima,Hitsushima,35,1-------,AF,9907,,3431N 13123E, +,JP,HTT,Hata,Hata,33,1-------,AF,9907,,3529N 13532E, +,JP,HUD,Hoda,Hoda,32,1-------,AF,9907,,3546N 14031E, +,JP,HUR,Hannoura,Hannoura,17,1-------,AF,9907,,3530N 13611E, +,JP,HUT,"Futami, Niigata","Futami, Niigata",15,1-------,AF,9907,,3759N 13815E, +,JP,HYK,Hayakawa,Hayakawa,38,1-------,AF,9907,,3524N 13822E, +,JP,HYM,Hayama,Hayama,14,1-------,AF,9907,,3516N 13936E, +,JP,HYR,Hyakunoura,Hyakunoura,38,1-------,AF,9907,,3313N 13232E, +,JP,HYS,Hisayoshi,Hisayoshi,38,1-------,AF,9907,,3257N 13233E, +,JP,HYT,Hayato,Hayato,46,1-------,AF,9907,,3728N 13936E, +,JP,IBR,Iburi,Iburi,39,1-------,AF,9907,,3248N 13258E, +,JP,IBS,Ibusuki,Ibusuki,46,1-------,AF,9907,,3115N 13038E, +,JP,ICH,Ichihara,Ichihara,12,1-------,AF,9907,,3530N 14007E, +,JP,ICK,Ichikawa,Ichikawa,12,1-------,AF,9907,,3544N 13956E, +,JP,IDA,Iida,Iida,17,1-------,AF,9907,,3726N 13716E, +,JP,IER,Ieura,Ieura,37,1-------,AF,9907,,3429N 13403E, +,JP,IGO,Igo,Igo,32,1-------,AF,9907,,3620N 13316E, +,JP,IHA,Niihama,Niihama,38,1--4----,AF,9907,,3358N 13317E, +,JP,IHO,Ihota,Ihota,35,1-------,AF,9907,,3356N 13226E, +,JP,IIB,Iibi,Iibi,32,1-------,AF,9907,,3618N 13320E, +,JP,IIN,Nishinoomote,Nishinoomote,46,1--4----,AF,9907,,3044N 13060E, +,JP,IKA,"Ikeda, Kagawa","Ikeda, Kagawa",37,1-------,AF,9907,,3429N 13414E, +,JP,IKC,Ikuchi,Ikuchi,34,1-------,AF,9907,,3417N 13307E, +,JP,IKD,"Ikeda, Wakayama","Ikeda, Wakayama",30,1-------,AF,9907,,3344N 13560E, +,JP,IKE,Ikeshima,Ikeshima,42,1-------,AF,9907,,3255N 13241E, +,JP,IKI,Iki,Iki,42,---4----,AF,9907,,3345N 12941E, +,JP,IKJ,Isshiki,Isshiki,23,1-------,AF,9907,,3705N 14024E, +,JP,IKN,Ikina,Ikina,38,1-------,AF,9907,,3416N 13311E, +,JP,IKR,Ikara,Ikara,46,1-------,AF,9907,,3213N 13012E, +,JP,IKT,Ikata,Ikata,38,1-------,AF,9907,,3329N 13221E, +,JP,IKU,Ikunohama,Ikunohama,37,1-------,AF,9907,,3423N 13346E, +,JP,IMA,Imafuku,Imafuku,42,1-------,AF,9907,,3531N 13511E, +,JP,IMB,Imabari,Imabari,38,1-------,AF,9907,,3404N 13260E, +,JP,IMI,Imari,Imari,41,1-------,AF,9907,,3316N 12953E, +,JP,IMM,Imi,Imi,44,1-------,AF,9907,,3341N 13136E, +,JP,IMT,Imazato,Imazato,42,1-------,AF,9907,,3417N 12913E, +,JP,IMZ,Imazu,Imazu,38,1-------,AF,9907,,3611N 13318E, +,JP,INA,Ina,Ina,42,1-------,AF,9907,,3434N 12919E, +,JP,INE,Ine,Ine,26,1-------,AF,9907,,3543N 13515E, +,JP,ING,Inugaura,Inugaura,42,1-------,AF,9907,,3432N 12920E, +,JP,INO,Inobe,Inobe,46,1-------,AF,9907,,2725N 12839E, +,JP,INZ,Inujima,Inujima,33,1-------,AF,9907,,3434N 13406E, +,JP,ISA,Issai,Issai,39,1-------,AF,9907,,3247N 13238E, +,JP,ISB,Ishiba,Ishiba,37,1-------,AF,9907,,3500N 13553E, +,JP,ISC,Ishiwaki,Ishiwaki,31,1-------,AF,9907,,3531N 13357E, +,JP,ISD,Ishida,Ishida,42,1-------,AF,9907,,3240N 13020E, +,JP,ISE,Ise,Ise,24,1-------,AF,9907,,3430N 13644E, +,JP,ISH,Ishima,Ishima,33,1-------,AF,9907,,3430N 13401E, +,JP,ISI,Ishikari,Ishikari,01,1-------,AF,9907,,4310N 14119E, +,JP,ISK,Iseki,Iseki,46,1-------,AF,9907,,3046N 13104E, +,JP,ISM,Ishinomaki,Ishinomaki,04,1-------,AF,9907,,3826N 14118E, +,JP,ISX,Isozaki,Isozaki,08,1-------,AF,9907,,3823N 14105E, +,JP,ISY,Isahaya,Isahaya,42,1-------,AF,9907,,3251N 13003E, +,JP,ITK,Itako,Itako,08,1-------,AF,9907,,3557N 14033E, +,JP,ITS,Itsukushima,Itsukushima,34,1-------,AF,9907,,3416N 13219E, +,JP,IUH,"Inokuchi, Ehime","Inokuchi, Ehime",38,1-------,AF,9907,,3416N 13302E, +,JP,IWG,"Iwagi,Ehime","Iwagi,Ehime",38,1-------,AF,9907,,3416N 13309E, +,JP,IWH,Iwafune,Iwafune,15,1-------,AF,9907,,3620N 13938E, +,JP,IWI,Iwaki,Iwaki,07,1-------,AF,9907,,3703N 14053E, +,JP,IWK,Iwakuni,Iwakuni,35,1-------,AF,9907,,3410N 13213E, +,JP,IWN,Iwanai,Iwanai,01,1-------,AF,9501,,4259N 14031E, +,JP,IWO,"Iwojima, Tokyo","Iwojima, Tokyo",13,---4----,AF,9907,,2447N 14119E, +,JP,IWY,Iwaya,Iwaya,28,1-------,AF,9907,,3447N 13527E, +,JP,IYA,Iya,Iya,32,1-------,AF,9907,,3526N 13309E, +,JP,IYM,Iyomishima,Iyomishima,38,1-------,AF,9907,,3359N 13333E, +,JP,IYO,Iyo,Iyo,38,1-------,AF,9907,,3345N 13242E, +,JP,IZH,Izuhara,Izuhara,42,1-------,AF,9907,,3412N 12917E, +,JP,IZI,"Izumi, Nagasaki","Izumi, Nagasaki",42,1-------,AF,9907,,3248N 12952E, +,JP,IZM,"Izumi, Aichi","Izumi, Aichi",23,1-------,AF,9907,,3511N 13655E, +,JP,IZO,Izumo,Izumo,32,1--4----,AF,9907,,3522N 13245E, +,JP,IZS,Izumisano,Izumisano,27,1-------,AF,9907,,3424N 13519E, +,JP,JKT,Kotoura,Kotoura,33,1-------,AF,9907,,3530N 13342E, +,JP,JKW,Jokawauchi,Jokawauchi,46,1-------,AF,9907,,3208N 13008E, +,JP,KAA,Kada,Kada,30,1-------,AF,9907,,3417N 13505E, +,JP,KAC,Kasaura,Kasaura,32,1-------,AF,9907,,3535N 13308E, +,JP,KAD,Kaita,Kaita,34,1-------,AF,9907,,3422N 13233E, +,JP,KAI,Kainan,Kainan,30,1-------,AF,9907,,3409N 13513E, +,JP,KAJ,"Kama, Shimane","Kama, Shimane",32,1-------,AF,9907,,3614N 13322E, +,JP,KAM,Kametoku,Kametoku,46,1-------,AF,9907,,2745N 12901E, +,JP,KAN,Karuno,Karuno,08,1-------,AF,9907,,3510N 13615E, +,JP,KAO,Kashino,Kashino,33,1-------,AF,9907,,3437N 13408E, +,JP,KAR,Karatsu,Karatsu,41,1-------,AF,9907,,3327N 12958E, +,JP,KAT,"Katsuura, Wakayama","Katsuura, Wakayama",30,1-------,AF,9907,,3338N 13556E, +,JP,KAW,Kawauchi,Kawauchi,02,1-------,AF,9907,,3720N 14049E, +,JP,KAX,Komoe,Komoe,28,1-------,AF,9907,,3501N 13460E, +,JP,KAZ,Kaizaki,Kaizaki,32,1-------,AF,9907,,3260N 13153E, +,JP,KBK,Kafuka,Kafuka,01,1-------,AF,9907,,3458N 13610E, +,JP,KBM,Kabashima,Kabashima,42,1-------,AF,9907,,3246N 12860E, +,JP,KBR,Kubura,Kubura,47,1-------,AF,9907,,2427N 12257E, +,JP,KBU,Kubuki,Kubuki,42,1-------,AF,9907,,3151N 13027E, +,JP,KCF,Kuchinofukuura,Kuchinofukuura,46,1-------,AF,9907,,3212N 13009E, +,JP,KCH,"Kawachi, Kumamoto","Kawachi, Kumamoto",43,1-------,AF,9907,,3250N 13036E, +,JP,KCZ,Kochi,Kochi,39,1--4----,AF,9907,,3334N 13332E, +,JP,KDA,Kishiwada,Kishiwada,27,1-------,AF,9907,,3428N 13523E, +,JP,KDI,Kodai,Kodai,42,1-------,AF,9907,,3430N 13529E, +,JP,KDR,Katadomari,Katadomari,46,1-------,AF,9907,,3050N 12955E, +,JP,KDX,Kita/Minamidaito,Kita/Minamidaito,47,1-------,AF,9907,,2552N 13114E, +,JP,KEC,Kechi,Kechi,42,1-------,AF,9907,,3416N 12919E, +,JP,KEG,Kegoya,Kegoya,34,1-------,AF,9907,,3413N 13233E, +,JP,KEJ,Keraji,Keraji,46,1-------,AF,9907,,2818N 12959E, +,JP,KER,Kakeroma,Kakeroma,46,1-------,AF,9907,,2808N 12914E, +,JP,KGA,Kakogawa,Kakogawa,28,1-------,AF,9907,,3447N 13451E, +,JP,KGB,Kuka,Kuka,35,1-------,AF,9907,,3357N 13215E, +,JP,KGC,Koguchi,Koguchi,42,1-------,AF,9907,,3647N 14009E, +,JP,KGI,Kasugai,Kasugai,23,--3-----,AF,9907,,3516N 13700E, +,JP,KGM,Kagami,Kagami,43,1-------,AF,9907,,3235N 13039E, +,JP,KGO,Kumago,Kumago,38,1-------,AF,9907,,3413N 13304E, +,JP,KGR,Kamagari,Kamagari,34,1-------,AF,9907,,3411N 13240E, +,JP,KGT,Kaigata,Kaigata,46,1-------,AF,9907,,3132N 13045E, +,JP,KGU,Kanegusuku,Kanegusuku,47,1-------,AF,9907,,2612N 12744E, +,JP,KHM,"Ohama, Kagoshima","Ohama, Kagoshima",46,1-------,AF,9907,,3144N 13041E, +,JP,KHR,Kihara,Kihara,34,1-------,AF,9907,,3601N 14017E, +,JP,KHS,Kurahashi,Kurahashi,34,1-------,AF,9907,,3408N 13232E, +,JP,KIB,Kibe,Kibe,44,1-------,AF,9907,,3333N 13116E, +,JP,KII,Kiire,Kiire,46,1-------,AF,9907,,3122N 13033E, +,JP,KIJ,Niigata,Niigata,15,1-------,AF,9907,,3755N 13902E, +,JP,KIK,Kikuma,Kikuma,38,1-------,AF,9907,,3402N 13251E, +,JP,KIN,Kinwan,Kinwan,47,1-------,AF,9907,,2624N 12755E, +,JP,KIR,"Kitaura, Ehime","Kitaura, Ehime",38,1-------,AF,9907,,3327N 13231E, +,JP,KIS,Kamaishi,Kamaishi,03,1-------,AF,9907,,3917N 14153E, +,JP,KIW,Kisawa,Kisawa,37,1-------,AF,9907,,3422N 13355E, +,JP,KIX,Kansai Int Apt,Kansai Int Apt,27,---4----,AF,9907,,3426N 13514E, +,JP,KIY,Koriyama,Koriyama,07,-23-----,AF,0105,,3724N 14020E, +,JP,KJD,Kudadon,Kudadon,46,1-------,AF,9907,,2814N 12912E, +,JP,KJI,"Kuji, Iwate","Kuji, Iwate",03,1-------,AF,9907,,4011N 14147E, +,JP,KJJ,Koshima,Koshima,46,1-------,AF,9907,,3014N 13032E, +,JP,KJK,Kajiki,Kajiki,46,1-------,AF,9907,,3222N 13039E, +,JP,KJN,Kannonji,Kannonji,37,1-------,AF,9907,,3408N 13339E, +,JP,KJO,Kinjo,Kinjo,23,1-------,AF,9907,,3512N 13654E, +,JP,KJP,Kerama,Kerama,47,---4----,AF,9907,,2614N 12722E, +,JP,KJR,Kiriishi,Kiriishi,46,1-------,AF,9907,,3528N 13826E, +,JP,KJT,"Kitaura, Akita","Kitaura, Akita",05,1-------,AF,9907,,3956N 13947E, +,JP,KKA,Karakuma,Karakuma,46,1-------,AF,9907,,3207N 13007E, +,JP,KKB,Kokubo,Kokubo,38,1-------,AF,9907,,3440N 13457E, +,JP,KKE,Komukae,Komukae,42,1-------,AF,9907,,3451N 13655E, +,JP,KKI,Komaki,Komaki,23,--3-----,AF,9907,,3518N 13656E, +,JP,KKK,Kushiku,Kushiku,44,1-------,AF,9907,,3340N 13137E, +,JP,KKM,Katakami,Katakami,33,1-------,AF,9907,,3445N 13411E, +,JP,KKR,Kouri,Kouri,47,1-------,AF,9907,,2642N 12801E, +,JP,KKT,Kamikatetsu,Kamikatetsu,46,1-------,AF,9907,,2817N 12957E, +,JP,KKU,"Kuji, Kagoshima","Kuji, Kagoshima",46,1-------,AF,9907,,2814N 12916E, +,JP,KKW,Kanokawa,Kanokawa,34,1-------,AF,9907,,3412N 13227E, +,JP,KKZ,Kashikojima,Kashikojima,24,1-------,AF,9907,,3418N 13649E, +,JP,KMA,Kama,Kama,35,0-------,RL,9907,,3417N 13116E, +,JP,KMD,Komoda,Komoda,42,1-------,AF,9907,,3414N 12912E, +,JP,KME,Kamae,Kamae,44,1-------,AF,9907,,3249N 13154E, +,JP,KMG,Kumagaya,Kumagaya,11,--3-----,AF,9907,,3609N 13923E, +,JP,KMI,"Miyazaki, Miyazaki","Miyazaki, Miyazaki",45,1--4----,AF,9907,,3154N 13125E, +,JP,KMJ,Kumamoto,Kumamoto,43,1--4----,AF,9907,,3247N 13044E, +,JP,KMK,Kaminokae,Kaminokae,39,1-------,AF,9907,,3317N 13314E, +,JP,KMN,Kominato,Kominato,02,1-------,AF,9907,,4055N 14058E, +,JP,KMO,Kamo,Kamo,06,1-------,AF,9907,,3740N 13902E, +,JP,KMQ,"Komatsu, Ishikawa","Komatsu, Ishikawa",17,---4----,AF,9907,,3624N 13627E, +,JP,KMT,Kimitsu,Kimitsu,12,1-------,AF,9907,,3520N 13954E, +,JP,KMU,Kamiura,Kamiura,38,1-------,AF,9907,,3415N 13303E, +,JP,KMW,Kamikawaguchi,Kamikawaguchi,39,1-------,AF,9907,,3302N 13303E, +,JP,KMX,"Komatsu, Yamaguchi","Komatsu, Yamaguchi",35,1-------,AF,9907,,3356N 13212E, +,JP,KNA,Kuwana,Kuwana,24,1-------,AF,9907,,3504N 13641E, +,JP,KND,"Kanda, Fukuoka","Kanda, Fukuoka",40,1-------,AF,9907,,3347N 13059E, +,JP,KNE,Kinoe,Kinoe,34,1-------,AF,9907,,3414N 13255E, +,JP,KNH,Kunehama,Kunehama,42,1-------,AF,9907,,3410N 12911E, +,JP,KNK,Kinkasan,Kinkasan,04,1-------,AF,9907,,3817N 14134E, +,JP,KNN,Kin,Kin,42,1-------,AF,9907,,3433N 12928E, +,JP,KNO,Konoura,Konoura,05,1-------,AF,9907,,3915N 13955E, +,JP,KNS,Kunisaki,Kunisaki,44,1-------,AF,9907,,3334N 13144E, +,JP,KNT,Kinomoto,Kinomoto,24,1-------,AF,9907,,3416N 13508E, +,JP,KNU,Kinuura,Kinuura,23,1-------,AF,9907,,3452N 13657E, +,JP,KNY,Koniya,Koniya,46,1-------,AF,9907,,2809N 12919E, +,JP,KNZ,Kanazawa,Kanazawa,17,1-------,AF,9907,,3634N 13639E, +,JP,KOB,Koza,Koza,30,1-------,AF,9907,,3331N 13550E, +,JP,KOD,"Kodomari, Aomori","Kodomari, Aomori",02,1-------,AF,9907,,4108N 14018E, +,JP,KOF,Konan,Konan,07,1-------,AF,9907,,3521N 13652E, +,JP,KOG,"Kogushi, Okayama","Kogushi, Okayama",33,1-------,AF,9907,,3435N 13402E, +,JP,KOI,Koike/Uwajima,Koike/Uwajima,38,1-------,AF,9907,,3519N 13757E, +,JP,KOJ,Kagoshima,Kagoshima,46,1--4----,AF,9907,,3136N 13033E, +,JP,KOM,Komatsushima,Komatsushima,36,1-------,AF,9907,,3400N 13435E, +,JP,KON,Konoshima,Konoshima,33,1-------,AF,9907,,3428N 13330E, +,JP,KOS,Kose,Kose,37,1-------,AF,9907,,3425N 13545E, +,JP,KOX,Kaminoseki,Kaminoseki,35,1-------,AF,9907,,3350N 13207E, +,JP,KOZ,Kozuna,Kozuna,42,1-------,AF,9907,,3425N 12917E, +,JP,KRA,Kannoura,Kannoura,39,1-------,AF,9907,,3333N 13418E, +,JP,KRB,Karubi,Karubi,32,1-------,AF,9907,,3534N 13318E, +,JP,KRD,Kuroda,Kuroda,32,1-------,AF,9907,,3434N 13547E, +,JP,KRE,"Kure, Hiroshima","Kure, Hiroshima",34,1-------,AF,9907,,3415N 13234E, +,JP,KRH,Kurihama,Kurihama,14,1-------,AF,9907,,3514N 13942E, +,JP,KRI,Kurio,Kurio,46,1-------,AF,9907,,3016N 13026E, +,JP,KRJ,"Kuroshima, Okinawa","Kuroshima, Okinawa",47,1-------,AF,9907,,2414N 12401E, +,JP,KRM,Kurokami,Kurokami,46,1-------,AF,9907,,3153N 13000E, +,JP,KRS,Kurushima,Kurushima,38,1-------,AF,9907,,3407N 13258E, +,JP,KRT,Kiritappu,Kiritappu,01,1-------,AF,9907,,4305N 14508E, +,JP,KRX,Kuroi,Kuroi,45,1-------,AF,9907,,3510N 13506E, +,JP,KSA,Kasaoka,Kasaoka,33,1-------,AF,9907,,3430N 13330E, +,JP,KSB,Kusubo,Kusubo,42,1-------,AF,9907,,3418N 12922E, +,JP,KSC,"Kashima, Saga","Kashima, Saga",41,1-------,AF,9907,,3306N 13006E, +,JP,KSD,Kasado,Kasado,35,1-------,AF,9907,,3357N 13151E, +,JP,KSE,Kamoise,Kamoise,42,1-------,AF,9907,,3420N 12923E, +,JP,KSH,Kishiku,Kishiku,42,1-------,AF,9907,,3245N 12846E, +,JP,KSI,Katsuta,Katsuta,08,--3-----,AF,9907,,3623N 14034E, +,JP,KSK,Kurosaki,Kurosaki,40,1-------,AF,9907,,3352N 13046E, +,JP,KSM,"Kashima, Ibaraki","Kashima, Ibaraki",08,1-------,AF,9907,,3558N 14039E, +,JP,KSN,Kesennuma,Kesennuma,04,1-------,AF,9907,,3854N 14134E, +,JP,KSR,Kishira,Kishira,46,1-------,AF,9907,,3114N 13100E, +,JP,KSW,"Kashiwa, Ehime","Kashiwa, Ehime",38,1-------,AF,9907,,3301N 13230E, +,JP,KSY,"Kasasa, Yamaguchi","Kasasa, Yamaguchi",35,1-------,AF,9907,,3357N 13210E, +,JP,KTG,Kutsugata,Kutsugata,01,1-------,AF,9907,,4512N 14109E, +,JP,KTK,Kataku,Kataku,44,1-------,AF,9907,,3338N 13130E, +,JP,KTS,Katashima,Katashima,39,1-------,AF,9907,,3255N 13242E, +,JP,KTX,Kita/Kitadaito,Kita/Kitadaito,47,1-------,AF,9907,,2552N 13114E, +,JP,KTZ,Kata,Kata,24,1-------,AF,9907,,3942N 14040E, +,JP,KUC,Kuchinotsu,Kuchinotsu,42,1-------,AF,9907,,3236N 13011E, +,JP,KUD,Kudamatsu,Kudamatsu,35,1-------,AF,9907,,3401N 13152E, +,JP,KUE,"Kure, Kochi","Kure, Kochi",39,1-------,AF,9907,,3320N 13314E, +,JP,KUF,Kofu,Kofu,19,123--6--,RL,0601,,3540N 13834E, +,JP,KUG,Kugui,Kugui,33,1-------,AF,9907,,3435N 13405E, +,JP,KUH,Kushiro,Kushiro,01,1--4----,AF,9907,,4260N 14428E, +,JP,KUJ,Kushimoto,Kushimoto,30,---4----,AF,9907,,3329N 13547E, +,JP,KUM,Yakushima,Yakushima,46,---4----,AF,9907,,3021N 13031E, +,JP,KUR,"Katsuura, Chiba","Katsuura, Chiba",12,1-------,AF,9907,,3509N 14019E, +,JP,KUT,Kute,Kute,32,1-------,AF,9907,,3514N 13230E, +,JP,KUW,Kuwanoura,Kuwanoura,46,1-------,AF,9907,,3152N 12950E, +,JP,KUZ,Kuzu,Kuzu,37,1-------,AF,9907,,3417N 13613E, +,JP,KWC,"Kawachi, Nagasaki","Kawachi, Nagasaki",42,1-------,AF,9907,,3440N 12926E, +,JP,KWM,Kawashimo,Kawashimo,32,1-------,AF,9907,,4304N 14127E, +,JP,KWS,Kawasaki,Kawasaki,14,1-------,AF,9907,,3532N 13942E, +,JP,KWT,Kawatana,Kawatana,42,1-------,AF,9907,,3304N 12951E, +,JP,KWX,Kowa,Kowa,23,1-------,AF,9907,,3446N 13655E, +,JP,KWZ,Kashiwazaki,Kashiwazaki,15,1-------,AF,9907,,3722N 13834E, +,JP,KXS,Kasumi,Kasumi,28,1-------,AF,9907,,3531N 13451E, +,JP,KYA,Kanoya,Kanoya,46,1-------,AF,9907,,3123N 13051E, +,JP,KYR,Isso,Isso,46,1-------,AF,9907,,3027N 13029E, +,JP,KZA,Kaizuka,Kaizuka,27,--3-----,AF,9907,,3426N 13522E, +,JP,KZE,Kozera,Kozera,42,1-------,AF,9907,,3305N 12907E, +,JP,KZH,Kazuhara,Kazuhara,37,1-------,AF,9907,,3415N 13346E, +,JP,KZI,Kijima,Kijima,33,1-------,AF,9907,,3316N 13126E, +,JP,KZJ,Kozai,Kozai,37,1-------,AF,9907,,3421N 13360E, +,JP,KZK,Kozukushi,Kozukushi,39,1-------,AF,9907,,3253N 13243E, +,JP,KZM,Kazume,Kazume,42,1-------,AF,9907,,3447N 13449E, +,JP,KZU,Kisarazu,Kisarazu,12,1-------,AF,9907,,3523N 13955E, +,JP,MAD,Maedomari/Iheya,Maedomari/Iheya,47,1-------,AF,9907,,2703N 12758E, +,JP,MAE,Maebashi,Maebashi,10,--3-----,AF,9907,,3623N 13904E, +,JP,MAG,Mategata,Mategata,38,1-------,AF,9907,,3322N 12952E, +,JP,MAI,Maizuru,Maizuru,26,1-------,AF,9907,,3528N 13521E, +,JP,MAK,Makiyama,Makiyama,40,1-------,AF,9907,,3353N 13049E, +,JP,MAM,Matama,Matama,44,1-------,AF,9907,,3455N 13360E, +,JP,MAO,Matsuo,Matsuo,33,1-------,AF,9907,,3442N 13352E, +,JP,MAR,Marugame,Marugame,37,1-------,AF,9907,,3417N 13348E, +,JP,MAS,Masaki,Masaki,38,1-------,AF,9907,,3347N 13243E, +,JP,MAT,"Matsushima, Nagasaki","Matsushima, Nagasaki",42,1-------,AF,9907,,3256N 12936E, +,JP,MBE,Monbetsu/Abashiri,Monbetsu/Abashiri,01,1-------,AF,9907,,4421N 14321E, +,JP,MBT,Motobu,Motobu,47,1-------,AF,9907,,2640N 12755E, +,JP,MCH,Mochiishi,Mochiishi,32,1-------,AF,9907,,3329N 13327E, +,JP,MDJ,"Masuda, Kagoshima","Masuda, Kagoshima",46,1-------,AF,9907,,3145N 13036E, +,JP,MDR,Maedomari/Tarama,Maedomari/Tarama,47,1-------,AF,9907,,2703N 12758E, +,JP,MEG,Megi,Megi,37,1-------,AF,9907,,3424N 13403E, +,JP,MEN,Mei,Mei,42,1-------,AF,9907,,3412N 13306E, +,JP,MET,Meitsu,Meitsu,45,1-------,AF,9907,,3528N 13928E, +,JP,MGM,Magome,Magome,42,1-------,AF,9907,,3558N 13939E, +,JP,MGY,Nagayama,Nagayama,47,1-------,AF,9907,,4349N 14226E, +,JP,MHM,Maehama,Maehama,38,1-------,AF,9907,,3712N 13641E, +,JP,MHR,Mihara,Mihara,34,1-------,AF,9907,,3424N 13305E, +,JP,MIH,Mihonoseki,Mihonoseki,32,1-------,AF,9907,,3534N 13318E, +,JP,MII,"Miike, Fukuoka","Miike, Fukuoka",40,1-------,AF,9907,,3300N 13025E, +,JP,MIK,"Misaki, Kanagawa","Misaki, Kanagawa",14,1-------,AF,9907,,3508N 13937E, +,JP,MIN,Minamata,Minamata,43,1-------,AF,9907,,3213N 13025E, +,JP,MIR,Miura/Mitsushima,Miura/Mitsushima,42,1-------,AF,9907,,3318N 12938E, +,JP,MIY,Miyazu,Miyazu,26,1-------,AF,9907,,3535N 13512E, +,JP,MIZ,Mizushima,Mizushima,33,1-------,AF,9907,,3431N 13344E, +,JP,MKA,Mukata,Mukata,44,1-------,AF,9907,,3339N 13140E, +,JP,MKG,Makigawa,Makigawa,46,1-------,AF,9907,,3037N 13057E, +,JP,MKI,"Misaki, Kochi","Misaki, Kochi",39,1-------,AF,9907,,3248N 13252E, +,JP,MKK,Makurazaki,Makurazaki,46,1-------,AF,9907,,3116N 13018E, +,JP,MKR,Mikurajima,Mikurajima,13,1-------,AF,9907,,3354N 13936E, +,JP,MKW,Mikawa,Mikawa,23,1-------,AF,9907,,3447N 13714E, +,JP,MMB,Memanbetsu,Memanbetsu,01,---4----,AF,9907,,4352N 14415E, +,JP,MMI,"Misumi, Shimane","Misumi, Shimane",32,1-------,AF,9907,,3447N 13158E, +,JP,MMJ,Matsumoto,Matsumoto,20,---4----,AF,9907,,3614N 13758E, +,JP,MNA,Manazuru,Manazuru,14,1-------,AF,9907,,3510N 13908E, +,JP,MNE,Mine,Mine,42,1-------,AF,9907,,3410N 13112E, +,JP,MNG,Matsunaga,Matsunaga,34,1-------,AF,9907,,3601N 13929E, +,JP,MNJ,Minna/Motobu,Minna/Motobu,47,1-------,AF,9907,,2445N 12442E, +,JP,MNM,Minami,Minami,32,1-------,AF,9907,,3604N 13306E, +,JP,MNN,Minna/Tarama,Minna/Tarama,47,1-------,AF,9907,,2445N 12442E, +,JP,MNO,Miyanoura/Kamiyaku,Miyanoura/Kamiyaku,46,1-------,AF,9907,,3025N 13034E, +,JP,MNT,"Minato, Hyogo","Minato, Hyogo",28,1-------,AF,9907,,3420N 13444E, +,JP,MNY,Minmaya,Minmaya,02,1-------,AF,9907,,4112N 14026E, +,JP,MOM,Morodomi,Morodomi,41,1-------,AF,9907,,3313N 13024E, +,JP,MOO,Morie,Morie,44,1-------,AF,9907,,3300N 13154E, +,JP,MOR,Mori,Mori,01,1-------,AF,9907,,4206N 14035E, +,JP,MOT,Motomachi,Motomachi,13,1-------,AF,9907,,3445N 13921E, +,JP,MOU,Motoura/Toshima,Motoura/Toshima,46,1-------,AF,9907,,4230N 13951E, +,JP,MOX,Monoi,Monoi,32,1-------,AF,9907,,3541N 14012E, +,JP,MRA,"Matsushima, Miyagi","Matsushima, Miyagi",04,1-------,AF,9907,,3823N 14104E, +,JP,MRE,Mure,Mure,37,1-------,AF,9907,,3420N 13408E, +,JP,MRS,"Murotsu, Hyogo","Murotsu, Hyogo",28,1-------,AF,9907,,3431N 13453E, +,JP,MRT,"Murotsu, Yamaguchi","Murotsu, Yamaguchi",35,1-------,AF,9907,,3350N 13208E, +,JP,MRU,Maruo,Maruo,35,1-------,AF,9907,,3312N 12953E, +,JP,MRW,Morioka,Morioka,03,--34----,AF,9907,,3942N 14109E, +,JP,MRZ,Morozaki,Morozaki,23,1-------,AF,9907,,3442N 13658E, +,JP,MSA,Matsusaka,Matsusaka,24,1-------,AF,9907,,3435N 13632E, +,JP,MSD,"Masuda, Shimane","Masuda, Shimane",32,1-------,AF,9907,,3440N 13151E, +,JP,MSH,Musashi,Musashi,44,1-------,AF,9907,,3360N 13549E, +,JP,MSJ,Misawa,Misawa,02,---4----,AF,9907,,4041N 14122E, +,JP,MSK,Mashike,Mashike,01,1-------,AF,9907,,4351N 14132E, +,JP,MSM,"Mishima, Shizuoka","Mishima, Shizuoka",22,-23-----,AF,9907,,3509N 13857E, +,JP,MSO,Misho,Misho,38,1-------,AF,9907,,3259N 13235E, +,JP,MSR,Mishiro,Mishiro,42,1-------,AF,9907,,3342N 13027E, +,JP,MSS,"Matsushima, Okayama","Matsushima, Okayama",33,1-------,AF,9907,,3438N 13349E, +,JP,MST,Misato,Misato,42,1-------,AF,9907,,3550N 13952E, +,JP,MTA,"Mitaka, Tokyo","Mitaka, Tokyo",13,--3-----,AF,9907,,3541N 13934E, +,JP,MTC,Mitachi,Mitachi,37,1-------,AF,9907,,3415N 13343E, +,JP,MTE,Matsue,Matsue,32,1-------,AF,9907,,3528N 13303E, +,JP,MTI,Mitarai,Mitarai,34,1-------,AF,9907,,3411N 13252E, +,JP,MTK,Mitsukue,Mitsukue,38,1-------,AF,9907,,3519N 13334E, +,JP,MTM,Matsumae,Matsumae,01,1-------,AF,9907,,4126N 14007E, +,JP,MTO,Motoura/Azuma,Motoura/Azuma,46,1-------,AF,9907,,4230N 13951E, +,JP,MTR,Mutsure,Mutsure,35,1-------,AF,9907,,3359N 13052E, +,JP,MTS,"Matsuura, Nagasaki","Matsuura, Nagasaki",42,1-------,AF,9907,,3315N 12939E, +,JP,MTY,Matoya,Matoya,24,1-------,AF,9907,,3422N 13652E, +,JP,MTZ,Matsuzaki,Matsuzaki,22,1-------,AF,9907,,3445N 13848E, +,JP,MUG,Mugi,Mugi,36,1-------,AF,9907,,3341N 13426E, +,JP,MUK,Mukaishima,Mukaishima,34,1-------,AF,9907,,3423N 13312E, +,JP,MUR,Muroran,Muroran,01,1-------,AF,9907,,4219N 14058E, +,JP,MUS,Marcus Island,Marcus Island,,---4----,RQ,0901,,2417N 15359E, +,JP,MUX,"Murotsu, Kochi","Murotsu, Kochi",39,1-------,AF,9907,,3320N 13410E, +,JP,MUY,"Miyanoura, Kagawa","Miyanoura, Kagawa",37,1-------,AF,9907,,3428N 13358E, +,JP,MWR,Mawari,Mawari,42,1-------,AF,9907,,3422N 12914E, +,JP,MXT,Mita,Mita,32,1-------,AF,9907,,3606N 13301E, +,JP,MYE,Miyakejima Apt/Tokyo,Miyakejima Apt/Tokyo,13,---4----,AF,9907,,3405N 13934E, +,JP,MYJ,Matsuyama,Matsuyama,38,1--4----,AF,9907,,3350N 13246E, +,JP,MYK,"Miyako, Iwate","Miyako, Iwate",03,1-------,AF,9907,,3938N 14157E, +,JP,MYN,Miyanoura/Azuma,Miyanoura/Azuma,46,1-------,AF,9907,,3025N 13034E, +,JP,MYU,Miyaura,Miyaura,38,1-------,AF,9907,,3415N 13300E, +,JP,MZM,Murozumi,Murozumi,35,1-------,AF,9907,,3334N 13020E, +,JP,MZS,Mizusaki,Mizusaki,42,1-------,AF,9907,,3333N 13125E, +,JP,NAB,Nagara,Nagara,46,1-------,AF,9907,,2815N 12915E, +,JP,NAD,Nadahama,Nadahama,28,1-------,AF,9907,,3446N 13442E, +,JP,NAG,"Nagahama, Shimane","Nagahama, Shimane",32,1-------,AF,9907,,3452N 13202E, +,JP,NAH,"Naha, Okinawa","Naha, Okinawa",47,1--45---,AF,9907,,2613N 12741E, +,JP,NAK,Nakagusuku,Nakagusuku,47,1-------,AF,9907,,2616N 12747E, +,JP,NAM,Nama,Nama,42,1-------,AF,9907,,3416N 12918E, +,JP,NAO,Naoetsu,Naoetsu,15,1-------,AF,9907,,3711N 13815E, +,JP,NAS,Naoshima,Naoshima,37,1-------,AF,9907,,3428N 13360E, +,JP,NAT,Nakatsu,Nakatsu,44,1-------,AF,9907,,3336N 13111E, +,JP,NAY,Nagayo,Nagayo,42,1-------,AF,9907,,3249N 12953E, +,JP,NAZ,Naze,Naze,46,1-------,AF,9907,,2824N 12932E, +,JP,NBU,Nobu/Mitsushima,Nobu/Mitsushima,42,1-------,AF,9907,,3422N 12921E, +,JP,NCO,"Nonoichi, Ishikawa","Nonoichi, Ishikawa",17,--3-----,AF,0011,,3631N 13637E, +,JP,NDI,Nishi/Minamidaito,Nishi/Minamidaito,47,1-------,AF,9907,,2622N 12709E, +,JP,NEJ,Nejime,Nejime,46,1-------,AF,9907,,3110N 13049E, +,JP,NEM,Nemuro,Nemuro,01,1-------,AF,9907,,4320N 14535E, +,JP,NEO,Neo,Neo,42,1-------,AF,9907,,3414N 12919E, +,JP,NEX,"Nagae, Ehime","Nagae, Ehime",38,1-------,AF,9907,,3416N 13309E, +,JP,NGD,Nagouda,Nagouda,32,1-------,AF,9907,,3616N 13311E, +,JP,NGG,Nagame,Nagame,43,1-------,AF,9907,,3227N 13025E, +,JP,NGH,"Nagahama, Ehime","Nagahama, Ehime",38,1-------,AF,9907,,3337N 13229E, +,JP,NGK,Nakakoshi,Nakakoshi,01,0-------,RL,9907,,4352N 14254E, +,JP,NGM,Nagimi,Nagimi,38,1-------,AF,9907,,3316N 13230E, +,JP,NGN,Naigainoura,Naigainoura,39,1-------,AF,9907,,3254N 13243E, +,JP,NGO,"Nagoya, Aichi","Nagoya, Aichi",23,1--45---,AF,9907,,3511N 13654E, +,JP,NGR,Nagaura/Yokosuka,Nagaura/Yokosuka,14,1-------,AF,9907,,3233N 13025E, +,JP,NGS,Nagasaki,Nagasaki,42,1--4----,AF,9907,,3245N 12953E, +,JP,NGU,"Nagasu, Kumamoto","Nagasu, Kumamoto",43,1-------,AF,9907,,3256N 13028E, +,JP,NHI,Nahari,Nahari,39,1-------,AF,9907,,3325N 13403E, +,JP,NHJ,Noheji,Noheji,02,1-------,AF,9907,,4052N 14108E, +,JP,NHM,"Nagahama, Shiga","Nagahama, Shiga",25,1-------,AF,9907,,3529N 13618E, +,JP,NHR,Nishihara,Nishihara,47,1-------,AF,9907,,2614N 12746E, +,JP,NIA,Nita,Nita,42,1-------,AF,9907,,3445N 13813E, +,JP,NIC,Nichinan,Nichinan,45,1-------,AF,9907,,3136N 13123E, +,JP,NID,Nishi/Kitadaito,Nishi/Kitadaito,47,1-------,AF,9907,,2622N 12709E, +,JP,NIJ,Niijima,Niijima,13,1-------,AF,9907,,3423N 13915E, +,JP,NIM,Nima,Nima,32,1-------,AF,9907,,3509N 13224E, +,JP,NIO,Nio,Nio,37,1-------,AF,9907,,3412N 13338E, +,JP,NIS,Nishinaka,Nishinaka,38,1-------,AF,9907,,3316N 13239E, +,JP,NIT,Namikata,Namikata,38,1-------,AF,9907,,3407N 13257E, +,JP,NIX,Nii,Nii,42,1-------,AF,9907,,3423N 12919E, +,JP,NJA,Atsugi,Atsugi,14,---4----,AF,9907,,3526N 13922E, +,JP,NJM,Nakajima,Nakajima,38,1-------,AF,9907,,3400N 13238E, +,JP,NJR,Nojiri,Nojiri,46,1-------,AF,9907,,3134N 13037E, +,JP,NKD,Nakada,Nakada,47,1-------,AF,9907,,2656N 12757E, +,JP,NKJ,"Nakahama, Kyoto","Nakahama, Kyoto",26,1-------,AF,9907,,3546N 13511E, +,JP,NKK,Nakakoshiki,Nakakoshiki,46,1-------,AF,9907,,3148N 12949E, +,JP,NKL,"Nakama, Kagoshima","Nakama, Kagoshima",46,1-------,AF,9907,,3015N 13026E, +,JP,NKM,"Nakama, Okinawa","Nakama, Okinawa",47,1-------,AF,9907,,2615N 12744E, +,JP,NKN,Nakanoura,Nakanoura,42,1-------,AF,9907,,3254N 12904E, +,JP,NKO,Nanko,Nanko,27,1-------,AF,9907,,3444N 13538E, +,JP,NKR,Nakiri,Nakiri,24,1-------,AF,9907,,3417N 13654E, +,JP,NKS,Nakanoshima,Nakanoshima,46,1-------,AF,9907,,2951N 12952E, +,JP,NKX,Nakanosaku,Nakanosaku,07,1-------,AF,9907,,3658N 14057E, +,JP,NKY,Nakayama,Nakayama,32,1-------,AF,9907,,3433N 13143E, +,JP,NKZ,Nakashima,Nakashima,36,1-------,AF,9907,,3356N 13440E, +,JP,NMA,"Nagahama, Kagoshima","Nagahama, Kagoshima",46,1-------,AF,9907,,3142N 12944E, +,JP,NMI,Nomi,Nomi,45,1-------,AF,9907,,3626N 13633E, +,JP,NMK,Nomaike,Nomaike,46,1-------,AF,9907,,3125N 13008E, +,JP,NMT,Nakaminato,Nakaminato,08,1-------,AF,9907,,3331N 13550E, +,JP,NNG,Nagano,Nagano,20,--3-----,AF,9907,,3639N 13812E, +,JP,NNK,Nenokuchi,Nenokuchi,02,1-------,AF,9907,,4029N 14056E, +,JP,NNO,Nanao,Nanao,17,1-------,AF,9907,,3703N 13657E, +,JP,NOB,Nobeoka,Nobeoka,45,1-------,AF,9907,,3235N 13140E, +,JP,NOH,Nohara,Nohara,26,1-------,AF,9907,,3534N 13526E, +,JP,NON,Nonohama,Nonohama,33,1-------,AF,9907,,3824N 14128E, +,JP,NQH,Noho,Noho,47,1-------,AF,9907,,2660N 12755E, +,JP,NRO,Narao,Narao,42,1-------,AF,9907,,3522N 13432E, +,JP,NRS,Narushima,Narushima,42,1-------,AF,9907,,3251N 12857E, +,JP,NRT,Narita Apt/Tokyo,Narita Apt/Tokyo,12,---4----,AF,9907,,3546N 14023E, +,JP,NRU,Naruto,Naruto,36,1-------,AF,9907,,3410N 13437E, +,JP,NSA,Nagashima,Nagashima,24,1-------,AF,9907,,3412N 13620E, +,JP,NSB,Nishibe,Nishibe,38,1-------,AF,9907,,3415N 13308E, +,JP,NSK,Nishiki,Nishiki,27,1-------,AF,9907,,3427N 13521E, +,JP,NSM,Nishimura,Nishimura,32,1-------,AF,9907,,3620N 13318E, +,JP,NSR,Noshiro,Noshiro,05,1-------,AF,9907,,4013N 14002E, +,JP,NST,Nishikata,Nishikata,46,1-------,AF,9907,,3116N 13037E, +,JP,NSU,"Nagasu, Oita","Nagasu, Oita",44,1-------,AF,9907,,3334N 13123E, +,JP,NSX,Nasa,Nasa,36,1-------,AF,9907,,3521N 13938E, +,JP,NTY,Nanatsuyama,Nanatsuyama,46,1-------,AF,9907,,3235N 13114E, +,JP,NUM,Numazu,Numazu,22,1-------,AF,9907,,3506N 13852E, +,JP,NUR,Nishiura,Nishiura,22,1-------,AF,9907,,3501N 13853E, +,JP,NWA,Nyugawa,Nyugawa,38,1-------,AF,9907,,3356N 13307E, +,JP,NYA,Nishinomiya,Nishinomiya,28,1-3-----,AF,9907,,3444N 13520E, +,JP,NYO,Nanyo,Nanyo,06,0-------,RL,9907,,3803N 14009E, +,JP,NYW,Neyagawa,Neyagawa,27,--3-----,AF,9907,,3446N 13538E, +,JP,OAA,Okada,Okada,13,1-------,AF,9907,,3458N 13952E, +,JP,OAD,Onoaida,Onoaida,46,1-------,AF,9907,,3014N 13033E, +,JP,OAR,Oarai,Oarai,08,1-------,AF,9907,,3619N 14034E, +,JP,OAX,Oma,Oma,02,1-------,AF,9907,,4131N 14054E, +,JP,OBB,"Obama, Nagasaki","Obama, Nagasaki",42,1-------,AF,9907,,3258N 12902E, +,JP,OBE,"Obe, Ehime","Obe, Ehime",38,1-------,AF,9907,,3406N 13256E, +,JP,OBM,"Obama, Fukui","Obama, Fukui",18,1-------,AF,9907,,3530N 13545E, +,JP,OBO,Obihiro,Obihiro,01,---4----,AF,9907,,4255N 14312E, +,JP,ODM,Odomari,Odomari,46,1-------,AF,9907,,4113N 14032E, +,JP,OFT,Ohfunato,Ohfunato,03,1-------,AF,9907,,3905N 14143E, +,JP,OGA,Ogasawara,Ogasawara,13,1-------,AF,9907,,2706N 14212E, +,JP,OGC,Ongachi,Ongachi,46,1-------,AF,9907,,2821N 12924E, +,JP,OGF,Ogifushi,Ogifushi,01,1-------,AF,9907,,4212N 14240E, +,JP,OGG,Ogaki,Ogaki,21,--3-----,AF,0002,,3522N 13637E, +,JP,OGI,"Ogi, Niigata","Ogi, Niigata",15,1-------,AF,9907,,3749N 13816E, +,JP,OGK,"Ogi, Kagawa","Ogi, Kagawa",37,1-------,AF,9907,,3416N 13345E, +,JP,OGN,Yonagunijima,Yonagunijima,47,---4----,AF,9907,,2427N 12259E, +,JP,OHA,"Ohama, Kagawa","Ohama, Kagawa",37,1-------,AF,9907,,3419N 13351E, +,JP,OHM,"Ohama, Ehime","Ohama, Ehime",38,1-------,AF,9907,,3255N 13236E, +,JP,OHO,Ohi,Ohi,13,1-------,AF,9907,,3322N 13052E, +,JP,OHT,Ohata,Ohata,02,1-------,AF,9907,,4108N 14117E, +,JP,OII,"Ogi, Ishikawa","Ogi, Ishikawa",17,1-------,AF,9907,,3718N 13714E, +,JP,OIR,Okushiri,Okushiri,01,---4----,AF,9907,,4210N 13928E, +,JP,OIS,Oiso,Oiso,14,1-------,AF,9907,,3519N 13917E, +,JP,OIT,Oita,Oita,44,1--4----,AF,9907,,3314N 13137E, +,JP,OIU,"Okiura, Hiroshima","Okiura, Hiroshima",34,1-------,AF,0212,,3413N 13254E, +,JP,OJI,Ojika,Ojika,42,1-------,AF,9907,,3312N 12904E, +,JP,OJM,Omosu,Omosu,32,1-------,AF,9907,,3501N 13853E, +,JP,OJO,Osako,Osako,34,1-------,AF,9907,,3416N 13600E, +,JP,OKA,Okinawa,Okinawa,47,---4----,AF,9907,,2628N 12755E, +,JP,OKB,"Okubo, Tokyo","Okubo, Tokyo",13,1-------,AF,9907,,3542N 13942E, +,JP,OKC,"Okitsu, Chiba","Okitsu, Chiba",12,1-------,AF,9907,,3508N 14015E, +,JP,OKD,Okadama Apt/Sapporo,Okadama Apt/Sapporo,01,---4----,AF,9907,,4307N 14123E, +,JP,OKE,Okinoerabu,Okinoerabu,46,---4----,AF,9907,,2723N 12835E, +,JP,OKG,Okogi,Okogi,38,1-------,AF,9907,,3417N 13309E, +,JP,OKI,Oki,Oki,32,1--4----,AF,9907,,3313N 13026E, +,JP,OKJ,Okayama,Okayama,33,1--4----,AF,9907,,3439N 13355E, +,JP,OKK,Okinokojima,Okinokojima,46,1-------,AF,9907,,3239N 13149E, +,JP,OKM,Okamoto,Okamoto,32,1-------,AF,9907,,3454N 13503E, +,JP,OKU,Oku,Oku,47,1-------,AF,9907,,2650N 12817E, +,JP,OKW,"Okawa, Wakayama","Okawa, Wakayama",30,1-------,AF,9907,,3334N 13541E, +,JP,OMI,Omi,Omi,38,1-------,AF,9907,,3416N 13260E, +,JP,OMJ,Omura,Omura,42,1--4----,AF,9907,,3254N 12958E, +,JP,OMO,Omoto,Omoto,03,1-------,AF,9907,,3951N 14158E, +,JP,OMR,Okamura,Okamura,38,1-------,AF,9907,,3411N 13253E, +,JP,OMS,Omishima,Omishima,38,1-------,AF,9907,,3415N 13301E, +,JP,OMT,Ominato,Ominato,02,1-------,AF,9907,,4116N 14108E, +,JP,OMU,Omuta,Omuta,40,1-------,AF,9907,,3303N 13028E, +,JP,OMW,Omonawa,Omonawa,46,1-------,AF,9907,,2741N 12858E, +,JP,OMZ,Omaezaki,Omaezaki,22,1-------,AF,9907,,3439N 13809E, +,JP,ONA,Onahama,Onahama,07,1-------,AF,9907,,3657N 14054E, +,JP,OND,Onoda,Onoda,35,1-------,AF,9907,,3400N 13111E, +,JP,ONG,Onagawa,Onagawa,04,1-------,AF,9907,,3827N 14127E, +,JP,ONI,Onishi,Onishi,38,1-------,AF,9907,,3303N 13141E, +,JP,ONO,Onomichi,Onomichi,34,1-------,AF,9907,,3425N 13312E, +,JP,ONU,Onuki,Onuki,04,0-------,RL,9907,,3457N 13447E, +,JP,ONW,Oniwaki,Oniwaki,01,1-------,AF,9907,,4508N 14118E, +,JP,OOA,"Oura, Saga","Oura, Saga",41,1-------,AF,9907,,3325N 12952E, +,JP,OOB,Obatake,Obatake,35,1-------,AF,9907,,3358N 13210E, +,JP,OOJ,"Okubo, Kagoshima","Okubo, Kagoshima",46,1-------,AF,9907,,3149N 13051E, +,JP,OOO,Ozu,Ozu,34,1-------,AF,9907,,3423N 13230E, +,JP,OOR,Oura/Kasaoka,Oura/Kasaoka,33,1-------,AF,9907,,3246N 13246E, +,JP,OOW,"Okawa, Nagasaki","Okawa, Nagasaki",42,1-------,AF,9907,,3246N 12841E, +,JP,ORN,Orino,Orino,36,1-------,AF,9907,,3412N 13429E, +,JP,ORR,Oura/Uchinoura,Oura/Uchinoura,46,1-------,AF,9907,,3246N 13246E, +,JP,ORX,Oura/Marugame,Oura/Marugame,37,1-------,AF,9907,,3423N 13346E, +,JP,OSD,Oshidomari,Oshidomari,01,1-------,AF,9907,,4514N 14114E, +,JP,OSE,Osoe,Osoe,32,1-------,AF,9907,,3530N 13311E, +,JP,OSJ,"Otsu, Ibaraki","Otsu, Ibaraki",08,1-------,AF,9907,,3618N 13959E, +,JP,OSK,"Osaki, Miyagi","Osaki, Miyagi",04,1-------,AF,9907,,3835N 14057E, +,JP,OSL,"Oshima, Yamaguchi","Oshima, Yamaguchi",35,1-------,AF,9907,,3430N 13125E, +,JP,OSN,Osaki/Mitsushima,Osaki/Mitsushima,42,1-------,AF,9907,,3419N 12913E, +,JP,OSX,"Osaki, Kagoshima","Osaki, Kagoshima",46,1-------,AF,9907,,3127N 13059E, +,JP,OTA,Otao,Otao,42,1-------,AF,9907,,3446N 13544E, +,JP,OTJ,Otsuchi,Otsuchi,03,1-------,AF,9907,,3922N 14154E, +,JP,OTK,Otake,Otake,34,1-------,AF,9907,,3414N 13213E, +,JP,OTM,Otomi,Otomi,18,1-------,AF,9907,,3532N 13530E, +,JP,OTO,Osato,Osato,46,1-------,AF,9907,,3825N 14100E, +,JP,OTR,Otaru,Otaru,01,1--4----,AF,9907,,4311N 14060E, +,JP,OTU,"Otsu, Shiga","Otsu, Shiga",25,1-------,AF,9907,,3500N 13552E, +,JP,OTW,Otawa,Otawa,42,1-------,AF,9907,,3705N 14024E, +,JP,OUA,Oura/Ariake,Oura/Ariake,43,1-------,AF,9907,,3257N 13039E, +,JP,OUK,"Osaka, Tottori","Osaka, Tottori",31,1-------,AF,9907,,3530N 13422E, +,JP,OUM,Omu,Omu,01,1-------,AF,9907,,4435N 14258E, +,JP,OUR,Oura/Kamitsushima,Oura/Kamitsushima,42,1-------,AF,9907,,3302N 12905E, +,JP,OWA,Owase,Owase,24,1-------,AF,9907,,3404N 13611E, +,JP,OYB,Oyabu,Oyabu,33,1-------,AF,9907,,3432N 13358E, +,JP,OZU,Ozuku,Ozuku,32,1-------,AF,9907,,3606N 13848E, +,JP,OZX,Ozaki,Ozaki,27,1-------,AF,9907,,3442N 13349E, +,JP,QSG,"Saga, Saga","Saga, Saga",41,1--4----,AF,9907,,3316N 13018E, +,JP,RAU,Rausu,Rausu,01,1-------,AF,9907,,4401N 14511E, +,JP,RBJ,Rebun,Rebun,01,---4----,AF,9907,,4523N 14101E, +,JP,RHK,Reihoku,Reihoku,43,1-------,AF,9907,,3229N 13004E, +,JP,RIS,Rishiri,Rishiri,01,---4----,AF,9907,,4510N 14112E, +,JP,RKO,Rokko Island,Rokko Island,28,1-------,AF,9907,,3441N 13516E, +,JP,RMI,Rumoi,Rumoi,01,1-------,AF,9907,,4356N 14138E, +,JP,RNJ,Yoronjima,Yoronjima,46,---4----,AF,9907,,2703N 12826E, +,JP,RYO,Ryotsu,Ryotsu,15,1-------,AF,9907,,3805N 13826E, +,JP,SAA,Sayama,Sayama,11,--3-----,AF,9907,,3551N 13925E, +,JP,SAB,Saba,Saba,38,1-------,AF,9907,,3426N 13119E, +,JP,SAE,Saiki,Saiki,44,1-------,AF,9907,,3258N 13154E, +,JP,SAG,Saganoseki,Saganoseki,44,1-------,AF,9907,,3315N 13153E, +,JP,SAJ,Saijo,Saijo,38,1-------,AF,9907,,3355N 13311E, +,JP,SAK,Sakai,Sakai,27,1-------,AF,9907,,3432N 13530E, +,JP,SAM,Samani,Samani,01,1-------,AF,9907,,4208N 14256E, +,JP,SAN,Sanbonmatsu,Sanbonmatsu,37,1-------,AF,9907,,3415N 13420E, +,JP,SAO,Sato,Sato,46,1-------,AF,9907,,3204N 13037E, +,JP,SAS,Sasago,Sasago,32,1-------,AF,9907,,3524N 13240E, +,JP,SAT,Sakate,Sakate,37,1-------,AF,9907,,3428N 13420E, +,JP,SAW,Sagawa,Sagawa,38,1-------,AF,9907,,3518N 13329E, +,JP,SAZ,Saza,Saza,42,1-------,AF,9907,,3313N 12939E, +,JP,SBS,Shibushi,Shibushi,46,1-------,AF,9907,,3130N 13103E, +,JP,SBU,Shibaura,Shibaura,13,1-------,AF,9907,,3539N 13945E, +,JP,SBY,Shibayama,Shibayama,28,1-------,AF,9907,,3542N 14025E, +,JP,SCR,Shichirui,Shichirui,32,1-------,AF,9907,,3535N 13313E, +,JP,SDK,Shitooke,Shitooke,46,1-------,AF,9907,,2821N 13001E, +,JP,SDO,Sado,Sado,15,---4----,AF,9907,,3801N 13822E, +,JP,SDS,Sendaishinko,Sendaishinko,04,1-------,AF,9907,,3816N 14052E, +,JP,SDU,Sodegaura,Sodegaura,12,1-------,AF,9907,,3526N 13957E, +,JP,SDZ,Saidaiji,Saidaiji,33,1-------,AF,9907,,3438N 13402E, +,JP,SEB,Seibu,Seibu,13,1-------,RQ,0207,,3643N 13709E, +,JP,SEQ,Se/Izuhara,Se/Izuhara,42,1-------,AF,9907,,3644N 13826E, +,JP,SES,Sesoko,Sesoko,47,1-------,AF,9907,,2638N 12752E, +,JP,SEZ,Sezaki,Sezaki,46,1-------,AF,9907,,3532N 13521E, +,JP,SGA,"Saga, Kochi","Saga, Kochi",39,1-------,AF,9907,,3305N 13306E, +,JP,SGE,Suge,Suge,38,1-------,AF,9907,,3239N 13101E, +,JP,SGH,Sagamihara,Sagamihara,14,--3-----,AF,0006,,3534N 13914E, +,JP,SGI,Shigetomi,Shigetomi,46,1-------,AF,9907,,3451N 13218E, +,JP,SGJ,Sagi,Sagi,34,1-------,AF,9907,,3443N 13742E, +,JP,SGM,Sendaishiogama,Sendaishiogama,04,1-------,AF,0407,,3816N 14101E, +,JP,SGR,Sagara,Sagara,22,1-------,AF,9907,,3441N 13812E, +,JP,SGW,Segawa,Segawa,42,1-------,AF,9907,,3258N 13036E, +,JP,SGX,Sonogi,Sonogi,42,1-------,AF,9907,,3302N 12958E, +,JP,SHB,Nakashibetsu,Nakashibetsu,01,---4----,AF,9907,,4333N 14458E, +,JP,SHH,"Shirahama, Kagoshima","Shirahama, Kagoshima",46,1-------,AF,9907,,2812N 12916E, +,JP,SHK,Shinkiba,Shinkiba,13,1-------,AF,9907,,3538N 13950E, +,JP,SHM,"Shirahama, Wakayama","Shirahama, Wakayama",30,---4----,AF,9907,,3341N 13522E, +,JP,SHN,Shingu,Shingu,30,1-------,AF,9907,,3343N 13560E, +,JP,SHR,Shari,Shari,01,1-------,AF,9907,,4355N 14440E, +,JP,SHS,Shimonoseki,Shimonoseki,35,1---5---,AF,9907,,3357N 13056E, +,JP,SHU,Shushi,Shushi,42,1-------,AF,9907,,3437N 12926E, +,JP,SID,Shido,Shido,37,1-------,AF,9907,,3419N 13410E, +,JP,SIH,"Shirahama, Okinawa","Shirahama, Okinawa",47,1-------,AF,9907,,2640N 12806E, +,JP,SIK,Shikamachi,Shikamachi,42,1-------,AF,9907,,3317N 12937E, +,JP,SIM,Shimama,Shimama,46,1-------,AF,9907,,3028N 13052E, +,JP,SIN,Shiinoki,Shiinoki,46,1-------,AF,9907,,3750N 14054E, +,JP,SIR,"Shirahama, Nagasaki","Shirahama, Nagasaki",42,1-------,AF,9907,,3301N 12911E, +,JP,SJA,"Sai, Aomori","Sai, Aomori",02,1-------,AF,9907,,4126N 14052E, +,JP,SJI,"Shishijima, Kagawa","Shishijima, Kagawa",37,1-------,AF,9907,,3416N 13341E, +,JP,SJM,"Shishijima, Kagoshima","Shishijima, Kagoshima",46,1-------,AF,9907,,3217N 13014E, +,JP,SJR,Shiroko,Shiroko,24,1-------,AF,9907,,3715N 14016E, +,JP,SKB,Shibukawa,Shibukawa,33,1-------,AF,9907,,3428N 13354E, +,JP,SKD,Sakaide,Sakaide,37,1-------,AF,9907,,3418N 13352E, +,JP,SKK,Sakaki,Sakaki,39,1-------,AF,9907,,3253N 13242E, +,JP,SKM,Shikama,Shikama,28,1-------,AF,9907,,3448N 13440E, +,JP,SKN,Shikinejima,Shikinejima,13,1-------,AF,9907,,3420N 13913E, +,JP,SKO,Sakoshi,Sakoshi,28,1-------,AF,9907,,3445N 13426E, +,JP,SKT,Sakata,Sakata,06,1-------,AF,9907,,3855N 13950E, +,JP,SKU,Shiraku,Shiraku,33,1-------,AF,9907,,3643N 14008E, +,JP,SKY,Sekiya,Sekiya,37,1-------,AF,9907,,3522N 13931E, +,JP,SMB,Shimabara,Shimabara,42,1-------,AF,9907,,3247N 13022E, +,JP,SMD,"Shimoda, Shizuoka","Shimoda, Shizuoka",22,1-------,AF,9907,,3441N 13857E, +,JP,SME,Same,Same,02,1-------,AF,9907,,3513N 13620E, +,JP,SMH,Shimohisage,Shimohisage,38,1-------,AF,9907,,3256N 13231E, +,JP,SMI,Sumie,Sumie,45,1-------,AF,9907,,3334N 13122E, +,JP,SMK,Samukawa,Samukawa,14,0-------,RL,9907,,3522N 13923E, +,JP,SMM,Shimamaki,Shimamaki,01,1-------,AF,9907,,4242N 14004E, +,JP,SMN,Sakaiminato,Sakaiminato,31,1-------,AF,9907,,3532N 13314E, +,JP,SMO,"Shimoda, Kochi","Shimoda, Kochi",39,1-------,AF,9907,,3257N 13259E, +,JP,SMT,Shimotsu,Shimotsu,30,1-------,AF,9907,,3434N 13531E, +,JP,SMU,Sakimui,Sakimui,01,1-------,AF,9907,,4349N 14505E, +,JP,SMY,Sumiyoshi,Sumiyoshi,46,1-------,AF,9907,,3041N 13057E, +,JP,SMZ,Shimizu,Shimizu,22,1-------,AF,9907,,3506N 13854E, +,JP,SNA,Sonai/Yonaguni,Sonai/Yonaguni,47,1-------,AF,9907,,2428N 12300E, +,JP,SNE,Sone,Sone,42,1-------,AF,9907,,3510N 13525E, +,JP,SNI,Sonai/Taketomi,Sonai/Taketomi,47,1-------,AF,9907,,2428N 12300E, +,JP,SNJ,Shinojima,Shinojima,23,1-------,AF,9907,,3441N 13700E, +,JP,SNK,"Shinkawa, Kagoshima","Shinkawa, Kagoshima",46,1-------,AF,9907,,3214N 13027E, +,JP,SNN,Shonan,Shonan,14,1-------,AF,9907,,3519N 13937E, +,JP,SNO,Shitanoe,Shitanoe,44,1-------,AF,9907,,3309N 13149E, +,JP,SNR,Shukunoura,Shukunoura,42,1-------,AF,9907,,3254N 12903E, +,JP,SNW,Shinokawa,Shinokawa,46,1-------,AF,9907,,2814N 12918E, +,JP,SNX,Sanagi,Sanagi,37,1-------,AF,9907,,3421N 13337E, +,JP,SNZ,Shinzaike,Shinzaike,37,1-------,AF,9907,,3431N 13542E, +,JP,SOG,Sogo,Sogo,33,1-------,AF,9907,,3445N 13418E, +,JP,SOH,Shiohama,Shiohama,32,1-------,AF,9907,,3540N 13949E, +,JP,SOO,Shimonokae,Shimonokae,39,1-------,AF,9907,,3253N 13257E, +,JP,SOT,Sotodomari/Nishiumi,Sotodomari/Nishiumi,38,1-------,AF,9907,,3256N 13229E, +,JP,SOY,Soya,Soya,01,1-------,AF,9907,,4529N 14153E, +,JP,SOZ,Sozu,Sozu,32,1-------,AF,9907,,3332N 13354E, +,JP,SRA,Shiraki,Shiraki,35,1-------,AF,9907,,3429N 13538E, +,JP,SRJ,Shiro,Shiro,32,1-------,AF,9907,,3618N 13313E, +,JP,SRO,Shiraoi,Shiraoi,01,1-------,AF,9907,,4233N 14121E, +,JP,SRS,Shirose,Shirose,46,1-------,AF,9907,,3808N 13827E, +,JP,SRX,"Shirahama, Chiba","Shirahama, Chiba",12,1-------,AF,9907,,3455N 13954E, +,JP,SSB,Sasebo,Sasebo,42,1-------,AF,9907,,3311N 12943E, +,JP,SSE,Sasue,Sasue,46,1-------,AF,9907,,3210N 13008E, +,JP,SSI,Sashiki,Sashiki,43,1-------,AF,9907,,3218N 13030E, +,JP,SSK,Saizaki,Saizaki,34,1-------,AF,9907,,3442N 13404E, +,JP,SSM,Shishimi,Shishimi,42,1-------,AF,9907,,3431N 12919E, +,JP,SSN,Sasuna,Sasuna,42,1-------,AF,9907,,3438N 12924E, +,JP,STA,Sata,Sata,46,1-------,AF,9907,,3538N 13559E, +,JP,STE,Satoura,Satoura,37,1-------,AF,9907,,3410N 13438E, +,JP,STI,Shimotsui,Shimotsui,33,1-------,AF,9907,,3427N 13347E, +,JP,STJ,Shikata,Shikata,34,1-------,AF,9907,,3439N 13355E, +,JP,STN,Setana,Setana,01,1-------,AF,9907,,4225N 13953E, +,JP,STO,Sakito,Sakito,42,1-------,AF,9907,,3300N 12933E, +,JP,STR,Shirotori,Shirotori,37,1-------,AF,9907,,3414N 13421E, +,JP,STT,"Seto, Kagoshima","Seto, Kagoshima",46,1-------,AF,9907,,3206N 13010E, +,JP,STU,Suttsu,Suttsu,01,1-------,AF,9907,,4247N 14014E, +,JP,STZ,Saitozaki,Saitozaki,40,1-------,AF,9907,,3340N 13021E, +,JP,SUG,Suga,Suga,32,1-------,AF,9907,,3522N 13302E, +,JP,SUH,"Sumoto, Hyogo","Sumoto, Hyogo",28,1-------,AF,9907,,3420N 13452E, +,JP,SUM,Suminoe,Suminoe,41,1-------,AF,9907,,4311N 14100E, +,JP,SUR,Sugeura,Sugeura,32,1-------,AF,9907,,3534N 13310E, +,JP,SUS,Susa,Susa,35,1-------,AF,9907,,3437N 13137E, +,JP,SUU,Sugawa,Sugawa,42,1-------,AF,9907,,3719N 13901E, +,JP,SUW,Suwa,Suwa,32,1-------,AF,9907,,3602N 13807E, +,JP,SUZ,Susaki,Susaki,39,1-------,AF,9907,,3324N 13317E, +,JP,SWA,Shimokawaguchi,Shimokawaguchi,39,1-------,AF,9907,,3247N 13250E, +,JP,SXM,Sunami,Sunami,34,1-------,AF,9907,,3634N 13718E, +,JP,SYA,"Shioya, Okinawa","Shioya, Okinawa",47,1-------,AF,9907,,2621N 12752E, +,JP,SYO,Shoura,Shoura,46,1-------,AF,9907,,3215N 13010E, +,JP,SZG,Shizugawa,Shizugawa,04,1-------,AF,9907,,3841N 14127E, +,JP,SZI,Shinjima,Shinjima,46,1-------,AF,9907,,3137N 13043E, +,JP,SZK,Senzaki,Senzaki,35,1-------,AF,9907,,3424N 13112E, +,JP,SZU,Shizuura,Shizuura,22,1-------,AF,9907,,4129N 14001E, +,JP,TAD,Tadotsu,Tadotsu,37,1-------,AF,9907,,3416N 13346E, +,JP,TAE,Tanabe,Tanabe,30,1-------,AF,9907,,3344N 13523E, +,JP,TAG,Tagi,Tagi,32,1-------,AF,9907,,3553N 13923E, +,JP,TAI,Tamatsukuri,Tamatsukuri,08,--3-----,AF,9907,,3606N 14025E, +,JP,TAJ,Tajiri,Tajiri,46,1-------,AF,0401,,3101N 13040E, +,JP,TAK,Takamatsu,Takamatsu,37,1--4----,AF,9907,,3421N 13403E, +,JP,TAM,Tamano,Tamano,33,1-------,AF,9907,,3430N 13357E, +,JP,TAN,Tanagawa,Tanagawa,27,1-------,AF,9907,,3419N 13507E, +,JP,TAO,Tago,Tago,22,1-------,AF,9907,,3448N 13846E, +,JP,TAQ,Taira,Taira,42,1-------,AF,9907,,3316N 12908E, +,JP,TAR,Tahara,Tahara,34,1-------,AF,9907,,3410N 13230E, +,JP,TAS,Takeshiki,Takeshiki,42,1-------,AF,9907,,3418N 12918E, +,JP,TAT,Tatsugo,Tatsugo,46,1-------,AF,9907,,2825N 12935E, +,JP,TAU,Taura,Taura,35,0-------,RL,9907,,4236N 14155E, +,JP,TAW,Tannowa,Tannowa,27,1-------,AF,9907,,3420N 13510E, +,JP,TAZ,Tai,Tai,26,1-------,AF,9907,,3535N 13515E, +,JP,TBN,Tachibana,Tachibana,36,1-------,AF,9907,,3342N 13426E, +,JP,TBR,Tabira,Tabira,42,1-------,AF,9907,,3322N 13116E, +,JP,TCH,Tsuchiura,Tsuchiura,08,1-------,AF,9907,,3605N 14012E, +,JP,TDN,Tadanoumi,Tadanoumi,34,1-------,AF,9907,,3420N 13259E, +,JP,TDT,Tairadate,Tairadate,02,1-------,AF,9907,,4110N 14038E, +,JP,TEA,Takena,Takena,32,1-------,AF,9907,,2810N 12916E, +,JP,TEE,Take,Take,46,1-------,AF,9907,,3135N 13032E, +,JP,TEI,Tei,Tei,39,1-------,AF,9907,,3332N 13346E, +,JP,TER,Teuri,Teuri,01,1-------,AF,9907,,4426N 14119E, +,JP,TEU,Teuchi,Teuchi,46,1-------,AF,9907,,3138N 12942E, +,JP,TGC,Toguchi,Toguchi,46,1-------,AF,9907,,2822N 12935E, +,JP,TGM,Taguma,Taguma,40,0-------,RL,9907,,3333N 13020E, +,JP,TGO,Tagonoura,Tagonoura,22,1-------,AF,9907,,3508N 13840E, +,JP,THM,Tanohama,Tanohama,03,1-------,AF,9907,,3434N 12918E, +,JP,THR,Takehara,Takehara,34,1-------,AF,9907,,3421N 13254E, +,JP,THS,Toyohashi,Toyohashi,23,1-------,AF,9907,,3446N 13723E, +,JP,TIA,Taisha,Taisha,32,1-------,AF,9907,,3350N 13031E, +,JP,TIS,Teishi,Teishi,22,1-------,AF,9907,,3438N 13853E, +,JP,TJI,Takarajima,Takarajima,46,1-------,AF,9907,,2909N 12912E, +,JP,TJJ,Tomamae,Tomamae,01,1-------,AF,9907,,4418N 14139E, +,JP,TJK,Takashima/Masuda,Takashima/Masuda,32,1-------,AF,9907,,3450N 13150E, +,JP,TJM,Tojima,Tojima,38,1-------,AF,9907,,3448N 13548E, +,JP,TJO,"Toshima, Hyogo","Toshima, Hyogo",28,1-------,AF,9907,,3433N 13456E, +,JP,TJR,"Tajiri, Tottori","Tajiri, Tottori",31,1-------,AF,9907,,3535N 13419E, +,JP,TJS,Tokashiki,Tokashiki,47,1-------,AF,9907,,2612N 12721E, +,JP,TKA,Tokai,Tokai,23,1-------,AF,9907,,3503N 13655E, +,JP,TKD,Takada,Takada,44,1-------,AF,9907,,3333N 13127E, +,JP,TKE,Takeno,Takeno,28,1-------,AF,9907,,3539N 13446E, +,JP,TKI,Taki,Taki,17,1-------,AF,9907,,3429N 13631E, +,JP,TKK,Takaoka,Takaoka,16,1-------,AF,9907,,3644N 13701E, +,JP,TKM,Takuma,Takuma,37,1-------,AF,9907,,3414N 13340E, +,JP,TKN,Tokunoshima,Tokunoshima,46,---4----,AF,9907,,2747N 12857E, +,JP,TKR,Tokoro,Tokoro,01,1-------,AF,9907,,4407N 14401E, +,JP,TKS,Tokushima,Tokushima,36,1--4----,AF,9907,,3404N 13433E, +,JP,TKT,Taketoyo,Taketoyo,23,1-------,AF,9907,,3450N 13654E, +,JP,TKU,Takuno,Takuno,32,1-------,AF,9907,,3510N 13225E, +,JP,TKY,Tokuyama,Tokuyama,35,1-------,AF,9907,,3404N 13147E, +,JP,TKZ,Takezaki,Takezaki,42,1-------,AF,9907,,3511N 13310E, +,JP,TMA,Tomari/Shiribeshi,Tomari/Shiribeshi,01,1-------,AF,9907,,4304N 14030E, +,JP,TME,Tomie,Tomie,42,1-------,AF,9907,,3237N 12846E, +,JP,TMI,Tsukumi,Tsukumi,44,1-------,AF,9907,,3304N 13152E, +,JP,TMJ,Takami,Takami,37,1-------,AF,9907,,3419N 13341E, +,JP,TMK,Tomakomai,Tomakomai,01,1--4----,AF,9907,,4238N 14136E, +,JP,TMM,Tomiku,Tomiku,44,1-------,AF,9907,,3336N 13141E, +,JP,TMN,Tamanoura,Tamanoura,42,1-------,AF,9907,,3238N 12837E, +,JP,TMO,"Tomioka, Kumamoto","Tomioka, Kumamoto",43,1-------,AF,9907,,3231N 13002E, +,JP,TMR,"Tomari, Okinawa","Tomari, Okinawa",47,1-------,AF,9907,,2613N 12741E, +,JP,TMU,Tomitsu,Tomitsu,43,1-------,AF,9907,,3246N 13011E, +,JP,TMZ,Tarumizu,Tarumizu,46,1-------,AF,9907,,3130N 13042E, +,JP,TNB,Takanabe,Takanabe,45,1-------,AF,9907,,3208N 13130E, +,JP,TND,Tonda,Tonda,35,1-------,AF,9907,,3404N 13145E, +,JP,TNE,Tanegashima,Tanegashima,46,---4----,AF,9907,,3036N 13060E, +,JP,TNO,Tonosho,Tonosho,37,1-------,AF,9907,,3429N 13411E, +,JP,TNR,"Tanoura, Kumamoto","Tanoura, Kumamoto",43,1-------,AF,9907,,3222N 13031E, +,JP,TNS,Tsunoshima,Tsunoshima,35,1-------,AF,9907,,3421N 13052E, +,JP,TNU,Tanoura/Kitakyushu,Tanoura/Kitakyushu,40,1-------,AF,9907,,3358N 13100E, +,JP,TOB,Toba,Toba,24,1-------,AF,9907,,3428N 13650E, +,JP,TOG,Togi,Togi,17,1-------,AF,9907,,3442N 13744E, +,JP,TOI,Toi,Toi,22,1-------,AF,9907,,3437N 13855E, +,JP,TOJ,Toga,Toga,05,1-------,AF,9907,,3958N 13943E, +,JP,TOK,Tokachi,Tokachi,01,1-------,AF,9907,,4239N 14260E, +,JP,TOS,Toyamashinko,Toyamashinko,16,1-------,AF,9907,,3646N 13712E, +,JP,TOT,Totoro,Totoro,45,1-------,AF,9907,,3530N 13413E, +,JP,TOU,Touyo,Touyo,38,1-------,AF,9907,,4350N 14201E, +,JP,TOY,Toyama,Toyama,16,1--4----,AF,9907,,3642N 13713E, +,JP,TRA,Taramajima,Taramajima,47,---4----,AF,9907,,2439N 12442E, +,JP,TRC,Tsuruuchi,Tsuruuchi,37,1-------,AF,9907,,3420N 13401E, +,JP,TRG,Tsuruga,Tsuruga,18,1-------,AF,9907,,3539N 13604E, +,JP,TRO,Tororo,Tororo,43,1-------,AF,9907,,3227N 13003E, +,JP,TRR,Tomariura,Tomariura,39,1-------,AF,9907,,3251N 13240E, +,JP,TRU,"Tsurumi, Okayama","Tsurumi, Okayama",33,1-------,AF,9907,,3442N 13412E, +,JP,TRZ,Terazu/Yatsuka,Terazu/Yatsuka,32,1-------,AF,9907,,3530N 13310E, +,JP,TSG,Takasago,Takasago,28,1-------,AF,9907,,3446N 13447E, +,JP,TSH,Tsushi,Tsushi,28,1-------,AF,9907,,3424N 13448E, +,JP,TSI,Teshima,Teshima,37,1-------,AF,9907,,3429N 13404E, +,JP,TSJ,Tsushima,Tsushima,42,---4----,AF,9907,,3424N 12919E, +,JP,TSM,Takashima/Nishisonogi,Takashima/Nishisonogi,42,1-------,AF,9907,,3311N 12935E, +,JP,TSO,Teshio,Teshio,01,1-------,AF,9907,,4453N 14145E, +,JP,TSS,Tasumi,Tasumi,32,1-------,AF,9907,,3522N 13323E, +,JP,TST,Tsutsu,Tsutsu,42,1-------,AF,9907,,3407N 12911E, +,JP,TSU,Tsu,Tsu,24,1-------,AF,9907,,3444N 13631E, +,JP,TSX,Takeshima,Takeshima,46,1-------,AF,9907,,3049N 13026E, +,JP,TSZ,Tosashimizu,Tosashimizu,39,1-------,AF,9907,,3247N 13257E, +,JP,TTJ,Tottori,Tottori,31,1--4----,AF,9907,,3530N 13413E, +,JP,TTM,Tsutsumi,Tsutsumi,32,1-------,AF,9907,,3218N 13037E, +,JP,TTS,"Tateishi, Kagawa","Tateishi, Kagawa",37,1-------,AF,9907,,3423N 13343E, +,JP,TTY,Tateyama,Tateyama,12,1-------,AF,9907,,3460N 13952E, +,JP,TUD,Tsuda,Tsuda,37,1-------,AF,9907,,3418N 13414E, +,JP,TUI,Tsui,Tsui,28,1-------,AF,9907,,3419N 13441E, +,JP,TUS,Toyoshige,Toyoshige,31,1-------,AF,9907,,3531N 13332E, +,JP,TUU,Tsukumo,Tsukumo,34,1-------,AF,9907,,3415N 13227E, +,JP,TXN,Tokoname,Tokoname,23,1-------,AF,9907,,3454N 13650E, +,JP,TYJ,"Toyohama, Aichi","Toyohama, Aichi",23,1-------,AF,9907,,3443N 13656E, +,JP,TYN,Tsuiyama,Tsuiyama,28,1-------,AF,9907,,3539N 13450E, +,JP,TYR,Toyoura,Toyoura,33,1-------,AF,9907,,4235N 14043E, +,JP,TZA,Taiza,Taiza,26,1-------,AF,9907,,3544N 13505E, +,JP,TZU,Terazu/Matsue,Terazu/Matsue,32,1-------,AF,9907,,3530N 13310E, +,JP,UAO,Urago,Urago,32,1-------,AF,9907,,3605N 13259E, +,JP,UBJ,Ube,Ube,35,1--4----,AF,9907,,3357N 13115E, +,JP,UCH,Uchiumi,Uchiumi,45,1-------,AF,9907,,3145N 13128E, +,JP,UCR,"Uchiura, Ishikawa","Uchiura, Ishikawa",17,1-------,AF,9907,,3713N 13656E, +,JP,UDD,Udo,Udo,46,1-------,AF,9907,,3504N 13512E, +,JP,UDO,Udono,Udono,24,1-------,AF,9907,,3344N 13600E, +,JP,UEC,Uechi,Uechi,47,1-------,AF,9907,,2624N 12744E, +,JP,UGA,Uga,Uga,32,1-------,AF,9907,,3442N 13303E, +,JP,UGU,Ugusu,Ugusu,22,1-------,AF,9907,,3451N 13847E, +,JP,UHH,Uchihana,Uchihana,47,1-------,AF,9907,,2657N 12756E, +,JP,UIA,Hakui,Hakui,17,--3-----,AF,9907,,3654N 13647E, +,JP,UJI,Ujina,Ujina,34,1-------,AF,9907,,3421N 13228E, +,JP,UKJ,Ukejima,Ukejima,46,1-------,AF,9907,,2802N 12914E, +,JP,UKN,Uken,Uken,46,1-------,AF,9907,,2817N 12919E, +,JP,UKT,Ukitsu,Ukitsu,46,1-------,AF,9907,,3318N 13409E, +,JP,UKY,Kyoto,Kyoto,26,---4----,AF,9907,,3501N 13545E, +,JP,UMG,Umagoe,Umagoe,37,1-------,AF,9907,,3431N 13413E, +,JP,UNO,Uno,Uno,33,1-------,AF,9907,,3429N 13357E, +,JP,UNS,Unoshima,Unoshima,40,1-------,AF,9907,,3531N 13845E, +,JP,UNT,Unten,Unten,47,1-------,AF,9907,,2641N 12760E, +,JP,UOM,Uomi,Uomi,46,1-------,AF,9907,,3551N 13617E, +,JP,UOZ,"Uozu, Toyama","Uozu, Toyama",16,1-------,AF,9907,,3649N 13725E, +,JP,URA,Ura,Ura,28,1-------,AF,9907,,3432N 13459E, +,JP,URG,Uraga,Uraga,14,1-------,AF,9907,,3515N 13943E, +,JP,URH,Urahara,Urahara,46,1-------,AF,9907,,2817N 12958E, +,JP,URK,Urakawa,Urakawa,01,1-------,AF,9907,,4210N 14246E, +,JP,URM,Uragami,Uragami,30,1-------,AF,9907,,3334N 13554E, +,JP,URS,Urasoko,Urasoko,46,1-------,AF,9907,,3212N 13010E, +,JP,URU,Furumi,Furumi,32,1-------,AF,9907,,3651N 13815E, +,JP,USA,Usa/Tosa,Usa/Tosa,39,1-------,AF,9907,,3327N 13326E, +,JP,USG,Ushigakubijima,Ushigakubijima,37,1-------,AF,9907,,3431N 13358E, +,JP,USH,Ushimado,Ushimado,33,1-------,AF,9907,,3437N 13410E, +,JP,USI,Ushine,Ushine,46,1-------,AF,9907,,3413N 13908E, +,JP,USJ,Usujiri,Usujiri,01,1-------,AF,9907,,4156N 14057E, +,JP,USK,Usuki,Usuki,44,1-------,AF,9907,,3308N 13148E, +,JP,USN,Usuno,Usuno,44,1-------,AF,9907,,3338N 13129E, +,JP,UST,Ushitsu,Ushitsu,17,1-------,AF,9907,,3718N 13710E, +,JP,USU,Usunoura,Usunoura,42,1-------,AF,9907,,3313N 12937E, +,JP,UTM,"Utsumi, Aichi","Utsumi, Aichi",23,1-------,AF,9907,,3445N 13652E, +,JP,UTZ,Utazu,Utazu,37,1-------,AF,9907,,3419N 13350E, +,JP,UWA,Uwajima,Uwajima,38,1-------,AF,9907,,3313N 13234E, +,JP,UZK,Uzuki,Uzuki,32,1-------,AF,9907,,3617N 13322E, +,JP,WAD,Wadomari,Wadomari,46,1-------,AF,9907,,2724N 12839E, +,JP,WAI,Waita,Waita,35,1-------,AF,9907,,3448N 13547E, +,JP,WAK,Wakayama,Wakayama,30,1-------,AF,9907,,3414N 13511E, +,JP,WAN,Wan,Wan,46,1-------,AF,9907,,2819N 12956E, +,JP,WDA,Wada,Wada,18,1-------,AF,9907,,3537N 13557E, +,JP,WJM,Wajima,Wajima,17,1-------,AF,9907,,3723N 13654E, +,JP,WKJ,Wakkanai,Wakkanai,01,1--4----,AF,9907,,4525N 14140E, +,JP,WKW,Wakinosawa,Wakinosawa,02,1-------,AF,9907,,4108N 14048E, +,JP,WKZ,Wakizaki,Wakizaki,46,1-------,AF,9907,,3210N 13011E, +,JP,WMT,Wakimoto,Wakimoto,38,1-------,AF,9907,,3256N 13239E, +,JP,WNA,Wano,Wano,46,1-------,AF,9907,,2825N 12942E, +,JP,WNI,Waniura,Waniura,42,1-------,AF,9907,,3442N 12927E, +,JP,WTU,"Wakamatsu, Nagasaki","Wakamatsu, Nagasaki",42,1-------,AF,9907,,3253N 12901E, +,JP,YAA,Yanagi,Yanagi,43,1-------,AF,9907,,3249N 13109E, +,JP,YAD,"Yamada, Iwate","Yamada, Iwate",03,1-------,AF,9907,,3928N 14157E, +,JP,YAG,"Yagi, Hyogo","Yagi, Hyogo",28,1-------,AF,9907,,3440N 13456E, +,JP,YAM,Yamagawa,Yamagawa,46,1-------,AF,9907,,3112N 13038E, +,JP,YAN,Yanai,Yanai,35,1-------,AF,9907,,3358N 13206E, +,JP,YAS,Yasumiya,Yasumiya,02,1-------,AF,9907,,4026N 14054E, +,JP,YAT,Yatsushiro,Yatsushiro,43,1-------,AF,9907,,3230N 13036E, +,JP,YBK,Yobuko,Yobuko,41,1-------,AF,9907,,3332N 12954E, +,JP,YBT,Yubetsu,Yubetsu,01,1-------,AF,9907,,4409N 14334E, +,JP,YDM,Yudomari,Yudomari,46,1-------,AF,9907,,3014N 13028E, +,JP,YGE,Yuge,Yuge,38,1-------,AF,9907,,3415N 13312E, +,JP,YGJ,Yonago,Yonago,31,---4----,AF,9907,,3526N 13320E, +,JP,YGR,Yagishiri,Yagishiri,01,1-------,AF,9907,,4426N 14124E, +,JP,YHA,Yoshiura/Yunotsu,Yoshiura/Yunotsu,32,1-------,AF,9907,,3504N 13219E, +,JP,YIC,Yoichi,Yoichi,01,1-------,AF,9907,,4312N 14047E, +,JP,YKK,Yokkaichi,Yokkaichi,24,1-------,AF,9907,,3458N 13637E, +,JP,YKS,Yokoshima/Kurahashi,Yokoshima/Kurahashi,34,1-------,AF,9907,,3421N 13316E, +,JP,YKT,"Yokota, Hiroshima","Yokota, Hiroshima",34,1-------,AF,9907,,3443N 13239E, +,JP,YMC,Yumachi,Yumachi,32,1-------,AF,9907,,3526N 13301E, +,JP,YMD,"Yamada, Okayama","Yamada, Okayama",33,1-------,AF,9907,,3438N 13351E, +,JP,YMG,Yamaguchi,Yamaguchi,35,1-------,AF,9907,,3411N 13128E, +,JP,YNI,Yani,Yani,46,1-------,AF,9907,,2830N 12939E, +,JP,YNN,Yanma,Yanma,46,1-------,AF,9907,,2814N 12925E, +,JP,YNT,Yunotsu,Yunotsu,32,1-------,AF,9907,,3506N 13221E, +,JP,YNZ,Yonouzu,Yonouzu,44,1-------,AF,9907,,3256N 13159E, +,JP,YOG,Yonegura,Yonegura,33,1-------,AF,9907,,3438N 13354E, +,JP,YOR,Yoro,Yoro,46,1-------,AF,9907,,2802N 12909E, +,JP,YOU,Youra,Youra,44,1-------,AF,9907,,3305N 13160E, +,JP,YQD,Yamada,Yamada,28,1-------,AF,9907,,3507N 13519E, +,JP,YRA,"Yura, Hyogo","Yura, Hyogo",28,1-------,AF,9907,,3538N 13437E, +,JP,YSD,"Yoshida, Ehime","Yoshida, Ehime",38,1-------,AF,9907,,3317N 13232E, +,JP,YSG,Yasugi,Yasugi,32,1-------,AF,9907,,3526N 13315E, +,JP,YSM,Yoshima,Yoshima,37,1-------,AF,9907,,3423N 13349E, +,JP,YSR,Yoshiura/Misumi,Yoshiura/Misumi,32,1-------,AF,9907,,3504N 13219E, +,JP,YSU,Yoshiura,Yoshiura,34,1-------,AF,9907,,3416N 13232E, +,JP,YSZ,Yoshizu,Yoshizu,24,1-------,AF,9907,,3509N 13649E, +,JP,YTI,Yutai,Yutai,38,1-------,AF,9907,,3303N 13227E, +,JP,YUA,"Yura, Yamaguchi","Yura, Yamaguchi",35,1-------,AF,9907,,3354N 13219E, +,JP,YUK,Yuki,Yuki,36,1-------,AF,9907,,3618N 13953E, +,JP,YUR,"Yura, Wakayama","Yura, Wakayama",30,1-------,AF,9907,,3358N 13507E, +,JP,YUU,Yuu,Yuu,35,1-------,AF,9907,,3356N 13226E, +,JP,YWH,Yawatahama,Yawatahama,38,1-------,AF,9907,,3328N 13225E, +,JP,YWN,Yuwan,Yuwan,46,1-------,AF,9907,,2817N 12918E, +,JP,YYA,Awano,Awano,35,1-------,AF,9907,,3505N 13416E, +,JP,YZU,Yaizu,Yaizu,22,1-------,AF,9907,,3450N 13818E, +,JP,ZMM,Zamami,Zamami,47,1-------,AF,9907,,2614N 12718E, +,KE,ASV,Amboseli,Amboseli,,---4----,AI,0001,,0239S 03716E, +,KE,BMQ,Bamburi,Bamburi,,---4----,AI,0001,,0359S 03942E, +,KE,EDL,Eldoret,Eldoret,,---4----,AI,0001,,0031N 03516E, +,KE,EMB,Embakasi,Embakasi,,0-------,RQ,9601,,0118S 03656E, +,KE,EYS,Eliye Springs,Eliye Springs,,---4----,AI,0001,,0314N 03601E, +,KE,GAS,Garissa,Garissa,,---4----,AI,0001,,0027S 03938E, +,KE,HOA,Hola,Hola,,---4----,AI,0001,,0130S 04002E, +,KE,ILU,Kilaguni,Kilaguni,,---4----,AI,0001,,0254S 03804E, +,KE,KEY,Kericho,Kericho,,---4----,AI,0001,,0022S 03517E, +,KE,KIL,Kilindini,Kilindini,,1-------,RQ,9506,,0404S 03939E, +,KE,KIS,Kisumu,Kisumu,,1--4----,AI,9601,,0006S 03445E, +,KE,KIU,Kiunga,Kiunga,,---4----,AI,0001,,0149S 04121E, +,KE,KLK,Kalokol,Kalokol,,---4----,AI,0001,,0332N 03551E, +,KE,KTL,Kitale,Kitale,,---4----,AI,0001,,0101N 03500E, +,KE,KWY,Kiwayu,Kiwayu,,---4----,AI,0001,,0200S 04117E, +,KE,LAU,Lamu,Lamu,,1--4----,AI,9601,,0216S 04054E, +,KE,LBK,Liboi,Liboi,,---4----,AI,0001,,0021N 04052E, +,KE,LKG,Lokichoggio,Lokichoggio,,---4----,AI,0001,,0412N 03422E, +,KE,LOK,Lodwar,Lodwar,,---4----,AI,0001,,0307N 03536E, +,KE,MBA,Mombasa,Mombasa,,1--45---,AI,9601,,0403S 03940E, +,KE,MUM,Mumias,Mumias,,---4----,AI,0001,,0020N 03429E, +,KE,MYD,Malindi,Malindi,,1--4----,AI,9601,,0313S 04007E, +,KE,NBO,Nairobi,Nairobi,,-2345---,AI,9601,,0117S 03649E, +,KE,NDE,Mandera,Mandera,,---4----,AI,0001,,0356N 04151E, +,KE,NUU,Nakuru,Nakuru,,---4----,AI,0001,,0017S 03604E, +,KE,NYE,Nyeri,Nyeri,,---4----,AI,0001,,0025S 03657E, +,KE,NYK,Nanyuki,Nanyuki,,---4----,AI,0001,,0001N 03704E, +,KE,NZO,Nzoia,Nzoia,,---4----,AI,0001,,0049N 03505E, +,KE,OYL,Moyale,Moyale,,---4----,AI,0001,,0331N 03904E, +,KE,RBT,Marsabit,Marsabit,,---4----,AI,0001,,0220N 03759E, +,KE,UAS,Samburu,Samburu,,---4----,AI,0001,,0351S 03913E, +,KE,UKA,Ukunda,Ukunda,,---4----,AI,0001,,0419S 03933E, +,KE,WIL,Wilson Apt/Nairobi,Wilson Apt/Nairobi,,---4----,AI,9506,,0119S 03649E, +,KE,WJR,Wajir,Wajir,,---4----,AI,0001,,0145N 04004E, +,KG,OSS,Osh,Osh,,-2-4----,AI,2007,,4032N 07247E, +,KH,BBM,Battambang,Battambang,,---4----,AI,0001,,1306N 10312E, +,KH,KKZ,Koh Kong,Koh Kong,,---4----,AI,0001,,1120N 10301E, +,KH,KMT,Kampot,Kampot,,---4----,AI,0001,,1037N 10411E, +,KH,KTI,Kratie,Kratie,,---4----,AI,0001,,1229N 10601E, +,KH,PAI,Pailin,Pailin,,---4----,AI,0001,,1251N 10236E, +,KH,PNH,Phnom Penh,Phnom Penh,,1--45---,AI,9601,,1134N 10455E, +,KH,REP,Siem Reap,Siem Reap,,---4----,AI,0001,,1322N 10352E, +,KH,SVR,Svay Rieng,Svay Rieng,,---4----,AI,0001,,1105N 10548E, +,KH,TNX,Stung Treng,Stung Treng,,---4----,AI,0001,,1332N 10558E, +,KI,AAK,Aranuka,Aranuka,,---4----,AI,0001,,0013N 17337E, +,KI,ABF,Abaiang,Abaiang,,---4----,AI,0001,,0212N 17247E, +,KI,AEA,Abemama,Abemama,,---4----,AI,9601,,0031N 17347E, +,KI,BBG,Butaritari,Butaritari,,---4----,AI,9601,,0255N 17255E, +,KI,BEZ,Beru,Beru,,---4----,AI,9601,,0120S 17552E, +,KI,CIS,Canton Island,Canton Island,,---4----,AI,0001,,0249S 17141W, +,KI,CXI,Christmas Island,Christmas Island,,---4----,AI,9506,,0152N 15726W, +,KI,KUC,Kuria,Kuria,,---4----,AI,0001,,0015N 17320E, +,KI,MNK,Maiana,Maiana,,---4----,AI,9601,,0048N 17307E, +,KI,MZK,Marakei,Marakei,,---4----,AI,9601,,0217N 17312E, +,KI,NIG,Nikunau,Nikunau,,---4----,AI,9601,,0122S 17627E, +,KI,NON,Nonouti,Nonouti,,---4----,AI,9601,,0043S 17426E, +,KI,OOT,Onotoa,Onotoa,,---4----,AI,9601,,0150S 17533E, +,KI,PHO,Phoenix Islands,Phoenix Islands,,1-------,QQ,8103,,0427S 17115W, +,KI,TBF,Tabiteuea North,Tabiteuea North,,---4----,AI,9601,,0116S 17442E, +,KI,TMN,Tamana Island,Tamana Island,,---4----,AI,9601,,0230S 17559E, +,KI,TNQ,Teraina,Teraina,,---4----,AI,0001,,0441N 16023W, +,KI,TNV,Tabuaeran,Tabuaeran,,---4----,AI,0001,,0352N 15919W, +,KI,TRW,Tarawa,Tarawa,,1--4----,AI,9601,,0126N 17300E, +,KI,TSU,Tabiteuea South,Tabiteuea South,,---4----,AI,0001,,0109S 17518E, +,KM,YVA,Moroni,Moroni,,1--45---,AI,9601,,1142S 04315E, +,KN,BAS,"Basseterre, Saint Kitts","Basseterre, Saint Kitts",,1---5---,AI,1101,,1718N 06243W, +,KN,SKB,Saint Kitts,Saint Kitts,,---45---,AI,1101,,1719N 06245W, +,KP,CHO,Chongjin,Chongjin,09,1-------,AA,1901,,4147N 12949E, +,KP,FNJ,Pyongyang,Pyongyang,,---45---,AI,9601,,3901N 12545E, +,KP,HAE,Haeju,Haeju,05,1-------,AA,1901,,3802N 12543E, +,KP,HGM,Hungnam,Hungnam,08,1-------,AA,1901,,3951N 12740E, +,KP,KSN,Kaesong,Kaesong,,-23-----,RL,0006,,3758N 12633E, +,KP,NAM,Nampo,Nampo,14,123-----,AA,1901,,3844N 12525E, +,KP,SII,Sinuiju,Sinuiju,,-23-----,RL,0006,,4006N 12424E, +,KP,SON,Songjin,Songjin,,1-------,RQ,9506,,4040N 12913E, +,KP,WON,Wonsan,Wonsan,07,1-------,AA,1901,,3910N 12726E, +,KR,GNO,Gangseo,Gangseo,,---4----,RQ,0901,,3733N 12651E, +,KR,HSO,Hwasong,Hwasong,41,--3-----,RQ,0901,,3444N 12636E, +,KR,OCH,Ochang,Ochang,43,-23-----,RQ,0607,,3644N 12726E, +,KW,KWI,Kuwait,Kuwait,,1--45---,AI,9601,,2923N 04758E, +,KY,LYB,Little Cayman,Little Cayman,,---4----,AI,9601,,1941N 08003W, +,KZ,ABE,Aktobe,Aktobe,,--3-----,RQ,0407,,5017N 05714E, +,KZ,AST,Nur-Sultan,Nur-Sultan,,---45---,AI,2007,TSE,5108N 07126E, +,KZ,ATX,Atbasar,Atbasar,,---4----,AI,0001,,5149N 06822E, +,KZ,AYK,Arkalyk,Arkalyk,,---4----,AI,0001,,5015N 06656E, +,KZ,BKZ,Baikonur,Baikonur,11,-234-6--,RQ,0901,,4538N 06318E, +,KZ,CIT,Shimkent,Shimkent,,--34----,AI,9811,,4219N 06935E, +,KZ,DMB,Zhambyl,Zhambyl,,---4----,AI,0001,,4712N 07124E, +,KZ,DZN,Zhezkazgan,Zhezkazgan,,---4----,AI,0001,,4748N 06742E, +,KZ,EKB,Ekibastuz,Ekibastuz,,---4----,AI,0001,,5144N 07520E, +,KZ,GUW,Atyrau (ex Guryev),Atyrau (ex Guryev),,-2-4----,AI,2007,,4706N 05155E, +,KZ,HOR,Horgos,Horgos,,-23-56--,AI,2007,,4413N 08023E, +,KZ,KSN,Kostanay,Kostanay,,---4----,AI,0001,,5313N 06338E, +,KZ,LKK,Lisakovsk,Lisakovsk,,--3-----,RL,9901,,5233N 06229E, +,KZ,SHY,Shymkent,Shymkent,,--3-----,RQ,1007,,4219N 06935E, +,KZ,TDK,Taldy-Kurgan,Taldy-Kurgan,,---4----,AI,0001,,4501N 07823E, +,KZ,TYK,Taldykorgan,Taldykorgan,,-----6--,RQ,1007,,4501N 07823E, +,KZ,UKK,Ust-Kamenogorsk,Ust-Kamenogorsk,,---4----,AI,0001,,4957N 08238E, +,KZ,URA,Uralsk,Uralsk,,---45---,AI,0001,,5112N 05122E, +,LA,KOG,Khong,Khong,,---4----,AI,0001,,2012N 10353E, +,LA,OUI,Ban Houei,Ban Houei,,---4----,AI,0001,,1508N 10631E, +,LA,SND,Seno,Seno,,---4----,AI,0001,,1641N 10458E, +,LA,VNG,Viengxay,Viengxay,,---4----,AI,0001,,1855N 10227E, +,LA,XAY,Xayabury,Xayabury,,---4----,AI,0001,,1916N 10142E, +,LA,XIE,Xienglom,Xienglom,,---4----,AI,0001,,1938N 10049E, +,LB,CHK,Chekka,Chekka,,1-------,QQ,8103,,3419N 03544E, +,LB,JIE,Jieh,Jieh,,1-------,RQ,9601,,3339N 03524E, +,LB,KHA,Khalde,Khalde,,1-------,RQ,9601,,3347N 03529E, +,LB,KYE,Tripoli,Tripoli,,1--4----,AI,9601,,3426N 03550E, +,LB,OUZ,Ouzai,Ouzai,,1-------,RQ,9506,,3351N 03529E, +,LB,QJN,Jounieh,Jounieh,,---4----,AI,9506,,3358N 03537E, +,LB,SEL,Selaata,Selaata,,1-------,RQ,9506,,3417N 03540E, +,LB,SUR,Sur (Tyre),Sur (Tyre),,1-------,QQ,8103,,3316N 03512E, +,LB,ZHR,Zahrani Terminal,Zahrani Terminal,,1-------,RQ,9506,,3329N 03521E, +,LC,CDS,Cul de Sac,Cul de Sac,,1-------,RQ,9506,,1359N 06060W, +,LC,VIF,Vieux Fort,Vieux Fort,,1-------,RQ,9506,,1344N 06057W, +,LI,TES,Triesen,Triesen,,--3-----,RQ,9705,QVU,4706N 00932E, +,LK,ADP,Anuradhapura,Anuradhapura,,---4----,AI,0001,,0820N 08025E, +,LK,BRW,Beruwala,Beruwala,,1-------,QQ,8311,,0629N 07959E, +,LK,GAL,Galle,Galle,,1-------,QQ,8311,,0602N 08013E, +,LK,JAF,Jaffna,Jaffna,,1--4----,AI,9601,,0940N 08001E, +,LK,JCT,Jaya Container Terminal,Jaya Container Terminal,,1-------,RQ,0207,,0657N 07951E, +,LK,KAL,Kalpitiya,Kalpitiya,,1-------,QQ,8311,,0814N 07946E, +,LK,KAN,Kandy,Kandy,,--3-----,RL,0001,,0718N 08038E, +,LK,KAY,Kayts,Kayts,,1-------,QQ,8311,,0942N 07952E, +,LK,KLT,Kalutara,Kalutara,,--3-----,RL,9811,,0635N 07958E, +,LK,KNK,Kankesanturai,Kankesanturai,,1-------,QQ,8311,,0949N 08002E, +,LK,MAN,Mannar,Mannar,,1-------,QQ,8311,,0859N 07955E, +,LK,MNH,Minneriya,Minneriya,,---4----,AI,0001,,0802N 08054E, +,LK,NAW,Nawala,Nawala,,-----6--,RQ,1007,,0653N 07953E, +,LK,PPE,Point Pedro,Point Pedro,,1-------,QQ,8311,,0949N 08014E, +,LK,PUL,Pulmoddai,Pulmoddai,,--3-----,RL,9811,,0856N 08059E, +,LK,RML,Colombo/Ratmalana Apt,Colombo/Ratmalana Apt,,---4----,AI,9601,,0656N 07951E, +,LK,SGT,South Asia Gateway Terminal,South Asia Gateway Terminal,,1-------,RQ,0207,,0657N 07951E, +,LK,TAL,Talaimannar,Talaimannar,,1-------,QQ,8311,,0906N 07944E, +,LK,TRR,Trincomalee,Trincomalee,,1--4----,AI,9601,,0835N 08114E, +,LK,UCT,Unity Container Terminal,Unity Container Terminal,,1-------,RQ,0207,,0657N 07951E, +,LR,CPA,Cape Palmas,Cape Palmas,,1--4----,AI,9601,,0422N 00744W, +,LR,FOY,Foya,Foya,,---4----,AI,9601,,0816N 01018W, +,LR,GBS,Grand Bassa,Grand Bassa,,1-------,QQ,8103,,0553N 01003W, +,LR,GRC,Grand Cess,Grand Cess,,---4----,AI,9601,,0434N 00813W, +,LR,GRE,Greenville,Greenville,,1-------,QQ,8103,,0501N 00902W, +,LR,LOB,Lower Buchanan,Lower Buchanan,,1-------,QQ,8103,,0553N 01003W, +,LR,MAR,Marshall,Marshall,,1-------,QQ,8103,,0609N 01023W, +,LR,NIA,Nimba,Nimba,,---4----,AI,9601,,0644N 01102W, +,LR,ROX,Robertsport,Robertsport,,1-------,QQ,8103,,0645N 01122W, +,LR,SAZ,Sasstown,Sasstown,,1--4----,AI,9601,,0624N 01042W, +,LR,SNI,Sinoe,Sinoe,,1--4----,AI,9601,,0501N 00902W, +,LR,THC,Tchien,Tchien,,---4----,AI,9601,,0604N 00808W, +,LR,TPT,Tapeta,Tapeta,,---4----,AI,0001,,0630N 00852W, +,LR,TRT,Trade Town,Trade Town,,1-------,QQ,8103,,0548N 00951W, +,LR,UCN,Buchanan,Buchanan,,1--4----,AI,9601,,0553N 01003W, +,LR,VOI,Voinjama,Voinjama,,---4----,AI,9601,,0825N 00945W, +,LR,WES,Weasua,Weasua,,---4----,AI,0001,,0719N 01031W, +,LS,LEF,Lebakeng,Lebakeng,,---4----,AI,0001,,2954S 02839E, +,LS,LES,Lesobeng,Lesobeng,,---4----,AI,9401,,2945S 02822E, +,LS,LRB,Leribe,Leribe,,---4----,AI,0001,,2852S 02803E, +,LS,MFC,Mafeteng,Mafeteng,,---4----,AI,0001,,2949S 02714E, +,LS,MKH,Mokhotlong,Mokhotlong,,---4----,AI,9401,,2917S 02904E, +,LS,MSG,Matsaile,Matsaile,,---4----,AI,0001,,2949S 02847E, +,LS,MSU,Maseru,Maseru,,---45---,AI,9401,,2919S 02729E, +,LS,PEL,Pelaneng,Pelaneng,,---4----,AI,0001,,2905S 02830E, +,LS,THB,Thaba-Tseka,Thaba-Tseka,,---4----,AI,9401,,2931S 02837E, +,LS,TKO,Tlokoeng,Tlokoeng,,---4----,AI,0001,,2847S 02816E, +,LS,UTG,Quthing,Quthing,,---4----,AI,0001,,3024S 02742E, +,LT,BET,Betygala,Betygala,,-----6--,RL,0901,,5522N 02322E, +,LT,BIR,Birstonas,Birstonas,,-----6--,RL,0901,,5436N 02402E, +,LT,BRZ,Birzai,Birzai,,--3-----,RL,9901,,5612N 02445E, +,LT,KLJ,Klaipeda,Klaipeda,,12-4----,AI,2007,,5543N 02108E, +,LT,KUN,Kaunas,Kaunas,,--34----,RL,9805,,5454N 02354E, +,LT,LDY,Liudyne,Liudyne,,-----6--,RL,0901,,5541N 02427E, +,LT,MJP,Marijampole,Marijampole,,--3-----,RL,9901,,5433N 02321E, +,LT,NJM,Naujamiestis,Naujamiestis,,--3-----,RL,9805,,5541N 02409E, +,LT,PLQ,Palanga,Palanga,,---4----,RQ,9806,,5555N 02104E, +,LT,SQQ,Siauliai,Siauliai,,--34----,RL,9805,,5556N 02319E, +,LT,VNO,Vilnius,Vilnius,,-2-45---,AI,2007,,5441N 02517E, +,LU,AZN,Alzingen,Alzingen,,--3-----,RQ,0101,,4934N 00610E, +,LU,BET,Bettembourg,Bettembourg,,--3-----,RQ,9501,,4931N 00606E, +,LU,BSN,Bissen,Bissen,,--3-----,RQ,9705,,4947N 00604E, +,LU,CEL,Clervaux,Clervaux,,--3-----,RQ,9501,,5003N 00602E, +,LU,CPL,Capellen,Capellen,,--3-----,RQ,9705,,4939N 00559E, +,LU,CTN,Contern,Contern,,--3-----,RQ,9705,,4935N 00614E, +,LU,DIE,Diekirch,Diekirch,,--3-----,RQ,9501,,4952N 00610E, +,LU,DUD,Dudelange,Dudelange,,--3-----,RQ,9501,,4929N 00605E, +,LU,EBN,Eselborn,Eselborn,,--3-----,RL,0101,,5004N 00600E, +,LU,EDE,Erpeldange,Erpeldange,,--3-----,RQ,9806,,4933N 00620E, +,LU,ETT,Ettelbruck,Ettelbruck,,--3-----,RQ,9501,,4951N 00606E, +,LU,HOS,Hosingen,Hosingen,,--3-----,RQ,9501,,4960N 00606E, +,LU,HSG,Helmsange,Helmsange,,--3-----,RQ,9705,,4940N 00609E, +,LU,LDL,Leudelange,Leudelange,,--3-----,RL,9805,,4934N 00604E, +,LU,LUX,Luxembourg,Luxembourg,,1--45---,AI,9601,,4937N 00608E, +,LU,ROD,Rodange,Rodange,,1-------,RQ,9307,,4933N 00550E, +,LU,SAN,Sanem,Sanem,,--3-----,RQ,9501,,4933N 00556E, +,LU,SCH,Schengen,Schengen,G,--3-5---,RL,1107,,4928N 00622E, +,LU,SKK,Steinfort ,Steinfort,,0-------,RL,9805,,4940N 00555E, +,LU,STE,Steinsel,Steinsel,,--3-----,RQ,9501,,4941N 00607E, +,LU,TRO,Troisvierges,Troisvierges,,--3-----,RQ,9501,,5007N 00600E, +,LU,VIA,Vianden,Vianden,,--3-----,RQ,9501,,4956N 00612E, +,LU,WIL,Wiltz,Wiltz,,--3-----,RQ,9501,,4958N 00556E, +,LV,DUN,Dundaga,Dundaga,,-23-----,RL,1107,,5730N 02221E, +,LV,GRE,Grebneva,Grebneva,047,--3----B,RQ,1307,,5652N 02749E, +,LV,PAT,Paternieki,Paternieki,047,--3----B,RQ,1307,,5549N 02735E, +,LV,PLC,Ploce,Ploce,LPX,-2------,RQ,0901,,5641N 02109E, +,LV,RIX,Riga,Riga,RIX,12-45---,AI,2007,,5657N 02406E, +,LV,VIA,Valmiera,Valmiera,VMR,--3-----,RQ,1307,,5732N 02526E, +,LV,VNT,Ventspils,Ventspils,VEN,1-------,QQ,9207,,5723N 02136E, +,LY,ABA,Al Bayda,Al Bayda,,1-------,QQ,8103,,3246N 02145E, +,LY,ABK,Abu Kammash,Abu Kammash,,1-------,RQ,9506,,3304N 01144E, +,LY,APO,Apollonia,Apollonia,,1-------,QQ,8103,,3254N 02158E, +,LY,BEN,Bingazi (Benghazi),Bingazi (Benghazi),,1--45---,AI,9601,,3207N 02003E, +,LY,BOU,El Bouri,El Bouri,,1-------,RQ,9803,,3354N 01239E, +,LY,GHT,Ghat,Ghat,,---4----,AI,9601,,2458N 01011E, +,LY,LAQ,Beida,Beida,,---4----,AI,0001,,3246N 02145E, +,LY,LMQ,Marsa Brega,Marsa Brega,,1--4----,AI,9601,,3024N 01935E, +,LY,LTD,Ghadames,Ghadames,,---4----,AI,9601,,3008N 00929E, +,LY,MHR,Marsa el Hariga,Marsa el Hariga,,1-------,RQ,9506,,3203N 02400E, +,LY,MRA,Misurata,Misurata,,1--4----,AI,9601,,3222N 01505E, +,LY,RLA,Ras Lanuf,Ras Lanuf,,1-------,QQ,8103,,3035N 01825E, +,LY,SRT,Sirte (Surt),Sirte (Surt),,1-------,QQ,8103,,3112N 01635E, +,LY,TAG,Tagiura,Tagiura,,1-------,QQ,8103,,3253N 01321E, +,LY,TIP,Tripoli,Tripoli,,1--4----,AI,9601,,3254N 01311E, +,LY,TOB,Tobruk,Tobruk,,1--4----,AI,9601,,3205N 02358E, +,LY,TUK,Tukrah,Tukrah,,1-------,QQ,8103,,3232N 02034E, +,LY,ZLI,Zliten,Zliten,,1-------,QQ,8103,,3228N 01434E, +,LY,ZUA,Zuara,Zuara,,1-------,QQ,8103,,3256N 01205E, +,LY,ZUE,Zueitina,Zueitina,,0-------,RQ,9506,,3057N 02007E, +,MA,AGA,Agadir,Agadir,,1--4----,AI,9601,,3025N 00935W, +,MA,ASI,Asilah,Asilah,,1-------,QQ,8103,,3528N 00602W, +,MA,AZE,Azemmour,Azemmour,,1-------,QQ,8103,,3317N 00821W, +,MA,AZR,Azrou,Azrou,,--3-----,RQ,9501,,3326N 00514W, +,MA,BED,Berrechid,Berrechid,,--3-----,RQ,9501,,3316N 00735W, +,MA,BEM,Beni Mellal,Beni Mellal,,--3-----,RQ,9501,,3220N 00621W, +,MA,BER,Berkane,Berkane,,--3-----,RQ,9501,,3456N 00220W, +,MA,BOU,Bouznika,Bouznika,,--3-----,RQ,9501,,3347N 00710W, +,MA,ERH,Errachidia,Errachidia,,---4----,AI,0001,,3156N 00426W, +,MA,EUN,Laayoune (El Aaiun),Laayoune (El Aaiun),,1--4----,AI,9506,,2709N 01312W, +,MA,FEZ,Fez,Fez,,---4----,AI,9601,,3402N 00501W, +,MA,GLN,Goulimime,Goulimime,,---4----,AI,0001,,2859N 01004W, +,MA,JFL,Jorf Lasfar,Jorf Lasfar,,1-3-----,RQ,1101,,3307N 00838W, +,MA,KAT,Kasba Tadla,Kasba Tadla,,--3-----,RQ,9501,,3236N 00616W, +,MA,KHA,Khouribga,Khouribga,,--3-----,RQ,9501,,3253N 00655W, +,MA,KHE,Khemisset,Khemisset,,--3-----,RQ,9501,,3350N 00604W, +,MA,KMA,Ksar Majaz,Ksar Majaz,TNG,-23--6--,RL,0701,,3549N 00532W, +,MA,LAR,Larache,Larache,,1-------,QQ,8103,,3512N 00609W, +,MA,MOH,Mohammedia,Mohammedia,,1-------,QQ,8103,,3342N 00723W, +,MA,NDR,Nador,Nador,,1-------,AI,9601,,3510N 00256W, +,MA,NNA,Kenitra (ex Port Lyautey),Kenitra (ex Port Lyautey),,1--4----,AI,9601,,3416N 00634W, +,MA,NOU,Nouasseur,Nouasseur,,0-------,RQ,9307,,3322N 00735W, +,MA,OUD,Oujda,Oujda,,---4----,AI,9601,,3441N 00156W, +,MA,OZZ,Ouarzazate,Ouarzazate,,---4----,AI,9601,,3055N 00655W, +,MA,PTM,Tanger Med,Tanger Med,TNG,123-----,AI,0701,,3552N 00532W, +,MA,RBA,Rabat,Rabat,,1--4----,AI,9601,,3401N 00650W, +,MA,SET,Settat,Settat,,0-------,RQ,9307,,3300N 00737W, +,MA,SFI,Safi,Safi,,1--4----,AI,9601,,3216N 00914W, +,MA,SII,Sidi Ifni,Sidi Ifni,,1-------,AI,9901,,2923N 01010W, +,MA,SIK,Sidi Kacem,Sidi Kacem,,--3-----,RQ,9501,,3414N 00543W, +,MA,SMW,Smara,Smara,,---4----,AI,0001,,2645N 01140W, +,MA,TAZ,Taza,Taza,,--3-----,RQ,9501,,3414N 00401W, +,MA,TEM,Temara,Temara,06,1-------,RQ,1401,,3355N 00655W, +,MA,TFY,Tarfaya,Tarfaya,,---4----,AI,0001,,2756N 01255W, +,MA,TTA,Tan Tan,Tan Tan,,---4----,AI,9601,,2826N 01106W, +,MA,VIL,Dakhla,Dakhla,,1--4----,AI,9506,,2342N 01557W, +,MC,MON,Monaco,Monaco,,1---5---,QQ,8103,,4344N 00725E, +,MD,UNG,Ungeny,Ungeny,,-2------,AI,9207,,4712N 02748E, +,MG,ADK,Androka,Androka,,1-------,QQ,8103,,2150S 04656E, +,MG,AHY,Ambatolahy,Ambatolahy,,---4----,AI,0001,,2001S 04532E, +,MG,AMB,Ambilobe,Ambilobe,,---4----,AI,9601,,1312S 04903E, +,MG,AMP,Ampanihy,Ampanihy,,---4----,AI,9601,,2442S 04445E, +,MG,AMY,Ambatomainty,Ambatomainty,,---4----,AI,0001,,1742S 04540E, +,MG,ANM,Antalaha,Antalaha,,1--4----,AI,9601,,1454S 05017E, +,MG,ATJ,Antsirabe,Antsirabe,,---4----,AI,0001,,1952S 04702E, +,MG,BIK,Brickaville,Brickaville,,1-------,QQ,8103,,1849S 04904E, +,MG,BKU,Betioky,Betioky,,---4----,AI,9601,,2343S 04423E, +,MG,BMD,Belo,Belo,,1--4----,AI,9601,,1942S 04433E, +,MG,BPY,Besalampy,Besalampy,,1--4----,AI,9601,,1645S 04429E, +,MG,BRR,Barren Islands,Barren Islands,,1-------,QQ,8103,,1816S 04346E, +,MG,BSV,Besakoa,Besakoa,,---4----,AI,0001,,2410S 04516E, +,MG,DIE,Antsiranana,Antsiranana,,1--4----,AI,9506,,1217S 04917E, +,MG,DOA,Doany,Doany,,---4----,AI,9601,,1422S 04931E, +,MG,DWB,Soalala,Soalala,,1--4----,AI,9601,,1606S 04520E, +,MG,FTU,Fort Dauphin (Toalagnaro),Fort Dauphin (Toalagnaro),,1--4----,AI,9601,,2502S 04660E, +,MG,HLV,Hell-Ville,Hell-Ville,,1-------,QQ,8103,,1324S 04816E, +,MG,HVA,Analalava,Analalava,,---4----,AI,9601,,1438S 04745E, +,MG,IHO,Ihosy,Ihosy,,---4----,AI,0001,,2224S 04608E, +,MG,ILK,Ilaka,Ilaka,,---4----,AI,0001,,2226S 04742E, +,MG,IVA,Ivato,Ivato,,----5---,AI,9805,,2038S 04712E, +,MG,JVA,Ankavandra,Ankavandra,,---4----,AI,0001,,1846S 04518E, +,MG,MJA,Manja,Manja,,---4----,AI,9601,,2126S 04420E, +,MG,MJN,Majunga (Mahajanga),Majunga (Mahajanga),,1--4----,AI,9601,,1543S 04619E, +,MG,MNJ,Mananjary,Mananjary,,1--4----,AI,9601,,2114S 04821E, +,MG,MOB,Manombo,Manombo,,1-------,QQ,8103,,2257S 04730E, +,MG,MOQ,Morondava,Morondava,,1--4----,AI,9601,,2018S 04417E, +,MG,MXM,Morombe,Morombe,,1--4----,AI,9601,,2145S 04322E, +,MG,MXT,Maintirano,Maintirano,,1--4----,AI,9601,,1804S 04401E, +,MG,NOV,Nosy-Varika,Nosy-Varika,,1-------,QQ,8103,,2035S 04832E, +,MG,OVA,Bekily,Bekily,,---4----,AI,9601,,2433S 04424E, +,MG,PSL,Port Saint Louis,Port Saint Louis,,1-------,RQ,9506,,1305S 04851E, +,MG,RVA,Farafangana,Farafangana,,1--4----,AI,9601,,2249S 04750E, +,MG,SVB,Sambava,Sambava,,1--4----,AI,9601,,1415S 05009E, +,MG,TDV,Tanandava,Tanandava,,---4----,AI,0001,,2506S 04630E, +,MG,TLE,Tulear (Toliara),Tulear (Toliara),,1--4----,AI,9601,,2321S 04340E, +,MG,TMM,Tamatave (Toamasina),Tamatave (Toamasina),,1--45---,AI,9601,,1809S 04925E, +,MG,TNR,Antananarivo,Antananarivo,,---45---,AI,9601,,1855S 04732E, +,MG,TOA,Toamasina,Toamasina,,1-------,RQ,9601,,1809S 04925E, +,MG,TTS,Tsaratanana,Tsaratanana,,---4----,AI,9601,,2111S 04738E, +,MG,TVA,Morafenobe,Morafenobe,,---4----,AI,9601,,1749S 04456E, +,MG,VAT,Vatomandry,Vatomandry,,1--4----,AI,9601,,1920S 04859E, +,MG,VND,Vangaindrano,Vangaindrano,,---4----,AI,0001,,2321S 04736E, +,MG,VOH,Vohemar,Vohemar,,---4----,AI,9601,,1321S 05000E, +,MG,VVB,Mahanoro,Mahanoro,,1--4----,AI,9601,,1954S 04849E, +,MG,WAD,Andriamena,Andriamena,,---4----,AI,9601,,1727S 04730E, +,MG,WAI,Antsohihy,Antsohihy,,---4----,AI,9601,,1453S 04759E, +,MG,WAK,Ankazoabo,Ankazoabo,,---4----,AI,9401,,2218S 04431E, +,MG,WAM,Ambatondrazaka,Ambatondrazaka,,---4----,AI,9601,,1749S 04826E, +,MG,WAQ,Antsalova,Antsalova,,---4----,AI,0001,,1841S 04437E, +,MG,WBD,Befandriana,Befandriana,,---4----,AI,0001,,1515S 04833E, +,MG,WBE,Bealanana,Bealanana,,---4----,AI,9601,,1433S 04845E, +,MG,WBO,Beroroha,Beroroha,,---4----,AI,9601,,2141S 04510E, +,MG,WFI,Fianarantsoa,Fianarantsoa,,---4----,AI,9601,,2127S 04705E, +,MG,WMA,Mandritsara,Mandritsara,,---4----,AI,9601,,1551S 04849E, +,MG,WMD,Mandabe,Mandabe,,---4----,AI,9601,,2103S 04456E, +,MG,WML,Malaimbandy,Malaimbandy,,---4----,AI,9601,,2021S 04536E, +,MG,WMN,Maroantsetra,Maroantsetra,,1--4----,AI,9601,,1526S 04945E, +,MG,WMP,Mampikony,Mampikony,,---4----,AI,0001,,1606S 04739E, +,MG,WMR,Mananara,Mananara,,1--4----,AI,9601,,1850S 04747E, +,MG,WMV,Madirovalo,Madirovalo,,---4----,AI,0001,,1626S 04633E, +,MG,WOR,Ankorefo,Ankorefo,,---4----,AI,0001,,1503S 05006E, +,MG,WTA,Tambohorano,Tambohorano,,---4----,AI,9601,,1730S 04357E, +,MG,WTS,Tsiroanomandidy,Tsiroanomandidy,,---4----,AI,9601,,1846S 04603E, +,MG,WVK,Manakara,Manakara,,1--4----,AI,9601,,2209S 04801E, +,MG,ZVA,Miandrivazo,Miandrivazo,,---4----,AI,9601,,1932S 04528E, +,MG,ZWA,Andapa,Andapa,,---4----,AI,9601,,1440S 04939E, +,MH,KWA,Kwajalein,Kwajalein,,---4----,AI,9601,,0844N 16744E, +,MH,LIK,Likiep Island,Likiep Island,,---4----,AI,0001,,0953N 16909E, +,MH,LML,Lae Island,Lae Island,,---4----,AI,0001,,0856N 16616E, +,MH,MAV,Maloelap Island,Maloelap Island,,---4----,AI,0001,,0845N 17103E, +,MH,MIJ,Mili Island,Mili Island,,---4----,AI,0001,,0608N 17159E, +,MH,MJB,Mejit Island,Mejit Island,,---4----,AI,0001,,1017N 17053E, +,MH,MJE,Majkin,Majkin,,---4----,AI,0001,,0810N 16811E, +,MH,NDK,Namdrik Island,Namdrik Island,,---4----,AI,0001,,0537N 16807E, +,MH,NMU,Namu,Namu,,---4----,AI,0001,,1142N 16517E, +,MH,RNP,Rongelap Island,Rongelap Island,,---4----,AI,0001,,1119N 16647E, +,MH,TAR,Taroa,Taroa,,1-------,RQ,9506,,0842N 17114E, +,MH,TBV,Tabal,Tabal,,---4----,AI,0001,,0819N 17110E, +,MH,TIC,Tinak Island,Tinak Island,,---4----,AI,0001,,0705N 17154E, +,MH,UJE,Ujae Island,Ujae Island,,---4----,AI,0001,,0856N 16546E, +,MH,UTK,Utirik Island,Utirik Island,,---4----,AI,0001,,1114N 16951E, +,MH,WJA,Woja,Woja,,---4----,AI,0001,,0727N 16833E, +,MH,WTE,Wotje Island,Wotje Island,,---4----,AI,0001,,0926N 17001E, +,MH,WTO,Wotho Island,Wotho Island,,---4----,AI,0001,,1010N 16601E, +,MK,BLC,Blace,Blace,,--3----B,AC,9704,,4152N 02140E, +,MK,BRD,Bogorodica,Bogorodica,,--3----B,AC,9704,,4108N 02233E, +,MK,DLV,Delcevo,Delcevo,,--3----B,AC,9704,,4156N 02246E, +,MK,GST,Gostivar,Gostivar,604,--3-----,AC,1307,,4148N 02054E, +,MK,JNC,Jacince,Jacince,,--3----B,AC,9704,,4206N 02153E, +,MK,KCV,Kicevo,Kicevo,,--3-----,RQ,9705,,4131N 02058E, +,MK,PLN,Pelince,Pelince,,--3----B,AC,9704,,4217N 02152E, +,MK,RSN,Resen,Resen,,--3-----,AC,9704,,4105N 02101E, +,MK,SKP,Skopje,Skopje,,--34---B,AC,9704,,4160N 02126E, +,MK,STG,Struga,Struga,108,--3-----,AC,1307,,4111N 02041E, +,MK,STP,Stip,Stip,,--3-----,AC,9704,,4144N 02212E, +,MK,TBN,Tabanovce,Tabanovce,,--3----B,AC,9704,,4213N 02142E, +,MK,VLK,Volkovo,Volkovo,,--3-----,AC,9704,,4118N 02134E, +,ML,BKO,Bamako,Bamako,,---45---,AI,9601,,1239N 00800W, +,ML,BLA,Bla,Bla,,--3-----,RL,0001,,1257N 00546W, +,ML,FAN,Fana,Fana,,--3-----,RL,9903,,1247N 00657W, +,ML,GAQ,Gao,Gao,,---4----,AI,9601,,1617N 00002W, +,ML,GUD,Goundam,Goundam,,---4----,RL,0901,,1625N 00340W, +,ML,IKO,Koulikoro,Koulikoro,,--3-----,RL,0001,,1252N 00733W, +,ML,KIT,Kita,Kita,,--3-----,RL,0001,,1302N 00929W, +,ML,KNZ,Kenieba,Kenieba,,---4----,RQ,0901,,1304N 00923W, +,ML,KTX,Koutiala,Koutiala,,--34----,AI,9506,,1223N 00528W, +,ML,KYS,Kayes,Kayes,,---4----,AI,9601,,1427N 01126W, +,ML,MZI,Mopti,Mopti,,---4----,AI,9601,,1429N 00411W, +,ML,NIX,Nioro,Nioro,,---4----,AI,9601,,1514N 00935W, +,ML,NRM,Nara,Nara,,---4----,AI,9601,,1510N 00717W, +,ML,OLB,Ouoloss�bougou,Ouolossebougou,,--3-----,RL,0001,,1245N 00822W, +,MM,AKY,Akyab (Sittwe),Akyab (Sittwe),,1--4----,AI,9401,,2009N 09254E, +,MM,BIL,Bilin,Bilin,,1-------,QQ,8103,,1713N 09714E, +,MM,BMO,Bhamo,Bhamo,,---4----,AI,9601,,2416N 09711E, +,MM,BOG,Bogale,Bogale,,1-------,QQ,8103,,1617N 09524E, +,MM,BPE,Bagan,Bagan,,---4----,AI,0001,,2108N 09452E, +,MM,BSX,Bassein,Bassein,,1--4----,AI,9601,,1647N 09444E, +,MM,GAW,Gangaw,Gangaw,,---4----,AI,9601,,2148N 09409E, +,MM,GWA,Gwa,Gwa,,---4----,AI,9601,,1744N 09442E, +,MM,HEB,Henzada,Henzada,,1--4----,AI,9601,,1739N 09528E, +,MM,HEN,Heho,Heho,,---4----,QQ,8103,,2043N 09650E, +,MM,HOX,Homalin,Homalin,,---4----,AI,0001,,2452N 09455E, +,MM,INS,Insein,Insein,,1-------,QQ,8103,,1653N 09606E, +,MM,KAW,Kawthaung,Kawthaung,,---4----,AI,0001,,0959N 09833E, +,MM,KET,Keng Tung,Keng Tung,,---4----,AI,9601,,2118N 09936E, +,MM,KHM,Khamti,Khamti,,---4----,AI,0001,,2600N 09542E, +,MM,KMV,Kalemyo,Kalemyo,,---4----,AI,9601,,2312N 09401E, +,MM,KYP,Kyaukpyu,Kyaukpyu,,1--4----,AI,9601,,1926N 09333E, +,MM,KYT,Kyauktaw,Kyauktaw,,---4----,AI,9601,,2051N 09258E, +,MM,LIW,Loikaw,Loikaw,,---4----,AI,9601,,1940N 09713E, +,MM,LSH,Lashio,Lashio,,---4----,AI,9601,,2256N 09745E, +,MM,MAR,Martaban,Martaban,,1-------,QQ,8103,,1632N 09737E, +,MM,MDL,Mandalay,Mandalay,,---4----,AI,9601,,2158N 09606E, +,MM,MER,Mergui,Mergui,,1-------,QQ,8103,,1226N 09836E, +,MM,MGK,Mong Ton,Mong Ton,,---4----,AI,0001,,2018N 09854E, +,MM,MGU,Manaung,Manaung,,---4----,AI,0001,,1848N 09338E, +,MM,MGZ,Myeik,Myeik,,---4----,AI,0001,,1225N 09829E, +,MM,MNU,Mawlamyine (Moulmein),Mawlamyine (Moulmein),,1--4----,QQ,8103,,1629N 09738E, +,MM,MOE,Momeik,Momeik,,---4----,AI,9601,,2307N 09640E, +,MM,MOG,Mong Hsat,Mong Hsat,,---4----,AI,9601,,2032N 09915E, +,MM,MWQ,Magwe,Magwe,,---4----,AI,9601,,2009N 09455E, +,MM,MYT,Myitkyina,Myitkyina,,---4----,AI,9601,,2523N 09724E, +,MM,NMS,Namsang,Namsang,,---4----,AI,9601,,2053N 09743E, +,MM,NMT,Namtu,Namtu,,---4----,AI,0001,,2306N 09724E, +,MM,NYU,Nyaung-U,Nyaung-U,,---4----,AI,9601,,2056N 09510E, +,MM,PAA,Pa-An,Pa-An,,---4----,AI,9601,,1653N 09738E, +,MM,PAU,Pauk,Pauk,,---4----,AI,9601,,2127N 09428E, +,MM,PBU,Putao,Putao,,---4----,AI,0001,,2719N 09725E, +,MM,PEG,Pegu,Pegu,,1-------,QQ,8103,,1720N 09629E, +,MM,PKK,Pakokku,Pakokku,,---4----,AI,9601,,2120N 09505E, +,MM,PPU,Papun,Papun,,---4----,AI,9601,,1804N 09727E, +,MM,RGN,Yangon,Yangon,,1--45---,AI,9601,,1648N 09610E, +,MM,SNW,Thandwe (ex Sandoway),Thandwe (ex Sandoway),,1--4----,AI,8103,,1826N 09433E, +,MM,TAV,Tavoy,Tavoy,,1-------,QQ,8103,,1405N 09812E, +,MM,THA,Thaton,Thaton,,1--4----,QQ,8103,,1655N 09722E, +,MM,THL,Tachilek,Tachilek,,---4----,AI,0001,,2027N 09953E, +,MM,TIO,Tilin,Tilin,,---4----,AI,0001,,2142N 09406E, +,MM,TVY,Dawe,Dawe,,---4----,AI,0001,,1235N 09824E, +,MM,VIC,Victoria Point,Victoria Point,,1-------,QQ,8103,,0959N 09833E, +,MM,XYE,Ye,Ye,,1--4----,AI,9601,,1515N 09751E, +,MN,AVK,Arvaikheer,Arvaikheer,,---4----,AI,0001,,4616N 10247E, +,MN,BYN,Bayankhongor,Bayankhongor,,---4----,AI,0001,,4612N 10043E, +,MN,COQ,Choibalsan,Choibalsan,,---4----,AI,0001,,4804N 11431E, +,MN,ERT,Erdenet,Erdenet,,---4----,AI,0001,,4902N 10403E, +,MN,HJT,Khujirt,Khujirt,,---4----,AI,0001,,4654N 10246E, +,MN,HVD,Khovd,Khovd,,---4----,AI,0001,,4800N 09139E, +,MN,KHR,Kharkhorin,Kharkhorin,,---4----,AI,0001,,4712N 10249E, +,MN,LTI,Altai,Altai,,---4----,AI,0001,,4622N 09615E, +,MN,MXV,Moron,Moron,,---4----,AI,0001,,4938N 10010E, +,MN,MXW,Mandalgobi,Mandalgobi,,---4----,AI,0001,,4546N 10616E, +,MN,TSZ,Tsetserleg,Tsetserleg,,---4----,AI,0001,,4932N 09744E, +,MN,UGA,Bulgan,Bulgan,,---4----,AI,0001,,4849N 10332E, +,MN,ULN,Ulaanbaatar,Ulaanbaatar,,---45---,AI,9601,,4756N 10655E, +,MN,ULO,Ulaangom,Ulaangom,,---4----,AI,0001,,4959N 09204E, +,MN,UNR,Underkhaan,Underkhaan,,---4----,AI,0001,,4719N 11040E, +,MN,UUN,Baruun-Urt,Baruun-Urt,,---4----,AI,0001,,4641N 11317E, +,MP,ROP,Rota,Rota,,---4----,AI,9601,,1409N 14512E, +,MP,SPN,Saipan,Saipan,,1--4----,AI,9601,,1513N 14545E, +,MP,TIQ,Tinian,Tinian,,---4----,AI,9601,,1500N 14538E, +,MR,AEO,Aioun el Atrouss,Aioun el Atrouss,,---4----,AI,9601,,1640N 00937W, +,MR,AJJ,Akjoujt,Akjoujt,,---4----,AI,9601,,1945N 01423W, +,MR,ATR,Atar,Atar,,---4----,AI,9601,,2031N 01303W, +,MR,CGT,Chinguitti,Chinguitti,,---4----,AI,0001,,2027N 01222W, +,MR,KFA,Kiffa,Kiffa,,---4----,AI,0001,,1637N 01124W, +,MR,LEG,Aleg,Aleg,,---4----,AI,0001,,1703N 01355W, +,MR,MBR,Mbout,Mbout,,---4----,AI,0001,,1601N 01235W, +,MR,NDB,Nouadhibou,Nouadhibou,,1--4----,AI,9601,,2055N 01703W, +,MR,NKC,Nouakchott,Nouakchott,,1--45---,AI,9601,,1805N 01559W, +,MR,OTL,Boutilimit,Boutilimit,,---4----,AI,0001,,1733N 01442W, +,MR,THI,Tichitt,Tichitt,,---4----,AI,0001,,1827N 00930W, +,MR,THT,Tamchakett,Tamchakett,,---4----,AI,0001,,1715N 01040W, +,MR,TIY,Tidjikja,Tidjikja,,---4----,AI,9601,,1833N 01126W, +,MS,MNI,Montserrat,Montserrat,,---4----,AI,9601,,1645N 06211W, +,MS,PLY,Plymouth,Plymouth,,1---5---,RQ,9506,,1642N 06213W, +,MT,BLA,Blata l'Bajda,Blata l'Bajda,18,1-3-----,AA,1501,,3553N 01430E, +,MT,CKW,Cirkewwa,Cirkewwa,,1-3-----,AS,0701,,3559N 01420E, +,MT,JCO,Comino,Comino,,---4----,AI,9912,,3601N 01420E, +,MU,BAM,Bambous,Bambous,AG,1-------,RQ,0901,,2015S 05725E, +,MU,CUR,Curepipe,Curepipe,,1-3-----,RL,9805,,2019S 05731E, +,MU,PLU,Port Louis,Port Louis,,1--4----,QQ,8111,,2010S 05730E, +,MV,ADU,Addu,Addu,01,1-3-----,RQ,0901,,0038S 07310E, +,MV,HAQ,Hanimaadhoo,Hanimaadhoo,,---4----,AI,0001,,0645N 07310E, +,MV,KDM,Kaadedhdhoo,Kaadedhdhoo,,---4----,AI,0001,,0029N 07260E, +,MV,KDO,Kadhdhoo,Kadhdhoo,,---4----,AI,0001,,0152N 07331E, +,MW,BLZ,Blantyre,Blantyre,,---4----,AI,9601,,1547S 03500E, +,MW,KGJ,Karonga,Karonga,,---4----,AI,9601,,0956S 03356E, +,MW,LBE,Limbe,Limbe,,----5---,AI,9601,,1548S 03503E, +,MW,LLW,Lilongwe,Lilongwe,,---45---,AI,9601,,1359S 03346E, +,MW,ZZU,Mzuzu,Mzuzu,,---4----,RQ,9601,,1128S 03401E, +,MX,ACN,Ciudad Acuna,Ciudad Acuna,,---4----,AI,0001,,2919N 10056W, +,MX,ACU,Acuna,Acuna,,--3-----,RQ,9501,,2919N 10056W, +,MX,AJS,Abreojos,Abreojos,,---4----,AI,0001,,2643N 11334W, +,MX,ANH,Acanceh,Acanceh,YUC,1-------,RQ,0901,,2049N 08927W, +,MX,AOB,Alvaro Obregon,Alvaro Obregon,,1-------,QQ,8103,,2057N 10135W, +,MX,APD,Apodaca,Apodaca,,--3-----,RL,9805,,2547N 10011W, +,MX,ASO,Abasolo,Abasolo,GUA,--3-----,RQ,0901,,2027N 10132W, +,MX,AVD,Alvarado,Alvarado,VER,1-------,AI,9401,,1846N 09546W, +,MX,AZG,Apatzingan,Apatzingan,,---4----,AI,0001,,1905N 10221W, +,MX,BHL,Bahia Angeles,Bahia Angeles,,---4----,AI,0001,,2857N 11334W, +,MX,CDN,Cardenas,Cardenas,,-2------,RQ,9705,,2737N 11015W, +,MX,CHT,Cuauhtemoc,Cuauhtemoc,,--3-----,RQ,9704,,2824N 10652W, +,MX,CJT,Comitan,Comitan,,---4----,AI,0001,,1615N 09208W, +,MX,CPE,Campeche,Campeche,CAM,1--4----,AI,9601,,1950N 09031W, +,MX,CPT,Col Portales,Col Portales,,--3-----,RL,9805,,1922N 09909W, +,MX,CTM,Chetumal,Chetumal,ROO,1--4----,AI,9601,,1830N 08818W, +,MX,CUU,Chihuahua,Chihuahua,CHH,---4----,AI,9601,,2838N 10605W, +,MX,ELD,Eldorado,Eldorado,,1-------,RQ,8103,,2419N 10722W, +,MX,ELS,El Salto,El Salto,,--3-----,RQ,9501,,2031N 10311W, +,MX,GDL,Guadalajara,Guadalajara,JAL,---4----,AI,9601,,2040N 10320W, +,MX,GUB,Guerrero Negro,Guerrero Negro,,---4----,AI,0001,,2758N 11402W, +,MX,HMO,Hermosillo,Hermosillo,SON,---4----,AI,9601,,2906N 11058W, +,MX,ISJ,Isla Mujeres,Isla Mujeres,ROO,1--4----,AI,9601,,2114N 08644W, +,MX,IZT,Ixtepec,Ixtepec,,---4----,AI,0001,,2002N 09739W, +,MX,JAL,Jalapa,Jalapa,,--34----,AI,9601,,1743N 09249W, +,MX,JIL,Jilotepec,Jilotepec,MEX,-----6--,RL,1107,,1937N 09657W, +,MX,JRZ,Juarez,Juarez,,--3-----,RQ,9501,,2026N 10144W, +,MX,JZA,Jerez,Jerez,ZAC,1-------,RQ,0901,,2239N 10259W, +,MX,LMM,Los Mochis,Los Mochis,,---4----,AI,0001,,2548N 10859W, +,MX,LOM,Lagos de Moreno,Lagos de Moreno,,---4----,AI,0001,,2121N 10156W, +,MX,MTT,Minatitlan,Minatitlan,VER,1--4----,AI,9601,,1760N 09433W, +,MX,MTY,Monterrey,Monterrey,NLE,--34----,AI,1401,,2541N 10019W, +,MX,NAN,Nanchital,Nanchital,,1-------,RQ,9506,,1804N 09424W, +,MX,NCG,Nueva Casas Grandes,Nueva Casas Grandes,,---4----,AI,0001,,3025N 10755W, +,MX,NDG,Nacozari de Garcia,Nacozari de Garcia,,--3-----,RL,9901,,3022N 10941W, +,MX,NOG,Nogales,Nogales,SON,-234----,AI,9601,,3120N 11057W, +,MX,OAX,Oaxaca,Oaxaca,OAX,---4----,AI,9601,,1704N 09644W, +,MX,OJI,Ojinaga,Ojinaga,CHH,-23-----,QQ,8103,,2934N 10425W, +,MX,ORI,Orizaba,Orizaba,VER,--3-----,RL,9901,,1851N 09706W, +,MX,PAC,Pachuca,Pachuca,,--3-----,RQ,9501,,2007N 09844W, +,MX,PAN,Pantaco,Pantaco,,0-------,RQ,9307,,1929N 09910W, +,MX,PAZ,Poza Rica,Poza Rica,,---4----,AI,9601,,2032N 09727W, +,MX,PCO,Punta Colorada,Punta Colorada,,---4----,AI,0001,,2449N 10805W, +,MX,PCV,Punta Chivato,Punta Chivato,,---4----,AI,0001,,2704N 11158W, +,MX,PMX,Pu�rto Mexico,Puerto Mexico,VER,1-------,QQ,8103,,1809N 09427W, +,MX,PNO,Pinotepa Nacional,Pinotepa Nacional,,---4----,AI,0001,,1620N 09804W, +,MX,PPE,Puerto Pe�asco,Puerto Penasco,SON,1--4----,AI,9601,,3119N 11332W, +,MX,PQA,Pesqueria,Pesqueria,,--3-----,RQ,9705,,2547N 10003W, +,MX,PQM,Palenque,Palenque,,---4----,AI,0001,,1731N 09159W, +,MX,PUH,Pochutla,Pochutla,,---4----,AI,0001,,1740N 09854W, +,MX,PXM,Puerto Escondido,Puerto Escondido,,---4----,AI,0001,,1552N 09704W, +,MX,SAF,Santa Fe,Santa Fe,DIF,--3-----,RQ,1307,,1922N 09916W, +,MX,SBS,San Blas,San Blas,NAY,1-------,QQ,8103,,2133N 10517W, +,MX,SCR,San Carlos,San Carlos,BCS,1-------,AI,9401,,2447N 11206W, +,MX,SFH,San Felipe,San Felipe,BCS,---4----,AI,9601,,3102N 11450W, +,MX,SFJ,San Francisco Javier,San Francisco Javier,COL,--3-----,RL,0901,,2459N 10020W, +,MX,SGM,San Ignacio,San Ignacio,,---4----,AI,0001,,2343N 10647W, +,MX,SJC,San Juan de la Costa,San Juan de la Costa,,1-------,RQ,9506,,2422N 11041W, +,MX,SJD,San Jose Cabo,San Jose Cabo,,---4----,AI,0001,,2304N 10942W, +,MX,SJH,San Jeronimo,San Jeronimo,CHH,-----6--,RL,1107,,2612N 10711W, +,MX,SJR,San Juan del Rio,San Juan del Rio,,--3-----,RL,0101,,2023N 09960W, +,MX,SLO,San Lorenzo,San Lorenzo,,1-------,RQ,8103,,2020N 09719W, +,MX,SNQ,San Quintin,San Quintin,,---4----,AI,0001,,3034N 11556W, +,MX,SPG,San Pedro Garza Garcia,San Pedro Garza Garcia,NLE,-----6--,RL,1107,,2540N 10024W, +,MX,SRL,Santa Rosalia,Santa Rosalia,BCS,1-------,AI,9601,,2720N 11216W, +,MX,SZT,San Crist�bal de las Casas,San Cristobal de las Casas,,---4----,AI,1101,,1644N 09238W, +,MX,TCU,Tecuala,Tecuala,,1-------,RQ,8103,,2224N 10527W, +,MX,TLQ,Tlaquepaque,Tlaquepaque,,--3-----,RQ,9501,,2038N 10319W, +,MX,TRC,Torreon,Torreon,COA,---4----,AI,9601,,2533N 10325W, +,MX,TST,Tesistan,Tesistan,JAL,-----6--,RQ,0901,,2048N 10329W, +,MX,TUY,Tulum,Tulum,,---4----,AI,0001,,2010N 08727W, +,MX,TXL,Tlaxcala,Tlaxcala,,--3-----,RQ,9501,,1919N 09814W, +,MX,ZAP,Zapopan,Zapopan,JAL,--3-----,RL,9901,,2043N 10323W, +,MY,AOR,Alor Setar,Alor Setar,,---4----,AI,9601,,0607N 10022E, +,MY,BAT,Batu Pahat,Batu Pahat,,1-------,QQ,8103,,0151N 10256E, +,MY,BAU,"Bau, Sarawak","Bau, Sarawak",,1-------,QQ,8103,,0125N 11009E, +,MY,BBA,"Batu Batu, Sabah","Batu Batu, Sabah",,1-------,QQ,8103,,0502N 11557E, +,MY,BBE,Bukit Beruntung,Bukit Beruntung,10,--3-----,RQ,0901,,0325N 10133E, +,MY,BBN,Bario,Bario,,---4----,AI,9601,,0345N 11528E, +,MY,BDV,"Bandau, Sabah","Bandau, Sabah",,1-------,QQ,8103,,0630N 11646E, +,MY,BEL,"Beluran, Sabah","Beluran, Sabah",,1-------,QQ,8103,,0553N 11733E, +,MY,BGG,"Bunan Gega, Sarawak","Bunan Gega, Sarawak",,1-------,QQ,8103,,0054N 11032E, +,MY,BIA,"Biawak, Sarawak","Biawak, Sarawak",,1-------,QQ,8103,,0137N 10941E, +,MY,BKI,"Kota Kinabalu, Sabah","Kota Kinabalu, Sabah",,1-345---,AI,9601,,0558N 11604E, +,MY,BLG,"Belaga, Sarawak","Belaga, Sarawak",,1--4----,AI,9601,,0240N 11423E, +,MY,BLI,"Batu Lintang, Sarawak","Batu Lintang, Sarawak",13,1-------,QQ,0212,,0101N 11133E, +,MY,BMA,Bandar Maharani,Bandar Maharani,,1-------,QQ,8103,,0203N 10234E, +,MY,BNG,"Binatang, Sarawak","Binatang, Sarawak",,1-------,QQ,8103,,0210N 11141E, +,MY,BNT,"Benut, Johor","Benut, Johor",,1-------,QQ,8103,,0139N 10316E, +,MY,BSE,"Sematan, Sarawak","Sematan, Sarawak",,1--4----,AI,9506,,0148N 10947E, +,MY,BTG,"Betong, Sarawak","Betong, Sarawak",,1-------,QQ,8103,,0129N 11128E, +,MY,BTN,Bintangor,Bintangor,,1-------,RQ,9506,,0210N 11138E, +,MY,BTU,"Bintulu, Sarawak","Bintulu, Sarawak",,1-------,AI,9601,,0311N 11303E, +,MY,BWH,Bagan Luar (Butterworth),Bagan Luar (Butterworth),,1-34----,QQ,8103,,0525N 10022E, +,MY,DRO,"Daro, Sarawak","Daro, Sarawak",,1-------,QQ,8103,,0231N 11126E, +,MY,END,Endau,Endau,,1-------,QQ,8103,,0239N 10337E, +,MY,IPH,Ipoh,Ipoh,,---4----,AI,9601,,0436N 10105E, +,MY,JAM,"Jambongan, Sabah","Jambongan, Sabah",,1-------,QQ,8103,,0640N 11730E, +,MY,JGP,Gelang Patah,Gelang Patah,,-----6--,RL,1107,,0127N 10335E, +,MY,JHB,Johor Bahru,Johor Bahru,,1--4----,AI,9401,,0130N 10345E, +,MY,JTA,"Jitra, Kedah","Jitra, Kedah",,--3-----,RQ,9912,,0616N 10025E, +,MY,KAB,"Kabong, Sarawak","Kabong, Sarawak",,1-------,QQ,8103,,0153N 11116E, +,MY,KAL,Kuala Ketil,Kuala Ketil,14,--3-----,RQ,0901,,0536N 10039E, +,MY,KBA,Kuala Baram,Kuala Baram,,1-------,QQ,8103,,0434N 11359E, +,MY,KBD,"Kota Belud, Sabah","Kota Belud, Sabah",,1-------,QQ,8103,,0621N 11626E, +,MY,KBR,Kota Bharu,Kota Bharu,,1--4----,AI,9601,,0608N 10214E, +,MY,KBS,Kuala Besar,Kuala Besar,,1-------,QQ,8103,,0550N 10022E, +,MY,KCH,"Kuching, Sarawak","Kuching, Sarawak",,1--45---,AI,9601,,0133N 11021E, +,MY,KEM,Kemaman,Kemaman,,1-------,QQ,8103,,0413N 10325E, +,MY,KIJ,Kijal,Kijal,,1-------,QQ,8103,,0420N 10329E, +,MY,KIM,"Kimanis, Sabah","Kimanis, Sabah",,1-------,QQ,8103,,0537N 11554E, +,MY,KKH,Kuala Kedah,Kuala Kedah,,1-------,QQ,8103,,0606N 10018E, +,MY,KKP,Kukup,Kukup,,1-------,QQ,8103,,0120N 10327E, +,MY,KPI,"Kapit, Sarawak","Kapit, Sarawak",,---4----,AI,9601,,0211N 11305E, +,MY,KPS,Kuala Perlis,Kuala Perlis,,1-------,QQ,8103,,0624N 10008E, +,MY,KPU,"Kuala Penyu, Sabah","Kuala Penyu, Sabah",,1-------,QQ,8103,,0534N 11536E, +,MY,KSD,Kuala Sedili,Kuala Sedili,,1-------,QQ,8103,,0156N 10407E, +,MY,KTI,Kota Tinggi,Kota Tinggi,,1-------,QQ,8103,,0144N 10354E, +,MY,KUA,Kuantan (Tanjong Gelang),Kuantan (Tanjong Gelang),,1--4----,AI,9601,,0348N 10319E, +,MY,KUD,"Kudat, Sabah","Kudat, Sabah",,1-34----,AI,9601,,0653N 11651E, +,MY,KUG,Kuala Gula,Kuala Gula,,1-------,QQ,8103,,0456N 10028E, +,MY,KUL,Kuala Lumpur,Kuala Lumpur,,---45---,AI,9601,,0309N 10142E, +,MY,KUN,"Kunak, Sabah","Kunak, Sabah",,1-------,QQ,8103,,0441N 11815E, +,MY,LBU,"Labuan, Sabah","Labuan, Sabah",,1--4----,AI,9601,,0517N 11514E, +,MY,LDU,"Lahad Datu, Sabah","Lahad Datu, Sabah",,1--4----,QQ,8103,,0501N 11820E, +,MY,LGG,"Lingga, Sarawak","Lingga, Sarawak",,1-------,QQ,8103,,0121N 11110E, +,MY,LMN,"Limbang, Sarawak","Limbang, Sarawak",,1-------,AI,9601,,0421N 11504E, +,MY,LPK,Northport/Pt Klang,Northport/Pt Klang,14,1-------,RQ,0901,,0300N 10124E, +,MY,LUM,Lumut,Lumut,,1-------,QQ,8103,,0413N 10037E, +,MY,LUN,"Lundu, Sarawak","Lundu, Sarawak",,1-------,QQ,8103,,0140N 10951E, +,MY,LUT,"Lutong, Sarawak","Lutong, Sarawak",,1-------,QQ,8103,,0428N 11401E, +,MY,LWY,"Lawas, Sarawak","Lawas, Sarawak",,1--4----,AI,9601,,0452N 11524E, +,MY,MEA,Melaka,Melaka,14,--3-----,RQ,0901,,0308N 10142E, +,MY,MEM,"Mempakul, Sabah","Mempakul, Sabah",,1-------,QQ,8103,,0518N 11522E, +,MY,MEP,Mersing,Mersing,,1--4----,AI,9601,,0226N 10350E, +,MY,MKM,"Mukah, Sarawak","Mukah, Sarawak",,1--4----,AI,9601,,0254N 11205E, +,MY,MKZ,Malacca,Malacca,,1--4----,AI,9601,,0212N 10215E, +,MY,MUA,Muar,Muar,,1-------,QQ,8103,,0203N 10234E, +,MY,MUR,"Marudi, Sarawak","Marudi, Sarawak",,1--4----,AI,9601,,0411N 11419E, +,MY,MYY,"Miri, Sarawak","Miri, Sarawak",,1-------,AI,9601,,0424N 11359E, +,MY,ODN,Long Seridan,Long Seridan,,---4----,AI,9601,,0359N 11504E, +,MY,PAN,Panchang,Panchang,,1-------,QQ,8103,,0342N 10058E, +,MY,PAS,Pasir Gogok,Pasir Gogok,,1-------,QQ,8103,,0125N 10406E, +,MY,PBA,"Pulau Batik, Sabah","Pulau Batik, Sabah",,1-------,QQ,8103,,0443N 11828E, +,MY,PDI,Port Dickson,Port Dickson,,1-------,QQ,8103,,0232N 10149E, +,MY,PGU,"Pasir Gudang, Johor","Pasir Gudang, Johor",,1-------,QQ,8103,,0130N 10355E, +,MY,PHI,Pasir Hitam,Pasir Hitam,,1-------,QQ,8103,,0439N 10037E, +,MY,PKK,Pengkalan Kubor,Pengkalan Kubor,,1-------,QQ,8103,,0614N 10206E, +,MY,POW,Pontian,Pontian,,1-------,QQ,8103,,0129N 10323E, +,MY,PPI,Pulau Pisang,Pulau Pisang,,1-------,QQ,8103,,0128N 10315E, +,MY,PRA,Prai,Prai,,1-------,QQ,8103,,0523N 10023E, +,MY,PRN,Kuala Rompin,Kuala Rompin,,1-------,QQ,8103,,0248N 10329E, +,MY,PSG,Pusing,Pusing,08,--3-----,RQ,0901,,0430N 10101E, +,MY,PTB,"Pulau Tambisan, Sabah","Pulau Tambisan, Sabah",,1-------,QQ,8103,,0527N 11907E, +,MY,PUC,Puchong,Puchong,10,--3-----,RQ,0212,,0302N 10137E, +,MY,PUN,"Punang, Sarawak","Punang, Sarawak",,1-------,QQ,8103,,0453N 11521E, +,MY,REJ,"Rejang, Sarawak","Rejang, Sarawak",,1-------,QQ,8103,,0217N 11149E, +,MY,RNU,Ranau,Ranau,,---4----,AI,9601,,0557N 11640E, +,MY,SBW,"Sibu, Sarawak","Sibu, Sarawak",,1--4----,AI,9601,,0218N 11153E, +,MY,SDK,"Sandakan, Sabah","Sandakan, Sabah",,1--4----,AI,9601,,0550N 11807E, +,MY,SDM,Sindumin,Sindumin,,1-------,QQ,8103,,0458N 11530E, +,MY,SDR,"Sundar, Sarawak","Sundar, Sarawak",,1-------,QQ,8103,,0453N 11513E, +,MY,SEJ,"Sejingkat, Sarawak","Sejingkat, Sarawak",,1-------,QQ,8103,,0136N 11026E, +,MY,SEL,"Selalang, Sarawak","Selalang, Sarawak",,1-------,QQ,8103,,0201N 11119E, +,MY,SHA,Shah Alam,Shah Alam,,1-------,RQ,9601,,0304N 10131E, +,MY,SME,Sri Medan,Sri Medan,,1-------,QQ,8103,,0159N 10257E, +,MY,SMG,"Simanggang, Sarawak","Simanggang, Sarawak",,1-------,QQ,8103,,0114N 11128E, +,MY,SMJ,"Simunjan, Sarawak","Simunjan, Sarawak",,1-------,QQ,8103,,0117N 11051E, +,MY,SMM,"Semporna, Sabah","Semporna, Sabah",,1--4----,AI,9601,,0429N 11837E, +,MY,SNP,North Pt,North Pt,10,1-------,RQ,0901,,0302N 10122E, +,MY,SPG,"Simpangan, Sabah","Simpangan, Sabah",,1-------,QQ,8103,,0603N 11627E, +,MY,SPT,"Sipitang, Sabah","Sipitang, Sabah",,1-------,AI,9601,,0505N 11533E, +,MY,SRE,Sungai Rengit,Sungai Rengit,,1-------,QQ,8103,,0121N 10413E, +,MY,SWY,Sitiawan,Sitiawan,,---4----,AI,0001,,0413N 10042E, +,MY,SXT,Taman Negara,Taman Negara,,---4----,AI,0001,,0527N 10012E, +,MY,TAN,Telok Anson,Telok Anson,,0-------,RQ,9506,,0401N 10102E, +,MY,TAS,Telok Intan,Telok Intan,,1-------,QQ,8103,,0401N 10102E, +,MY,TBE,Tanjong Berhala,Tanjong Berhala,,1-------,RQ,9506,,0415N 10328E, +,MY,TDA,Tanjong Dawai,Tanjong Dawai,,1-------,QQ,8103,,0541N 10022E, +,MY,TGG,Kuala Terengganu,Kuala Terengganu,,1--4----,AI,9601,,0520N 10308E, +,MY,TOD,Tioman,Tioman,,1--4----,AI,9601,,0248N 10410E, +,MY,TPG,Taiping,Taiping,,---4----,AI,0001,,0451N 10045E, +,MY,TSR,Tanjong Surat,Tanjong Surat,,1-------,QQ,8103,,0128N 10403E, +,MY,TUM,Tumpat,Tumpat,,1-------,QQ,8103,,0612N 10210E, +,MY,TUN,Tungku,Tungku,,1-------,QQ,8103,,0233N 10253E, +,MY,TWU,"Tawau, Sabah","Tawau, Sabah",,1--4----,AI,9601,,0415N 11753E, +,MY,WAL,"Wallace Bay, Sabah","Wallace Bay, Sabah",,1-------,QQ,8103,,0415N 11740E, +,MY,WES,"Weston, Sabah","Weston, Sabah",,1-------,QQ,8103,,0513N 11536E, +,MZ,AME,Alto Molocue,Alto Molocue,,---4----,AI,0001,,1538S 03741E, +,MZ,ANO,Angoche,Angoche,,1--4----,AI,9601,,1614S 03954E, +,MZ,APL,Nampula,Nampula,,---4----,AI,9601,,1507S 03916E, +,MZ,BCW,Benguera Island,Benguera Island,,---4----,AI,0001,,2152S 03526E, +,MZ,BEL,Bela Vista,Bela Vista,,1-------,QQ,8103,,2621S 03240E, +,MZ,BEW,Beira,Beira,,1--45---,AI,9601,,1950S 03451E, +,MZ,BJN,Bajone,Bajone,,---4----,AI,0001,,1712S 03804E, +,MZ,BZB,Bazaruto Island,Bazaruto Island,,---4----,AI,0001,,2139S 03528E, +,MZ,CMZ,Caia,Caia,,---4----,AI,0001,,1750S 03520E, +,MZ,FXO,Cuamba,Cuamba,,---4----,RQ,0901,,1448S 03632E, +,MZ,IBO,Ibo,Ibo,,1--4----,AI,9601,,1220S 04035E, +,MZ,IMG,Inhaminga,Inhaminga,,---4----,AI,0001,,1825S 03501E, +,MZ,INE,Chinde,Chinde,,1--4----,AI,9601,,1835S 03628E, +,MZ,INH,Inhambane,Inhambane,,1--4----,AI,9601,,2352S 03523E, +,MZ,LBM,Luabo,Luabo,,---4----,AI,0001,,1824S 03606E, +,MZ,LMO,Lumbo,Lumbo,,--3-----,RL,9805,,1501S 04040E, +,MZ,LMZ,Palma,Palma,,---4----,AI,0001,,1047S 04028E, +,MZ,MAT,Matola,Matola,,1-------,QQ,8103,,2558S 03228E, +,MZ,MCU,Macuse,Macuse,,1-------,QQ,8103,,1743S 03711E, +,MZ,MEM,Memba,Memba,,1-------,QQ,8103,,1411S 04032E, +,MZ,MFW,Magaruque,Magaruque,,---4----,AI,0001,,2158S 03526E, +,MZ,MJS,Maganja Da Costa,Maganja Da Costa,,---4----,AI,0001,,1718S 03730E, +,MZ,MMW,Moma,Moma,,1--4----,AI,9601,,1646S 03913E, +,MZ,MNC,Nacala,Nacala,,1--4----,AI,9601,,1433S 04041E, +,MZ,MOR,Morrumbene,Morrumbene,,1-------,QQ,8103,,2340S 03521E, +,MZ,MPM,Maputo,Maputo,,1--45---,AI,9601,,2558S 03234E, +,MZ,MSG,Massinga,Massinga,,1-------,QQ,8103,,2320S 03523E, +,MZ,MTU,Montepuez,Montepuez,,---4----,AI,0001,,1308S 03900E, +,MZ,MUD,Mueda,Mueda,,---4----,AI,0001,,1140S 03933E, +,MZ,MZQ,Mocambique,Mocambique,,1-------,QQ,8103,,1502S 04044E, +,MZ,NND,Nangade,Nangade,,---4----,AI,0001,,1104S 03940E, +,MZ,NSO,Nova Sofala,Nova Sofala,,1-------,QQ,8103,,2009S 03445E, +,MZ,NTC,Santa Carolina,Santa Carolina,,---4----,AI,0001,,2137S 03520E, +,MZ,PEB,Pebane,Pebane,,1--4----,AI,9601,,1716S 03809E, +,MZ,POL,Pemba,Pemba,,1--4----,AI,9601,,1258S 04031E, +,MZ,RRM,Marromeu,Marromeu,,---4----,AI,0001,,1818S 03556E, +,MZ,TET,Tete,Tete,,---4----,AI,9601,,1610S 03335E, +,MZ,UEL,Quelimane,Quelimane,,1--4----,AI,9601,,1753S 03653E, +,MZ,VJQ,Gurue,Gurue,,---4----,AI,0001,,1528S 03659E, +,MZ,VPY,Chimoio,Chimoio,,---4----,AI,0001,,1909S 03329E, +,MZ,VXC,Lichinga,Lichinga,,---4----,AI,0001,,1318S 03515E, +,NA,ADI,Arandis,Arandis,,---4----,AI,0001,,2225S 01459E, +,NA,AIW,Ai-Ais,Ai-Ais,,---4----,AI,0001,,2755S 01729E, +,NA,BQI,Bagani,Bagani,,---4----,AI,0001,,1807S 02137E, +,NA,GFY,Grootfontein,Grootfontein,,---4----,AI,9601,,1934S 01806E, +,NA,GOG,Gobabis,Gobabis,,---4----,AI,0001,,2227S 01858E, +,NA,HAL,Halali,Halali,,---4----,AI,0001,,1902S 01628E, +,NA,KAS,Karasburg,Karasburg,,---45---,AI,9805,,2801S 01845E, +,NA,KMP,Keetmanshoop,Keetmanshoop,,---4----,AI,9601,,2635S 01808E, +,NA,MAR,Mariental,Mariental,,----5---,AI,9805,,2437S 01758E, +,NA,MPA,Mpacha,Mpacha,,---4----,AI,0001,,1738S 02411E, +,NA,NDU,Rundu,Rundu,,---4----,AI,0001,,1755S 01946E, +,NA,NNI,Namutoni,Namutoni,,---4----,AI,0001,,1848S 01656E, +,NA,OHI,Oshakati,Oshakati,,---45---,AI,9805,,1747S 01542E, +,NA,OKF,Okaukuejo,Okaukuejo,,---4----,AI,0001,,1911S 01555E, +,NA,OMD,Oranjemund,Oranjemund,,---4----,RQ,9012,,2833S 01626E, +,NA,OMG,Omega,Omega,,---4----,AI,0001,,1802S 02212E, +,NA,OND,Ondangwa,Ondangwa,,---4----,AI,0001,,1754S 01559E, +,NA,OPW,Opuwa,Opuwa,,---4----,AI,0001,,1804S 01350E, +,NA,OTJ,Otjiwarongo,Otjiwarongo,,---45---,AI,9805,,2028S 01639E, +,NA,SWP,Swakopmund,Swakopmund,,---45---,AI,9805,,2241S 01432E, +,NA,SZM,Sesriem,Sesriem,,---4----,AI,0001,,2429S 01548E, +,NA,TCY,Terrace Bay,Terrace Bay,,---4----,AI,0001,,4848N 08706W, +,NA,TSB,Tsumeb,Tsumeb,,---4----,AI,9601,,1915S 01743E, +,NA,WDH,Windhoek,Windhoek,,---45---,AI,9601,,2235S 01705E, +,NA,WVB,Walvis Bay,Walvis Bay,,1-------,QQ,8103,,2257S 01430E, +,NC,THI,Thio,Thio,,1-------,RL,1901,,2137S 16613E, +,NC,TON,Tontouta Apt,Tontouta Apt,,1--45---,AI,1901,,2201S 16613E, +,NE,AJY,Agades,Agades,,---4----,AI,9601,,1658N 00759E, +,NE,BKN,Birni Nkoni,Birni Nkoni,,---4----,AI,0001,,1347N 00515E, +,NE,IMO,Imourarene,Imourarene,1,-----6--,RL,1107,,1805N 00726E, +,NE,MFQ,Maradi,Maradi,,---4----,AI,9601,,1330N 00706E, +,NE,NIM,Niamey,Niamey,,---45---,AI,9601,,1331N 00207E, +,NE,RLT,Arlit,Arlit,,---4----,AI,9601,,1844N 00724E, +,NE,THZ,Tahoua,Tahoua,,---4----,AI,9601,,1453N 00516E, +,NE,ZND,Zinder,Zinder,,---4----,AI,9601,,1348N 00859E, +,NF,NLK,Norfolk Island,Norfolk Island,,---45---,AI,9601,,2902S 16757E, +,NG,ABO,Abonnema,Abonnema,,1-------,QQ,8311,,0443N 00646E, +,NG,ABV,Abuja,Abuja,,---4----,AI,0001,,0904N 00729E, +,NG,ADO,Ado,Ado,,1-------,QQ,8311,,0637N 00342E, +,NG,AKR,Akure,Akure,,---4----,AI,0001,,0715N 00512E, +,NG,APP,Apapa,Apapa,,1-------,QQ,8311,,1016N 00816E, +,NG,BAD,Badagri,Badagri,,1-------,QQ,8311,,0625N 00253E, +,NG,BKA,Bakana,Bakana,,0-------,RL,9811,,0444N 00658E, +,NG,BNI,Benin City,Benin City,,---4----,AI,9601,,0620N 00537E, +,NG,BON,Bonny,Bonny,,1-------,QQ,8311,,0427N 00715E, +,NG,BRA,Brass,Brass,,1-------,QQ,8311,,0418N 00615E, +,NG,BUR,Burutu,Burutu,,1-------,QQ,8311,,0521N 00530E, +,NG,CBQ,Calabar,Calabar,,1--4----,AI,9601,,0459N 00820E, +,NG,EKE,Eket,Eket,,1-------,QQ,8311,,0439N 00756E, +,NG,ENU,Enugu,Enugu,,---4----,AI,9601,,0627N 00730E, +,NG,EOS,Eti-Osa,Eti-Osa,LA,-----6--,RL,1107,,0626N 00334E, +,NG,ESC,Escravos,Escravos,,1-------,QQ,8311,,0537N 00512E, +,NG,FOR,Forcados,Forcados,,1-------,QQ,8311,,0521N 00521E, +,NG,IBA,Ibadan,Ibadan,,---4----,AI,9601,,0723N 00354E, +,NG,ILR,Ilorin,Ilorin,,---4----,AI,0001,,0830N 00433E, +,NG,JOS,Jos,Jos,,---4----,AI,9601,,0955N 00854E, +,NG,KAD,Kaduna,Kaduna,,---45---,AI,9601,,1208N 00828E, +,NG,KAN,Kano,Kano,,---45---,AI,9601,,1200N 00831E, +,NG,KOK,Koko,Koko,,1-------,QQ,8311,,0600N 00528E, +,NG,KUL,Kula,Kula,,1-------,QQ,8311,,0421N 00639E, +,NG,LOA,Lagos Murtala Muhammed Apt,Lagos Murtala Muhammed Apt,LA,--34----,RL,0901,LOS,0635N 00319E, +,NG,LOS,Lagos,Lagos,,1--45---,AI,9601,,0627N 00324E, +,NG,MDI,Makurdi,Makurdi,,---4----,AI,0001,,0744N 00832E, +,NG,MIU,Maiduguri,Maiduguri,,---4----,AI,9601,,1150N 01309E, +,NG,MXJ,Minna,Minna,,---4----,AI,0001,,0937N 00633E, +,NG,OKR,Okrika,Okrika,,1-------,QQ,8311,,0444N 00705E, +,NG,ORO,Oron,Oron,,1-------,QQ,8311,,0449N 00814E, +,NG,PEN,Pennington,Pennington,,0-------,RQ,9506,,0415N 00537E, +,NG,PHC,Port Harcourt,Port Harcourt,,1--4----,AI,9601,,0446N 00701E, +,NG,QBU,Bauchi,Bauchi,,---4----,RQ,0901,,1019N 00951E, +,NG,QIB,Qua Iboe,Qua Iboe,,0-------,RQ,9811,,0433N 00801E, +,NG,QNI,Onitsha,Onitsha,,---4----,RQ,0901,,0609N 00648E, +,NG,SKO,Sokoto,Sokoto,,---4----,AI,9601,,1304N 00514E, +,NG,SPL,Sapele,Sapele,,1-------,QQ,8311,,0554N 00541E, +,NG,TIN,Tincan/Lagos,Tincan/Lagos,,1-------,QQ,8311,,0626N 00321E, +,NG,WAR,Warri,Warri,,1-------,QQ,8311,QRW,0531N 00545E, +,NG,YOL,Yola,Yola,,---4----,AI,9601,,0913N 01229E, +,NG,ZAR,Zaria,Zaria,,---4----,AI,0001,,1107N 00743E, +,NI,BEF,Bluefields,Bluefields,,1--4----,AI,9601,,1136N 08334W, +,NI,BZA,Bonanza,Bonanza,,---4----,AI,9601,,1402N 08436W, +,NI,CHI,Chinandega,Chinandega,,--3-----,RL,9901,,1238N 08708W, +,NI,CIO,Corinto,Corinto,,1---5---,AI,9401,,1229N 08710W, +,NI,ELB,El Bluff,El Bluff,,1-------,AI,9401,,1160N 08341W, +,NI,MAS,Masaya,Masaya,,--3-----,RL,9901,,1158N 08606W, +,NI,MGA,Managua,Managua,,---45---,AI,9601,,1209N 08616W, +,NI,MTG,Matagalpa,Matagalpa,,--3-----,RQ,0101,,1256N 08558W, +,NI,NCR,San Carlos,San Carlos,,---4----,AI,0001,,1109N 08438W, +,NI,PRI,Prinzapolca,Prinzapolca,,1-------,RQ,9506,,1324N 08334W, +,NI,PUZ,Puerto Cabezas,Puerto Cabezas,,1-------,AI,9601,,1402N 08323W, +,NI,RFS,Rosita,Rosita,,---4----,AI,0001,,1356N 08424W, +,NI,RNI,Corn Island,Corn Island,,---4----,AI,9601,,1210N 08304W, +,NI,SIU,Siuna,Siuna,,---4----,AI,9601,,1344N 08447W, +,NI,SJS,San Juan del Sur,San Juan del Sur,,1-------,AI,9401,,1115N 08552W, +,NI,WSP,Waspam,Waspam,,---4----,AI,9601,,1444N 08358W, +,NL,AAM,Aalsmeer,Aalsmeer,,1-------,AF,9506,QFA,5216N 00445E, +,NL,AAR,Aardenburg,Aardenburg,,--3-----,AF,9602,,5117N 00326E, +,NL,ABB,Abbekerk,Abbekerk,,--3-----,AF,9602,,5244N 00501E, +,NL,ABC,Abcoude,Abcoude,,--3-----,AF,9602,,5216N 00458E, +,NL,ABK,Abbenbroek,Abbenbroek,,--3-----,AF,9602,,5151N 00415E, +,NL,ABL,Alblasserdam,Alblasserdam,,1-------,AF,9602,,5152N 00440E, +,NL,ABN,Albergen,Albergen,,--3-----,RL,0101,,5222N 00646E, +,NL,AEH,Aerdenhout,Aerdenhout,,--3-----,AF,9602,,5222N 00435E, +,NL,AIJ,Andijk,Andijk,,--3-----,AF,9602,,5245N 00513E, +,NL,AJM,Anjum,Anjum,,--3-----,AF,9602,,5322N 00608E, +,NL,AKK,Almkerk,Almkerk,,--3-----,AF,9602,,5146N 00458E, +,NL,AKL,Akersloot,Akersloot,,1-------,AF,9602,,5234N 00444E, +,NL,AKR,Akkrum,Akkrum,,--3-----,AF,9602,,5303N 00550E, +,NL,ALB,Aalburg,Aalburg,,--3-----,AF,9602,,5145N 00508E, +,NL,AML,Ameland,Ameland,,1--4----,AI,1607,,5327N 00544E, +,NL,AMV,Amstelveen,Amstelveen,,--3-----,AF,9602,,5218N 00451E, +,NL,AMZ,Ammerzoden,Ammerzoden,,--3-----,AF,9602,,5145N 00514E, +,NL,ANL,Andel,Andel,,--3-----,AF,9602,,5147N 00503E, +,NL,ANT,Andelst,Andelst,,--3-----,AF,9602,,5154N 00544E, +,NL,APE,Apeldoorn,Apeldoorn,,-23-----,AF,9602,QYP,5211N 00556E, +,NL,ARK,Arkel,Arkel,,--3-----,AF,9602,,5152N 00460E, +,NL,ARM,Arnemuiden,Arnemuiden,,--3-----,AF,9602,,5130N 00341E, +,NL,ARN,Arnhem,Arnhem,,-23-----,AF,2101,QAR,5200N 00553E, +,NL,ASD,Assendelft,Assendelft,,--3-----,AF,9602,,5228N 00445E, +,NL,ASP,Asperen,Asperen,,--3-----,AF,9602,,5153N 00507E, +,NL,ASS,Assen,Assen,,--3-----,AF,9602,,5260N 00634E, +,NL,AVE,Avenhorn,Avenhorn,,--3-----,AF,9602,,5237N 00457E, +,NL,BAD,Badhoevedorp,Badhoevedorp,,--3-----,AF,9602,,5220N 00447E, +,NL,BAF,Baflo,Baflo,,--3-----,AF,9602,,5322N 00631E, +,NL,BAL,Balk,Balk,,--3-----,AF,9602,,5254N 00535E, +,NL,BAR,Barneveld,Barneveld,,--3-----,AF,9602,,5210N 00539E, +,NL,BAV,Bavel,Bavel,,--3-----,AF,9602,,5134N 00450E, +,NL,BEB,Bennebroek,Bennebroek,,--3-----,AF,9602,,5219N 00436E, +,NL,BEC,Beusichem,Beusichem,,--3-----,AF,9602,,5157N 00517E, +,NL,BED,Bedum,Bedum,,--3-----,AF,9602,,5318N 00636E, +,NL,BEE,Beek en Donk,Beek en Donk,,--3-----,AF,9602,,5132N 00538E, +,NL,BEG,Bergen aan Zee,Bergen aan Zee,,1-------,AI,1107,,5240N 00438E, +,NL,BEI,Beilen,Beilen,,--3-----,AF,9602,,5252N 00631E, +,NL,BEN,Bentveld,Bentveld,,--3-----,AF,9602,,5222N 00434E, +,NL,BEQ,Beek,Beek,,--3-----,AF,9602,,5056N 00549E, +,NL,BES,Berkel-Enschot,Berkel-Enschot,,--3-----,AF,9602,,5135N 00509E, +,NL,BEU,Beugen,Beugen,,--3-----,AF,9602,,5140N 00556E, +,NL,BEV,Beverwijk,Beverwijk,,123-----,AF,9602,,5229N 00440E, +,NL,BGB,Bergambacht,Bergambacht,,--3-----,AF,9602,,5156N 00447E, +,NL,BGU,Bergum,Bergum,,--3-----,AF,9602,,5312N 00559E, +,NL,BHV,Bilthoven,Bilthoven,,--3-----,AF,9602,,5208N 00512E, +,NL,BHZ,Benthuizen,Benthuizen,,--3-----,AF,9602,,5205N 00432E, +,NL,BIW,Broek in Waterland,Broek in Waterland,,--3-----,AF,9602,,5226N 00460E, +,NL,BKB,Balkbrug,Balkbrug,,--3-----,AF,9602,,5236N 00624E, +,NL,BKE,Berkel,Berkel,,--3-----,AF,9602,,5160N 00429E, +,NL,BKL,Boekelo,Boekelo,,--3-----,AF,9602,,5212N 00648E, +,NL,BKM,Bennekom,Bennekom,,--3-----,AF,9602,,5200N 00541E, +,NL,BLA,Blaricum,Blaricum,,--3-----,AF,9602,,5216N 00515E, +,NL,BLD,Blaaksedijk,Blaaksedijk,,--3-----,AF,9602,,5149N 00431E, +,NL,BLG,Bleskensgraaf,Bleskensgraaf,,--3-----,AF,9602,,5152N 00447E, +,NL,BLK,Blokker,Blokker,,--3-----,AF,9602,,5240N 00505E, +,NL,BLL,Bladel,Bladel,,--3-----,AF,9602,,5122N 00514E, +,NL,BLO,Baarlo,Baarlo,,--3-----,AF,9602,,5120N 00606E, +,NL,BLW,Bleiswijk,Bleiswijk,,--3-----,AF,9602,,5201N 00432E, +,NL,BMD,Bloemendaal,Bloemendaal,,--3-----,AF,9602,,5222N 00435E, +,NL,BNB,Bornerbroek,Bornerbroek,,--3-----,RL,9901,,5219N 00639E, +,NL,BNS,Baarle-Nassau,Baarle-Nassau,,--3-----,AF,9602,,5126N 00452E, +,NL,BOL,Bolsward,Bolsward,,--3-----,AF,9602,,5304N 00531E, +,NL,BOX,Boxmeer,Boxmeer,,--3-----,AF,9602,,5139N 00557E, +,NL,BRC,Borculo,Borculo,,--3-----,AF,9602,,5207N 00631E, +,NL,BRI,Brielle,Brielle,,1-3-----,AF,1607,,5154N 00410E, +,NL,BRK,Brakel,Brakel,,--3-----,AF,9602,,5149N 00505E, +,NL,BRL,Broek op Langedijk,Broek op Langedijk,,--3-----,AF,9602,,5241N 00448E, +,NL,BRM,Brummen,Brummen,,1-3-----,AF,1607,,5207N 00608E, +,NL,BRN,Brunssum,Brunssum,,--3-----,AF,9602,,5057N 00558E, +,NL,BRO,Brouwershaven,Brouwershaven,,1-------,AF,9506,,5144N 00355E, +,NL,BRR,Barendrecht,Barendrecht,,123-----,AF,1607,,5151N 00432E, +,NL,BRU,Bruchem,Bruchem,,--3-----,AF,9602,,5147N 00514E, +,NL,BRZ,Breezand,Breezand,,--3-----,AF,9602,,5253N 00448E, +,NL,BSD,Beesd,Beesd,,--3-----,AF,9602,,5153N 00511E, +,NL,BSE,Bruinisse,Bruinisse,,1-3-----,AF,1607,,5140N 00406E, +,NL,BSK,Boskoop,Boskoop,,1-3-----,AF,1607,,5204N 00440E, +,NL,BSS,Bussum,Bussum,,--3-----,AF,9602,,5217N 00510E, +,NL,BTH,Bathmen,Bathmen,,--3-----,AF,9602,,5215N 00617E, +,NL,BTT,Berg en Terblijt,Berg en Terblijt,,--3-----,RQ,9806,,5052N 00547E, +,NL,BUD,Budel,Budel,,1--4----,AI,1607,,5116N 00534E, +,NL,BUE,Boesingheliede,Boesingheliede,,--3-----,AF,9602,,5222N 00443E, +,NL,BUK,Bunnik,Bunnik,,--3-----,AF,9602,,5202N 00513E, +,NL,BUN,Bunschoten,Bunschoten,,1-3-----,AF,1607,,5214N 00522E, +,NL,BXE,Baexem,Baexem,,--3-----,RQ,9705,,5114N 00553E, +,NL,BXT,Boxtel,Boxtel,,--3-----,AF,9602,,5135N 00519E, +,NL,CAP,Capelle,Capelle,,--3-----,AF,9602,,5139N 00358E, +,NL,CAS,Castricum,Castricum,,--3-----,AF,9602,,5233N 00440E, +,NL,COE,Coevorden,Coevorden,,123-----,AF,1607,,5240N 00644E, +,NL,COT,Cothen,Cothen,,--3-----,AF,9602,,5160N 00519E, +,NL,CPI,Capelle aan den IJssel,Capelle aan den IJssel,,1-------,AF,9602,,5156N 00435E, +,NL,CRU,Cruquius,Cruquius,,--3-----,AF,9602,,5220N 00438E, +,NL,CUB,Culemborg,Culemborg,,1-3-----,AF,1607,,5157N 00514E, +,NL,DAL,Dalfsen,Dalfsen,,--3-----,AF,9602,,5231N 00615E, +,NL,DBI,De Bilt,De Bilt,,--3-----,AF,9602,,5209N 00510E, +,NL,DBM,Den Bommel,Den Bommel,,1-3-----,RL,0601,,5143N 00417E, +,NL,DDM,Didam,Didam,,--3-----,AF,9602,,5156N 00608E, +,NL,DDO,Den Dolder,Den Dolder,,--3-----,AF,9602,,5208N 00514E, +,NL,DED,Dedemsvaart,Dedemsvaart,,--3-----,AF,9602,,5236N 00628E, +,NL,DEM,De Meern,De Meern,,--3-----,AF,9602,,5205N 00502E, +,NL,DEV,Deventer,Deventer,,123-----,AF,9602,QYV,5216N 00614E, +,NL,DEW,De Wilp,De Wilp,,--3-----,AF,9602,,5307N 00615E, +,NL,DFT,Delft,Delft,,123-----,AF,1607,,5160N 00422E, +,NL,DGW,Delfgauw,Delfgauw,,--3-----,AF,9602,,5201N 00424E, +,NL,DHN,Den Hoorn,Den Hoorn,,--3-----,AF,9602,,5302N 00445E, +,NL,DIE,Diever,Diever,,--3-----,AF,9602,,5251N 00619E, +,NL,DIM,Diemen,Diemen,,--3-----,AF,9602,,5221N 00458E, +,NL,DIN,Dinteloord,Dinteloord,,--3-----,AF,9602,,5138N 00422E, +,NL,DIR,Dieren,Dieren,,--3-----,AF,9602,,5203N 00606E, +,NL,DKP,De Kempen,De Kempen,,--3-----,AF,9602,,5115N 00539E, +,NL,DKR,De Krim,De Krim,,--3-----,AF,9602,,5239N 00637E, +,NL,DKW,De Kwakel,De Kwakel,,--3-----,AF,9602,,5214N 00448E, +,NL,DLR,De Lier,De Lier,,--3-----,AF,9602,,5159N 00415E, +,NL,DLU,De Lutte,De Lutte,,--3-----,RL,9805,,5219N 00659E,Overijsel +,NL,DOE,Doesburg,Doesburg,,1-3-----,AF,1607,,5201N 00608E, +,NL,DOI,Doetinchem,Doetinchem,,1-3-----,AF,1607,,5158N 00617E, +,NL,DOK,Dokkum,Dokkum,,1-------,AF,9506,,5319N 00560E, +,NL,DON,Dongen,Dongen,,1-3-----,AF,1607,,5139N 00457E, +,NL,DOO,Doorn,Doorn,,--3-----,AF,9602,,5202N 00521E, +,NL,DRA,Drachten,Drachten,,--34----,AF,1607,QYC,5307N 00606E, +,NL,DRI,Driebergen,Driebergen,,--3-----,AF,9602,,5203N 00517E, +,NL,DRK,Dirksland,Dirksland,,--3-----,AF,9602,,5145N 00406E, +,NL,DRN,Drunen,Drunen,,--3-----,AF,9602,,5141N 00508E, +,NL,DRO,Dronten,Dronten,,1-3-----,AF,1607,,5232N 00545E, +,NL,DRU,Druten,Druten,,--3-----,AF,9602,,5153N 00536E, +,NL,DUI,Duiven,Duiven,,--3-----,AF,9602,,5157N 00601E, +,NL,DUZ,Duizel,Duizel,,--3-----,AF,9602,,5122N 00518E, +,NL,DXP,Dinxperlo,Dinxperlo,,--3-----,AF,9602,,5152N 00629E, +,NL,DZK,De Zilk,De Zilk,,--3-----,AF,9602,,5218N 00433E, +,NL,EAZ,Egmond aan Zee,Egmond aan Zee,,--3-----,AF,9602,,5237N 00438E, +,NL,ECD,Echteld,Echteld,,1-------,AF,9602,,5155N 00530E, +,NL,ECH,Echt,Echt,,--3-----,AF,9602,,5105N 00554E, +,NL,EDE,Ede,Ede,,-23-----,AF,9602,,5204N 00545E, +,NL,EDM,Edam,Edam,,1-3-----,AF,1607,,5233N 00502E, +,NL,EED,Eede,Eede,,--3-----,AF,9602,,5115N 00327E, +,NL,EEE,Eerbeek,Eerbeek,,--3-----,AF,9602,,5206N 00604E, +,NL,EEM,Eemshaven,Eemshaven,,123-----,AF,9602,,5327N 00651E, +,NL,EEN,Eenrum,Eenrum,,--3-----,AF,9602,,5322N 00628E, +,NL,EGL,Egchel,Egchel,,--3-----,AF,9602,,5119N 00558E, +,NL,EIB,Eibergen,Eibergen,,--3-----,AF,9602,,5206N 00639E, +,NL,ELB,Elburg,Elburg,,1-3-----,AF,1607,,5225N 00550E, +,NL,ELL,Ellecom,Ellecom,,--3-----,AF,9602,,5202N 00605E, +,NL,EMC,Emmer-Compascuum,Emmer-Compascuum,,--3-----,AF,9602,,5249N 00703E, +,NL,EML,Emmeloord,Emmeloord,,--3-----,AF,9602,,5243N 00545E, +,NL,EMM,Emmen,Emmen,,-23-----,AF,9602,,5245N 00657E, +,NL,ENG,Engwierum,Engwierum,,--3-----,AF,9602,,5319N 00608E, +,NL,ENK,Enkhuizen,Enkhuizen,,1-3-----,AF,1607,,5242N 00517E, +,NL,ENP,Enspijk,Enspijk,,--3-----,AF,9602,,5153N 00513E, +,NL,ENS,Enschede,Enschede,,1234----,AF,1607,,5213N 00654E, +,NL,ENX,Ens,Ens,,--3-----,AF,9602,,5238N 00550E, +,NL,EPE,Epe,Epe,,--3-----,AF,9602,,5220N 00558E, +,NL,EPN,Epen,Epen,,--3-----,AF,9602,,5047N 00555E, +,NL,ERM,Ermelo,Ermelo,,--3-----,AF,9602,,5217N 00539E, +,NL,ERP,Erp,Erp,,--3-----,AF,9602,,5136N 00536E, +,NL,ESP,Espel,Espel,,--3-----,AF,9602,,5243N 00539E, +,NL,EUR,Europoort,Europoort,,123-----,AI,9812,,5156N 00410E, +,NL,EYS,Eijsden,Eijsden,,--3-----,AF,9602,,5048N 00546E, +,NL,FAR,Farmsum,Farmsum,,1-3-----,AF,1607,,5319N 00656E, +,NL,FEE,Feerwerd,Feerwerd,,--3-----,AF,9602,,5318N 00628E, +,NL,FFJ,Fijnaart,Fijnaart,,--3-----,AF,9602,,5138N 00428E, +,NL,FOX,Foxhol,Foxhol,,1-3-----,AF,1901,,5310N 00643E, +,NL,FRK,Franeker,Franeker,,--3-----,AF,9602,,5311N 00532E, +,NL,GAM,Gameren,Gameren,,--3-----,AF,9602,,5148N 00512E, +,NL,GAR,Garderen,Garderen,,--3-----,AF,9602,,5214N 00543E, +,NL,GAS,Gassel,Gassel,,--3-----,AF,9602,,5144N 00547E, +,NL,GBC,Grevenbicht,Grevenbicht,,--3-----,AF,9602,,5102N 00546E, +,NL,GBV,Grubbenvorst,Grubbenvorst,,--3-----,AF,9602,,5125N 00609E, +,NL,GDK,Gouderak,Gouderak,,--3-----,RQ,9705,,5159N 00441E, +,NL,GDM,Geldermalsen,Geldermalsen,,1-3-----,AF,1607,,5153N 00517E, +,NL,GDR,Goedereede,Goedereede,,1-------,AF,9602,,5149N 00359E, +,NL,GEC,Gellicum,Gellicum,,--3-----,AF,9602,,5153N 00509E, +,NL,GEE,Geleen,Geleen,,--3-----,AF,9602,,5101N 00550E, +,NL,GEM,Gemert,Gemert,,--3-----,AF,9602,,5132N 00545E, +,NL,GEN,Gennep,Gennep,,--3-----,AF,9602,,5142N 00558E, +,NL,GGN,Gendringen,Gendringen,,--3-----,RQ,9709,,5152N 00623E, +,NL,GIB,Giesbeek,Giesbeek,,--3-----,AF,9602,,5160N 00604E, +,NL,GIS,Giessen,Giessen,,--3-----,AF,9602,,5147N 00502E, +,NL,GLA,Glanerbrug,Glanerbrug,,--3-----,AF,9602,,5213N 00658E, +,NL,GLD,Geldrop,Geldrop,,--3-----,AF,9602,,5126N 00536E, +,NL,GND,Genderen,Genderen,,--3-----,AF,9602,,5144N 00505E, +,NL,GNM,Genemuiden,Genemuiden,,--3-----,AF,9602,,5237N 00603E, +,NL,GOE,Goes,Goes,,1-3-----,AF,1607,,5130N 00353E, +,NL,GOI,Goirle,Goirle,,--3-----,AF,9602,,5130N 00502E, +,NL,GOO,Goor,Goor,,1-3-----,AF,1607,,5214N 00635E, +,NL,GOR,Gorinchem,Gorinchem,,123-----,AF,1901,,5150N 00458E, +,NL,GOU,Gouda,Gouda,,123-----,AF,1607,,5201N 00443E, +,NL,GOW,Goudswaard,Goudswaard,,--3-----,AF,9602,,5148N 00417E, +,NL,GRN,Groenlo,Groenlo,,--3-----,AF,9602,,5203N 00637E, +,NL,GRQ,Groningen,Groningen,,1234----,AF,9602,,5313N 00634E, +,NL,GRS,Groessen,Groessen,,--3-----,AF,9602,,5156N 00602E, +,NL,GRV,Geervliet,Geervliet,,--3-----,AF,9602,,5152N 00416E, +,NL,GSM,Giessendam,Giessendam,,--3-----,RQ,9704,,5150N 00451E, +,NL,GST,Gasteren,Gasteren,,--3-----,AF,9602,,5302N 00640E, +,NL,GTB,Geertruidenberg,Geertruidenberg,,--3-----,AF,9602,,5142N 00453E, +,NL,GZE,Gilze,Gilze,,--3-----,AF,9602,,5134N 00455E, +,NL,HAA,Haarlem,Haarlem,,123-----,AF,1607,,5223N 00438E, +,NL,HAE,Haelen,Haelen,,1-3-----,AF,1607,,5114N 00557E, +,NL,HAL,Halsteren,Halsteren,,--3-----,AF,9602,,5131N 00416E, +,NL,HAM,Harmelen,Harmelen,,--3-----,AF,9602,,5205N 00458E, +,NL,HAP,Hapert,Hapert,,--3-----,AF,9602,,5122N 00515E, +,NL,HAS,Hasselt,Hasselt,,--3-----,AF,9602,,5235N 00606E, +,NL,HAU,Haulerwijk,Haulerwijk,,--3-----,AF,9602,,5304N 00620E, +,NL,HAZ,Hazerswoude,Hazerswoude,,--3-----,AF,9602,,5206N 00435E, +,NL,HBG,Hardenberg,Hardenberg,,1-3-----,AF,1607,,5234N 00638E, +,NL,HBR,Hoensbroek,Hoensbroek,,--3-----,AF,9602,,5055N 00556E, +,NL,HCH,Haastrecht,Haastrecht,,--3-----,AF,9602,,5200N 00446E, +,NL,HDL,Hedel,Hedel,,1-3-----,AF,1607,,5145N 00516E, +,NL,HEC,Heesch,Heesch,,--3-----,RQ,9806,,5144N 00532E, +,NL,HEE,Heel,Heel,,1-3-----,AF,1607,,5111N 00554E, +,NL,HEJ,Heijen,Heijen,,123-----,RL,1607,,5140N 00559E, +,NL,HEL,Helden,Helden,,--3-----,AF,9602,,5119N 00600E, +,NL,HEU,Heurne,Heurne,,--3-----,AF,9602,,5153N 00629E, +,NL,HFD,Hoofddorp,Hoofddorp,,--3-----,AF,9602,QHZ,5218N 00442E, +,NL,HFW,Halfweg,Halfweg,,--3-----,AF,9602,,5318N 00615E, +,NL,HGL,Hengelo,Hengelo,,123-----,AF,9602,QYH,5216N 00648E, +,NL,HGV,Hoogvliet,Hoogvliet,,--3-----,AF,9602,,5152N 00422E, +,NL,HHW,Heerhugowaard,Heerhugowaard,,--3-----,AF,9602,,5240N 00450E, +,NL,HIL,Hillegom,Hillegom,,1-3-----,AF,1607,,5218N 00435E, +,NL,HKE,Heemskerk,Heemskerk,,--3-----,AF,9602,,5231N 00440E, +,NL,HKF,Heerjansdam,Heerjansdam,,--3-----,RL,9805,,5150N 00434E,Zuidholland +,NL,HKH,Haaksbergen,Haaksbergen,,--3-----,AF,9602,,5209N 00644E, +,NL,HKI,Herkingen,Herkingen,,--3-----,RL,9805,,5143N 00405E, +,NL,HKP,Hoogkarspel,Hoogkarspel,,--3-----,AF,9602,,5242N 00511E, +,NL,HKT,Heikant,Heikant,,--3-----,RQ,0101,,5115N 00401E, +,NL,HLL,Hallum,Hallum,,--3-----,AF,9602,,5318N 00547E, +,NL,HLO,Heiloo,Heiloo,,1-3-----,AF,1607,,5236N 00442E, +,NL,HLT,Holten,Holten,,--3-----,AF,9602,,5234N 00607E, +,NL,HMS,Heemstede,Heemstede,,1-3-----,AF,1607,,5221N 00437E, +,NL,HNA,Hoornaar,Hoornaar,,--3-----,AF,9602,,5153N 00457E, +,NL,HNK,Hank,Hank,,--3-----,AF,9602,,5144N 00454E, +,NL,HNO,Heino,Heino,,--3-----,RQ,9705,,5226N 00614E, +,NL,HNS,Honselersdijk,Honselersdijk,,--3-----,AF,9602,,5201N 00414E, +,NL,HOD,Heinenoord,Heinenoord,,--3-----,AF,9602,,5150N 00429E, +,NL,HOE,Hoevelaken,Hoevelaken,,--3-----,AF,9602,,5211N 00527E, +,NL,HOG,Hooglanderveen,Hooglanderveen,,--3-----,AF,9602,,5211N 00526E, +,NL,HOH,Hoogerheide,Hoogerheide,,--3-----,AF,9602,,5125N 00419E, +,NL,HOL,Hoogland,Hoogland,,--3-----,AF,9602,,5211N 00523E, +,NL,HON,Hoeven,Hoeven,,--34----,AF,1607,,5135N 00435E, +,NL,HOR,Hordijkerveld,Hordijkerveld,,--3-----,AF,9602,,5153N 00433E, +,NL,HOU,Houten,Houten,,1-3-----,AF,1607,,5202N 00510E, +,NL,HOV,Hoogeveen,Hoogeveen,,1-34----,AF,1607,,5244N 00630E, +,NL,HOZ,Hooge Zwaluwe,Hooge Zwaluwe,,--3-----,AF,9602,,5141N 00445E, +,NL,HPT,Hoptille,Hoptille,FR,1-3-----,RQ,0501,,5310N 00541E, +,NL,HRD,Harderwijk,Harderwijk,,1-3-----,AF,1607,,5220N 00538E, +,NL,HRK,Herkenbosch,Herkenbosch,,--3-----,AF,9602,,5109N 00604E, +,NL,HRN,Hoorn,Hoorn,,123-----,AF,1607,,5237N 00504E, +,NL,HRS,Horst,Horst,,--3-----,AF,9602,,5230N 00530E, +,NL,HRV,Heerenveen,Heerenveen,,1-3-----,AF,1607,QYZ,5260N 00555E, +,NL,HRW,Heerewaarden,Heerewaarden,,1-3-----,RL,1607,,5149N 00523E, +,NL,HSL,Hellevoetsluis,Hellevoetsluis,,1-------,AF,9506,,5150N 00409E, +,NL,HTH,Huis ter Heide,Huis ter Heide,,--3-----,AF,9602,,5301N 00628E, +,NL,HTK,Hattemerbroek,Hattemerbroek,,--3-----,AF,9602,,5229N 00602E, +,NL,HTR,Heteren,Heteren,,1-3-----,AF,1607,,5157N 00545E, +,NL,HUI,Huizen,Huizen,,--3-----,AF,9602,,5218N 00515E, +,NL,HUL,Hulst,Hulst,,--3-----,AF,9602,,5120N 00405E, +,NL,HVD,Herveld,Herveld,,--3-----,AF,9602,,5154N 00544E, +,NL,HVO,Helvoirt,Helvoirt,,--3-----,AF,9602,,5138N 00514E, +,NL,HVS,Hilversum,Hilversum,,123-----,AF,1607,QYI,5213N 00510E, +,NL,HYY,Heythuysen,Heythuysen,,--3-----,AF,9602,,5115N 00554E, +,NL,HZE,Heeze,Heeze,,--3-----,AF,9602,,5122N 00535E, +,NL,ILP,Ilpendam,Ilpendam,,--3-----,AF,9602,,5228N 00457E, +,NL,ITT,Ittervoort,Ittervoort,,--3-----,AF,9602,,5110N 00549E, +,NL,JLD,Julianadorp,Julianadorp,,--3-----,AF,9602,,5253N 00445E, +,NL,JOU,Joure,Joure,,--3-----,AF,9602,,5258N 00548E, +,NL,KAG,Kaag,Kaag,,--3-----,AF,9602,,5212N 00437E, +,NL,KAM,Kampen,Kampen,,123-----,AF,1307,,5233N 00554E, +,NL,KAP,Kapellebrug,Kapellebrug,,--3-----,AF,9602,,5115N 00404E, +,NL,KEB,Keijenborg,Keijenborg,,--3-----,AF,9602,,5202N 00618E, +,NL,KER,Kerkrade,Kerkrade,,--3-----,AF,9602,,5052N 00604E, +,NL,KIJ,Kinderdijk,Kinderdijk,,--3-----,AF,9602,,5153N 00438E, +,NL,KLT,Kloosterzande,Kloosterzande,,--3-----,RL,9805,,5122N 00401E, +,NL,KLU,Klundert,Klundert,,1-------,AI,0201,,5140N 00432E, +,NL,KLW,Klaaswaal,Klaaswaal,,--3-----,AF,9602,,5146N 00427E, +,NL,KMR,Kamerik,Kamerik,,--3-----,AF,9602,,5207N 00454E, +,NL,KOG,Kortgene,Kortgene,,--3-----,RL,9805,,5133N 00348E, +,NL,KOK,Koudekerke,Koudekerke,,--3-----,AF,9602,,5129N 00333E, +,NL,KRM,Krommenie,Krommenie,,--3-----,AF,9602,,5230N 00446E, +,NL,KRU,Kruiningen,Kruiningen,,--3-----,AF,9602,,5127N 00402E, +,NL,KSL,Kessel,Kessel,,1-3-----,AF,1607,,5117N 00603E, +,NL,KST,Kesteren,Kesteren,,1-3-----,AF,1607,,5156N 00534E, +,NL,KTH,Kortenhoef,Kortenhoef,,--3-----,AF,9602,,5214N 00507E, +,NL,KTS,Kaatsheuvel,Kaatsheuvel,,--3-----,AF,9602,,5140N 00502E, +,NL,KWA,Kwadendamme,Kwadendamme,,--3-----,AF,9602,,5126N 00353E, +,NL,KWK,Katwijk,Katwijk,,--3-----,RL,0101,,5211N 00425E, +,NL,KWS,Kwintsheul,Kwintsheul,,--3-----,AF,9602,,5201N 00415E, +,NL,KWT,Koewacht,Koewacht,,--3-----,AF,9602,,5114N 00358E, +,NL,LAF,Landgraaf,Landgraaf,,--3-----,AF,9602,,5054N 00602E, +,NL,LAG,Langerak,Langerak,,--3-----,AF,9602,,5156N 00453E, +,NL,LAM,Landsmeer,Landsmeer,,--3-----,AF,9602,,5226N 00455E, +,NL,LAN,Lauwersoog,Lauwersoog,,1-------,AF,8601,,5324N 00613E, +,NL,LAR,Laren,Laren,,--3-----,AF,9602,,5215N 00514E, +,NL,LAV,Loenen aan de Vecht,Loenen aan de Vecht,,1-3-----,AF,1607,,5213N 00501E, +,NL,LAW,Lage Weide,Lage Weide,,1-3-----,AF,1607,,5207N 00504E, +,NL,LBK,Lisserbroek,Lisserbroek,,--3-----,RL,0101,,5215N 00434E, +,NL,LCH,Lochem,Lochem,,--3-----,AF,9602,,5210N 00621E, +,NL,LCV,Lichtenvoorde,Lichtenvoorde,,--3-----,AF,9602,,5159N 00634E, +,NL,LDD,Leiderdorp,Leiderdorp,,1-3-----,AF,1607,,5210N 00432E, +,NL,LDS,Leidschendam,Leidschendam,,--3-----,AF,9602,,5206N 00426E, +,NL,LEE,Leek,Leek,,--3-----,AF,9602,,5310N 00623E, +,NL,LEK,Lekkerkerk,Lekkerkerk,,--3-----,AF,9602,,5154N 00441E, +,NL,LER,Leersum,Leersum,UT,--3-5---,RL,1107,,5201N 00526E, +,NL,LEU,Leusden,Leusden,,--3-----,AF,9602,,5207N 00525E, +,NL,LEY,Lelystad,Lelystad,,1-34----,AF,1607,,5232N 00522E, +,NL,LGB,Landgoed Baest,Landgoed Baest,,1-3-----,RQ,0501,,5129N 00515E, +,NL,LID,Leiden,Leiden,,1234----,AF,1607,,5209N 00429E, +,NL,LIE,Lienden,Lienden,,1-------,AF,9602,,5157N 00531E, +,NL,LIT,Lith,Lith,,1-------,AF,9602,,5148N 00526E, +,NL,LKN,'t Leuken,'t Leuken,LI,1-3-----,RQ,0501,,5134N 00604E, +,NL,LMM,Limmen,Limmen,,--3-----,AF,9602,,5234N 00442E, +,NL,LMR,Lemmer,Lemmer,,--3-----,AF,9602,,5251N 00543E, +,NL,LMU,Leimuiden,Leimuiden,,--3-----,AF,9602,,5213N 00440E, +,NL,LNT,Lent,Lent,,--3-----,AF,9602,,5152N 00552E, +,NL,LOB,Lobith,Lobith,,--3-----,AF,9602,,5152N 00607E, +,NL,LOM,Lomm,Lomm,,--3-----,AF,9602,,5127N 00610E, +,NL,LON,Loenen,Loenen,,--3-----,AF,9602,,5207N 00601E, +,NL,LOS,Losser,Losser,,--3-----,RL,0002,,5218N 00659E, +,NL,LPK,Lopik,Lopik,,--3-----,AF,9602,,5159N 00456E, +,NL,LRD,Leerdam,Leerdam,,1-3-----,AF,1607,,5154N 00506E, +,NL,LSC,Linschoten,Linschoten,,--3-----,AF,9602,,5204N 00455E, +,NL,LSR,Nieuw-Loosdrecht,Nieuw-Loosdrecht,,--3-----,AF,9602,,5212N 00508E, +,NL,LTE,Aalten,Aalten,,--3-----,AF,9602,,5155N 00635E, +,NL,LTH,Leuth,Leuth,,--3-----,AF,9602,,5150N 00560E, +,NL,LTS,Laatste Stuiver,Laatste Stuiver,,1-3-----,RQ,0501,,5316N 00610E, +,NL,LWR,Leeuwarden,Leeuwarden,,1234----,AF,9602,,5312N 00548E, +,NL,LXM,Lexmond,Lexmond,,--3-----,AF,9602,,5158N 00502E, +,NL,LZG,Langezwaag,Langezwaag,,--3-----,AF,9602,,5259N 00600E, +,NL,MAB,Maarsbergen,Maarsbergen,,--3-----,AF,9602,,5203N 00524E, +,NL,MAD,Malden,Malden,,--3-----,AF,9602,,5147N 00551E, +,NL,MAL,Maasland,Maasland,,--3-----,AF,9602,,5156N 00416E, +,NL,MAN,Marknesse,Marknesse,,--3-----,AF,9602,,5243N 00552E, +,NL,MAR,Markelo,Markelo,,1-3-----,AF,1607,,5214N 00630E, +,NL,MAU,Maurik,Maurik,,1-3-----,AF,1607,,5158N 00525E, +,NL,MBK,Milsbeek,Milsbeek,GE,--3--6--,RQ,0607,,5143N 00557E, +,NL,MCK,Melick,Melick,,--3-----,AF,9602,,5109N 00601E, +,NL,MDB,Middelbeers,Middelbeers,,--3-----,AF,9602,,5128N 00515E, +,NL,MDM,Medemblik,Medemblik,,--3-----,AF,9602,,5247N 00510E, +,NL,MDT,Mildert,Mildert,LI,1-3-----,RQ,0501,,5114N 00548E, +,NL,MEB,Merkelbeek,Merkelbeek,,--3-----,AF,9602,,5057N 00556E, +,NL,MEE,Meer,Meer,,--3-----,AF,9602,,5122N 00519E, +,NL,MEH,Mesch,Mesch,LI,1-3-----,RQ,0901,,5046N 00544E, +,NL,MEP,Meppel,Meppel,,123-----,AF,9602,,5243N 00612E, +,NL,MES,Meers,Meers,,--3-----,AF,9602,,5058N 00544E, +,NL,MID,Middelburg,Middelburg,,123-----,AF,9602,,5130N 00336E, +,NL,MIH,Middelharnis,Middelharnis,,1-3-----,AF,1307,,5145N 00410E, +,NL,MIJ,Mijdrecht,Mijdrecht,,--3-----,AF,9602,,5212N 00452E, +,NL,MKP,Moerkapelle,Moerkapelle,,--3-----,AF,9602,,5203N 00435E, +,NL,MLL,Mill,Mill,,--3-----,AF,9602,,5141N 00547E, +,NL,MNN,Monnickendam,Monnickendam,,--3-----,AF,9602,,5227N 00502E, +,NL,MNT,Montfoort,Montfoort,,--3-----,AF,9602,,5203N 00457E, +,NL,MOG,Molenaarsgraaf,Molenaarsgraaf,,--3-----,AF,9602,,5153N 00450E, +,NL,MON,Monster,Monster,,--3-----,AF,9602,,5201N 00410E, +,NL,MOO,Moordrecht,Moordrecht,,--3-----,AF,9602,,5159N 00440E, +,NL,MRS,Maarssenbroek,Maarssenbroek,,--3-----,AF,9602,,5208N 00502E, +,NL,MRT,Maartensdijk,Maartensdijk,,--3-----,AF,9602,,5209N 00510E, +,NL,MSB,Maasbracht,Maasbracht,,1-------,AF,9602,,5109N 00553E, +,NL,MSD,Maasdam,Maasdam,,--3-----,AF,9602,,5147N 00434E, +,NL,MSL,Maassluis,Maassluis,,123-----,AF,9602,,5155N 00415E, +,NL,MSS,Maarssen,Maarssen,,--3-----,AF,9602,,5208N 00502E, +,NL,MST,Maastricht,Maastricht,,1234----,AF,9602,,5051N 00542E, +,NL,MSV,Maasvlakte,Maasvlakte,,1-3-----,AF,1701,,5157N 00401E, +,NL,MVE,Middelie,Middelie,,--3-----,RL,9805,,5232N 00501E,Fleevoland +,NL,NAA,Naarden,Naarden,,--3-----,AF,9602,,5218N 00510E, +,NL,NAW,Naaldwijk,Naaldwijk,,1-3-----,AF,1607,,5160N 00412E, +,NL,NDP,Nootdorp,Nootdorp,,--3-----,AF,9602,,5201N 00426E, +,NL,NER,Neer,Neer,,--3-----,AF,9602,,5116N 00559E, +,NL,NIJ,Nijmegen,Nijmegen,,123-----,AF,1901,,5151N 00552E, +,NL,NIS,Nispen,Nispen,,--3-----,AF,9602,,5129N 00428E, +,NL,NKK,Nijkerk,Nijkerk,,1-3-----,AF,1607,,5213N 00529E, +,NL,NKV,Nijkerkerveen,Nijkerkerveen,,--3-----,AF,9602,,5212N 00528E, +,NL,NLG,Nagele,Nagele,,--3-----,AF,9602,,5239N 00543E, +,NL,NNE,Annen,Annen,,--3-----,RL,9805,,5303N 00644E,Drenthe +,NL,NNN,Nuenen,Nuenen,,--3-----,AF,9602,,5129N 00533E, +,NL,NOJ,Noordwijkerhout,Noordwijkerhout,,--3-----,AF,9602,,5216N 00429E, +,NL,NRW,Nederweert,Nederweert,,--3-----,AF,9602,,5118N 00545E, +,NL,NSS,Nisse,Nisse,,--3-----,RQ,9705,,5127N 00351E, +,NL,NSW,Noord-Scharwoude,Noord-Scharwoude,,--3-----,AF,9602,,5242N 00449E, +,NL,NTH,Nuth,Nuth,,--3-----,AF,9602,,5055N 00553E, +,NL,NUD,Numansdorp,Numansdorp,,--3-----,AF,9602,,5144N 00426E, +,NL,NUI,Nuis,Nuis,,--3-----,AF,9602,,5309N 00618E, +,NL,NUN,Nunspeet,Nunspeet,,--3-----,AF,9602,,5220N 00548E, +,NL,NVD,Nijverdal,Nijverdal,,--3-----,AF,9602,,5222N 00628E, +,NL,NWG,Nieuwegein,Nieuwegein,,1-3-----,AF,1607,,5202N 00505E, +,NL,NWK,Nieuwkoop,Nieuwkoop,,--3-----,AF,9602,,5209N 00447E, +,NL,NWP,Nieuwpoort,Nieuwpoort,,--3-----,AF,9602,,5156N 00452E, +,NL,NWS,Nieuwstadt,Nieuwstadt,,--3-----,RL,9811,,5102N 00552E, +,NL,NWV,Nieuwveen,Nieuwveen,,-23-----,RL,9805,,5212N 00445E,Zuidholland +,NL,OBD,Obdam,Obdam,,--3-----,RL,9901,,5241N 00455E, +,NL,OBL,Oud-Beijerland,Oud-Beijerland,,1-3-----,AF,1607,,5149N 00425E, +,NL,OBO,Oudenbosch,Oudenbosch,,--3-----,AF,9602,,5135N 00432E, +,NL,OCC,Ochten,Ochten,,--3-----,AF,9602,,5154N 00534E, +,NL,ODH,Oudenhoorn,Oudenhoorn,,--3-----,AF,9602,,5150N 00411E, +,NL,ODK,Odijk,Odijk,,--3-----,AF,9602,,5203N 00514E, +,NL,ODP,Oude Pekela,Oude Pekela,,--3-----,AF,9602,,5306N 00701E, +,NL,ODT,Oude-Tonge,Oude-Tonge,,--3-----,AF,9602,,5141N 00413E, +,NL,ODW,Oudewater,Oudewater,,--3-----,AF,9602,,5201N 00452E, +,NL,OGE,Oegstgeest,Oegstgeest,,1-3-----,AF,1607,,5211N 00428E, +,NL,OIH,Oirschot,Oirschot,,1-3-----,AF,1607,,5129N 00518E, +,NL,OIW,Oisterwijk,Oisterwijk,,--3-----,AF,9602,,5134N 00512E, +,NL,OLD,Oldeberkoop,Oldeberkoop,,--3-----,AF,9602,,5256N 00608E, +,NL,OLK,Oldemarkt,Oldemarkt,,--3-----,RL,9803,,5249N 00558E,Overijsel +,NL,OLZ,Oldenzaal,Oldenzaal,,-23-----,AF,9602,,5219N 00655E, +,NL,OMD,Roermond,Roermond,,1-3-----,AF,1901,,5112N 00559E, +,NL,OMM,Ommen,Ommen,,--3-----,AF,9602,,5231N 00627E, +,NL,OOT,Ootmarsum,Ootmarsum,,--3-----,AF,9602,,5224N 00654E, +,NL,OOY,Ooij,Ooij,,--3-----,AF,9602,,5151N 00556E, +,NL,OSB,Oosterbeek,Oosterbeek,,--3-----,AF,9602,,5159N 00551E, +,NL,OSD,Oostdijk,Oostdijk,,--3-----,AF,9602,,5150N 00358E, +,NL,OSP,Ospel,Ospel,,--3-----,AF,9602,,5118N 00547E, +,NL,OST,Oostrum,Oostrum,FR,--3-----,AM,2007,,5320N 00604E, +,NL,OVM,Oud-Vossemeer,Oud-Vossemeer,,--3-----,AF,9602,,5134N 00412E, +,NL,OVN,Oostvoorne,Oostvoorne,,--3-----,AF,9602,,5155N 00406E, +,NL,OVZ,Ovezande,Ovezande,,--3-----,AF,9602,,5126N 00349E, +,NL,PAN,Panningen,Panningen,,--3-----,AF,9602,,5120N 00559E, +,NL,PAP,Papendrecht,Papendrecht,,1-3-----,AF,1901,QYT,5150N 00442E, +,NL,PDK,Poeldijk,Poeldijk,,--3-----,AF,9602,,5201N 00413E, +,NL,PIJ,Pijnacker,Pijnacker,,--3-----,AF,9602,,5201N 00426E, +,NL,PRB,Prinsenbeek,Prinsenbeek,,--3-----,AF,9602,,5136N 00443E, +,NL,PTT,Petten,Petten,,--3-----,AF,9602,,5246N 00440E, +,NL,PUM,Purmerend,Purmerend,,1-3-----,AF,1607,,5230N 00458E, +,NL,PUT,Putte,Putte,,--3-----,AF,9602,,5122N 00424E, +,NL,PVT,Poortvliet,Poortvliet,,--3-----,RL,9805,,5133N 00409E, +,NL,QCJ,Acht,Acht,,--3-----,AF,9602,,5129N 00526E, +,NL,QCT,Eersel,Eersel,,--3-----,AF,9602,,5124N 00520E, +,NL,QDG,Lisse,Lisse,,1-3-----,AF,1607,,5215N 00434E, +,NL,QDJ,Made,Made,,--3-----,AF,9602,,5141N 00448E, +,NL,QDS,Raalte,Raalte,,1-3-----,AF,1607,,5223N 00618E, +,NL,RAS,Ravenstein,Ravenstein,,1-3-----,AF,1607,,5148N 00539E, +,NL,RAV,Roelofarendsveen,Roelofarendsveen,,--3-----,AF,9602,,5212N 00438E, +,NL,RBG,Rijnsburg,Rijnsburg,,1-3-----,AF,1607,,5211N 00426E, +,NL,RCP,Rucphen,Rucphen,,--3-----,AF,9602,,5131N 00434E, +,NL,REU,Reuver,Reuver,,--3-----,AF,9602,,5117N 00605E, +,NL,REW,Reimerswaal,Reimerswaal,,1-------,AI,9901,,5127N 00406E, +,NL,RHD,Rheden,Rheden,,1-3-----,AF,1607,,5202N 00604E, +,NL,RHE,Rhenen,Rhenen,,--3-----,AF,9602,,5158N 00534E, +,NL,RHO,Rhoon,Rhoon,,--3-----,AF,9602,,5151N 00425E, +,NL,RID,Ridderkerk,Ridderkerk,,1-3-----,AF,1307,,5152N 00436E, +,NL,RIE,Riel,Riel,,--3-----,AF,9602,,5125N 00531E, +,NL,RJE,Rijen,Rijen,,--3-----,AF,9602,,5134N 00455E, +,NL,RJS,Rijssen,Rijssen,,--3-----,AF,9602,,5217N 00626E, +,NL,RJV,Rijkevoort,Rijkevoort,,--3-----,RQ,9704,,5139N 00553E, +,NL,RMA,Rosmalen,Rosmalen,,--3-----,AF,9602,,5143N 00522E, +,NL,RNK,Renkum,Renkum,,1-3-----,AF,1307,,5160N 00548E, +,NL,ROD,Roden,Roden,,--3-----,AF,9602,,5308N 00626E, +,NL,ROG,Roggel,Roggel,,--3-----,AF,9602,,5116N 00556E, +,NL,ROR,Rodenrijs,Rodenrijs,,--3-----,AF,9602,,5159N 00428E, +,NL,ROZ,Rozenburg,Rozenburg,,1-------,AF,9602,,5154N 00414E, +,NL,RPL,Ramspol,Ramspol,OV,1-3-----,RQ,0501,,5237N 00551E, +,NL,RSL,Roompotsluis,Roompotsluis,,1-3-----,AF,1901,,5137N 00341E, +,NL,RUK,Breukelen,Breukelen,,1-3-----,AF,1607,,5210N 00500E, +,NL,RUM,Rumpt,Rumpt,,--3-----,AF,9602,,5153N 00511E, +,NL,RUW,Reeuwijk,Reeuwijk,,--3-----,AF,9602,,5204N 00445E, +,NL,RYB,Rijsbergen,Rijsbergen,,--3-----,AF,9602,,5131N 00442E, +,NL,RYS,Rijswijk,Rijswijk,,1-3-----,AF,1607,,5203N 00419E, +,NL,RZD,Rozendaal,Rozendaal,,--3-----,AF,9602,,5202N 00558E, +,NL,SAP,Sappemeer,Sappemeer,,--3-----,AF,9602,,5310N 00648E, +,NL,SAS,Sassenheim,Sassenheim,,--3-----,AF,9602,,5213N 00431E, +,NL,SCB,Schoonebeek,Schoonebeek,,--3-----,AF,9602,,5240N 00653E, +,NL,SCI,Schiedam,Schiedam,,123-----,AF,9602,,5155N 00424E, +,NL,SCN,Schinnen,Schinnen,,--3-----,AF,9602,,5057N 00553E, +,NL,SHH,Schoonhoven,Schoonhoven,,1-3-----,AF,1607,,5157N 00451E, +,NL,SIT,Sittard,Sittard,,--3-----,AF,9602,,5060N 00552E, +,NL,SIV,Silvolde,Silvolde,,--3-----,AF,9602,,5155N 00623E, +,NL,SJB,Strijbeek,Strijbeek,,--3-----,RL,9901,,5130N 00448E, +,NL,SJK,Spijk,Spijk,,--3-----,RQ,9806,,5323N 00650E, +,NL,SLI,Slikkerveer,Slikkerveer,,--3-----,AF,9602,,5153N 00436E, +,NL,SLS,Sluis,Sluis,,--3-----,AF,9602,,5120N 00331E, +,NL,SMD,Scheemda,Scheemda,,1-3-----,AF,1901,,5311N 00658E, +,NL,SML,Smallingerland,Smallingerland,,1-------,AI,9901,,5307N 00603E, +,NL,SND,Schijndel,Schijndel,,1-3-----,AF,1607,,5137N 00526E, +,NL,SNK,Sneek,Sneek,,--3-----,AF,9602,,5302N 00540E, +,NL,SNW,Snelrewaard,Snelrewaard,,--3-----,AF,9602,,5202N 00455E, +,NL,SOE,Soest,Soest,,--3-----,AF,9602,,5210N 00517E, +,NL,SOM,Someren,Someren,,--3-----,AF,9602,,5123N 00541E, +,NL,SOS,Soesterberg,Soesterberg,,--3-----,AF,9602,,5207N 00517E, +,NL,SPA,Spaubeek,Spaubeek,,--3-----,AF,9602,,5056N 00550E, +,NL,SPB,Spanbroek,Spanbroek,,--3-----,AF,9602,,5242N 00458E, +,NL,SPD,Spaarndam,Spaarndam,,--3-----,AF,9602,,5225N 00441E, +,NL,SPI,Spijkenisse,Spijkenisse,,1-3-----,AF,9602,,5151N 00420E, +,NL,SPK,Spakenburg,Spakenburg,,--3-----,AF,9602,,5215N 00522E, +,NL,SPL,Schiphol,Schiphol,,--3-----,AF,9602,,5218N 00446E, +,NL,SRK,Schiphol-Rijk,Schiphol-Rijk,,--3-----,RQ,0101,,5217N 00445E, +,NL,STA,Stavoren,Stavoren,,--3-----,AF,9602,,5253N 00522E, +,NL,STD,Stellendam,Stellendam,,1-3-----,AF,1307,,5148N 00402E, +,NL,STE,Steenbergen,Steenbergen,,--3-----,AF,9602,,5136N 00419E, +,NL,STH,Staphorst,Staphorst,,--3-----,AF,9602,,5238N 00612E, +,NL,STI,Stein,Stein,,--3-----,AF,9602,,5058N 00546E, +,NL,STK,Stadskanaal,Stadskanaal,,--3-----,AF,9602,,5260N 00700E, +,NL,STN,Stiens,Stiens,,--3-----,AF,9602,,5316N 00546E, +,NL,STO,'t Stort,'t Stort,NH,1-3-----,RQ,0501,,5321N 00623E, +,NL,STW,Steenwijk,Steenwijk,,--3-----,AF,9602,,5247N 00607E, +,NL,SUR,Surhuisterveen,Surhuisterveen,,--3-----,AF,9602,,5311N 00610E, +,NL,SWM,Swalmen,Swalmen,,--3-----,AF,9602,,5114N 00602E, +,NL,TAK,Ter Apelkanaal,Ter Apelkanaal,,--3-----,AF,9602,,5255N 00703E, +,NL,TBB,Tubbergen,Tubbergen,,--3-----,AF,9602,,5224N 00646E, +,NL,TBO,Terborg,Terborg,,--3-----,AF,9602,,5155N 00622E, +,NL,TEA,Ter Aar,Ter Aar,,--3-----,AF,9602,,5210N 00443E, +,NL,TEE,Sint Jansteen,Sint Jansteen,ZE,-----6--,RQ,1007,,5116N 00403E, +,NL,TEG,Tegelen,Tegelen,,--3-----,AF,9602,,5121N 00608E, +,NL,TEX,Texel,Texel,,1--4----,AF,1607,,5305N 00454E, +,NL,THO,Tholen,Tholen,,1-3-----,RL,9501,,5134N 00405E, +,NL,TIE,Tiel,Tiel,,-23-----,AF,9602,,5154N 00526E, +,NL,TLB,Tilburg,Tilburg,,123-----,AF,1607,,5135N 00504E, +,NL,TPH,Ter Apel,Ter Apel,,--3-----,AF,9602,,5252N 00704E, +,NL,TRJ,Strijen,Strijen,,--3-----,AF,9602,,5145N 00433E, +,NL,TUH,Tuitjenhorn,Tuitjenhorn,,--3-----,AF,9602,,5244N 00445E, +,NL,TWE,Twello,Twello,,--3-----,AF,9602,,5214N 00606E, +,NL,TZA,'t Zand,'t Zand,,--3-----,RL,0701,,5250N 00445E, +,NL,UDH,Udenhout,Udenhout,,--3-----,AF,9602,,5137N 00508E, +,NL,UDL,Uddel,Uddel,GE,--3-----,RL,0901,,5216N 00547E, +,NL,UIT,Uithoorn,Uithoorn,,--3-----,AF,9602,,5214N 00450E, +,NL,ULF,Ulft,Ulft,,--3-----,AF,9602,,5154N 00623E, +,NL,ULR,Ulrum,Ulrum,,1-------,AF,9602,,5322N 00620E, +,NL,ULS,Ulestraten,Ulestraten,,--3-----,AF,9602,,5054N 00547E, +,NL,URK,Urk,Urk,,1-3-----,AF,1607,,5240N 00536E, +,NL,URS,Ursem,Ursem,,--3-----,AF,9602,,5237N 00452E, +,NL,UTZ,Uithuizen,Uithuizen,,--3-----,AF,9602,,5324N 00640E, +,NL,VAA,Vaassen,Vaassen,,--3-----,AF,9602,,5217N 00558E, +,NL,VAL,Valkenswaard,Valkenswaard,,--3-----,AF,9602,,5119N 00527E, +,NL,VAN,Vianen,Vianen,,1-3-----,AF,1607,,5159N 00506E, +,NL,VBK,Velserbroek,Velserbroek,,--3-----,RL,9805,,5226N 00440E, +,NL,VDH,Veldhoven,Veldhoven,,--3-----,AF,9602,ZVH,5124N 00524E, +,NL,VDM,Veendam,Veendam,,123-----,AF,1901,,5305N 00653E, +,NL,VEE,Veenendaal,Veenendaal,,--3-----,AF,9602,,5202N 00533E, +,NL,VEG,Veghel,Veghel,,--3-----,AF,9602,,5137N 00533E, +,NL,VEL,Velsen,Velsen,,1-------,AF,9602,,5227N 00436E, +,NL,VEP,Velp,Velp,,--3-----,AF,9602,,5160N 00559E, +,NL,VGB,Voetangelbrug,Voetangelbrug,NH,1-3-----,RQ,0501,,5217N 00456E, +,NL,VGT,Vught,Vught,,--3-----,AF,9602,,5139N 00514E, +,NL,VHA,Veldriel,Veldriel,,--3-----,RL,9805,,5146N 00518E, +,NL,VHZ,Voorthuizen,Voorthuizen,,--3-----,AF,9602,,5211N 00536E, +,NL,VIE,Vierlingsbeek,Vierlingsbeek,,1-------,AF,9602,,5136N 00601E, +,NL,VIJ,Vijfhuizen,Vijfhuizen,,--3-----,RQ,9709,,5221N 00441E, +,NL,VIV,Vinkeveen,Vinkeveen,,--3-----,AF,9602,,5213N 00456E, +,NL,VLA,Vlaardingen,Vlaardingen,,123-----,AF,9602,,5155N 00420E, +,NL,VLD,Vlodrop,Vlodrop,,--3-----,AF,9602,,5108N 00605E, +,NL,VLL,Vlieland,Vlieland,,1-------,AI,9901,,5312N 00460E, +,NL,VLM,Vlijmen,Vlijmen,,--3-----,AF,9602,,5142N 00513E, +,NL,VLS,Vaals,Vaals,,--3-----,AF,9602,,5047N 00559E, +,NL,VLT,Vleuten,Vleuten,,--3-----,AF,9602,,5206N 00501E, +,NL,VNH,Venhuizen,Venhuizen,,--3-----,AF,9602,,5240N 00512E, +,NL,VNR,Venray,Venray,,--3-----,AF,9602,,5130N 00558E, +,NL,VOB,Voorburg,Voorburg,,1-3-----,AF,1607,,5206N 00426E, +,NL,VOD,Volendam,Volendam,,--3-----,AF,9602,,5233N 00502E, +,NL,VOH,Voorhout,Voorhout,,--3-----,AF,9602,,5213N 00429E, +,NL,VOS,Voorschoten,Voorschoten,,1-3-----,AF,1607,,5208N 00427E, +,NL,VRD,Vreeland,Vreeland,,--3-----,RL,9805,,5214N 00502E,Utrecht +,NL,VRH,Vroomshoop,Vroomshoop,,--3-----,AF,9602,,5228N 00634E, +,NL,VRN,Vuren,Vuren,,0-------,RQ,9705,,5149N 00503E, +,NL,VRS,Voorst,Voorst,,--3-----,AF,9602,,5214N 00605E, +,NL,VRZ,Vriezenveen,Vriezenveen,,--3-----,AF,9602,,5225N 00637E, +,NL,VSM,Vessem,Vessem,,--3-----,RQ,9806,,5125N 00517E, +,NL,VSR,Varsseveld,Varsseveld,,--3-----,AF,9602,,5157N 00628E, +,NL,WAA,Waalre,Waalre,,1-------,AF,9602,,5123N 00528E, +,NL,WAB,Waardenburg,Waardenburg,,--3-----,AF,9602,,5150N 00515E, +,NL,WAD,Waddinxveen,Waddinxveen,,1-3-----,AF,1607,,5203N 00439E, +,NL,WAJ,Wanroij,Wanroij,,--3-----,AF,9602,,5139N 00549E, +,NL,WAP,Wapenveld,Wapenveld,,--3-----,AF,9602,,5226N 00604E, +,NL,WAR,Warnsveld,Warnsveld,,--3-----,AF,9602,,5209N 00614E, +,NL,WAT,Wateringen,Wateringen,,--3-----,AF,9602,,5201N 00416E, +,NL,WBD,Wijk bij Duurstede,Wijk bij Duurstede,,1-3-----,AF,1607,,5159N 00520E, +,NL,WCH,Wijchen,Wijchen,,--3-----,AF,9602,,5149N 00542E, +,NL,WDB,Woudenberg,Woudenberg,,--3-----,AF,9602,,5205N 00525E, +,NL,WDM,Weidum,Weidum,,--3-----,AF,9602,,5309N 00545E, +,NL,WDP,Westdorpe,Westdorpe,,--3-----,RL,9805,,5114N 00349E, +,NL,WDS,Wijdenes,Wijdenes,,--3-----,AF,9602,,5238N 00509E, +,NL,WED,Wemeldinge,Wemeldinge,,--3-----,AF,9602,,5131N 00360E, +,NL,WEH,Wervershoof,Wervershoof,,--3-----,AF,9602,,5244N 00509E, +,NL,WEM,Westmaas,Westmaas,,--3-----,AF,9602,,5147N 00428E, +,NL,WES,Westerhaar-Vriezenveensewijk,Westerhaar-Vriezenveensewijk,,--3-----,RQ,9704,,5227N 00637E, +,NL,WEV,Westervoort,Westervoort,,--3-----,AF,9602,,5158N 00558E, +,NL,WFM,Warffum,Warffum,,--3-----,AF,9602,,5323N 00634E, +,NL,WGN,Wognum,Wognum,,--3-----,RQ,9705,,5241N 00501E, +,NL,WGW,Wageningen,Wageningen,,1-3-----,AF,1307,,5159N 00540E, +,NL,WHL,Wehl,Wehl,,--3-----,RL,9803,,5158N 00613E,Gelderland +,NL,WHT,Wernhout,Wernhout,,--3-----,AF,9602,,5127N 00439E, +,NL,WID,Wierden,Wierden,,--3-----,AF,9602,,5221N 00634E, +,NL,WIJ,Wijhe,Wijhe,,--3-----,AF,9602,,5223N 00609E, +,NL,WIK,Wijk,Wijk,,--3-----,AF,9602,,5159N 00520E, +,NL,WIS,Willemstad,Willemstad,,--3-----,AF,9602,,1206N 06856W, +,NL,WIU,Wiuwert,Wiuwert,,1----6--,RL,1107,,5307N 00541E, +,NL,WIW,Wieringerwerf,Wieringerwerf,,1-3-----,AF,1901,,5251N 00501E, +,NL,WKD,Werkendam,Werkendam,,1-------,AF,9602,,5148N 00454E, +,NL,WKG,Wolsumerketting,Wolsumerketting,FR,1-3-----,RQ,0501,,5302N 00533E, +,NL,WKS,Weakens,Weakens,FR,1-3-----,RQ,0501,,5308N 00538E, +,NL,WLD,Wildervank,Wildervank,,--3-----,AF,9602,,5305N 00652E, +,NL,WLK,Waalwijk,Waalwijk,,1-3-----,AF,1607,,5141N 00501E, +,NL,WLL,Wellerlooi,Wellerlooi,,--3-----,AF,9602,,5132N 00608E, +,NL,WLN,Wilnis,Wilnis,,--3-----,AF,9602,,5212N 00454E, +,NL,WMH,Warmenhuizen,Warmenhuizen,,--3-----,AF,9602,,5243N 00444E, +,NL,WNK,Winkel,Winkel,,--3-----,RQ,9705,,5245N 00454E, +,NL,WOR,Woerden,Woerden,,1-3-----,AF,1607,,5205N 00453E, +,NL,WOU,Wouw,Wouw,,--3-----,AF,9602,,5131N 00423E, +,NL,WRD,Warder,Warder,,--3-----,AF,9602,,5234N 00502E, +,NL,WRL,Waarland,Waarland,,--3-----,AF,9602,,5244N 00450E, +,NL,WRM,Warmond,Warmond,,1-3-----,AF,1607,,5212N 00430E, +,NL,WRT,Weert,Weert,,123-----,AF,1607,,5114N 00542E, +,NL,WRV,Wormerveer,Wormerveer,,--3-----,AF,9602,,5230N 00447E, +,NL,WSC,Winschoten,Winschoten,,1-34----,AF,1607,,5309N 00702E, +,NL,WSM,Wessem,Wessem,,--3-----,AF,9602,,5110N 00553E, +,NL,WSP,Weesp,Weesp,,1-3-----,AF,1607,,5218N 00503E, +,NL,WSS,Wassenaar,Wassenaar,,--3-----,AF,9602,,5209N 00424E, +,NL,WTE,West-Terschelling,West-Terschelling,,1-------,AF,9602,,5322N 00513E, +,NL,WTG,Watergang,Watergang,NH,--3-567-,RL,1107,,5226N 00457E, +,NL,WTN,Warten,Warten,NH,1-3-----,RQ,0501,,5309N 00554E, +,NL,WTU,Westwoud,Westwoud,,--3-----,RL,9805,,5241N 00508E,Noordholland +,NL,WTW,Winterswijk,Winterswijk,,-23-----,AF,9602,,5158N 00644E, +,NL,WTZ,Westzaan,Westzaan,,123-----,AF,9602,,5228N 00446E, +,NL,WVG,Wolvega,Wolvega,,--3-----,AF,9602,,5253N 00600E, +,NL,WXM,Wamel,Wamel,,--3-----,RL,9805,,5153N 00528E,Gelderland +,NL,YPG,Ypenburg,Ypenburg,,--3-----,AF,9602,,5203N 00423E, +,NL,YSK,Yerseke,Yerseke,,1-3-----,AF,1901,,5130N 00403E, +,NL,ZAA,Zaandam,Zaandam,,123-----,AF,9602,,5227N 00450E, +,NL,ZAD,Zaandijk,Zaandijk,,--3-----,AF,9602,,5228N 00448E, +,NL,ZAG,Zwaag,Zwaag,,--3-----,AF,9602,,5240N 00505E, +,NL,ZDM,Zeddam,Zeddam,,--3-----,RQ,9709,,5154N 00615E, +,NL,ZDV,Zandvoort,Zandvoort,,--3-----,AF,9602,,5222N 00432E, +,NL,ZEI,Zuideinde,Zuideinde,,1-3-----,RQ,0501,,5243N 00605E, +,NL,ZET,Zetten,Zetten,,--3-----,AF,9602,,5156N 00543E, +,NL,ZEV,Zevenaar,Zevenaar,,-23-----,AF,9602,,5156N 00605E, +,NL,ZGD,Zwaagdijk,Zwaagdijk,,--3-----,AF,9602,,5242N 00508E, +,NL,ZHN,Zevenhuizen (Utrecht),Zevenhuizen (Utrecht),,--3-----,AF,9602,,5213N 00523E, +,NL,ZHU,Zevenhuizen (Friesland),Zevenhuizen (Friesland),,--3-----,AF,9602,,5308N 00621E, +,NL,ZIE,Zierikzee,Zierikzee,,1-------,AF,9602,,5139N 00355E, +,NL,ZLB,Zaltbommel,Zaltbommel,,--3-----,AF,9602,,5147N 00511E, +,NL,ZLK,Zalk,Zalk,,--3-----,AF,9602,,5231N 00601E, +,NL,ZMM,Zwammerdam,Zwammerdam,,--3-----,RQ,9705,,5206N 00444E, +,NL,ZND,Zenderen,Zenderen,,--3-----,AF,9602,,5219N 00643E, +,NL,ZOE,Zoelen,Zoelen,,--3-----,AF,9602,,5155N 00524E, +,NL,ZOT,Zoutkamp,Zoutkamp,,--3-----,AF,9602,,5320N 00618E, +,NL,ZTM,Zoetermeer,Zoetermeer,,--3-----,AF,9602,,5204N 00429E, +,NL,ZUD,Zundert,Zundert,,--3-----,AF,9602,,5129N 00439E, +,NL,ZUL,Zuidland,Zuidland,,1-3-----,AF,1607,,5149N 00415E, +,NL,ZUT,Zutphen,Zutphen,,123-----,AF,1607,,5208N 00612E, +,NL,ZWA,Zwanenburg,Zwanenburg,,--3-----,AF,9602,,5223N 00445E, +,NL,ZWD,Zoeterwoude-Rijndijk,Zoeterwoude-Rijndijk,,--3-----,AF,9602,,5208N 00432E, +,NL,ZWE,Zwaagwesteinde,Zwaagwesteinde,,--3-----,AF,9602,,5315N 00602E, +,NL,ZWI,Zwijndrecht,Zwijndrecht,,123-----,AF,9602,,5149N 00438E, +,NL,ZWO,Zwolle,Zwolle,,-23-----,AF,9602,,5231N 00606E, +,NL,ZWS,Zwartsluis,Zwartsluis,,1-3-----,RL,9811,,5239N 00604E, +,NO,AAF,�fjord,Afjord,16,1-------,AI,9704,,6405N 01013E, +,NO,AAN,�rdal,Ardal,14,1-3-----,AF,9501,,6117N 00748E, +,NO,AAS,�s,As,02,-23-----,AF,9506,,5941N 01046E, +,NO,ADY,And�y,Andoy,18,1-------,AI,9704,,6914N 01546E, +,NO,AGD,Agdenes,Agdenes,16,1-------,AI,9704,,6335N 00931E, +,NO,ALN,Alnabru,Alnabru,03,-23--6--,AF,1601,,5956N 01050E, +,NO,ALS,Alstahaug,Alstahaug,18,1-------,AI,9704,,6552N 01226E, +,NO,ANU,Andebu,Andebu,07,--3-----,AF,9506,,5918N 01011E, +,NO,ASH,Austrheim,Austrheim,12,1-------,AI,9704,,6048N 00452E, +,NO,ASK,Asker,Asker,02,--3-----,AF,9506,,5941N 01028E, +,NO,ASL,Askvoll,Askvoll,14,1-------,AI,9704,,6121N 00441E, +,NO,ASY,Ask�y,Askoy,12,1-------,AI,9704,,6030N 00506E, +,NO,BAK,Bark�ker,Barkaker,07,--3-----,AF,9506,,5919N 01023E, +,NO,BAM,Bamble,Bamble,08,1-------,AI,9704,,5901N 00933E, +,NO,BAR,B�rum,Barum,02,1-3-----,AF,9501,,5956N 01030E, +,NO,BDU,Bardufoss,Bardufoss,19,---4----,AF,9501,,6904N 01831E, +,NO,BEJ,Beiarn,Beiarn,18,1-------,AI,9704,,6654N 01440E, +,NO,BER,Berg,Berg,19,1-------,AI,9704,,6522N 01212E, +,NO,BIN,Bindal,Bindal,18,1-------,AI,9704,,6513N 01226E, +,NO,BIS,Bismo,Bismo,05,1-3-----,AF,0002,,6153N 00816E, +,NO,BJK,Bjerke,Bjerke,03,--3-----,RQ,9705,,5956N 01050E, +,NO,BKD,Brakstad,Brakstad,12,1-3-----,AF,9501,,6440N 01112E, +,NO,BRE,Bremanger,Bremanger,14,1-------,AI,9704,,6151N 00503E, +,NO,BRO,Br�nn�y,Bronnoy,18,1-------,AI,9704,,6525N 01149E, +,NO,BRR,Borre,Borre,07,1-------,AI,9704,,5923N 01027E, +,NO,BRY,Bryne,Bryne,11,--3-----,AF,9506,,5844N 00539E, +,NO,DOM,Domb�s,Dombas,05,-23-----,AF,9506,,6205N 00908E, +,NO,DON,D�nna,Donna,18,1-------,AI,9704,,6610N 01227E, +,NO,DRE,Drevsj�,Drevsjo,04,--3-----,AF,9506,,6153N 01202E, +,NO,DSN,Nannestad,Nannestad,02,1-------,RQ,0901,,6014N 01056E, +,NO,DYY,Dyr�y,Dyroy,19,1-------,AI,9704,,6902N 01738E, +,NO,EGD,Eigersund,Eigersund,11,1-------,AI,9704,,5824N 00556E, +,NO,EID,Eid,Eid,14,1-------,AI,9704,,6357N 01004E, +,NO,ELV,Elverum,Elverum,04,-23-----,AF,9501,,6058N 01144E, +,NO,ENA,Eina,Eina,05,-23-----,AF,9506,,6038N 01036E, +,NO,EVJ,Evje,Evje,09,--3-----,AF,9506,,5954N 01031E, +,NO,FGN,Fagernes,Fagernes,05,-234----,AF,9506,VDB,6059N 00914E, +,NO,FJA,Fjaler,Fjaler,14,1-------,AI,9704,,6117N 00529E, +,NO,FJE,Fjell,Fjell,12,1-------,AI,9704,,5943N 01012E, +,NO,FKS,Flakstad,Flakstad,18,1-------,AI,9704,,6807N 01303E, +,NO,FLT,Flatanger,Flatanger,17,1-------,AI,9704,,6432N 01037E, +,NO,FRA,Fr�ya,Froya,16,1-------,AI,9704,,6404N 00853E, +,NO,FRE,Fr�ena,Fraena,15,1-------,AI,9704,,6254N 00706E, +,NO,FRJ,Frei,Frei,15,1-------,AI,9704,,6301N 00748E, +,NO,FRN,Frogn,Frogn,02,1-------,AI,9704,,5942N 01039E, +,NO,FRT,Frosta,Frosta,17,1-------,AI,9704,,6335N 01042E, +,NO,FSN,Fosnes,Fosnes,17,1-------,AI,9704,,6155N 00703E, +,NO,FSU,Fetsund,Fetsund,19,--3-----,RQ,0101,,5956N 01110E, +,NO,FTL,Fortun-Luster,Fortun-Luster,14,--3-----,AF,9506,,6130N 00741E, +,NO,GAU,Gaular,Gaular,14,1-------,AI,9704,,6120N 00547E, +,NO,GBD,Gibostad,Gibostad,19,0-------,RQ,9811,,6921N 01805E, +,NO,GEI,Geilo,Geilo,06,-23-----,AF,9506,,6032N 00813E, +,NO,GIL,Gildesk�l,Gildeskal,18,1-------,AI,9704,,6700N 01357E, +,NO,GIS,Giske,Giske,15,1-------,AI,9704,,6238N 00543E, +,NO,GJM,Gjemnes,Gjemnes,15,1-------,AI,9704,,6255N 00752E, +,NO,GJS,Gjesdal,Gjesdal,11,1-------,AI,9704,,5850N 00617E, +,NO,GLL,Gol,Gol,06,-234----,AF,9506,,6045N 00901E, +,NO,GLP,Gloppen,Gloppen,14,1-------,AI,9704,,6144N 00611E, +,NO,GNE,Garnes,Garnes,12,0-------,RL,9811,,6027N 00528E, +,NO,GNR,Geiranger,Geiranger,15,0-------,RQ,9811,,6206N 00712E, +,NO,GRO,Grong,Grong,17,-23-----,AF,9506,,6432N 01238E, +,NO,GRT,Gratangen,Gratangen,19,1-------,AI,9704,,6843N 01724E, +,NO,GTH,Geithus,Geithus,06,--3-----,RL,9501,,5956N 00958E, +,NO,GUL,Gulen,Gulen,14,1-------,AI,9704,,6058N 00509E, +,NO,GVK,Gj�vik,Gjovik,05,-23-----,AF,9501,,6052N 01030E, +,NO,HAA,H�,Ha,11,1-------,AI,9704,,5831N 00534E, +,NO,HAD,Hadsel,Hadsel,18,1-------,AI,9704,,6830N 01450E, +,NO,HAR,Haram,Haram,15,1-------,AI,9704,,6243N 00609E, +,NO,HGN,Hagan,Hagan,14,--3-----,RQ,0101,,6849N 01632E, +,NO,HIT,Hitra,Hitra,16,1-------,AI,9704,,6334N 00842E, +,NO,HJE,Hjerkinn,Hjerkinn,05,--3-----,AF,9506,,6213N 00933E, +,NO,HLN,H�len,Holen,02,--3-----,RL,9806,,5932N 01045E, +,NO,HLY,Hafslundsoy,Hafslundsoy,01,--3-----,RQ,0201,,5917N 01109E, +,NO,HME,Hemne,Hemne,16,1-------,AI,9704,,6316N 00903E, +,NO,HMR,Hamar,Hamar,04,-23-----,AF,9501,,6100N 01110E, +,NO,HMS,Hemnes,Hemnes,18,1-------,AI,9704,,6601N 01409E, +,NO,HMY,Hamar�y,Hamaroy,18,1-------,AI,9704,,6755N 01614E, +,NO,HOS,Hov,Hov,05,--3-----,RQ,0101,,6240N 00834E, +,NO,HUR,Hurum,Hurum,06,1-------,AI,9704,,6326N 01029E, +,NO,HVA,Hvaler,Hvaler,01,1-------,AI,9704,,5857N 01047E, +,NO,HVL,Hvalstad,Hvalstad,02,--3-----,RL,9705,,5952N 01028E, +,NO,IBE,Ibestad,Ibestad,19,1-------,AI,9704,,6851N 01709E, +,NO,IND,Inder�y,Inderoy,17,1-------,AI,9704,,6351N 01106E, +,NO,JVK,Jevnaker,Jevnaker,05,--3-----,AF,9506,,6017N 01025E, +,NO,KAF,K�fjord,Kafjord,19,1-------,AI,1401,,6930N 02044E, +,NO,KAY,Karls�y,Karlsoy,19,1-------,AI,9704,,7015N 01911E, +,NO,KBT,Kolbotn,Kolbotn,02,--3-----,RL,9806,,5949N 01048E, +,NO,KDT,Kalandseidet,Kalandseidet,12,--3-----,RQ,0407,,6016N 00526E, +,NO,KLO,Kl�fta,Klofta,02,--3-----,AF,9506,,6004N 01108E, +,NO,KLP,Klepp,Klepp,11,--3-----,AF,1601,,5844N 00521E, +,NO,KLR,Kjeller,Kjeller,20,--3-----,RQ,0101,,5958N 01103E, +,NO,KMY,Karm�y,Karmoy,11,1-3-----,AF,9501,,5914N 00509E, +,NO,KPP,Koppang,Koppang,04,-23-----,AF,9506,,6134N 01103E, +,NO,KRY,Kraaker�y,Kraakeroy,01,--3-----,AI,1401,,5912N 01056E, +,NO,KSA,Krokstadelva,Krokstadelva,06,--3-----,RL,9806,,5945N 01000E, +,NO,KSB,Kongsberg,Kongsberg,06,-23-----,AF,9501,XKB,5936N 00940E, +,NO,KSJ,Karasjok,Karasjok,20,--3-----,AF,9506,QKK,6928N 02531E, +,NO,KSV,Kongsvinger,Kongsvinger,04,-23-----,AF,9501,,6011N 01213E, +,NO,KTK,Kautokeino,Kautokeino,20,--34----,AF,9506,,6908N 02335E, +,NO,KVD,Kvinesdal,Kvinesdal,10,--3-----,AF,9501,,5831N 00657E, +,NO,KVH,Kvinnherad,Kvinnherad,12,1-------,AI,9704,,5957N 00602E, +,NO,KVM,Kvam,Kvam,12,1-------,AI,9704,,6140N 00941E, +,NO,KVN,Kv�nangen,Kvanangen,19,1-------,AI,9704,,6952N 02203E, +,NO,LDS,Lindesnes,Lindesnes,10,1-3-----,AF,9501,,5807N 00723E, +,NO,LEB,Lebesby,Lebesby,20,1-------,AI,9704,,7040N 02649E, +,NO,LEK,Leikanger,Leikanger,14,1-------,AI,9704,,6111N 00648E, +,NO,LEN,Lensvik,Lensvik,16,--3-----,AF,9506,,6331N 00949E, +,NO,LER,Lervik,Lervik,01,--3-----,AF,1401,,5916N 01045E, +,NO,LIE,Lier,Lier,06,1-3-----,AI,9704,,5951N 01013E, +,NO,LIN,Lind�s,Lindas,12,1-------,AI,9704,,6044N 00510E, +,NO,LIS,Lierstranda,Lierstranda,06,--3-----,RQ,0407,,5945N 01016E, +,NO,LKA,Leka,Leka,17,1-------,AI,9704,,6513N 01104E, +,NO,LKL,Lakselv,Lakselv,20,---4----,AF,9501,,7003N 02458E, +,NO,LLH,Lillehammer,Lillehammer,05,-23-----,AF,9506,XXL,6107N 01028E, +,NO,LND,Lyngdal,Lyngdal,10,--3-----,AF,9506,,5809N 00703E, +,NO,LOM,Lom,Lom,05,--3-----,AF,9506,,6143N 00826E, +,NO,LOP,Loppa,Loppa,20,1-------,AI,9704,,7024N 02126E, +,NO,LST,Lillestr�m,Lillestrom,02,-23-----,AF,9501,,5957N 01103E, +,NO,LUT,Lutnes,Lutnes,04,--3-----,AF,9506,,6104N 01236E, +,NO,LYN,Lyngen,Lyngen,19,1-------,AI,9704,,6944N 02005E, +,NO,MAG,Magnor,Magnor,04,--3-----,AF,9506,,5957N 01212E, +,NO,MAK,Malvik,Malvik,16,1-------,AI,9704,,6324N 01044E, +,NO,MAV,M�lselv,Malselv,19,1-------,AI,9704,,6858N 01924E, +,NO,MEY,Mel�y,Meloy,18,1-------,AI,9704,,6657N 01312E, +,NO,MJO,Mj�ndalen,Mjondalen,06,--3-----,RL,9806,,5943N 01002E, +,NO,MLD,Meland,Meland,12,1-------,AI,9704,,6156N 00655E, +,NO,MOD,Modalen,Modalen,12,1-------,AI,9704,,6053N 00558E, +,NO,MSF,Masfjorden,Masfjorden,12,1-------,AI,9704,,6051N 00524E, +,NO,MSV,Mosvik,Mosvik,17,1-------,AI,9704,,6349N 01100E, +,NO,MSY,M�s�y,Masoy,20,1-------,AI,9704,QFQ,7059N 02433E, +,NO,MYO,Myre-�ksnes,Myre-Oksnes,18,1-3-----,AA,1601,,6855N 01504E, +,NO,MYS,Mysen,Mysen,01,-23-----,AF,9506,,5933N 01120E, +,NO,NAU,Naustdal,Naustdal,14,1-------,AI,9704,,6131N 00543E, +,NO,NEO,Nesodden,Nesodden,02,1-------,AI,9704,,5948N 01038E, +,NO,NES,Nesflaten-Suldal,Nesflaten-Suldal,11,--3-----,AF,9506,,5938N 00648E, +,NO,NOD,Norddal,Norddal,15,1-------,AI,9704,,6215N 00714E, +,NO,NOK,Nordkapp,Nordkapp,20,1-------,AI,9704,,7110N 02547E, +,NO,NOR,Nordreisa,Nordreisa,19,1-------,AI,9704,,6932N 02136E, +,NO,NRY,N�r�y,Naroy,17,1-------,AI,9704,,6449N 01116E, +,NO,NSB,Nesseby,Nesseby,20,1-------,AI,9704,,7008N 02846E, +,NO,NSS,N�rsnes,Narsnes,06,--3-----,AI,1401,,5946N 01031E, +,NO,NST,Nesset,Nesset,15,1-------,AI,9704,,6219N 00559E, +,NO,NTB,Notodden,Notodden,08,-234----,AF,9501,,5941N 00909E, +,NO,NTY,N�tter�y,Notteroy,07,1-------,AI,9704,,5913N 01025E, +,NO,OAS,�ster�s,Osteras,02,--3-----,RQ,0101,,5957N 01036E, +,NO,OKS,Oksnes,Oksnes,18,1-------,AI,9704,,6902N 01449E, +,NO,OLA,�rland,Orland,16,1-------,AI,9710,,6350N 00942E, +,NO,OPG,Oppeg�rd,Oppegard,02,1-------,AI,9704,,5946N 01049E, +,NO,OPP,Oppdal,Oppdal,16,-23-----,AF,9506,,6232N 00937E, +,NO,ORD,Orkdal,Orkdal,16,1-3-----,AI,1601,,6316N 00949E, +,NO,ORJ,�rje,Orje,01,--3-----,AF,9506,,5929N 01140E, +,NO,OSG,�rskog,Orskog,15,1-------,AI,9704,,6229N 00649E, +,NO,OSN,Osen,Osen,16,1-------,AI,9704,,6427N 01000E, +,NO,OST,Oster�y,Osteroy,12,1-------,AI,9704,,6034N 00530E, +,NO,OTT,Otta,Otta,05,-23-----,AF,9506,XOR,6146N 00932E, +,NO,OYE,�ye,Oye,10,--3-----,AF,1401,,5817N 00654E, +,NO,OYG,�ygarden,Oygarden,12,1-------,AI,9704,,5805N 00751E, +,NO,PAR,Porsanger,Porsanger,20,1-------,AI,9704,,7014N 02512E, +,NO,RAD,R�de,Rade,01,1-------,AI,9704,,5920N 01051E, +,NO,RAU,Rauma,Rauma,15,1-------,AI,9704,,6227N 00741E, +,NO,RAY,Rad�y,Radoy,12,1-------,AI,9704,,6039N 00503E, +,NO,RDY,R�d�y,Rodoy,18,1-------,AI,9704,,6646N 01235E, +,NO,RFS,Raufoss,Raufoss,05,-23-----,AF,9506,,6044N 01037E, +,NO,RHT,R�holt,Raholt,02,--3-----,RQ,0101,,6017N 01110E, +,NO,RIN,Ringebu,Ringebu,05,-23-----,AF,9506,,6133N 01022E, +,NO,RKN,Rjukan,Rjukan,08,-23-----,AF,9506,,5953N 00836E, +,NO,RLL,Rollag,Rollag,06,--3-----,RQ,9705,,6001N 00912E, +,NO,RLN,Raelingen,Raelingen,14,--3-----,RQ,0101,,5953N 01105E, +,NO,RMJ,Ramfjordnes,Ramfjordnes,19,--3-----,AF,1401,,6932N 01900E, +,NO,RNA,Rana,Rana,18,1-------,AI,9704,,6626N 01424E, +,NO,RNS,Risnes,Risnes,12,0-------,RQ,9811,,6109N 00511E, +,NO,ROA,Roan,Roan,16,1-------,AI,9704,,6410N 01014E, +,NO,RRS,R�ros,Roros,16,---4----,AF,9501,,6234N 01140E, +,NO,RSG,R�mskog,Romskog,01,--3-----,RQ,0101,,5945N 01149E, +,NO,RVY,Rolvs�y,Rolvsoy,01,--3-----,AI,1401,,5916N 01060E, +,NO,SAM,Samnanger,Samnanger,12,1-------,AI,9704,,6024N 00547E, +,NO,SAN,Skaun,Skaun,16,1-------,AI,9704,,6316N 01003E, +,NO,SBK,Stabekk,Stabekk,02,--3-----,RL,9806,,5955N 01036E, +,NO,SDL,Saltdal,Saltdal,18,1-------,AI,9704,,6653N 01530E, +,NO,SDN,Sandane,Sandane,14,-23-----,AF,9506,,6147N 00613E, +,NO,SEI,Sk�nevik,Skanevik,12,1-------,AF,1601,,5944N 00556E, +,NO,SEK,Sellebakk,Sellebakk,01,--3-----,RL,9806,,5914N 01059E, +,NO,SEL,Seljord,Seljord,08,--3-----,AF,9506,,5934N 00831E, +,NO,SET,Sem-T�nsberg,Sem-Tonsberg,07,--3-----,AF,9506,,5917N 01020E, +,NO,SGU,Sagstua,Sagstua,04,--3-----,RQ,0607,,6023N 01132E, +,NO,SIK,Ski,Ski,02,--3-----,RL,9805,,5943N 01050E, +,NO,SJA,Senja,Senja,19,--3-----,AF,1401,,6918N 01728E, +,NO,SKL,Sk�nland,Skanland,19,1-------,AI,9704,,6835N 01635E, +,NO,SKO,Skodje,Skodje,15,1-------,AI,9704,,6230N 00642E, +,NO,SKR,Skarnes,Skarnes,04,--3-----,AF,9506,,6015N 01141E, +,NO,SKS,Skatval-Stjordal,Skatval-Stjordal,17,-23-----,AF,9506,,6331N 01049E, +,NO,SLA,Sola,Sola,11,--34----,AF,9501,,5853N 00521E, +,NO,SMN,S�mna,Somna,18,1-------,AI,9704,,6522N 01213E, +,NO,SMR,Sofiemyr,Sofiemyr,02,--3-----,RQ,0101,,5948N 01049E, +,NO,SND,Sund,Sund,12,1-------,AI,9704,,6800N 01312E, +,NO,SNI,Snillfjord,Snillfjord,16,1-------,AI,9704,,6324N 00930E, +,NO,SOF,S�rfold,Sorfold,18,1-------,AI,9704,,6731N 01540E, +,NO,SOK,Sokndal,Sokndal,11,1-------,AI,9704,,5815N 00610E, +,NO,SRX,Sotra,Sotra,12,1-3-----,AF,9501,,6019N 00506E, +,NO,SST,Skjerstad,Skjerstad,18,--3-----,AI,1401,ZXL,6714N 01501E, +,NO,STD,Strand,Strand,11,1-------,AI,9704,,5901N 00601E, +,NO,STF,Storfjord,Storfjord,19,1-------,AI,9704,,6915N 02019E, +,NO,STG,Steigen,Steigen,18,1-------,AI,9704,,6751N 01448E, +,NO,STK,Stokke,Stokke,07,1-------,AI,9704,,5913N 01018E, +,NO,STN,Stange,Stange,04,--3-----,RL,9806,,6037N 01123E, +,NO,STS,Storskog,Storskog,20,--3----B,AF,1601,,6940N 03012E, +,NO,SUA,Sula,Sula,15,1-------,AI,9704,,6225N 00612E, +,NO,SUL,Suldal,Suldal,11,1-------,AI,9704,,5933N 00633E, +,NO,SVD,Svinesund,Svinesund,01,--3----B,AF,9506,,5906N 01116E, +,NO,SVF,Sande i Vestfold,Sande i Vestfold,07,--3-----,RQ,1501,,5935N 01012E, +,NO,SYA,Skytta,Skytta,03,--3-----,RQ,9811,,5960N 01054E, +,NO,TAA,Tana,Tana,20,1-------,AI,9704,QTP,7017N 02753E, +,NO,TIN,Tingvoll,Tingvoll,15,1-------,AI,9704,,6257N 00813E, +,NO,TJO,Tj�me,Tjome,07,1-------,AI,9704,,5907N 01024E, +,NO,TJS,Tjeldsund,Tjeldsund,18,1-------,AI,9704,,6833N 01614E, +,NO,TLG,Tjodalyng,Tjodalyng,07,--3-----,RQ,0207,,5903N 01008E, +,NO,TRE,Tretten,Tretten,05,--3-----,AF,9506,,6119N 01018E, +,NO,TRY,Tran�y,Tranoy,19,1-------,AI,9704,,6811N 01540E, +,NO,TSD,Torvastad,Torvastad,11,--3-----,AF,9506,,5923N 00515E, +,NO,TUS,Tustna,Tustna,15,1-------,AI,9704,,6311N 00803E, +,NO,TVT,Tveit,Tveit,10,--3-----,AF,9506,,5814N 00807E, +,NO,TYF,Tysfjord,Tysfjord,18,1-------,AI,9704,,6812N 01604E, +,NO,TYN,Tysnes,Tysnes,12,1-------,AI,9704,,5959N 00532E, +,NO,TYV,Tysv�r,Tysvar,11,1-------,AI,9704,,5921N 00539E, +,NO,VAY,Vanylven,Vanylven,15,1-------,AI,9704,,6205N 00539E, +,NO,VEF,Vefsn,Vefsn,18,1-------,AI,9704,,6549N 01311E, +,NO,VEV,Vevelstad,Vevelstad,18,1-------,AI,9704,,6539N 01237E, +,NO,VGG,Veggli,Veggli,06,--3-----,AF,9506,,6003N 00909E, +,NO,VGN,V�gan,Vagan,18,1-------,AI,9704,,6817N 01440E, +,NO,VGY,V�gs�y,Vagsoy,14,1-------,AI,9704,,6950N 01838E, +,NO,VIF,Vindafjord,Vindafjord,11,1-------,AI,9704,,5935N 00545E, +,NO,VKN,Vikna,Vikna,17,1-------,AI,9704,,6455N 01054E, +,NO,VLR,V�ler,Valer,01,--3-----,RQ,0407,,6049N 01201E, +,NO,VNA,Vennesla,Vennesla,10,--3-----,AF,9506,,5820N 00746E, +,NO,VOS,Voss,Voss,12,-23-----,AF,9506,,6041N 00624E, +,NO,VRR,Verran,Verran,17,1-------,AI,9704,,6401N 01059E, +,NO,VSE,Vanse,Vanse,10,--3-----,RL,9805,,5806N 00641E, +,NO,VTR,Vettre,Vettre,02,--3-----,AF,9705,,5949N 01028E, +,NO,VVY,Vestv�g�y,Vestvagoy,18,1-------,AI,9704,,6810N 01347E, +,NO,YTR,Ytre Enebakk,Ytre Enebakk,02,--3-----,RL,0901,,5944N 01102E, +,NP,ANP,Annapurna,Annapurna,,--3-----,RL,9805,,2826N 08348E, +,NP,BDP,Bhadrapur,Bhadrapur,,---4----,AI,0001,,2632N 08805E, +,NP,BGL,Baglung,Baglung,,---4----,AI,0001,,2815N 08335E, +,NP,BHP,Bhojpur,Bhojpur,,---4----,AI,0001,,2711N 08703E, +,NP,BHR,Bharatpur,Bharatpur,,---4----,AI,0001,,2741N 08426E, +,NP,BIR,Biratnagar,Biratnagar,,--34----,AI,9601,,2628N 08717E, +,NP,BIT,Baitadi,Baitadi,,---4----,AI,0001,,2930N 08042E, +,NP,BJH,Bajhang,Bajhang,,---4----,AI,0001,,2933N 08112E, +,NP,BJU,Bajura,Bajura,,---4----,AI,0001,,2929N 08126E, +,NP,BRG,Birgunj,Birgunj,,--3-----,QQ,8103,,2701N 08453E, +,NP,BWA,Bhairawa,Bhairawa,,---4----,AI,0001,,2731N 08327E, +,NP,DAP,Darchula,Darchula,,---4----,AI,0001,,2950N 08045E, +,NP,DHG,Dhaulagiri,Dhaulagiri,,0-------,RL,9805,,2837N 08318E, +,NP,DHI,Dhangarhi,Dhangarhi,,---4----,AI,0001,,2842N 08035E, +,NP,DNP,Dang,Dang,,---4----,AI,0001,,2800N 08216E, +,NP,DOP,Dolpa,Dolpa,,---4----,AI,0001,,2856N 08254E, +,NP,FEB,Sanfebagar,Sanfebagar,,---4----,AI,0001,,2914N 08113E, +,NP,GKH,Gorkha,Gorkha,,---4----,AI,0001,,2759N 08436E, +,NP,HRJ,Chaurjhari,Chaurjhari,,---4----,AI,0001,,2839N 08212E, +,NP,IMK,Simikot,Simikot,,---4----,AI,0001,,2958N 08149E, +,NP,JIR,Jiri,Jiri,,---4----,AI,0001,,2740N 08616E, +,NP,JKR,Janakpur,Janakpur,,---4----,AI,0001,,2644N 08556E, +,NP,JMO,Jomsom,Jomsom,,---4----,AI,0001,,2847N 08344E, +,NP,JUM,Jumla,Jumla,,---4----,AI,0001,,2917N 08211E, +,NP,KAI,Kailali,Kailali,,--3-----,QQ,8103,,2844N 08034E, +,NP,KAK,Kakarbitta,Kakarbitta,,--3-----,RQ,0307,,2639N 08809E, +,NP,KEP,Nepalganj,Nepalganj,,---4----,AI,0001,,2804N 08138E, +,NP,KTM,Kathmandu,Kathmandu,,--345---,AI,9401,,2742N 08519E, +,NP,LDN,Lamidanda,Lamidanda,,---4----,AI,0001,,2717N 08644E, +,NP,LTG,Langtang,Langtang,,---4----,AI,0001,,2813N 08531E, +,NP,LUA,Lukla,Lukla,,---4----,AI,0001,,2741N 08644E, +,NP,MEY,Meghauli,Meghauli,,---4----,AI,0001,,2735N 08414E, +,NP,NGX,Manang,Manang,,---4----,AI,0001,,2840N 08401E, +,NP,PKR,Pokhara,Pokhara,,---4----,AI,9401,,2813N 08359E, +,NP,PPL,Phaplu,Phaplu,,---4----,AI,0001,,2731N 08635E, +,NP,RHP,Ramechhap,Ramechhap,,---4----,AI,0001,,2719N 08608E, +,NP,RJB,Rajbiraj,Rajbiraj,,---4----,AI,0001,,2632N 08645E, +,NP,RPA,Rolpa,Rolpa,,---4----,AI,0001,,2820N 08236E, +,NP,RUK,Rukumkot,Rukumkot,,---4----,AI,0001,,2838N 08236E, +,NP,RUM,Rumjatar,Rumjatar,,---4----,AI,0001,,2718N 08633E, +,NP,SIF,Simara,Simara,,---4----,AI,9601,,2713N 08501E, +,NP,SKH,Surkhet,Surkhet,,---4----,AI,0001,,2833N 08137E, +,NP,SUN,Sunauli,Sunauli,,--3-----,QQ,8103,,2730N 08325E, +,NP,SYH,Syangboche,Syangboche,,---4----,AI,0001,,2749N 08643E, +,NP,TPJ,Taplejung,Taplejung,,---4----,AI,0001,,2722N 08740E, +,NP,TPU,Tikapur,Tikapur,,---4----,AI,0001,,2832N 08107E, +,NU,IUE,Niue Island,Niue Island,,1--45---,AI,9601,,1902S 16952W, +,NZ,ALR,Alexandra,Alexandra,OTA,---4----,AC,9601,,4515S 16923E, +,NZ,AMZ,Ardmore,Ardmore,AUK,---4----,AC,9601,,3702S 17459E, +,NZ,CGE,Cambridge,Cambridge,WKO,--3-----,RQ,9008,,3754S 17528E, +,NZ,CHT,Chatham Island,Chatham Island,CAN,---4----,AC,9601,,4348S 17648W, +,NZ,GBZ,Great Barrier Is,Great Barrier Is,AUK,---4----,AC,9601,,3612S 17525E, +,NZ,HAS,Hastings,Hastings,HKB,--3-----,RL,9805,NPE,3939S 17651E, +,NZ,KAT,Kaitaia,Kaitaia,NTL,---4----,AC,9601,,3507S 17316E, +,NZ,KKO,Kaikohe,Kaikohe,NTL,---4----,AC,9601,,3524S 17335E, +,NZ,MNR,Middleton/Christchurch,Middleton/Christchurch,CAN,-23-----,RL,0601,,4333S 17235E, +,NZ,MOE,Moerewa,Moerewa,AUK,--3-----,RL,0001,,3523S 17401E, +,NZ,MON,Mount Cook,Mount Cook,CAN,---4----,AC,9601,,4118S 17446E, +,NZ,MRO,Masterton,Masterton,,---4----,AI,0001,,4057S 17540E, +,NZ,OHA,Ohakea,Ohakea,MWT,---4----,AI,9708,,4012S 17523E, +,NZ,PMR,Palmerston North,Palmerston North,MWT,---4----,AC,9601,,4021S 17537E, +,NZ,RAU,Rangiuru,Rangiuru,BOP,--3-----,RL,9901,,3747S 17622E, +,NZ,TEU,Te Anau,Te Anau,STL,---4----,AC,9601,,4525S 16743E, +,NZ,TKU,Takapau,Takapau,HKB,--3-----,RL,9901,,4001S 17621E, +,NZ,TUO,Taupo,Taupo,WKO,---4----,AC,9601,,3841S 17604E, +,NZ,WAA,Waitoa,Waitoa,WKO,--3-----,RL,9901,,3736S 17538E, +,NZ,WHK,Whakatane,Whakatane,BOP,---4----,AC,9601,,3757S 17660E, +,NZ,WII,Wiri,Wiri,AUK,--3-----,RQ,8909,,3700S 17452E, +,NZ,WNP,Whenuapai,Whenuapai,AUK,---4----,RQ,9709,,3648S 17437E, +,NZ,ZQN,Queenstown,Queenstown,OTA,---4----,AC,9601,,4502S 16840E, +,OM,KHS,Khasab,Khasab,,---4----,AI,0001,,2611N 05615E, +,OM,MUT,Muthra,Muthra,,1-------,QQ,8103,,2337N 05834E, +,OM,OPQ,Port Qaboos,Port Qaboos,,1-------,QQ,1407,,2338N 05834E, +,OM,RAY,Raysut,Raysut,,1-------,QQ,8103,,1657N 05360E, +,OM,RMB,Buraimi,Buraimi,,---4----,AI,0001,,2416N 05547E, +,OM,RWI,Ruwi,Ruwi,,0-------,RQ,9307,,2336N 05833E, +,OM,SLL,Salalah,Salalah,,1--4----,AI,9601,,1701N 05406E, +,OM,SOH,Sohar,Sohar,,1-------,QQ,8103,,2421N 05645E, +,OM,SUH,Sur,Sur,,---4----,AI,0001,,2234N 05932E, +,OM,TTH,Thumrait,Thumrait,,--34----,RQ,9506,,1737N 05403E, +,PA,AGD,Aguadulce,Aguadulce,,1-------,AI,9401,,0815N 08032W, +,PA,AIL,Ailigandi,Ailigandi,,---4----,AI,0001,,0914N 07802W, +,PA,AML,Puerto Armuelles,Puerto Armuelles,4,1--4----,AI,1807,,0816N 08252W, +,PA,BLB,Balboa,Balboa,,1-------,AI,9601,,0857N 07933W, +,PA,CDE,Caledonia,Caledonia,,---4----,AI,9601,,0854N 07742W, +,PA,CHA,Charco Azul,Charco Azul,,1-------,RQ,9506,,0829N 08225W, +,PA,CHX,Changuinola,Changuinola,1,--34----,RL,1807,,0927N 08231W, +,PA,CSO,Coco Solo,Coco Solo,,--3-----,RQ,0002,,0922N 07953W, +,PA,DAV,David,David,,---4----,AI,9601,,0826N 08226W, +,PA,ELE,El Real,El Real,,1--4----,AI,9601,,0807N 07744W, +,PA,GBA,Gamboa,Gamboa,,1-------,RL,9811,,0907N 07942W, +,PA,GTN,Gatun,Gatun,,1-------,QQ,8103,,0917N 07946W, +,PA,HOW,Fort Kobbe,Fort Kobbe,,---4----,AI,0001,,0854N 07935W, +,PA,MFS,Miraflores,Miraflores,,1-------,QQ,8103,,0839N 08017W, +,PA,MIT,Manzanillo,Manzanillo,,123-----,AI,9701,,0732N 08110W, +,PA,MNP,Las Minas,Las Minas,6,1-------,AI,1807,,0748N 08045W, +,PA,MPI,Mamitupo,Mamitupo,,---4----,QQ,8103,,0911N 07758W, +,PA,MPP,Mulatupo,Mulatupo,,---4----,AI,9601,,0857N 07745W, +,PA,NMG,San Miguel,San Miguel,,---4----,AI,0001,,0827N 07856W, +,PA,OTD,Contadora,Contadora,,---4----,AI,0001,,0838N 07902W, +,PA,PAI,Paraiso,Paraiso,,1-------,QQ,8103,,0842N 08235W, +,PA,PAM,Almirante,Almirante,,1-------,AI,9401,,0918N 08224W, +,PA,PLP,La Palma,La Palma,5,1--4----,AI,1807,,0824N 07808W, +,PA,POE,Pedro Miguel,Pedro Miguel,,--3-----,RL,9805,,0901N 07937W,Car +,PA,PYV,Yavisa,Yavisa,,---4----,QQ,8103,,0809N 07742W, +,PA,RIT,Rio Tigre,Rio Tigre,,---4----,AI,9601,,0757N 07810W, +,PA,SAX,Sambu,Sambu,5,---4----,AI,1807,,0802N 07813W, +,PA,SYP,Santiago,Santiago,,---4----,AI,0001,,0806N 08059W, +,PA,TUE,Tupile,Tupile,,---4----,AI,9601,,0918N 07809W, +,PA,UTU,Ustupo,Ustupo,,---4----,AI,9601,,0908N 07756W, +,PE,ALD,Alerta,Alerta,,---4----,AI,0001,,1142S 06912W, +,PE,ANS,Andahuaylas,Andahuaylas,,---4----,AI,9601,,1339S 07323W, +,PE,APE,San Juan Aposento,San Juan Aposento,,---4----,AI,0001,,1156S 06860W, +,PE,AQP,Arequipa,Arequipa,,---4----,AI,9601,,1624S 07132W, +,PE,ATA,Anta,Anta,,---4----,AI,9601,,0921S 07736W, +,PE,ATI,Atico,Atico,,1-------,QQ,8103,,1613S 07337W, +,PE,AYP,Ayacucho,Ayacucho,,---4----,AI,9601,,1310S 07414W, +,PE,BLP,Bellavista,Bellavista,,---4----,AI,0001,,1204S 07707W, +,PE,CAB,Cabo Blanco,Cabo Blanco,,1-------,AI,9401,,0415S 08114W, +,PE,CHH,Chachapoyas,Chachapoyas,,---4----,AI,0001,,0614S 07752W, +,PE,CHM,Chimbote,Chimbote,,1--4----,AI,9601,,0904S 07836W, +,PE,CHY,Chancay,Chancay,,1-------,AI,9401,,1134S 07716W, +,PE,CIX,Chiclayo,Chiclayo,,---4----,AI,9601,,0646S 07950W, +,PE,CJA,Cajamarca,Cajamarca,,---4----,AI,9601,,0709S 07831W, +,PE,CLL,Callao,Callao,,1-------,AI,9401,,1203S 07708W, +,PE,EEN,Et�n,Eten,,1-------,AI,9401,,0657S 07951W, +,PE,GSM,General San Martin,General San Martin,,1-------,AI,9401,,1104S 07514W, +,PE,HCO,Huacho,Huacho,,1-------,AI,9401,,1107S 07737W, +,PE,HUU,Huanuco,Huanuco,,---4----,AI,9601,,0956S 07614W, +,PE,HUY,Huarmey,Huarmey,,1-------,QQ,8103,,1004S 07809W, +,PE,IBP,Iberia,Iberia,,---4----,AI,0001,,0542S 07408W, +,PE,ILQ,Ilo,Ilo,,1--4----,AI,9601,,1739S 07120W, +,PE,IQT,Iquitos,Iquitos,,1--4----,AI,9601,,0345S 07315W, +,PE,JAU,Jauja,Jauja,,---4----,AI,0001,,1147S 07530W, +,PE,JUL,Juliaca,Juliaca,,---4----,AI,0001,,1530S 07008W, +,PE,LIM,Lima,Lima,,1--45---,AI,9601,,1203S 07703W, +,PE,LOA,La Oroya,La Oroya,,--3-----,RL,0006,,1131S 07554W, +,PE,LOB,Lobitos,Lobitos,,1-------,AI,9401,,0427S 08117W, +,PE,LPP,La Pampilla,La Pampilla,,1-------,RQ,9506,,1156S 07708W, +,PE,MCA,Mancora,Mancora,,0-------,RQ,9811,,0406S 08103W, +,PE,MFT,Machu Picchu,Machu Picchu,,---4----,AI,0001,,1310S 07233W, +,PE,MLQ,Mollendo,Mollendo,,1--4----,AI,9601,,1702S 07201W, +,PE,MRI,Matarani,Matarani,,1-------,AI,9401,,1700S 07206W, +,PE,NGS,Negritos,Negritos,,1-------,RQ,9506,,0403S 08052W, +,PE,PAC,Pacasmayo,Pacasmayo,,1-------,AI,9401,,0724S 07934W, +,PE,PAI,Paita,Paita,,1-------,AI,9401,,0505S 08107W, +,PE,PAM,Paramonga,Paramonga,,1-------,RQ,9506,,1041S 07749W, +,PE,PCH,Puerto Chicama,Puerto Chicama,,1-------,AI,9401,,0742S 07926W, +,PE,PCL,Pucallpa,Pucallpa,,1--4----,AI,9601,,0823S 07432W, +,PE,PEM,Puerto Maldonado,Puerto Maldonado,,1--4----,AI,9601,,1235S 06912W, +,PE,PIO,Pisco,Pisco,,1--4----,AI,9601,,1343S 07612W, +,PE,PIU,Piura,Piura,,---4----,AI,9601,,0512S 08038W, +,PE,PMT,Pimentel,Pimentel,,1-------,AI,9401,,0650S 07956W, +,PE,PUN,Puno,Puno,,1-------,AI,9401,,1550S 07002W, +,PE,RIJ,Rioja,Rioja,,---4----,AI,9601,,0604S 07710W, +,PE,SAM,Samanco,Samanco,,0-------,QQ,8103,,0916S 07830W, +,PE,SJA,San Juan,San Juan,,1--4----,AI,9601,,1522S 07510W, +,PE,SMG,Santa Maria,Santa Maria,,---4----,AI,0001,,0218S 07416W, +,PE,SNX,San Nicolas,San Nicolas,,1-------,AI,9401,,1516S 07514W, +,PE,SQU,Saposoa,Saposoa,,---4----,AI,0001,,0636S 07656W, +,PE,SUP,Supe,Supe,,1-------,AI,9401,,1048S 07745W, +,PE,SVY,Salaverry,Salaverry,,1-------,AI,9401,,0813S 07859W, +,PE,SYC,Shiringayoc,Shiringayoc,,---4----,AI,0001,,1154S 06905W, +,PE,TBP,Tumbes,Tumbes,,---4----,AI,9601,,0334S 08028W, +,PE,TCQ,Tacna,Tacna,,---4----,AI,9601,,1800S 07015W, +,PE,TPP,Tarapoto,Tarapoto,,---4----,AI,9601,,0629S 07622W, +,PE,TRU,Trujillo,Trujillo,,1--4----,AI,9601,,0807S 07902W, +,PE,TYL,Talara,Talara,,1--4----,AI,9601,,0435S 08116W, +,PE,YMS,Yurimaguas,Yurimaguas,,1--4----,AI,9401,,0554S 07606W, +,PE,ZOR,Zorritos,Zorritos,,0-------,QQ,8103,,0341S 08041W, +,PF,VAI,Vaitape,Vaitape,,1-------,RQ,9506,,1630S 15145W, +,PG,ABP,Atkamba,Atkamba,,---4----,AI,0001,,0604S 14106E, +,PG,ABW,Abau,Abau,,1--4----,AI,9601,,1011S 14842E, +,PG,AEK,Aseki,Aseki,,---4----,AI,9601,,0721S 14612E, +,PG,AFR,Afore,Afore,,---4----,AI,0001,,0908S 14823E, +,PG,AGG,Angoram,Angoram,,---4----,AI,9601,,0403S 14404E, +,PG,AGK,Kagua,Kagua,,---4----,AI,0001,,0624S 14351E, +,PG,AGL,Wanigela,Wanigela,,---4----,AI,9601,,1003S 14813E, +,PG,AHO,Ahioma,Ahioma,,1-------,RL,9811,,1019S 15030E, +,PG,AIE,Aiome,Aiome,,---4----,AI,9601,,0509S 14444E, +,PG,AKG,Anguganak,Anguganak,,---4----,AI,0001,,0334S 14213E, +,PG,AKI,Akinum,Akinum,,1-------,QQ,8311,,0616S 14944E, +,PG,AMF,Ama,Ama,,---4----,AI,9601,,0406S 14140E, +,PG,AMG,Amboin,Amboin,,---4----,AI,0001,,0436S 14330E, +,PG,AMU,Amanab,Amanab,,---4----,AI,9601,,0335S 14113E, +,PG,AOA,Aroa,Aroa,,---4----,AI,0001,,0903S 14648E, +,PG,AON,Arona,Arona,,---4----,AI,0001,,0616S 14601E, +,PG,APP,Asapa,Asapa,,---4----,AI,0001,,0859S 14806E, +,PG,ARP,Aragip,Aragip,,---4----,AI,9601,,0953S 14929E, +,PG,ASZ,Asirim,Asirim,,---4----,AI,0001,,0600S 15022E, +,PG,ATN,Namatanai,Namatanai,,1--4----,AI,9601,,0340S 15226E, +,PG,ATP,Aitape,Aitape,,---4----,AI,9601,,0309S 14222E, +,PG,AUI,Aua Island,Aua Island,,---4----,AI,0001,,0128S 14304E, +,PG,AUJ,Ambunti,Ambunti,,---4----,AI,9601,,0413S 14249E, +,PG,AUP,Agaun,Agaun,,---4----,AI,0001,,0956S 14923E, +,PG,AUV,Aumo,Aumo,,---4----,AI,0001,,0546S 14826E, +,PG,AWB,Awaba,Awaba,,---4----,AI,0001,,0801S 14245E, +,PG,AWR,Awar,Awar,,---4----,AI,0001,,0409S 14451E, +,PG,AYU,Aiyura,Aiyura,,---4----,AI,9601,,0620S 14554E, +,PG,BAA,Bialla,Bialla,,---4----,AI,9601,,0519S 15102E, +,PG,BAJ,Bali,Bali,,---4----,AI,9601,,0453S 14906E, +,PG,BAP,Baibara,Baibara,,---4----,AI,9601,,1022S 14936E, +,PG,BCP,Bambu,Bambu,,---4----,AI,0001,,0552S 14630E, +,PG,BEA,Bereina,Bereina,,---4----,AI,9601,,0840S 14630E, +,PG,BIJ,Biliau,Biliau,,---4----,AI,0001,,0535S 14620E, +,PG,BIZ,Bimin,Bimin,,---4----,AI,0001,,0517S 14202E, +,PG,BMH,Bomai,Bomai,,---4----,AI,0001,,0615S 14504E, +,PG,BNA,Buna,Buna,,1-------,QQ,8311,,0840S 14825E, +,PG,BNT,Bundi,Bundi,,---4----,AI,9601,,0545S 14514E, +,PG,BNV,Boana,Boana,,---4----,AI,0001,,0626S 14649E, +,PG,BNZ,Banz,Banz,,---4----,AI,9601,,0548S 14438E, +,PG,BOQ,Boku,Boku,,---4----,AI,0001,,0632S 15521E, +,PG,BOR,Boroko,Boroko,,1---5---,AI,9601,,0928S 14712E, +,PG,BOV,Boang,Boang,,---4----,AI,9601,,0323S 15319E, +,PG,BPB,Boridi,Boridi,,---4----,AI,0001,,0905S 14738E, +,PG,BPD,Bapi,Bapi,,---4----,AI,0001,,0739S 14706E, +,PG,BRH,Brahman,Brahman,,---4----,AI,0001,,0545S 14522E, +,PG,BUA,Buka,Buka,,1--4----,AI,9601,,0514S 15438E, +,PG,BUL,Bulolo,Bulolo,,---4----,AI,9601,,0712S 14639E, +,PG,BWJ,Bawan,Bawan,,---4----,AI,0001,,0624S 14653E, +,PG,BWP,Bewani,Bewani,,---4----,AI,9601,,0301S 14110E, +,PG,BXZ,Bunsil,Bunsil,,---4----,AI,0001,,0543S 14752E, +,PG,CGC,Cape Gloucester,Cape Gloucester,,---4----,AI,9601,,0527S 14825E, +,PG,CMU,Kundiawa,Kundiawa,,---4----,AI,9601,,0601S 14458E, +,PG,CPN,Cape Rodney,Cape Rodney,,---4----,AI,9601,,3616S 17448E, +,PG,CVB,Chungribu,Chungribu,,---4----,AI,0001,,0448S 14443E, +,PG,CVL,Cape Vogel,Cape Vogel,,---4----,AI,9601,,0942S 15002E, +,PG,DAF,Daup,Daup,,---4----,AI,0001,,0444S 14557E, +,PG,DAU,Daru,Daru,,1--4----,AI,9601,,0904S 14313E, +,PG,DER,Derim,Derim,,---4----,AI,0001,,0609S 14706E, +,PG,DGG,Daugo,Daugo,,---4----,AI,0001,,0931S 14703E, +,PG,DOI,Doini,Doini,,---4----,AI,0001,,1042S 15043E, +,PG,DOS,Dios,Dios,,---4----,AI,0001,,0532S 15458E, +,PG,DPU,Dumpu,Dumpu,,---4----,AI,0001,,0551S 14544E, +,PG,EFG,Efogi,Efogi,,---4----,AI,9601,,0909S 14740E, +,PG,EGA,Engati,Engati,,---4----,AI,0001,,0655S 14607E, +,PG,EMI,Emirau,Emirau,,---4----,AI,9601,,0139S 14958E, +,PG,ERE,Erave,Erave,,---4----,AI,9601,,0636S 14354E, +,PG,ESA,Esa'ala,Esa'ala,,---4----,AI,9601,,0944S 15049E, +,PG,FIN,Finschhafen,Finschhafen,,1--4----,AI,9601,,0636S 14751E, +,PG,FNE,Fane,Fane,,---4----,AI,9601,,0833S 14705E, +,PG,FUB,Fulleborn,Fulleborn,,1--4----,AI,9601,,0419S 14200E, +,PG,GAP,Gusap,Gusap,,---4----,AI,9601,,0558S 14553E, +,PG,GAR,Garaina,Garaina,,---4----,AI,9601,,0753S 14709E, +,PG,GAZ,Guasopa,Guasopa,,---4----,AI,0001,,0913S 15257E, +,PG,GBC,Gasuke,Gasuke,,---4----,AI,0001,,0606S 14144E, +,PG,GBF,Negarbo,Negarbo,,---4----,AI,0001,,0634S 14442E, +,PG,GEI,Green Islands,Green Islands,,1--4----,AI,9601,,0431S 15414E, +,PG,GKA,Goroka,Goroka,,---4----,AI,9601,,0604S 14524E, +,PG,GMI,Gasmata Island,Gasmata Island,,1--4----,AI,9601,,0620S 15018E, +,PG,GOC,Gora,Gora,,---4----,AI,0001,,0900S 14814E, +,PG,GRH,Garuahi,Garuahi,,---4----,AI,9601,,1013S 15029E, +,PG,GRL,Garasa,Garasa,,---4----,AI,0001,,0759S 14713E, +,PG,GUG,Guari,Guari,,---4----,AI,9601,,0806S 14654E, +,PG,GUR,Alotau,Alotau,,1--4----,AI,9601,,1018S 15027E, +,PG,GVI,Green River,Green River,,---4----,AI,0001,,0354S 14111E, +,PG,HGU,Mount Hagen,Mount Hagen,,---4----,AI,9601,,0552S 14414E, +,PG,HKN,Hoskins,Hoskins,,1--4----,AI,9601,,0527S 15024E, +,PG,HNI,Heiweni,Heiweni,,---4----,AI,0001,,0725S 14626E, +,PG,HOC,Komako,Komako,,---4----,AI,0001,,0724S 14553E, +,PG,IBI,Iboki,Iboki,,---4----,AI,0001,,0533S 14912E, +,PG,IDN,Indagen,Indagen,,---4----,AI,0001,,0614S 14715E, +,PG,IHU,Ihu,Ihu,,---4----,AI,9601,,0754S 14524E, +,PG,IIS,Nissan Island,Nissan Island,,---4----,AI,9601,,0431S 15414E, +,PG,ILX,Ileg,Ileg,,---4----,AI,0001,,0529S 14548E, +,PG,IMD,Imonda,Imonda,,---4----,AI,9601,,0320S 14110E, +,PG,IMN,Imane,Imane,,---4----,AI,0001,,0645S 14607E, +,PG,IOK,Iokea,Iokea,,---4----,AI,9601,,0824S 14616E, +,PG,IUS,Inus,Inus,,---4----,AI,9601,,0544S 15510E, +,PG,JAC,Jacksons,Jacksons,,----5---,AI,9805,,0927S 14713E, +,PG,JOP,Josephstaal,Josephstaal,,---4----,AI,9601,,0445S 14500E, +,PG,KAF,Karato,Karato,,---4----,AI,0001,,0616S 15518E, +,PG,KAK,Kar,Kar,,---4----,AI,0001,,0615S 14333E, +,PG,KBM,Kabwum,Kabwum,,---4----,AI,0001,,0609S 14711E, +,PG,KCJ,Komaio,Komaio,,---4----,AI,0001,,0716S 14336E, +,PG,KDE,Koroba,Koroba,,---4----,AI,9601,,0542S 14244E, +,PG,KDP,Kandep,Kandep,,---4----,AI,9601,,0550S 14331E, +,PG,KDR,Kandrian,Kandrian,,---4----,AI,9601,,0612S 14933E, +,PG,KEG,Keglsugl,Keglsugl,,---4----,AI,0001,,0550S 14506E, +,PG,KEX,Kanabea,Kanabea,,---4----,AI,9601,,0732S 14554E, +,PG,KGB,Konge,Konge,,---4----,AI,0001,,0614S 14713E, +,PG,KGW,Kagi,Kagi,,---4----,AI,9601,,0908S 14741E, +,PG,KIA,Kaiapit,Kaiapit,,---4----,AI,0001,,0616S 14616E, +,PG,KIE,Kieta,Kieta,,1--4----,AI,9601,,0613S 15538E, +,PG,KIM,Kimbe,Kimbe,,1-------,QQ,8311,,0533S 15009E, +,PG,KIQ,Kira,Kira,,---4----,AI,0001,,0625S 14349E, +,PG,KKD,Kokoda,Kokoda,,---4----,AI,9601,,0853S 14744E, +,PG,KLO,Kalo,Kalo,,1-------,QQ,8311,,1003S 14747E, +,PG,KMA,Kerema,Kerema,,1--4----,AI,9601,,0758S 14546E, +,PG,KMB,Koinambe,Koinambe,,---4----,AI,0001,,0529S 14436E, +,PG,KMR,Karimui,Karimui,,---4----,AI,9601,,0630S 14450E, +,PG,KNE,Kanainj,Kanainj,,---4----,AI,0001,,0517S 14443E, +,PG,KPA,Kopiago,Kopiago,,---4----,AI,9601,,0523S 14230E, +,PG,KPE,Yapsiei,Yapsiei,,---4----,AI,0001,,0438S 14106E, +,PG,KPM,Kompiam,Kompiam,,---4----,AI,0001,,0523S 14355E, +,PG,KQL,Kol,Kol,,---4----,AI,9601,,0544S 14451E, +,PG,KRI,Kikori,Kikori,,---4----,AI,9601,,0830S 14725E, +,PG,KSB,Kasanombe,Kasanombe,,---4----,AI,0001,,0623S 14659E, +,PG,KSG,Kisengan,Kisengan,,---4----,AI,0001,,0622S 14642E, +,PG,KSX,Yasuru,Yasuru,,---4----,AI,0001,,0636S 14611E, +,PG,KUP,Kupiano,Kupiano,,---4----,AI,9601,,1004S 14811E, +,PG,KUQ,Kuri,Kuri,,---4----,AI,0001,,0708S 14317E, +,PG,KUY,Kamusi,Kamusi,,---4----,AI,0001,,0726S 14307E, +,PG,KVE,Kitava,Kitava,,---4----,AI,0001,,0837S 15120E, +,PG,KVG,Kavieng,Kavieng,,1--4----,AI,9601,,0234S 15048E, +,PG,KWX,Kiwai Island,Kiwai Island,,---4----,AI,0001,,0833S 14326E, +,PG,KYX,Yalumet,Yalumet,,---4----,AI,0001,,0606S 14701E, +,PG,KZF,Kaintiba,Kaintiba,,---4----,AI,9601,,0730S 14602E, +,PG,LAB,Lablab,Lablab,,---4----,AI,9601,,0543S 14804E, +,PG,LAE,Lae,Lae,,1--4----,AI,9601,,0644S 14700E, +,PG,LGM,Laiagam,Laiagam,,---4----,AI,0001,,0530S 14329E, +,PG,LMG,Lamassa,Lamassa,,---4----,AI,0001,,0442S 15246E, +,PG,LMI,Lumi,Lumi,,---4----,AI,9601,,0329S 14202E, +,PG,LMY,Lake Murray,Lake Murray,,---4----,AI,0001,,0700S 14129E, +,PG,LNC,Lengbati,Lengbati,,---4----,AI,0001,,0623S 14722E, +,PG,LNG,Lese,Lese,,---4----,AI,9601,,0817S 14617E, +,PG,LNM,Langimar,Langimar,,---4----,AI,9601,,0713S 14613E, +,PG,LNV,Lihir Island,Lihir Island,,1--4----,AI,9701,,0308S 15236E, +,PG,LOL,Loloho,Loloho,,1-------,QQ,8311,,0611S 15533E, +,PG,LOR,"Lorengau, Manus Island","Lorengau, Manus Island",,1-------,QQ,8311,,0202S 14717E, +,PG,LPN,Leron Plains,Leron Plains,,---4----,AI,0001,,0623S 14620E, +,PG,LSA,Losuia,Losuia,,---4----,AI,9601,,0833S 15104E, +,PG,LSJ,Long Island,Long Island,,---4----,AI,0001,,0519S 14706E, +,PG,LWI,Lowai,Lowai,,---4----,AI,0001,,0620S 14639E, +,PG,MAM,Manam Island,Manam Island,,1-------,QQ,8311,,0405S 14502E, +,PG,MAS,Manus Island,Manus Island,,---4----,AI,9601,,0206S 14654E, +,PG,MBV,Masa,Masa,,---4----,AI,0001,,0621S 14738E, +,PG,MDU,Mendi,Mendi,,---4----,AI,9601,,0608S 14339E, +,PG,MGG,Margarima,Margarima,,---4----,AI,9601,,0559S 14322E, +,PG,MGP,Manga,Manga,,---4----,AI,9601,,0409S 15301E, +,PG,MHY,Morehead,Morehead,,---4----,AI,9601,,0843S 14139E, +,PG,MIS,Misima Island,Misima Island,,1--4----,AI,9601,,1040S 15244E, +,PG,MLQ,Malalaua,Malalaua,,---4----,AI,9601,,0804S 14610E, +,PG,MNP,Maron,Maron,,---4----,AI,0001,,0133S 14500E, +,PG,MPG,Makini,Makini,,---4----,AI,0001,,0632S 14739E, +,PG,MPU,Mapua,Mapua,,---4----,AI,9601,,0249S 15160E, +,PG,MRH,May River,May River,,---4----,AI,0001,,0419S 14148E, +,PG,MVI,Manetai,Manetai,,---4----,AI,0001,,0605S 15525E, +,PG,MWG,Marawaka,Marawaka,,---4----,AI,0001,,0658S 14553E, +,PG,MWI,Maramuni,Maramuni,,---4----,AI,0001,,0508S 14329E, +,PG,MWU,Mussau,Mussau,,---4----,AI,9601,,0126S 14936E, +,PG,MXH,Moro,Moro,,---4----,AI,0001,,0552S 14607E, +,PG,MXK,Mindik,Mindik,,---4----,AI,0001,,0627S 14726E, +,PG,MYX,Menyamya,Menyamya,,---4----,AI,9601,,0713S 14601E, +,PG,MZN,Minj,Minj,,---4----,AI,0001,,0554S 14441E, +,PG,NBA,Nambaiyufa,Nambaiyufa,,---4----,AI,0001,,0614S 14515E, +,PG,NIS,Simberi Island,Simberi Island,,---4----,AI,0001,,0238S 15159E, +,PG,NMN,Nomane,Nomane,,---4----,AI,0001,,0619S 14504E, +,PG,NOO,Naoro,Naoro,,---4----,AI,0001,,0916S 14737E, +,PG,NPG,Nipa,Nipa,,---4----,AI,0001,,0609S 14327E, +,PG,NUG,Nuguria,Nuguria,,---4----,AI,0001,,0321S 15441E, +,PG,NUT,Nutuve,Nutuve,,---4----,AI,0001,,0520S 15140E, +,PG,OBM,Morobe,Morobe,,---4----,AI,0001,,0746S 14736E, +,PG,OGE,Ogeranang,Ogeranang,,---4----,AI,0001,,0628S 14722E, +,PG,OKP,Oksapmin,Oksapmin,,---4----,AI,0001,,0513S 14213E, +,PG,OLQ,Olsobip,Olsobip,,---4----,AI,0001,,0523S 14131E, +,PG,OPB,Open Bay,Open Bay,,---4----,AI,9601,,0448S 15142E, +,PG,OPU,Balimo,Balimo,,---4----,AI,9601,,0802S 14258E, +,PG,OSE,Omora,Omora,,---4----,AI,0001,,0947S 14951E, +,PG,OSG,Ossima,Ossima,,---4----,AI,0001,,0255S 14118E, +,PG,OTY,Oria,Oria,,---4----,AI,0001,,0635S 15546E, +,PG,PDI,Pindiu,Pindiu,,---4----,AI,0001,,0627S 14731E, +,PG,PGN,Pangia,Pangia,,---4----,AI,0001,,0623S 14407E, +,PG,PMN,Pumani,Pumani,,---4----,AI,9601,,0945S 14928E, +,PG,PNP,Popondetta,Popondetta,,---4----,AI,9601,,0846S 14814E, +,PG,POM,Port Moresby,Port Moresby,,1--4----,AI,9601,,0928S 14710E, +,PG,PPX,Param,Param,,---4----,AI,0001,,0958S 14929E, +,PG,PUA,Puas,Puas,,---4----,AI,9601,,0223S 15014E, +,PG,RAA,Rakanda,Rakanda,,---4----,AI,9601,,0412S 15228E, +,PG,RAB,Rabaul,Rabaul,,1--4----,AI,9601,,0412S 15210E, +,PG,RAM,Rambutyo Island,Rambutyo Island,,1-------,QQ,8311,,0218S 14750E, +,PG,RBP,Rabaraba,Rabaraba,,---4----,AI,9601,,0958S 14950E, +,PG,RGE,Porgera,Porgera,,---4----,AI,9601,,0529S 14307E, +,PG,RKU,Yule Island,Yule Island,,1--4----,AI,9601,,0848S 14632E, +,PG,ROR,Orobay,Orobay,,1-------,QQ,8311,,0853S 14830E, +,PG,SAM,Salamo,Salamo,,---4----,AI,9601,,0940S 15048E, +,PG,SBC,Selbang,Selbang,,---4----,AI,0001,,0519S 14145E, +,PG,SDI,Saidor,Saidor,,---4----,AI,9601,,0538S 14627E, +,PG,SGB,Singaua,Singaua,,---4----,AI,0001,,0642S 14708E, +,PG,SGJ,Sagarai,Sagarai,,---4----,AI,9601,,1026S 15011E, +,PG,SGK,Sangapi,Sangapi,,---4----,AI,0001,,0507S 14419E, +,PG,SIM,Simbai,Simbai,,---4----,AI,9601,,0516S 14433E, +,PG,SIZ,Sissano,Sissano,,---4----,AI,0001,,0300S 14203E, +,PG,SMH,Sapmanga,Sapmanga,,---4----,AI,0001,,0605S 14649E, +,PG,SMJ,Sim,Sim,,---4----,AI,0001,,0745S 14656E, +,PG,SMP,Stockholm,Stockholm,,---4----,AI,9601,,0421S 15133E, +,PG,SMU,Salamaua,Salamaua,,1-------,QQ,8311,,0703S 14703E, +,PG,SPH,Sopu,Sopu,,---4----,AI,0001,,0760S 14735E, +,PG,SPL,Sipul,Sipul,,1-------,QQ,8311,,0551S 14845E, +,PG,SSS,Siassi,Siassi,,---4----,AI,9601,,0552S 14800E, +,PG,SWE,Siwea,Siwea,,---4----,AI,0001,,0617S 14735E, +,PG,SWG,Satwag,Satwag,,---4----,AI,0001,,0608S 14717E, +,PG,SWR,Silur,Silur,,---4----,AI,0001,,0432S 15303E, +,PG,SXA,Sialum,Sialum,,---4----,AI,0001,,0605S 14736E, +,PG,SXW,Sauren,Sauren,,---4----,AI,0001,,0558S 14851E, +,PG,TBA,Tabibuga,Tabibuga,,---4----,AI,9601,,0534S 14440E, +,PG,TBE,Timbunke,Timbunke,,---4----,AI,0001,,0411S 14331E, +,PG,TBG,Tabubil,Tabubil,,---4----,AI,9601,,0516S 14114E, +,PG,TBQ,Tarabo,Tarabo,,---4----,AI,0001,,0628S 14532E, +,PG,TEP,Teptep,Teptep,,---4----,AI,9601,,0557S 14634E, +,PG,TFI,Tufi,Tufi,,1--4----,AI,9601,,0905S 14919E, +,PG,TFM,Telefomin,Telefomin,,---4----,AI,9601,,0507S 14138E, +,PG,TGL,Tagula,Tagula,,1--4----,AI,9601,,1120S 15312E, +,PG,TIG,Tingwon,Tingwon,,---4----,AI,9601,,0237S 14942E, +,PG,TIZ,Tari,Tari,,---4----,AI,9601,,0551S 14257E, +,PG,TKB,Tekadu,Tekadu,,---4----,AI,0001,,0741S 14633E, +,PG,TKW,Tekin,Tekin,,---4----,AI,0001,,0513S 14213E, +,PG,TLP,Tumolbil,Tumolbil,,---4----,AI,0001,,0446S 14101E, +,PG,TLW,Talasea,Talasea,,1--4----,AI,9601,,0518S 15002E, +,PG,TOI,Tolokiwa Island,Tolokiwa Island,,1-------,QQ,8311,,0519S 14735E, +,PG,TOK,Torokina,Torokina,,---4----,AI,9601,,0615S 15502E, +,PG,TON,Tonu,Tonu,,---4----,AI,0001,,0639S 15525E, +,PG,TPI,Tapini,Tapini,,---4----,AI,9601,,0821S 14659E, +,PG,TSK,Taskul,Taskul,,---4----,AI,9601,,0233S 15027E, +,PG,TSW,Tsewi,Tsewi,,---4----,AI,0001,,0704S 14608E, +,PG,TUT,Tauta,Tauta,,---4----,AI,0001,,0550S 14556E, +,PG,TWY,Tawa,Tawa,,---4----,AI,0001,,0727S 14606E, +,PG,UAE,Mount Aue,Mount Aue,,---4----,AI,0001,,0614S 14440E, +,PG,UBI,Buin,Buin,,---4----,AI,9601,,0645S 15541E, +,PG,UKU,Nuku,Nuku,,---4----,AI,9601,,0610S 14518E, +,PG,ULE,Sule,Sule,,---4----,AI,0001,,0458S 15119E, +,PG,UMC,Umba,Umba,,---4----,AI,0001,,0701S 14558E, +,PG,UNG,Kiunga,Kiunga,,1--4----,AI,9601,,0607S 14118E, +,PG,USO,Usino,Usino,,---4----,AI,0001,,0534S 14521E, +,PG,UVO,Uvol,Uvol,,---4----,AI,9601,,0601S 15100E, +,PG,VAI,Vanimo,Vanimo,,1--4----,AI,9601,,0241S 14118E, +,PG,VMU,Baimuru,Baimuru,,---4----,AI,9601,,0730S 14450E, +,PG,WAB,Wabag,Wabag,,---4----,AI,0001,,0530S 14343E, +,PG,WBC,Wapolu,Wapolu,,---4----,AI,0001,,0934S 15030E, +,PG,WBM,Wapenamanda,Wapenamanda,,---4----,AI,9601,,0538S 14354E, +,PG,WED,Wedau,Wedau,,---4----,AI,9601,,1005S 15005E, +,PG,WEP,Weam,Weam,,---4----,AI,9601,,0837S 14108E, +,PG,WGU,Wagau,Wagau,,---4----,AI,0001,,0651S 14648E, +,PG,WIU,Witu,Witu,,---4----,AI,9601,,0440S 14918E, +,PG,WKN,Wakunai,Wakunai,,---4----,AI,9601,,0552S 15513E, +,PG,WNU,Wanuma,Wanuma,,---4----,AI,0001,,0454S 14519E, +,PG,WOA,Wonenara,Wonenara,,---4----,AI,0001,,0648S 14553E, +,PG,WOK,Woodlark,Woodlark,,1-------,QQ,8311,,0907S 15248E, +,PG,WSA,Wasua,Wasua,,---4----,AI,0001,,0817S 14252E, +,PG,WSU,Wasu,Wasu,,---4----,AI,0001,,0558S 14712E, +,PG,WTP,Woitape,Woitape,,---4----,AI,9601,,0833S 14715E, +,PG,WTT,Wantoat,Wantoat,,---4----,AI,0001,,0608S 14628E, +,PG,WUG,Wau,Wau,,---4----,AI,9601,,0720S 14643E, +,PG,WUM,Wasum,Wasum,,---4----,AI,0001,,0603S 14921E, +,PG,WUV,Wuvulu Is,Wuvulu Is,,---4----,AI,9601,,0144S 14252E, +,PG,WWK,Wewak,Wewak,,1--4----,AI,9601,,0333S 14338E, +,PG,XBN,Biniguni,Biniguni,,---4----,AI,9601,,0939S 14918E, +,PG,YVD,Yeva,Yeva,,---4----,AI,0001,,0733S 14611E, +,PG,ZEN,Zenag,Zenag,,---4----,AI,0001,,0657S 14636E, +,PH,ADL,Adlay/Bislig,Adlay/Bislig,,1-------,QQ,8103,,0925N 12554E, +,PH,AGL,Angeles,Angeles,,-23-----,RQ,9704,,1508N 12035E, +,PH,ANA,Anakan/Masao,Anakan/Masao,,1-------,QQ,8103,,0851N 12509E, +,PH,ANT,Antipolo,Antipolo,APA,1-------,RQ,0901,,1435N 12111E, +,PH,APR,"Aparri, Luzon","Aparri, Luzon",,1-------,QQ,8103,,1821N 12138E, +,PH,BAB,Babato/Dadiangas,Babato/Dadiangas,,1-------,QQ,8103,,0645N 12402E, +,PH,BAG,Baguio,Baguio,,1--4----,AI,9601,,1625N 12036E, +,PH,BAI,Bais/Dumaguete,Bais/Dumaguete,,1-------,QQ,8103,,0935N 12307E, +,PH,BCD,"Bacolod, Negros","Bacolod, Negros",,1--4----,AI,9601,,1039N 12259E, +,PH,BCO,Bacon/Legaspi,Bacon/Legaspi,,1-------,QQ,8103,,1302N 12402E, +,PH,BCU,Baculin/Mati,Baculin/Mati,,1-------,QQ,8103,,0831N 12621E, +,PH,BGC,Bagac,Bagac,,1-------,RQ,8103,,1436N 12024E, +,PH,BGV,Borongan,Borongan,,1-------,RQ,9506,,1137N 12526E, +,PH,BLA,Balanga/Batan,Balanga/Batan,,1-------,QQ,8103,,1441N 12032E, +,PH,BLG,Balogo/Batangas,Balogo/Batangas,,1-------,QQ,8103,,1330N 12203E, +,PH,BLT,Balintang/Puerto Princesa,Balintang/Puerto Princesa,,1-------,QQ,8103,,0921N 11808E, +,PH,BNQ,Baganga/Mati,Baganga/Mati,,1--4----,AI,9601,,0734N 12634E, +,PH,BNW,Banawan/Dadiangas,Banawan/Dadiangas,,1-------,QQ,8103,,1302N 12327E, +,PH,BPH,"Bislig, Mindanao","Bislig, Mindanao",,1--4----,AI,9601,,0813N 12619E, +,PH,BQA,Baler/Siain,Baler/Siain,,1--4----,AI,9601,,1546N 12134E, +,PH,BRB,Barobo/Bislig,Barobo/Bislig,,1-------,QQ,8103,,0832N 12607E, +,PH,BRT,Barton/Puerto Princesa,Barton/Puerto Princesa,,1-------,QQ,8103,,1025N 11911E, +,PH,BSY,Basey/Catbalogan,Basey/Catbalogan,,1-------,QQ,8103,,1117N 12504E, +,PH,BTN,"Bataan, Mariveles","Bataan, Mariveles",,1-------,QQ,8103,,1427N 12030E, +,PH,BUD,Budbud/Davao,Budbud/Davao,,1-------,QQ,8103,,1005N 12331E, +,PH,BUG,Bugo,Bugo,,1-------,QQ,8103,,1126N 12205E, +,PH,BUL,"Bulan, Luzon","Bulan, Luzon",,1-------,QQ,8103,,1240N 12353E, +,PH,BYB,Baybay/Tacloban,Baybay/Tacloban,,1-------,QQ,8103,,1041N 12448E, +,PH,BYS,Bayabas/Bislig,Bayabas/Bislig,,1-------,QQ,8103,,0858N 12617E, +,PH,BYW,Bayawan/Dumaguete,Bayawan/Dumaguete,,1-------,QQ,8103,,0922N 12248E, +,PH,CAA,Calaca,Calaca,,--3-----,RL,0006,,1356N 12049E, +,PH,CAL,Calamba,Calamba,,--3-----,RL,0006,,1412N 12109E, +,PH,CAM,Camarines Norte/Jose Panganiban,Camarines Norte/Jose Panganiban,,1-------,RQ,8103,,1406N 12257E, +,PH,CAZ,Cadiz,Cadiz,,1-------,RL,9811,,1057N 12318E, +,PH,CBO,"Cotabato, Mindanao","Cotabato, Mindanao",,1--4----,AI,9601,,0713N 12415E, +,PH,CCG,Calag-Calag/Dumaguete,Calag-Calag/Dumaguete,,1-------,QQ,8103,,1026N 12511E, +,PH,CDY,Cagayan de Sulu,Cagayan de Sulu,,---4----,AI,0001,,0659N 11831E, +,PH,CEB,Cebu,Cebu,,1--4----,AI,9601,,1018N 12354E, +,PH,CGG,Casiguran/Siain,Casiguran/Siain,,1--4----,AI,9601,,1617N 12207E, +,PH,CGM,Camiguin Island/Aparri,Camiguin Island/Aparri,,1--4----,AI,9601,,1854N 12155E, +,PH,CGY,"Cagayan de Oro, Mindanao","Cagayan de Oro, Mindanao",,1--4----,AI,9601,,0829N 12439E, +,PH,CLP,Calapan/Batangas,Calapan/Batangas,,1-------,QQ,8103,,1325N 12111E, +,PH,CLV,Claveria/Aparri,Claveria/Aparri,,1-------,QQ,8103,,1836N 12105E, +,PH,CMO,Currimao,Currimao,,1-------,RQ,9506,,1801N 12029E, +,PH,CNT,Cantilan/Surigao,Cantilan/Surigao,,1-------,QQ,8103,,0920N 12559E, +,PH,CPL,Capalonga/Siain,Capalonga/Siain,,1-------,QQ,8103,,1420N 12230E, +,PH,CRG,Caraga/Mati,Caraga/Mati,,1-------,QQ,8103,,0720N 12634E, +,PH,CRM,Catarman,Catarman,,---4----,AI,0001,,1230N 12438E, +,PH,CTS,"Catbalogan, Samar","Catbalogan, Samar",,1-------,QQ,8103,,1147N 12453E, +,PH,CUJ,Culion,Culion,,1-------,AI,9401,,1153N 12001E, +,PH,CUN,Catanauan,Catanauan,,1-------,QQ,8103,,1336N 12219E, +,PH,CUR,Curuan/Zamboanga,Curuan/Zamboanga,,1-------,QQ,8103,,0712N 12214E, +,PH,CVE,"Cavite, Luzon","Cavite, Luzon",,1-------,QQ,8103,,1415N 12052E, +,PH,CYU,Cuyo,Cuyo,,---4----,AI,0001,,1051N 12101E, +,PH,CYZ,Cauayan,Cauayan,,---4----,AI,9401,,1656N 12146E, +,PH,DDW,Dinadiawan/Aparri,Dinadiawan/Aparri,,1-------,QQ,8103,,1605N 12146E, +,PH,DGL,Dingalan/Siain,Dingalan/Siain,,1-------,QQ,8103,,1523N 12124E, +,PH,DGT,Dumaguete,Dumaguete,,1--4----,AI,9601,,0918N 12318E, +,PH,DIO,Diotorin/Siain,Diotorin/Siain,,1-------,QQ,8103,,1536N 12134E, +,PH,DIV,Divilacan/Aparri,Divilacan/Aparri,,1-------,QQ,8103,,1720N 12218E, +,PH,DNG,Dinagat Island/Surigao,Dinagat Island/Surigao,,1-------,QQ,8103,,1010N 12533E, +,PH,DPL,Dipolog/Ozamis,Dipolog/Ozamis,,1--4----,AI,9601,,0835N 12321E, +,PH,DSG,Dilasag,Dilasag,,---4----,AI,0001,,1624N 12213E, +,PH,DTE,Daet,Daet,,---4----,AI,0001,,1407N 12257E, +,PH,DUL,Dulag,Dulag,LEY,1-------,QQ,0212,,1057N 12502E, +,PH,DVO,"Davao, Mindanao","Davao, Mindanao",,1--4----,AI,9601,,0642N 12522E, +,PH,GAS,Gasan,Gasan,,1-------,QQ,8103,,1319N 12151E, +,PH,GIN,Gingoog/Masao,Gingoog/Masao,,1-------,QQ,8103,,0849N 12506E, +,PH,GMS,Guimaras/Iloilo,Guimaras/Iloilo,,1-------,QQ,8103,,1035N 12237E, +,PH,GNI,General Island/Bislig,General Island/Bislig,,1-------,QQ,8103,,0925N 12600E, +,PH,GUI,Guinabasan,Guinabasan,,--3-----,RQ,9901,,1038N 12345E, +,PH,HNG,Hinigaran/Iloilo,Hinigaran/Iloilo,,1-------,QQ,8103,,1016N 12251E, +,PH,HNT,Hinatuan/Bislig,Hinatuan/Bislig,,1-------,QQ,8103,,0822N 12620E, +,PH,HON,Hondagua/Siain,Hondagua/Siain,,1-------,QQ,8103,,1357N 12215E, +,PH,ICO,Sicogon Island,Sicogon Island,,---4----,AI,0001,,1127N 12316E, +,PH,IGN,"Iligan, Mindanao","Iligan, Mindanao",,1--4----,AI,9601,,0814N 12414E, +,PH,ILO,"Iloilo, Panay","Iloilo, Panay",,1--4----,AI,9601,,1043N 12234E, +,PH,INP,Inampulugan Island,Inampulugan Island,,1-------,RQ,9506,,1027N 12242E, +,PH,IPE,Ipil/Zamboanga,Ipil/Zamboanga,,1--4----,AI,9601,,0747N 12235E, +,PH,ISL,Isabel,Isabel,,1-------,RQ,9506,,1056N 12426E, +,PH,JAG,Jagna,Jagna,,1-------,RQ,9506,,0939N 12422E, +,PH,JNZ,Jimenez/Ozamis,Jimenez/Ozamis,,1-------,QQ,8103,,0820N 12350E, +,PH,JOL,Jolo,Jolo,,1--4----,AI,9601,,0603N 12100E, +,PH,JPM,"Jose Panganiban, Luzon","Jose Panganiban, Luzon",,1-------,QQ,8103,,1418N 12242E, +,PH,KAR,Karomatan/Iligan,Karomatan/Iligan,,1-------,QQ,8103,,0748N 12343E, +,PH,KAT,Katipunan/Ozamis,Katipunan/Ozamis,,1-------,QQ,8103,,0831N 12317E, +,PH,KIA,Kiamba/Dadiangas,Kiamba/Dadiangas,,1-------,QQ,8103,,0559N 12437E, +,PH,KIP,Kipit/Ozamis,Kipit/Ozamis,,1-------,QQ,8103,,0803N 12229E, +,PH,KIW,Kiwalan/Iligan,Kiwalan/Iligan,,1-------,QQ,8103,,0817N 12416E, +,PH,KLO,Kalibo,Kalibo,,---4----,AI,9401,,1143N 12222E, +,PH,KOL,Kolambugan/Iligan,Kolambugan/Iligan,,1-------,QQ,8103,,0807N 12354E, +,PH,KUM,Kumalarang/Zamboanga,Kumalarang/Zamboanga,,1-------,QQ,8103,,0745N 12309E, +,PH,LAG,Lagonoy/Jose Panganiban,Lagonoy/Jose Panganiban,,1-------,QQ,8103,,1344N 12331E, +,PH,LAN,Lanuza/Bislig,Lanuza/Bislig,,1-------,QQ,8103,,0914N 12604E, +,PH,LBK,Lebak/Parang,Lebak/Parang,,1-------,QQ,8103,,0638N 12404E, +,PH,LBX,Lubang,Lubang,,---4----,AI,0001,,1352N 12007E, +,PH,LGG,Lingig/Bislig,Lingig/Bislig,,1-------,QQ,8103,,0802N 12625E, +,PH,LIA,Lianga/Bislig,Lianga/Bislig,,1-------,QQ,8103,,0838N 12606E, +,PH,LIB,Libjo/Surigao,Libjo/Surigao,,1-------,QQ,8103,,1012N 12532E, +,PH,LIM,Limay/Bataan,Limay/Bataan,,1-------,QQ,8103,,1434N 12036E, +,PH,LIN,"Lingayen, Luzon","Lingayen, Luzon",,1-------,QQ,8103,,1601N 12014E, +,PH,LOM,Lomuyon/Dadiangas,Lomuyon/Dadiangas,,1-------,QQ,8103,,0555N 12447E, +,PH,LPA,Lipa,Lipa,,1-------,QQ,8103,,1356N 12110E, +,PH,LPZ,La Paz/Iloilo,La Paz/Iloilo,,1-------,QQ,8103,,1526N 12044E, +,PH,LUM,Lumasal/Dadiangas,Lumasal/Dadiangas,,1-------,QQ,8103,,0554N 12451E, +,PH,MAA,Maasin,Maasin,,--3-----,RQ,9506,,1008N 12450E, +,PH,MAD,Madaum/Davao,Madaum/Davao,,1-------,QQ,8103,,0723N 12549E, +,PH,MAI,Maitum/Dadiangas,Maitum/Dadiangas,,1-------,QQ,8103,,0604N 12430E, +,PH,MAS,Masao,Masao,,1-------,RQ,9506,,0860N 12529E, +,PH,MBO,Mamburao,Mamburao,,---4----,AI,9401,,1313N 12036E, +,PH,MBT,Masbate,Masbate,,1--4----,AI,9601,,1222N 12337E, +,PH,MCD,Mercedes/Jose Panganiban,Mercedes/Jose Panganiban,,1-------,QQ,8103,,1407N 12301E, +,PH,MCO,Maco/Davao,Maco/Davao,,1-------,QQ,8103,,0722N 12551E, +,PH,MGA,Magalona/Iloilo,Magalona/Iloilo,,1-------,QQ,8103,,1053N 12259E, +,PH,MIL,Milbuk/Dadiangas,Milbuk/Dadiangas,,1-------,QQ,8103,,0609N 12416E, +,PH,MLL,Malalag/Davao,Malalag/Davao,,1-------,QQ,8103,,0636N 12524E, +,PH,MLP,Malabang,Malabang,,---4----,AI,9401,,0736N 12404E, +,PH,MNL,Manila,Manila,,1--45---,AI,9601,,1435N 12059E, +,PH,MNN,Manila North Harbour,Manila North Harbour,,1-3-----,RL,0010,,1436N 12057E, +,PH,MNS,Manila South Harbour,Manila South Harbour,,1-3-----,RL,9805,,1436N 12057E, +,PH,MNY,Manay/Mati,Manay/Mati,,1-------,QQ,8103,,0713N 12632E, +,PH,MON,Monserrat/Mati,Monserrat/Mati,,1-------,QQ,8103,,0636N 12606E, +,PH,MOR,Morong/Mariveles,Morong/Mariveles,,1-------,QQ,8103,,1431N 12114E, +,PH,MPH,Caticlan,Caticlan,,---4----,AI,0001,,1053N 12304E, +,PH,MRQ,Marinduque,Marinduque,,---4----,AI,9601,,1323N 12159E, +,PH,MSC,Masinloc/Sual,Masinloc/Sual,,1-------,QQ,8103,,1532N 11957E, +,PH,MSS,Mission/Aparri,Mission/Aparri,,1-------,QQ,8103,,1815N 12156E, +,PH,MTA,Matina Aplaya/Davao,Matina Aplaya/Davao,,1-------,QQ,8103,,0703N 12534E, +,PH,MUL,Mulanay/Siain,Mulanay/Siain,,1-------,QQ,8103,,1331N 12224E, +,PH,MVS,"Mariveles, Luzon","Mariveles, Luzon",,1-------,QQ,8103,,1426N 12029E, +,PH,MXI,"Mati, Mindanao","Mati, Mindanao",,1--4----,AI,9601,,0657N 12614E, +,PH,NAP,Napsan/Puerto Princesa,Napsan/Puerto Princesa,,1-------,QQ,8103,,0943N 11827E, +,PH,NAS,Nasipit/Masao,Nasipit/Masao,,1-------,QQ,8103,,0859N 12520E, +,PH,NON,Nonoc/Surigao Del Norte,Nonoc/Surigao Del Norte,,1-------,QQ,8103,,0914N 12334E, +,PH,NTO,Nato,Nato,,1-------,RQ,9506,,1026N 12156E, +,PH,OLO,Olongapo,Olongapo,,1-------,RQ,9506,,1450N 12017E, +,PH,ORC,Ormoc/Tacloban,Ormoc/Tacloban,,1--4----,AI,9601,,1100N 12437E, +,PH,ORS,Oras/Catbalogan,Oras/Catbalogan,,1-------,QQ,8103,,1208N 12526E, +,PH,OZC,"Ozamis, Mindanao","Ozamis, Mindanao",,1--4----,AI,9601,,0813N 12346E, +,PH,PAG,Pagadian/Zamboanga,Pagadian/Zamboanga,,1--4----,AI,9601,,0749N 12326E, +,PH,PAM,Pampanga,Pampanga,,1-3-----,RL,9805,,0707N 12539E,Mindanao +,PH,PAS,"Pasay, Luzon","Pasay, Luzon",,1-------,QQ,8103,,1433N 12060E, +,PH,PBA,Port Barton/Palawan,Port Barton/Palawan,,1-------,QQ,8103,,1025N 11911E, +,PH,PCN,Panacan/Davao,Panacan/Davao,,1-------,QQ,8103,,0709N 12540E, +,PH,PGT,Pangutaran/Jolo,Pangutaran/Jolo,,1-------,QQ,8103,,0618N 12034E, +,PH,PHD,Port Holland,Port Holland,,1-------,RQ,9506,,0632N 12152E, +,PH,PIN,Pinamalayan/Batangas,Pinamalayan/Batangas,,1-------,QQ,8103,,1302N 12129E, +,PH,PLA,Plaridel/Ozamis,Plaridel/Ozamis,,1-------,QQ,8103,,1357N 12201E, +,PH,PLC,Polloc,Polloc,,1-3-----,RQ,9506,,0721N 12413E, +,PH,PLP,Palapag/San Jose,Palapag/San Jose,,1-------,QQ,8103,,1233N 12507E, +,PH,PLW,Palawan/Ozamis,Palawan/Ozamis,,1-------,QQ,8103,,0953N 11841E, +,PH,PMT,Pamintayan/Zamboanga,Pamintayan/Zamboanga,,1-------,QQ,8103,,0741N 12305E, +,PH,PNN,Paninirongan/Sanjose,Paninirongan/Sanjose,,1-------,QQ,8103,,1234N 12453E, +,PH,PPL,Pamplona/Aparri,Pamplona/Aparri,,1-------,QQ,8103,,1828N 12120E, +,PH,PPN,Palompon,Palompon,,--3-----,RQ,0101,,1103N 12423E, +,PH,PPS,"Puerto Princesa, Palawan","Puerto Princesa, Palawan",,1--4----,AI,9601,,0945N 11845E, +,PH,PRA,Parang,Parang,,1-------,QQ,8103,,0723N 12416E, +,PH,PRO,Poro/San Fernando,Poro/San Fernando,,1-------,QQ,8103,,1158N 12420E, +,PH,PTL,Puntalinao/Mati,Puntalinao/Mati,,1-------,QQ,8103,,0704N 12557E, +,PH,PUG,Pugad/Bislig,Pugad/Bislig,,1-------,QQ,8103,,1446N 12045E, +,PH,PUL,Pulupandan,Pulupandan,,1-------,RQ,9506,,1031N 12248E, +,PH,QBI,Quinabigan,Quinabigan,,1-------,RQ,9506,,1260N 12129E, +,PH,REA,Real/Siain,Real/Siain,,1-------,QQ,8103,,1440N 12136E, +,PH,RIZ,"Rizal, Luzon","Rizal, Luzon",,--3-----,RQ,0212,,1439N 12115E, +,PH,RLN,Romblon,Romblon,,1-------,QQ,8103,,1235N 12216E, +,PH,RXS,Roxas/Puerto Princesa,Roxas/Puerto Princesa,,1--4----,AI,9601,,1135N 12245E, +,PH,SAG,Sagay/Iloilo,Sagay/Iloilo,,1-------,QQ,8103,,1054N 12325E, +,PH,SAN,Santa Ana/Aparri,Santa Ana/Aparri,,1-------,RQ,0401,,1827N 12209E, +,PH,SAS,Sasa/Davao,Sasa/Davao,,1-------,QQ,8103,,0822N 12619E, +,PH,SAY,Sayao/Batangas,Sayao/Batangas,,1-------,QQ,8103,,1004N 12335E, +,PH,SBG,Sabang,Sabang,,1-------,QQ,8103,,1106N 12524E, +,PH,SBY,Sablayan/Batangas,Sablayan/Batangas,,1-------,QQ,8103,,1251N 12047E, +,PH,SCA,San Carlos/Dumaguete,San Carlos/Dumaguete,,1-------,QQ,8103,,1556N 12021E, +,PH,SCR,Santa Cruz/Sual,Santa Cruz/Sual,,1-------,QQ,8103,,1417N 12125E, +,PH,SCT,Santa Catalina/Dumaguete,Santa Catalina/Dumaguete,,1-------,QQ,8103,,1735N 12022E, +,PH,SDG,Sindangan/Ozamis,Sindangan/Ozamis,,1-------,QQ,8103,,0814N 12260E, +,PH,SFE,"San Fernando, Luzon","San Fernando, Luzon",,1--4----,AI,9601,,1502N 12042E, +,PH,SFS,Subic Bay,Subic Bay,,1--4----,AI,9506,,1449N 12017E, +,PH,SGD,Sogod/Tacloban,Sogod/Tacloban,,1-------,QQ,8103,,1045N 12400E, +,PH,SGS,Sanga Sanga,Sanga Sanga,,---4----,AI,0001,,0503N 11945E, +,PH,SIG,Sigayan/Parang,Sigayan/Parang,,1-------,QQ,8103,,0744N 12346E, +,PH,SIO,San Ignacio/Mati,San Ignacio/Mati,,1-------,QQ,8103,,1107N 12437E, +,PH,SIR,Siari/Ozamis,Siari/Ozamis,,1-------,QQ,8103,,0820N 12259E, +,PH,SIS,San Isidro/Sanjose,San Isidro/Sanjose,,1-------,QQ,8103,,0650N 12605E, +,PH,SIY,Siay/Zamboanga,Siay/Zamboanga,,1-------,QQ,8103,,0742N 12252E, +,PH,SKU,Sultan Kudarat/Dadiangas,Sultan Kudarat/Dadiangas,,1-------,QQ,8103,,0716N 12418E, +,PH,SLU,Santa Lucia/Puerto Princesa,Santa Lucia/Puerto Princesa,,1-------,QQ,8103,,1707N 12027E, +,PH,SMA,Santa Maria/Zamboanga,Santa Maria/Zamboanga,,1-------,QQ,8103,,1449N 12058E, +,PH,SNG,Sangi/Cebu,Sangi/Cebu,,1-------,QQ,8103,,1059N 12439E, +,PH,SNI,Santa Nino,Santa Nino,,1-------,RQ,9506,,1030N 12343E, +,PH,SOR,Sorsogon/Legaspi,Sorsogon/Legaspi,,1-------,QQ,8103,,1258N 12400E, +,PH,SSV,Siasi,Siasi,,---4----,AI,0001,,0533N 12049E, +,PH,STE,San Teodoro/Batangas,San Teodoro/Batangas,,1-------,QQ,8103,,1326N 12101E, +,PH,SUA,Sual,Sual,,1-------,QQ,8103,,1604N 12005E, +,PH,SUG,"Surigao, Mindanao","Surigao, Mindanao",,1--4----,AI,9601,,0942N 12533E, +,PH,TAC,"Tacloban, Leyte","Tacloban, Leyte",,1--4----,AI,9601,,1102N 12502E, +,PH,TAG,"Tagbilaran, Bohol","Tagbilaran, Bohol",,1--4----,AI,9601,,0938N 12351E, +,PH,TAY,Taytay/Puerto Princesa,Taytay/Puerto Princesa,,1-------,QQ,8103,,1434N 12108E, +,PH,TBH,Tablas,Tablas,,---4----,AI,9401,,1223N 12201E, +,PH,TBU,Tagabuli/Davao,Tagabuli/Davao,,1-------,QQ,8103,,0649N 12523E, +,PH,TDC,Tandoc,Tandoc,,1-------,QQ,8103,,1403N 12318E, +,PH,TDG,Tandag/Bislig,Tandag/Bislig,,1--4----,AI,9601,,0905N 12612E, +,PH,TGD,Tagudin/San Fernando,Tagudin/San Fernando,,1-------,QQ,8103,,1656N 12027E, +,PH,TGI,Tuguis/Dadiangas,Tuguis/Dadiangas,,1-------,QQ,8103,,1018N 12254E, +,PH,TGL,Taguilon/Ozamis,Taguilon/Ozamis,,1-------,QQ,8103,,0842N 12324E, +,PH,TIB,Tibungco/Davao,Tibungco/Davao,,1-------,QQ,8103,,0711N 12539E, +,PH,TKW,Tagkawayan/Siain,Tagkawayan/Siain,,1-------,QQ,8103,,1358N 12232E, +,PH,TLD,Toledo/Cebu,Toledo/Cebu,,1-------,QQ,8103,,1022N 12338E, +,PH,TLM,Talomo/Davao,Talomo/Davao,,1-------,QQ,8103,,0732N 12543E, +,PH,TLS,Tolosa/Tacloban,Tolosa/Tacloban,,1-------,QQ,8103,,1104N 12502E, +,PH,TNU,Tanauan/Tacloban,Tanauan/Tacloban,,1-------,QQ,8103,,1405N 12109E, +,PH,TOB,Toboso/Dumaguete,Toboso/Dumaguete,,1-------,QQ,8103,,1043N 12331E, +,PH,TUG,Tuguegarao,Tuguegarao,,---4----,AI,9401,,1737N 12144E, +,PH,TWT,Tawitawi,Tawitawi,,---4----,AI,0001,,0512N 12005E, +,PH,USU,Busuanga,Busuanga,,---4----,AI,0001,,1208N 11956E, +,PH,VCS,"Victorias, Negros","Victorias, Negros",,1-------,QQ,8103,,1054N 12304E, +,PH,VNV,Villanueva,Villanueva,,1-------,RQ,9506,,0835N 12446E, +,PH,VRC,Virac,Virac,,---4----,AI,9401,,1335N 12414E, +,PH,VTO,Vito/Iloilo,Vito/Iloilo,,1-------,QQ,8103,,1031N 12345E, +,PH,WAS,Wasag/Dadiangas,Wasag/Dadiangas,,1-------,QQ,8103,,0617N 12410E, +,PH,WAW,Wawa/Batangas,Wawa/Batangas,,1-------,QQ,8103,,1328N 12045E, +,PH,WNP,Naga/Zamboanga,Naga/Zamboanga,,1--4----,AI,9601,,0748N 12242E, +,PH,XCN,Coron,Coron,,---4----,AI,0001,,1160N 12012E, +,PH,XMA,Maramag,Maramag,,---4----,AI,0001,,0746N 12500E, +,PH,XSO,Siocon/Zamboanga,Siocon/Zamboanga,,1--4----,AI,9601,,0742N 12208E, +,PH,ZAM,Zamboanga,Zamboanga,,1--4----,AI,9601,,0654N 12205E,Mindanao +,PK,AAW,Abbottabad,Abbottabad,,--34----,AI,0701,,3409N 07313E, +,PK,ADK,Kot Addu,Kot Addu,,-23-----,AF,0701,,3023N 07101E, +,PK,ADP,Ahmadpur,Ahmadpur,,--3-----,AF,0701,,2917N 07110E, +,PK,ARF,Arifwala,Arifwala,,-23-----,AF,0701,,3015N 07306E, +,PK,ATG,Attock,Attock,,--34----,AI,0701,,3346N 07222E, +,PK,ATY,Attock City,Attock City,,-2------,AF,0701,,3346N 07222E, +,PK,BAG,Bagh/AJK,Bagh/AJK,,--3-----,AF,0701,,3214N 07440E, +,PK,BDN,Badin,Badin,,-234----,AI,0701,,2429N 06855E, +,PK,BHC,Bhurban,Bhurban,,--34----,AI,0701,,3357N 07327E, +,PK,BHV,Bahawalpur,Bahawalpur,PB,-234----,AI,9601,,2924N 07140E, +,PK,BKR,Bhakkar,Bhakkar,,-23-----,AF,0701,,3317N 07310E, +,PK,BNP,Bannu,Bannu,KP,-234----,AI,1307,,3259N 07036E, +,PK,BPR,Bhai Pheru,Bhai Pheru,,--3-----,AF,0701,,3112N 07356E, +,PK,BRW,Burewala,Burewala,,--3-----,AF,0701,,3008N 07246E, +,PK,CCE,Chichawatni,Chichawatni,,-23-----,AF,0701,,3026N 07241E, +,PK,CCM,Chichoki Mallian,Chichoki Mallian,,-23-----,AF,0701,,3142N 07405E, +,PK,CGM,Changa Manga,Changa Manga,,--3-----,AF,0701,,3105N 07358E, +,PK,CHB,Chilas,Chilas,,--34----,AI,0701,,3525N 07406E, +,PK,CJL,Chitral,Chitral,KP,--34----,AI,1307,,3620N 07217E, +,PK,CKW,Chakwal,Chakwal,,--3-----,AF,0701,,3256N 07252E, +,PK,CSD,Charsadda,Charsadda,,-23-----,AF,0701,,3410N 07148E, +,PK,CSI,Chishtian,Chishtian,,-23-----,AF,0701,,2938N 07250E, +,PK,CWP,Campbellpore,Campbellpore,,---4----,AI,0001,,3346N 07222E, +,PK,DBA,Dalbandin,Dalbandin,BA,-234----,AI,9601,,2854N 06420E, +,PK,DDU,Dadu,Dadu,SD,-234----,AI,9601,,2648N 06750E, +,PK,DEA,Dera Ghazi Khan,Dera Ghazi Khan,PB,-23-----,AS,9304,,3002N 07038E, +,PK,DIR,Dir,Dir,,--3-----,AF,0701,,3513N 07149E, +,PK,DKA,Daska,Daska,,--3-----,AF,0701,,3216N 07424E, +,PK,DRK,Daharki,Daharki,,-23-----,AF,0701,,2803N 06942E, +,PK,DSK,Dera Ismail Khan,Dera Ismail Khan,KP,--34----,AI,1307,,3150N 07055E, +,PK,GAD,Gadoon,Gadoon,IS,--3-----,RQ,0901,,3411N 07241E, +,PK,GHK,Ghakhar,Ghakhar,,--3-----,AF,0701,,3218N 07409E, +,PK,GIL,Gilgit,Gilgit,GB,--34----,AI,1307,,3555N 07419E, +,PK,GKN,Gujar Khan,Gujar Khan,,-23-----,AF,0701,,3315N 07318E, +,PK,GRT,Gujrat,Gujrat,PB,-234----,AI,9601,,3234N 07404E, +,PK,GRW,Gujranwala,Gujranwala,,-23-----,AF,0701,,3209N 07412E, +,PK,GWD,Gwadar,Gwadar,BA,1-34----,AI,9601,,2509N 06220E, +,PK,HDD,Hyderabad,Hyderabad,SD,-234-6--,AI,0701,,2523N 06822E, +,PK,HFD,Hafizabad,Hafizabad,,--3-----,AF,0701,,3204N 07341E, +,PK,HPR,Haripur,Haripur,,--3-----,AF,0701,,3360N 07256E, +,PK,HRA,Mansehra,Mansehra,,--34----,AI,0701,,3420N 07312E, +,PK,HSN,Hassanabdal,Hassanabdal,,--3-----,AF,0701,,3350N 07238E, +,PK,HUB,Hub,Hub,,--3-----,AF,0701,,2502N 06653E, +,PK,HVN,Havelian,Havelian,,-23-----,AF,0701,,3360N 07314E, +,PK,ISB,Islamabad,Islamabad,IS,--345---,AI,9601,,3342N 07304E, +,PK,JAG,Jacobabad,Jacobabad,SD,-234----,AI,9601,,2817N 06825E, +,PK,JGS,Jungshahi,Jungshahi,,-2------,AF,0701,,2451N 06746E, +,PK,JIW,Jiwani,Jiwani,BA,1-34----,AI,9601,,2503N 06145E, +,PK,JLM,Jhal Magsi,Jhal Magsi,,--3-----,AF,0701,,2817N 06727E, +,PK,JLP,Jalalpur,Jalalpur,,--3-----,AF,0701,,3115N 07414E, +,PK,JNG,Jhang,Jhang,,--3-----,AF,0701,,3116N 07219E, +,PK,JNW,Jaranwala,Jaranwala,,-23-----,AF,0701,,3120N 07325E, +,PK,JRD,Jamrud,Jamrud,,--3-----,AF,0701,,3400N 07123E, +,PK,KBH,Kalat,Kalat,,--34----,AI,0701,,2905N 06646E, +,PK,KBW,Kabirwala,Kabirwala,,--3-----,AF,0701,,3151N 07356E, +,PK,KCT,Karachi Container Terminal,Karachi Container Terminal,SD,1-------,RL,0501,,2450N 06658E, +,PK,KDD,Khuzdar,Khuzdar,BA,--34----,AI,9601,,2748N 06637E, +,PK,KDU,Skardu,Skardu,JK,--34----,AI,9601,,3517N 07536E, +,PK,KHB,Khushab,Khushab,,-23-----,AF,0701,,3220N 07219E, +,PK,KHI,Karachi,Karachi,SD,12345---,AI,9601,,2451N 06701E, +,PK,KHP,Khairpur,Khairpur,,-23-----,AF,0701,,2732N 06846E, +,PK,KLU,Kohlu,Kohlu,,--3-----,AF,0701,,2954N 06910E, +,PK,KMB,Kambar,Kambar,,--3-----,AF,0701,,2735N 06760E, +,PK,KML,Kamalia,Kamalia,,--3-----,AF,0701,,3044N 07239E, +,PK,KOL,Kotli/AJK,Kotli/AJK,,--3-----,AF,0701,,3209N 07415E, +,PK,KOT,Kotri,Kotri,,-23-----,AF,0701,,2800N 06810E, +,PK,KPR,Khanpur,Khanpur,,-23-----,AF,0701,,2839N 07039E, +,PK,KUS,Kasur,Kasur,,--3-----,AF,0701,,3107N 07427E, +,PK,KWA,Khewra,Khewra,,-2------,AF,0701,,3238N 07301E, +,PK,KWL,Khanewal,Khanewal,,-23-----,AF,0701,,3028N 07204E, +,PK,KYC,Karachi City,Karachi City,,-2------,AF,0701,,2508N 06724E, +,PK,KZL,Kashmor,Kashmor,,-23-----,AF,0701,,2826N 06935E, +,PK,LHE,Lahore,Lahore,PB,-23456--,AI,0701,,3134N 07419E, +,PK,LKM,Lakki Marwat,Lakki Marwat,,--3-----,AF,0701,,3236N 07055E, +,PK,LLM,Lala Mosa,Lala Mosa,,-23-----,AF,0701,,3242N 07357E, +,PK,LND,Landhi,Landhi,,-23-----,AF,0701,,2450N 06711E, +,PK,LON,Lodhran,Lodhran,,-23-----,AF,0701,,2932N 07138E, +,PK,LPK,Kot Lakhpat,Kot Lakhpat,,-2------,AF,0701,,3128N 07420E, +,PK,LRC,Lahore Cantt,Lahore Cantt,,-2------,AF,0701,,3131N 07423E, +,PK,LRG,Lora Lai,Lora Lai,,---4----,AI,0001,,3022N 06836E, +,PK,LRK,Larkana,Larkana,,-23-----,AF,0701,,2733N 06813E, +,PK,LSB,Lasbela,Lasbela,,--3-----,AF,0701,,2545N 06635E, +,PK,LYP,Faisalabad,Faisalabad,PB,-234-6--,AI,0701,,3125N 07306E, +,PK,MBD,Mandi Bahauddin,Mandi Bahauddin,,-2------,AF,0701,,3235N 07329E, +,PK,MDK,Muridke,Muridke,,-23-----,AF,0701,,3152N 07424E, +,PK,MDX,Mardan,Mardan,,-23-----,AF,0701,,3412N 07203E, +,PK,MFG,Muzaffarabad,Muzaffarabad,JK,-234----,AI,0701,,3422N 07328E, +,PK,MHR,Mehrabpur,Mehrabpur,,-2------,AF,0701,,2606N 06809E, +,PK,MJD,Mohenjodaro,Mohenjodaro,SD,--34----,AI,9601,,2719N 06808E, +,PK,MKD,Malakand,Malakand,,--3-----,AF,0701,,3434N 07156E, +,PK,MLI,Matli,Matli,,--3-----,AF,0701,,2508N 06850E, +,PK,MNG,Mingaora,Mingaora,,--3-----,AF,0701,,3446N 07222E, +,PK,MOR,Moro,Moro,,--3-----,AF,0701,,2640N 06800E, +,PK,MPD,Mirpur Khas (= Sindhri),Mirpur Khas (= Sindhri),SD,-234----,AI,9601,,2532N 06901E, +,PK,MRP,Mirpur Mathelo,Mirpur Mathelo,,-23-----,AF,0701,,2801N 06933E, +,PK,MUL,Multan Cantt,Multan Cantt,,-2------,AF,0701,,3011N 07126E, +,PK,MUX,Multan,Multan,PB,-234-6--,AI,0701,,3012N 07128E, +,PK,MWD,Mianwali,Mianwali,PB,-234----,AI,9601,,3234N 07131E, +,PK,MXC,Multan City,Multan City,,-2------,AF,0701,,3011N 07126E, +,PK,MYH,Mian Channu,Mian Channu,,-23-----,AF,0701,,3027N 07221E, +,PK,MZJ,Muzaffargarh,Muzaffargarh,PB,-23-----,AS,9304,,3009N 07110E, +,PK,NDD,Nok Kundi,Nok Kundi,BA,-23-----,AS,9304,,2849N 06245E, +,PK,NHS,Nushki,Nushki,,---4----,AI,0001,,2933N 06601E, +,PK,NNS,Nankana Sahib,Nankana Sahib,,-23-----,AF,0701,,3127N 07343E, +,PK,NRW,Narowal,Narowal,,-23-----,AF,0701,,3207N 07325E, +,PK,NSR,Nowshera,Nowshera,,-23-----,AF,0701,,3359N 07157E, +,PK,OHT,Kohat,Kohat,KP,-234----,AI,1307,,3334N 07124E, +,PK,OKR,Okara,Okara,,-23-----,AF,0701,,3049N 07327E, +,PK,ORW,Ormara,Ormara,BA,1-34----,AI,9601,,2517N 06442E, +,PK,PAJ,Para Chinar,Para Chinar,,--34----,AI,0701,,3354N 07006E, +,PK,PBI,Pabbi,Pabbi,,--3-----,AF,0701,,3356N 07148E, +,PK,PCT,Pakistan International Container Terminal/Karachi,Pakistan International Container Terminal/Karachi,,1-------,AF,0701,,2449N 06659E, +,PK,PEW,Peshawar,Peshawar,KP,-234----,AI,1307,,3401N 07135E, +,PK,PJG,Panjgur,Panjgur,BA,--34----,AI,9601,,2659N 06408E, +,PK,PNL,Pano Aqil,Pano Aqil,,-23-----,AF,0701,,2752N 06907E, +,PK,PON,Poonch/AJK,Poonch/AJK,,--3-----,AF,0701,,3133N 07418E, +,PK,PSC,Peshawar Cantt,Peshawar Cantt,,-2------,AF,0701,,3401N 07134E, +,PK,PSH,Peshawar City,Peshawar City,,-2------,AF,0701,,3401N 07135E, +,PK,PSI,Pasni,Pasni,BA,1-34----,AI,9601,,2516N 06328E, +,PK,PTO,Pattoki,Pattoki,,-23-----,AF,0701,,3107N 07353E, +,PK,PZH,Zhob,Zhob,BA,-234----,AI,9601,,3112N 06922E, +,PK,QCT,Qasim International Container Terminal/Karachi,Qasim International Container Terminal/Karachi,,1-------,AF,1207,,2446N 06720E, +,PK,QKH,Kharian,Kharian,,---4----,AI,0001,,3249N 07352E, +,PK,RJP,Rajanpur,Rajanpur,,--3-----,AF,0701,,2908N 07015E, +,PK,RND,Raiwind,Raiwind,,-2------,AF,0701,,3120N 07411E, +,PK,ROH,Rohri,Rohri,,-23-----,AF,0701,,2741N 06855E, +,PK,RWP,Rawalpindi,Rawalpindi,PB,-23456--,AI,0701,,3335N 07303E, +,PK,RYK,Rahim Yar Khan,Rahim Yar Khan,PB,-234----,AI,9601,,2825N 07018E, +,PK,SBQ,Sibi,Sibi,,-234----,AI,0701,,2940N 06752E, +,PK,SDK,Sadikabad,Sadikabad,,-23-----,AF,0701,,2819N 07008E, +,PK,SDR,Shahdara Bagh,Shahdara Bagh,,-2------,AF,0701,,3137N 07417E, +,PK,SDT,Saidu Sharif,Saidu Sharif,KP,--34----,AI,1307,,3445N 07221E, +,PK,SDU,Shahdadpur,Shahdadpur,,--3-----,AF,0701,,2601N 06837E, +,PK,SGI,Sargodha,Sargodha,,-234----,AI,0701,,3205N 07241E, +,PK,SHK,Shahdadkot,Shahdadkot,,--3-----,AF,0701,,2754N 06759E, +,PK,SKO,Shorkot Cantt,Shorkot Cantt,,-2------,AF,0701,,3048N 07214E, +,PK,SKP,Sheikhupura,Sheikhupura,,--3-----,AF,0701,,3143N 07359E, +,PK,SKZ,Sukkur,Sukkur,SD,-234----,AI,9601,,2742N 06852E, +,PK,SLL,Sangla Hill,Sangla Hill,,-23-----,AF,0701,,3143N 07323E, +,PK,SMA,Samasata,Samasata,,-2------,AF,0701,,2921N 07132E, +,PK,SMB,Sambrial,Sambrial,,--3--6--,AF,0701,,3230N 07418E, +,PK,SMD,Sammundri,Sammundri,,--3-----,AF,0701,,3104N 07258E, +,PK,SNG,Sanghar,Sanghar,,--3-----,AF,0701,,2603N 06857E, +,PK,SQR,Shabqadar,Shabqadar,,--3-----,AF,0701,,3414N 07134E, +,PK,SRK,Shorkot,Shorkot,,--3-----,AF,0701,,3155N 07053E, +,PK,SUL,Sui,Sui,BA,--34----,AI,9601,,2839N 06911E, +,PK,SWB,Swabi,Swabi,,--3-----,AF,0701,,3406N 07229E, +,PK,SWN,Sahiwal,Sahiwal,,-234----,AI,0701,,3040N 07307E, +,PK,SWV,Shikarpur,Shikarpur,,-234----,AI,0701,,2757N 06838E, +,PK,SXG,Serai Alamgir,Serai Alamgir,,-2------,AF,0701,,3254N 07345E, +,PK,SYW,Sehwen Sharif,Sehwen Sharif,,--34----,AI,0701,,2625N 06752E, +,PK,TDA,Tando Allahyar,Tando Allahyar,,-23-----,AF,0701,,2528N 06843E, +,PK,TFT,Taftan,Taftan,BA,-234----,AI,9304,,2859N 06133E, +,PK,THT,Thatta,Thatta,,--3-----,AF,0701,,2445N 06755E, +,PK,TLB,Tarbela,Tarbela,KP,--34----,AI,1307,,3402N 07241E, +,PK,TMG,Timargara,Timargara,,--3-----,AF,0701,,3450N 07150E, +,PK,TNA,Tando Adam,Tando Adam,,--3-----,AF,0701,,2546N 06839E, +,PK,TOR,Torkham,Torkham,KP,-23----B,AS,1307,,3407N 07106E, +,PK,TTS,Toba Tek Singh,Toba Tek Singh,,-23-----,AF,0701,,3059N 07229E, +,PK,TUK,Turbat,Turbat,BA,--34----,AI,9601,,2600N 06303E, +,PK,TXA,Taxilla,Taxilla,,-23-----,AF,0701,,3345N 07247E, +,PK,UET,Quetta,Quetta,BA,-23456--,AI,0701,,3012N 06701E, +,PK,VHR,Vehari,Vehari,,-23-----,AF,0701,,3001N 07222E, +,PK,WAF,Wana,Wana,,---4----,AI,0001,,3218N 06935E, +,PK,WAH,Wah,Wah,,-23-----,AF,0701,,3346N 07245E, +,PK,WGB,Bahawalnagar,Bahawalnagar,,--34----,AI,0701,,2950N 07312E, +,PK,WGH,Wagah,Wagah,PB,-23-----,AS,9304,,3136N 07433E, +,PK,WNS,Nawabshah,Nawabshah,SD,-234----,AI,9601,,2615N 06824E, +,PK,WZA,Wazirabad,Wazirabad,,--3-----,AF,0701,,3227N 07407E, +,PK,ZRT,Ziarat,Ziarat,,--3-----,AF,0701,,3023N 06744E, +,PL,BAR,Bartoszyce,Bartoszyce,,--3-----,RQ,9501,,5415N 02049E, +,PL,BCA,Bochnia,Bochnia,,--3-----,RL,9805,,4958N 02026E,Tarnow +,PL,BIA,Bialystok,Bialystok,,--3-----,RQ,9501,,5308N 02310E, +,PL,BIK,Biskupiec,Biskupiec,WN,--3-----,RQ,0901,,5352N 02057E, +,PL,BKW,Biskupice,Biskupice,WP,--3-----,RQ,0901,,5109N 02257E, +,PL,BLS,Bielsk Podlaski,Bielsk Podlaski,,--3-----,RQ,9705,,5246N 02312E, +,PL,BNO,Banino,Banino,,--3-----,RQ,0101,,5424N 01825E, +,PL,BTS,Bialka Tatrzanska,Bialka Tatrzanska,MA,--3-----,RQ,0901,,4924N 02006E, +,PL,BYC,Byczyna,Byczyna,OP,1-------,RQ,0901,,5107N 01813E, +,PL,BYT,Bytom,Bytom,,--3-5---,AI,9601,,5022N 01852E, +,PL,CEL,Celestynow,Celestynow,02,--3-----,RQ,0901,,5122N 02142E, +,PL,CHD,Chodziez,Chodziez,,-23-----,RQ,9705,,5259N 01655E, +,PL,CRW,Chorzow,Chorzow,,--3-----,RL,0002,,5017N 01858E, +,PL,CZW,Czestochowa,Czestochowa,,---4----,AI,0001,,5049N 01907E, +,PL,DCE,Dobczyce,Dobczyce,,--3-----,RQ,9806,,4953N 02005E, +,PL,DLN,Doluje,Doluje,02,--3-----,RQ,0901,,5326N 01424E, +,PL,GCW,Goclaw,Goclaw,,0-------,RQ,9811,,5225N 01905E, +,PL,GDN,Gdansk,Gdansk,,1--4----,AI,9601,,5422N 01837E, +,PL,GKI,Glinki,Glinki,,1-------,RQ,9811,,5331N 02205E, +,PL,GLO,Gluchowo,Gluchowo,,--3-----,RQ,0407,,5312N 01833E, +,PL,GNW,Gniewkowo,Gniewkowo,,--3-----,RL,9901,,5254N 01824E, +,PL,GOG,Gogolin,Gogolin,02,--3-----,RQ,0901,,5030N 01801E, +,PL,GPS,Grodzisk,Grodzisk,MZ,--3-----,RQ,0901,,5235N 02244E, +,PL,GRU,Grudziadz,Grudziadz,,--3-----,RQ,9501,,5328N 01846E, +,PL,GSL,Gora Slaska,Gora Slaska,,--3-----,RQ,0401,,5140N 01632E, +,PL,GZK,Grodzisk Wielkopolski,Grodzisk Wielkopolski,,--3-----,RQ,0101,,5214N 01622E, +,PL,IBN,Izabelin,Izabelin,,--3-----,RQ,0101,,5242N 01927E, +,PL,IEG,Zielona Gora,Zielona Gora,,---4----,AI,0001,,5156N 01530E, +,PL,JAR,Jaroslaw,Jaroslaw,,--3-----,RQ,9501,,5001N 02241E, +,PL,JKO,Jastkowice,Jastkowice,,--3-----,RQ,9705,,5036N 02206E, +,PL,JRT,Jurata,Jurata,,--3-----,RL,0101,,5441N 01843E, +,PL,KAL,Kalisz,Kalisz,,--3-----,RQ,9501,,5145N 01805E, +,PL,KIE,Sulkowice,Sulkowice,MZ,-23-----,RL,0901,,5156N 02105E, +,PL,KKE,Krapkowice,Krapkowice,,--3-----,RQ,0101,,5028N 01758E, +,PL,KLC,Kielce,Kielce,,--3-----,RQ,9501,,5051N 02037E, +,PL,KLI,Klikawa,Klikawa,,0-------,RQ,9307,,5125N 02155E, +,PL,KLO,Klodzko,Klodzko,,--3-----,RQ,9501,,5026N 01639E, +,PL,KLU,Kluczbork,Kluczbork,,--3-----,RQ,9501,,5058N 01813E, +,PL,KRA,Krasnystaw,Krasnystaw,,--3-----,RQ,9501,,5059N 02310E, +,PL,KRK,Krakow,Krakow,,---4----,AI,9601,,5003N 01960E, +,PL,KTW,Katowice,Katowice,,--345---,AI,9601,,5013N 01900E, +,PL,KUT,Kutno,Kutno,,--3-----,RQ,9705,,5213N 01923E, +,PL,KWD,Kwidzyn,Kwidzyn,,-23-----,RQ,9705,,5344N 01856E, +,PL,KYK,Kamyk,Kamyk,24,1----6--,RL,1107,,4954N 02019E, +,PL,LBR,Lubartow,Lubartow,,--3-----,RQ,9705,,5128N 02236E, +,PL,LEG,Legnica,Legnica,,--3-----,RQ,9501,,5112N 01610E, +,PL,LOW,Lowicz,Lowicz,,--3-----,RQ,9501,,5206N 01957E, +,PL,LUB,Lubawa,Lubawa,,--3-----,RQ,9501,,5330N 01945E, +,PL,LUL,Lublin,Lublin,,--3-----,RQ,9501,,5113N 02233E, +,PL,LWK,Lubawka,Lubawka,,--3-----,RQ,9705,,5042N 01600E, +,PL,MAK,Makow,Makow,,--3-----,RQ,9501,,5252N 02106E, +,PL,MIA,Modlinica,Modlinica,,--3-----,RQ,0101,,5008N 01952E, +,PL,MKI,Marki,Marki,,--3-----,RQ,0101,,5220N 02106E, +,PL,MLA,Mlawa,Mlawa,,--3-----,RQ,9501,,5307N 02023E, +,PL,MLB,Malbork,Malbork,,-23-----,RQ,9705,,5402N 01902E, +,PL,MLZ,Milicz,Milicz,,-2------,RQ,9705,,5132N 01717E, +,PL,MUR,Murowana Goslina,Murowana Goslina,,--3-----,RQ,9501,,5235N 01701E, +,PL,MYL,Myslowice,Myslowice,,0-------,RQ,9307,,5014N 01908E, +,PL,MYS,Myslakowice,Myslakowice,,0-------,RQ,9307,,5051N 01550E, +,PL,NIS,Nisko,Nisko,,--3-----,RQ,9501,,5031N 02208E, +,PL,NPL,Niepolomice,Niepolomice,,--3-----,RQ,9704,,5002N 02013E, +,PL,OAI,Omianki,Omianki,,--3-----,RQ,9806,,5220N 02053E, +,PL,OIE,Ostrowiec,Ostrowiec,,--3-----,RL,9805,,5210N 02003E, +,PL,OLC,Olecko,Olecko,,--3-----,RQ,9705,,5402N 02230E, +,PL,OLS,Olsztyn,Olsztyn,,--3-----,RQ,9501,,5347N 02029E, +,PL,OPA,Opatow,Opatow,,--3-----,RQ,9501,,5048N 02125E, +,PL,OPO,Opole,Opole,,--3-----,RQ,9501,,5041N 01756E, +,PL,ORN,Orneta,Orneta,,--3-----,RQ,9501,,5407N 02008E, +,PL,OSZ,Koszalin,Koszalin,,--34----,AI,9601,,5411N 01611E, +,PL,OWK,Ostrow Wielkopolski,Ostrow Wielkopolski,,--3-----,RQ,9705,,5139N 01749E, +,PL,PAB,Pabjanice,Pabjanice,,--3-----,RQ,9501,,5140N 01921E, +,PL,PIL,Pila,Pila,,0-------,RQ,9307,,5309N 01644E, +,PL,PIO,Piotrkow,Piotrkow,,--3-----,RQ,9501,,5125N 01941E, +,PL,PLC,Police,Police,,1-------,RQ,9506,,5333N 01434E, +,PL,POZ,Poznan,Poznan,,---4----,AI,9601,,5224N 01656E, +,PL,PRC,Parczew,Parczew,,-2------,RQ,9705,,5138N 02254E, +,PL,PRU,Prudnik,Prudnik,,--3-----,RQ,9501,,5019N 01735E, +,PL,PRZ,Przemysl,Przemysl,,----5---,AI,9805,,4947N 02247E, +,PL,PYS,Pyskowice,Pyskowice,,--3-----,RQ,9501,,5024N 01838E, +,PL,PZA,Praszka,Praszka,,--3-----,RL,9805,,5103N 01827E, +,PL,PZG,Pruszcz Gdanski,Pruszcz Gdanski,,--3-----,RQ,0101,,5416N 01839E, +,PL,PZY,Przysucha,Przysucha,,--3-----,RQ,9501,,5122N 02038E, +,PL,QAZ,Zakopane,Zakopane,,---4----,AI,0001,,4918N 01957E, +,PL,QEP,Tarnobrzeg,Tarnobrzeg,,---4----,AI,0001,,5034N 02140E, +,PL,QKD,Elk,Elk,,---4----,AI,0001,,5349N 02222E, +,PL,QXQ,Stalowa Wola,Stalowa Wola,,---4----,AI,0001,,5034N 02204E, +,PL,RAD,Radomsko,Radomsko,,--3-----,RQ,9501,,5104N 01927E, +,PL,RAW,Rawicz,Rawicz,,--3-----,RQ,9501,,5137N 01652E, +,PL,RDM,Radom,Radom,,--3-----,RL,9811,QXR,5124N 02109E, +,PL,RGZ,Rudna gwizdanow,Rudna gwizdanow,,--3-----,RQ,9705,,5132N 01617E, +,PL,RIA,Krobia,Krobia,02,--3-----,RQ,0901,,5317N 02128E, +,PL,SDC,Siedlce,Siedlce,,--3-----,RQ,0201,,5210N 02217E, +,PL,SIR,Sieradz,Sieradz,,--3-----,RQ,9501,,5136N 01844E, +,PL,SKI,Skierniewice,Skierniewice,,--3-----,RQ,9501,,5157N 02009E, +,PL,SKW,Skwierzyna,Skwierzyna,,--3-----,RQ,9705,,5236N 01530E, +,PL,SLP,Slupsk,Slupsk,,--3-----,RL,9811,,5428N 01701E, +,PL,SNK,Sanok,Sanok,,--3-----,RL,9912,,4934N 02213E, +,PL,SOK,Sokolka,Sokolka,,--3-----,RQ,9501,,5324N 02330E, +,PL,SRW,Sroda,Sroda,,--3-----,RQ,9501,,5110N 01636E, +,PL,SWC,Sosnowiec,Sosnowiec,,--3-----,RQ,9806,,5016N 01913E, +,PL,SWL,Suwalki,Suwalki,,--3-----,RQ,9705,,5406N 02256E, +,PL,SZY,Szymany,Szymany,,---4----,AI,0001,,5338N 02230E, +,PL,SZZ,Szczecin,Szczecin,,1--45---,AI,9601,,5326N 01436E, +,PL,TAR,Tarnow,Tarnow,,--3-----,RQ,9501,,5002N 02058E, +,PL,TOR,Torun,Torun,,--3-----,RQ,9501,,5301N 01836E, +,PL,TRA,Trawniki,Trawniki,,0-------,RQ,9307,,5019N 01759E, +,PL,TUC,Tuchola,Tuchola,,--3-----,RQ,9501,,5335N 01752E, +,PL,TYY,Tychy,Tychy,,--3-----,RQ,9806,,5008N 01900E, +,PL,TZA,Trzcianka,Trzcianka,,--3-----,RL,0101,,5303N 01628E, +,PL,TZW,Tczew,Tczew,,--3-----,RL,9811,,5405N 01848E, +,PL,WIA,Wisznia Mala,Wisznia Mala,,--3-----,RQ,0207,,5115N 01703E, +,PL,WLM,Wolomin,Wolomin,,-2------,RQ,9705,,5221N 02115E, +,PL,WLO,Wloclawek,Wloclawek,,--3-----,RQ,9501,,5240N 01906E, +,PL,WOI,Wolow,Wolow,,--3-----,RL,9901,,5120N 01639E, +,PL,WRO,Wroclaw,Wroclaw,,---4----,AI,9601,,5107N 01702E, +,PL,WWE,Wilkowice,Wilkowice,,--3-----,RQ,9806,,5057N 01706E, +,PL,WZA,Wrzesnia,Wrzesnia,,--3-----,RQ,0101,,5220N 01734E, +,PL,WZH,Walbrzych,Walbrzych,,--3-----,RL,0002,,5047N 01617E, +,PL,ZAB,Zabrze,Zabrze,,--3-----,RQ,9501,,5019N 01847E, +,PL,ZAG,Zagan,Zagan,,0-------,RQ,9501,,5008N 02004E, +,PL,ZAM,Zamosc,Zamosc,,--3-----,RQ,9501,,5043N 02316E, +,PL,ZDU,Zdunska Wola,Zdunska Wola,,--3-----,RQ,9501,,5136N 01856E, +,PL,ZDY,Zduny,Zduny,,--3-----,RQ,0201,,5138N 01722E, +,PL,ZWR,Zawiercie,Zawiercie,,--3-----,RQ,9705,,5029N 01926E, +,PN,PCN,Pitcairn Is,Pitcairn Is,,1---5---,AI,9601,,2504S 13006W, +,PR,ADJ,Adjuntas,Adjuntas,,--3-----,RQ,9307,,1810N 06643W, +,PR,AGU,Aguada,Aguada,,0-------,RQ,9307,,1823N 06711W, +,PR,ANA,Anasco,Anasco,,--3-----,RQ,9307,,1817N 06708W, +,PR,ARE,Arecibo,Arecibo,,1--4----,AI,9601,,1828N 06643W, +,PR,BAR,Barceloneta,Barceloneta,,--3-----,RQ,9307,,1827N 06632W, +,PR,BAS,Barranquitas,Barranquitas,,0-------,RQ,9307,,1811N 06618W, +,PR,BAY,Bayamon,Bayamon,,--3-----,RQ,9307,,1823N 06609W, +,PR,BQN,Aguadilla,Aguadilla,,1--4----,AI,9601,,1829N 06709W, +,PR,CAM,Camuy,Camuy,,--3-----,RQ,9307,,1829N 06651W, +,PR,CAR,Carolina,Carolina,,--3-----,RQ,9307,,1823N 06558W, +,PR,CAT,Catano,Catano,,--3-----,RQ,9307,,1826N 06607W, +,PR,CAY,Cayey,Cayey,,--3-----,RQ,9307,,1807N 06610W, +,PR,COA,Coamo,Coamo,,--3-----,RQ,9307,,1805N 06621W, +,PR,CUP,"Cupey, San Juan","Cupey, San Juan",,0-------,RQ,9307,,1821N 06603W, +,PR,DDP,Dorado,Dorado,,--34----,AI,9601,,1828N 06616W, +,PR,FAJ,Fajardo,Fajardo,,---4----,AI,9601,,1820N 06539W, +,PR,GMA,Guayama,Guayama,,0-------,RQ,9307,,1759N 06607W, +,PR,GUO,Guaynabo,Guaynabo,,0-------,RQ,9307,,1822N 06606W, +,PR,GUR,Gurabo,Gurabo,,0-------,RQ,9307,,1815N 06558W, +,PR,HTL,Hatillo,Hatillo,,--3-----,RQ,9307,,1829N 06649W, +,PR,HUC,Humacao,Humacao,,--34----,AI,2101,,1809N 06550W, +,PR,ISB,Isabela,Isabela,,--3-----,RQ,9705,,1831N 06704W, +,PR,JAY,Jayuya,Jayuya,,--3-----,RQ,9307,,1813N 06635W, +,PR,JDI,Juana Diaz,Juana Diaz,,0-------,RQ,9307,,1803N 06630W, +,PR,JUN,Juncos,Juncos,,--3-----,RQ,9307,,1814N 06555W, +,PR,LAM,Las Mareas (Guayama),Las Mareas (Guayama),,1-------,RQ,9506,,1756N 06611W, +,PR,LJS,Lajas,Lajas,,0-------,RQ,9307,,1803N 06704W, +,PR,LUQ,Luquillo,Luquillo,,--3-----,RQ,9307,,1822N 06543W, +,PR,MAR,Maricao,Maricao,,0-------,RQ,9307,,1810N 06657W, +,PR,MAZ,Mayag�ez,Mayaguez,,1--4----,AI,9601,,1812N 06708W, +,PR,NAG,Naguabo,Naguabo,,--3-----,RQ,9307,,1814N 06546W, +,PR,NRR,Roosevelt Roads,Roosevelt Roads,,---4----,AI,0001,,1815N 06539W, +,PR,PEN,Penuelas,Penuelas,,0-------,RQ,9307,,1804N 06643W, +,PR,PSE,Ponce,Ponce,,1--4----,AI,9601,,1801N 06637W, +,PR,SGR,Sabana Grande,Sabana Grande,,0-------,RQ,9307,,1805N 06658W, +,PR,TBJ,Toa Baja,Toa Baja,,0-------,RQ,9307,,1827N 06616W, +,PR,VAL,Vega Alta,Vega Alta,,--3-----,RQ,9307,,1825N 06620W, +,PR,VBA,Vega Baja,Vega Baja,,--3-----,RQ,9307,,1827N 06623W, +,PR,VQS,Vieques,Vieques,,---4----,AI,9601,,1808N 06526W, +,PR,YAB,Yabucoa,Yabucoa,,--3-----,RQ,9501,,1803N 06553W, +,PR,YAU,Yauco,Yauco,,--3-----,RQ,9307,,1802N 06651W, +,PT,AGA,Aguada de Cima,Aguada de Cima,01,--3-----,RQ,0901,,4031N 00825W, +,PT,BAO,Barro,Barro,01,1-3-----,RQ,0901,,4032N 00828W, +,PT,BBN,Baixa da Banheira,Baixa da Banheira,15,--3-----,RN,0401,,3840N 00902W, +,PT,BEI,Beijos,Beijos,18,1-3-----,RQ,0901,,4032N 00760W, +,PT,BRA,Joane,Joane,03,1-3-----,RQ,0901,,4126N 00825W, +,PT,CBN,Casal dos Bernardos,Casal dos Bernardos,14,--3-----,RN,0401,,3946N 00832W, +,PT,CEO,Canedo,Canedo,01,--3-----,RN,0401,,4101N 00827W, +,PT,COR,Coronado-Sao Mamede,Coronado-Sao Mamede,,--3-----,RL,0901,,4116N 00834W, +,PT,CXP,Charneca da Caparica,Charneca da Caparica,15,-23-----,RN,0401,,3836N 00911W, +,PT,EAS,Santa Eulalia de Arnoso,Santa Eulalia de Arnoso,03,--3-----,RQ,0901,,4128N 00831W, +,PT,ESP,Espinho,Espinho,18,--3-----,RQ,0401,,4034N 00748W,3 Espinho in Viseu +,PT,FNF,Fern�o Ferro,Fernao Ferro,15,--3-----,RN,0401,,3834N 00905W, +,PT,FVD,Feira,Feira,16,-----6--,RQ,0901,,4159N 00823W, +,PT,GUA,Guardizela,Guardizela,03,1-3-----,RQ,0901,,4123N 00822W, +,PT,IOR,Penamaior,Penamaior,13,1-------,RQ,0901,,4117N 00825W, +,PT,LXA,Lixa,Lixa,13,--3-----,RN,0401,,4119N 00809W, +,PT,MLR,Milharado,Milharado,11,1-------,RQ,0901,,3857N 00912W, +,PT,MUS,Murches,Murches,11,1-------,RQ,0901,,3844N 00926W, +,PT,OUT,Outeiro,Outeiro,03,--3-----,RQ,0401,,4139N 00821W,4 Outiero in Braga +,PT,PID,Piedade,Piedade,,--3-----,RQ,9501,,3825N 02804W, +,PT,POB,Pombal,Pombal,,--3-----,RQ,9501,,3955N 00838W, +,PT,SMF,Santa Maria da Feira,Santa Maria da Feira,01,--3--6--,RN,0401,,4056N 00833W, +,PT,SMI,S�o Miguel,Sao Miguel,,1-------,RQ,0401,,3749N 02528W, +,PT,TUN,Tunes,Tunes,01,1-------,RQ,0901,,3710N 00816W, +,PT,VDV,Venda do Pinheiro,Venda do Pinheiro,11,1-------,RQ,0901,,3855N 00914W, +,PT,VIF,Vila Moura,Vila Moura,08,--3-----,RQ,0901,,4109N 00804W, +,PT,ZGA,Cortegaca,Cortegaca,,-----6--,RQ,0901,,4057N 00838W, +,PW,ANG,Angaur,Angaur,,1-------,RQ,9506,,0654N 13408E, +,PW,ROR,Koror,Koror,,1--4----,AI,9601,,0721N 13429E, +,PY,AGT,Ciudad del Este,Ciudad del Este,,1--4----,AI,9612,,2531S 05437W, +,PY,AYO,Ayolas,Ayolas,,---4----,AI,0001,,2723S 05651W, +,PY,ESG,Mariscal Estigarribia,Mariscal Estigarribia,,---4----,AI,0001,,2202S 06036W, +,PY,FLM,Filadelfia,Filadelfia,,---4----,AI,0001,,2221S 06002W, +,PY,ITE,Ita Enramada,Ita Enramada,,1-------,AI,9401,,2521S 05738W, +,PY,PIL,Pilar,Pilar,,--34----,RL,9805,,2651S 05818W, +,PY,PJC,Pedro Juan Caballero,Pedro Juan Caballero,,---4----,AI,0001,,2233S 05544W, +,PY,SAN,San Antonio,San Antonio,,1-------,RQ,9506,,2525S 05735W, +,PY,SLO,San Lorenzo,San Lorenzo,,----5---,AI,9805,,2521S 05731W, +,PY,VLL,Villeta,Villeta,,1-------,AI,9401,,2530S 05734W, +,PY,VMI,Vallemi,Vallemi,,---4----,AI,0001,,2209S 05757W, +,QA,DOH,Doha,Doha,DA,1--45---,AI,1307,,2517N 05132E, +,QA,HAL,Halul,Halul,,1-----7-,RQ,2201,,2540N 05225E, +,RE,LEU,Saint-Leu,Saint-Leu,,1-------,RL,1901,,2110S 05517E, +,RE,SLO,Saint-Louis,Saint-Louis,,--3-----,RL,1901,,2117S 05525E, +,RO,APA,Apahida,Apahida,B,--3-----,RQ,0901,,4648N 02345E, +,RO,ARW,Arad,Arad,,-2-4----,AI,9601,,4611N 02119E, +,RO,BAI,Balesti,Balesti,,--3-----,RQ,0507,,4643N 02732E, +,RO,BAY,Baia Mare,Baia Mare,,-2-4----,AI,9401,,4739N 02334E, +,RO,BCM,Bacau,Bacau,,-2-4----,AI,9601,,4633N 02655E, +,RO,BCV,Bucov,Bucov,PH,--3-----,RQ,1001,,4458N 02605E, +,RO,BII,Brazii,Brazii,AR,--3-----,RQ,1101,,4614N 02220E, +,RO,BIT,Bistrita,Bistrita,,-2------,AC,8309,,4708N 02430E, +,RO,BOB,Bobota,Bobota,,-23-----,RL,0601,,4723N 02246E, +,RO,BOS,Botosani,Botosani,,-2------,AC,8309,,4745N 02640E, +,RO,BRV,Brasov,Brasov,,-2------,AC,8309,,4539N 02537E, +,RO,BUB,Bucuresti Basarab,Bucuresti Basarab,,-2------,AC,8309,,4427N 02604E, +,RO,BUH,Bucuresti,Bucuresti,,-2-45---,AC,9506,,4426N 02606E, +,RO,BUN,Bucuresti Nord,Bucuresti Nord,,-2--5---,AC,8309,,4427N 02604E, +,RO,BUZ,Buzau,Buzau,,-2------,AC,8309,,4509N 02650E, +,RO,CAR,Carei,Carei,,-2------,AC,8309,,4741N 02228E, +,RO,CCV,Corcova,Corcova,MH,--3--6--,RL,1107,,4442N 02303E, +,RO,CNM,Comisani,Comisani,DB,1----6--,RL,1107,,4452N 02535E, +,RO,CRA,Craiova,Craiova,,-2-4----,AI,9601,,4419N 02348E, +,RO,CSB,Caransebes,Caransebes,,---4----,AI,9601,,4525N 02213E, +,RO,CUT,Curtici,Curtici,,-2------,AC,8309,,4621N 02118E, +,RO,DGV,Draganesti-Vlasca,Draganesti-Vlasca,B,--3-----,RQ,0901,,4406N 02536E, +,RO,DOR,Dornesti,Dornesti,,-2------,AC,8309,,4752N 02600E, +,RO,FAC,Falciu,Falciu,,-2------,AC,8309,,4618N 02809E, +,RO,FOS,Focsani,Focsani,,-2------,AC,8309,,4542N 02711E, +,RO,FTE,Frecatei,Frecatei,,1----6--,RL,1107,,4558N 02705E, +,RO,GRN,Giurgiu Nord,Giurgiu Nord,,-2------,AC,8309,,4355N 02558E, +,RO,HAL,Halmeu,Halmeu,,-23-----,AC,8309,,4759N 02301E, +,RO,JIL,Jimbolia,Jimbolia,,-23-----,AC,8309,,4548N 02043E, +,RO,JUD,Jud. Maramures,Jud. Maramures,,--3-----,RQ,0201,,4740N 02400E, +,RO,LUT,Lutita,Lutita,HR,1----6--,RL,1107,,4615N 02511E, +,RO,NAD,Naidas,Naidas,,--3-----,AC,8309,,4453N 02135E, +,RO,NEV,Negru Voda,Negru Voda,,-2------,AC,8309,,4349N 02813E, +,RO,NIB,Nicolae Balcescu,Nicolae Balcescu,,-2------,AC,8309,,4629N 02655E, +,RO,NIN,Nicolina,Nicolina,,-2------,AC,8309,,4709N 02735E, +,RO,OAA,Toaca,Toaca,MS,-----6--,RL,1107,,4648N 02458E, +,RO,OMR,Oradea,Oradea,,-2-4----,AI,9601,,4703N 02156E, +,RO,PDM,Poienarii de Muscel,Poienarii de Muscel,,--3-----,RL,0607,,4512N 02504E, +,RO,PEC,Peciu Nou,Peciu Nou,,--3-----,RL,1107,,4536N 02103E, +,RO,PEI,Petrosani,Petrosani,,--3-----,RQ,0201,,4525N 02322E, +,RO,PIN,Piatra Neamt,Piatra Neamt,,-2------,AC,8309,,4656N 02623E, +,RO,PIT,Pitesti,Pitesti,,-2------,AC,8309,,4451N 02452E, +,RO,RAU,Radauti,Radauti,,-2------,AC,8309,,4751N 02555E, +,RO,REN,Resita Nord,Resita Nord,,-2------,AC,8309,,4519N 02152E, +,RO,RES,Resita Sud,Resita Sud,,-2------,AC,8309,,4518N 02153E, +,RO,RZV,Roznov,Roznov,,0-------,RQ,9012,,4650N 02631E, +,RO,SAT,Salonta,Salonta,,-2------,AC,8309,,4648N 02140E, +,RO,SBZ,Sibiu,Sibiu,,-2-4----,AI,9601,,4548N 02409E, +,RO,SCV,Suceava,Suceava,,---4----,AI,9601,,4739N 02615E, +,RO,SIM,Sighetu Marmatiei,Sighetu Marmatiei,,-2------,AC,8309,,4756N 02353E, +,RO,SJS,Simleu Silvaniei,Simleu Silvaniei,SJ,--3-----,RQ,1101,,4714N 02248E, +,RO,SOL,Socola,Socola,,-2------,AC,8309,,4708N 02737E, +,RO,SOM,Someseni,Someseni,,-2------,AC,8309,,4745N 02312E, +,RO,SUJ,Satu Mare,Satu Mare,,---4----,AI,9601,,4747N 02252E, +,RO,TSR,Timisoara,Timisoara,,---4----,AI,9601,,4545N 02114E, +,RO,URZ,Urziceni,Urziceni,,--3-----,QQ,0212,,4443N 02638E, +,RO,VAM,Valea Luimihai,Valea Luimihai,,-2------,AC,8309,,4731N 02208E, +,RO,VAS,Varsand,Varsand,,--3-----,AC,8309,,4623N 02133E, +,RO,VAV,Vama Veche,Vama Veche,,--3-----,AC,8309,,4345N 02834E, +,RO,VIS,Vicsani,Vicsani,,-2------,AC,8309,,4756N 02559E, +,RO,ZUI,Lazuri,Lazuri,DB,1----6--,RL,1107,,4751N 02252E, +,RU,AAQ,Anapa,Anapa,,---4----,AI,9811,,4454N 03719E, +,RU,ABS,Akhtubinsk,Akhtubinsk,,0-------,RL,0003,,4817N 04610E, +,RU,ACS,Achinsk,Achinsk,,---4----,AI,0001,,5616N 09030E, +,RU,ADH,Aldan,Aldan,,---4----,AI,0001,,5837N 12523E, +,RU,AGI,Aginskoye,Aginskoye,,--3-----,QQ,0212,,5106N 11432E, +,RU,AHR,Akhtari,Akhtari,,0-------,RQ,9811,,4603N 03811E, +,RU,ARH,Arkhangelsk,Arkhangelsk,,1--4----,AI,9601,,6433N 04032E, +,RU,ARM,Arman (Magadan),Arman (Magadan),,1-------,QQ,8012,,5940N 15008E, +,RU,ASF,Astrakhan,Astrakhan,,1--4----,AI,9601,,4621N 04802E, +,RU,ATK,Almetyevsk,Almetyevsk,,--3-----,RQ,9806,,5454N 05218E, +,RU,AZO,Azov,Azov,,1-------,QQ,9207,,4707N 03926E, +,RU,BAX,Barnaul,Barnaul,,---4----,AI,0001,,5321N 08347E, +,RU,BCX,Beloreck,Beloreck,,---4----,AI,0001,,5358N 05825E, +,RU,BEL,Belushye,Belushye,,1-------,QQ,9207,,7132N 05221E, +,RU,BEM,Belomorsk,Belomorsk,,1-------,QQ,9207,,6431N 03446E, +,RU,BER,"Beringovskiy, Port","Beringovskiy, Port",,1-------,QQ,9207,,6303N 17922E, +,RU,BGR,Bagrationovsk,Bagrationovsk,,-2------,QQ,9207,,5423N 02038E, +,RU,BIY,Biysk,Biysk,,-2------,QQ,9207,,5232N 08513E, +,RU,BLT,Baltiysk,Baltiysk,,1-------,QQ,9207,,5439N 01954E, +,RU,BQS,Blagoveschensk,Blagoveschensk,,--34----,AI,0003,,5016N 12732E, +,RU,BTK,Bratsk,Bratsk,,---4----,AI,9601,,5609N 10138E, +,RU,BWO,Balakovo,Balakovo,,---4----,AI,9811,,5201N 04749E, +,RU,CEE,Cherepovets,Cherepovets,,1--4----,AI,9601,,5908N 03755E, +,RU,CEK,Chelyabinsk,Chelyabinsk,,-2-4----,AI,2007,,5510N 06124E, +,RU,CKH,Chokurdah,Chokurdah,,---4----,AI,0001,,7038N 14754E, +,RU,CKL,Chkalovsky,Chkalovsky,,---4----,AI,0001,,5553N 03804E, +,RU,CNN,Chulman,Chulman,,---4----,AI,0001,,5650N 12454E, +,RU,CYX,Cherskiy,Cherskiy,,---4----,AI,0001,,6845N 16120E, +,RU,DKA,De-Kastri,De-Kastri,,1-------,QQ,9207,,5129N 14046E, +,RU,DKS,Dikson,Dikson,,---4----,AI,0001,,7330N 08030E, +,RU,DUD,Dudinka,Dudinka,,1-------,QQ,9207,,6924N 08611E, +,RU,DYR,Anadyr,Anadyr,,1--4----,AI,9601,,6444N 17730E, +,RU,EGO,Belgorod,Belgorod,,---4----,AI,0001,,5036N 03635E, +,RU,EGV,Egvekinot,Egvekinot,,1-------,QQ,9207,,6619N 17907W, +,RU,EIE,Eniseysk,Eniseysk,,---4----,AI,0001,,5828N 09208E, +,RU,ESL,Elista,Elista,,---4----,AI,0001,,4618N 04416E, +,RU,GDG,Magdagachi,Magdagachi,,---4----,AI,0001,,5327N 12548E, +,RU,GDX,Magadan,Magadan,,---4----,AI,0001,,5934N 15048E, +,RU,GDZ,Gelendzik,Gelendzik,,---4----,AI,0001,,4434N 03805E, +,RU,GOJ,Nizhniy Novgorod (ex Gorkiy),Nizhniy Novgorod (ex Gorkiy),,12-4----,AI,2007,,5620N 04400E, +,RU,GRH,Gremikha,Gremikha,,1-------,QQ,9207,,6804N 03933E, +,RU,GRK,Grodekovo,Grodekovo,,-2------,QQ,9207,,4352N 13309E, +,RU,GRV,Groznyj,Groznyj,,---4----,AI,0001,,4319N 04542E, +,RU,HGO,Chernogolovka,Chernogolovka,MOS,--3-----,RQ,0901,,5600N 03823E, +,RU,HTA,Chita,Chita,,---4----,AI,0001,,5202N 11330E, +,RU,HTG,Hatanga,Hatanga,,---4----,AI,0001,,7159N 10228E, +,RU,IAA,Igarka,Igarka,,1--4----,AI,9601,,6727N 08632E, +,RU,IAR,Yaroslavl,Yaroslavl,,1--4----,AI,9601,,5738N 03954E, +,RU,IJK,Izhevsk,Izhevsk,,---4----,AI,0001,,5652N 05313E, +,RU,IKS,Tiksi,Tiksi,,1--4----,AI,9601,,7138N 12852E, +,RU,IKT,Irkutsk,Irkutsk,,-2-4----,AI,2007,,5217N 10417E, +,RU,INA,Inta,Inta,,---4----,AI,0001,,6602N 06008E, +,RU,IVA,Ivangorod,Ivangorod,,-23-----,AI,0003,QGC,5922N 02813E, +,RU,IWA,Ivanova,Ivanova,,---4----,AI,0001,,8124N 05914E, +,RU,JOK,Joshkar-Ola,Joshkar-Ola,ME,-234----,AI,0907,,5638N 04754E, +,RU,KAN,Kandalaksha,Kandalaksha,,1-------,QQ,9207,,6709N 03224E, +,RU,KDN,Kildin,Kildin,,1-------,QQ,9207,,6921N 03409E, +,RU,KDT,Kronshtadt,Kronshtadt,,1-------,QQ,9207,,6000N 02946E, +,RU,KEM,Kem,Kem,,1-------,QQ,9207,,6457N 03434E, +,RU,KER,Keret,Keret,,1-------,QQ,9207,,6617N 03334E, +,RU,KGD,Kaliningrad,Kaliningrad,,1--4----,AI,9601,,5443N 02031E, +,RU,KGP,Kogalym,Kogalym,,---4----,AI,0001,,6216N 07429E, +,RU,KHS,Khasan,Khasan,,-2------,QQ,9207,,4226N 13039E, +,RU,KHV,Khabarovsk,Khabarovsk,,1--4----,AI,9601,,4829N 13505E, +,RU,KIN,Kineshma,Kineshma,,1-------,QQ,9207,,5727N 04210E, +,RU,KJA,Krasnojarsk,Krasnojarsk,,1--4----,AI,9601,,5601N 09252E, +,RU,KLR,Klinsky Rayon,Klinsky Rayon,MOS,1-3-----,RQ,0901,,5620N 03643E, +,RU,KMM,Malaya Kheta,Malaya Kheta,,1-------,QQ,8012,,6823N 08533E, +,RU,KMU,Kamskoye Ustye,Kamskoye Ustye,,1--4----,QQ,9207,,5512N 04916E, +,RU,KMV,Velikaya Kema,Velikaya Kema,,1-------,QQ,9207,,4528N 13713E, +,RU,KMW,Kostroma,Kostroma,,---4----,AI,0001,,5746N 04056E, +,RU,KNV,Krasnovodsk,Krasnovodsk,,1-------,RQ,9506,,4717N 04004E, +,RU,KOR,Korsakov,Korsakov,,1-------,QQ,9207,,4638N 14247E, +,RU,KRF,Korf,Korf,,1-------,RQ,9709,,6022N 16601E, +,RU,KRR,Krasnodar,Krasnodar,,1--4----,AI,9601,,4502N 03859E, +,RU,KSL,Kislaya Guba,Kislaya Guba,,1-------,QQ,9207,,6923N 03305E, +,RU,KSZ,Kotlas,Kotlas,,---4----,AI,0001,,6115N 04639E, +,RU,KUL,Kultuk,Kultuk,,-2------,QQ,8601,,5144N 10343E, +,RU,KVK,Kirovsk,Kirovsk,,---4----,AI,0001,,5953N 03059E, +,RU,KVX,Kirov,Kirov,,--34----,AI,9805,,5836N 04940E, +,RU,KXK,Komsomolsk Na Amure,Komsomolsk Na Amure,,---4----,AI,0001,,5033N 13701E, +,RU,KYZ,Kyzyl,Kyzyl,,---4----,AI,0001,,5143N 09426E, +,RU,LAZ,Lazarev,Lazarev,,1-------,RQ,9506,,5213N 14130E, +,RU,LNR,Linakhamari,Linakhamari,,1-------,QQ,8012,,6938N 03121E, +,RU,LNX,Smolensk,Smolensk,,---4----,AI,0001,,5447N 03203E, +,RU,LOM,Lomonosov,Lomonosov,,0-------,RL,9811,,5955N 02947E, +,RU,LPK,Lipetsk (Lipeck),Lipetsk (Lipeck),,--34----,AI,9901,,5236N 03936E, +,RU,MAG,"Magadansky, Port","Magadansky, Port",,1-------,QQ,9207,,5933N 15044E, +,RU,MEG,Medvezhyegorsk,Medvezhyegorsk,,1-------,QQ,9207,,6255N 03428E, +,RU,MEZ,Mezen,Mezen,,1-------,QQ,9207,,6551N 04415E, +,RU,MGO,Mago,Mago,,1-------,RQ,9506,,5316N 14009E, +,RU,MJZ,Mirnyj,Mirnyj,,---4----,AI,0001,,5345N 03908E, +,RU,MMK,Murmansk,Murmansk,,1--4----,AI,9601,,6858N 03304E, +,RU,MMO,Mamonova,Mamonova,,-2------,QQ,0307,,5604N 06457E, +,RU,MND,Mondy,Mondy,,--3-----,QQ,9207,,5141N 10060E, +,RU,MQF,Magnitogorsk,Magnitogorsk,,---4----,AI,0001,,5325N 05859E, +,RU,MRV,Mineralnye Vody,Mineralnye Vody,,---4----,AI,9601,,4413N 04308E, +,RU,MVO,Moskalvo,Moskalvo,,1-------,QQ,9207,,5335N 14231E, +,RU,NEF,Neftekamsk,Neftekamsk,,---4----,AI,0001,,5605N 05415E, +,RU,NER,Neryungri,Neryungri,,---4----,AI,0001,,5639N 12443E, +,RU,NEV,Nevelsk,Nevelsk,,1-------,RQ,9506,,4641N 14152E, +,RU,NFG,Nefteyugansk,Nefteyugansk,,---4----,AI,0001,,6106N 07237E, +,RU,NIA,Nikolayevsk-na-Amure,Nikolayevsk-na-Amure,,1-------,QQ,9207,,5308N 14043E, +,RU,NJK,Nakhodka,Nakhodka,,1-------,QQ,9207,,4249N 13254E, +,RU,NKI,Naushki,Naushki,,-2------,QQ,9207,,5024N 10606E, +,RU,NNM,Naryan Mar,Naryan Mar,,1--4----,AI,9601,,6739N 05300E, +,RU,NSK,Noril'sk,Noril'sk,,---4----,AI,0001,,6921N 08813E, +,RU,NUX,Novy Urengoy,Novy Urengoy,,---4----,AI,0001,,6605N 07641E, +,RU,NVR,Novgorod,Novgorod,,---4----,AI,0001,,5831N 03117E, +,RU,NYM,Nadym,Nadym,,---4----,AI,0001,,6532N 07231E, +,RU,OHO,Okhotsk,Okhotsk,,1-------,QQ,9207,,5922N 14313E, +,RU,OKT,Oktyabr'skiy,Oktyabr'skiy,,1-34----,AI,0401,,5414N 03853E, +,RU,OLG,"Olenya, Guba","Olenya, Guba",,1-------,QQ,9207,,6913N 03322E, +,RU,OMS,Omsk,Omsk,,-2-4----,AI,2007,,5459N 07322E, +,RU,ONG,Onega,Onega,,1-------,QQ,9207,,6355N 03806E, +,RU,ORL,Or'ol,Or'ol,,-23-----,RL,9901,,5258N 03605E, +,RU,OSW,Orsk,Orsk,,---4----,AI,0001,,5114N 05828E, +,RU,PCE,Pechenga,Pechenga,,1-------,QQ,9207,,6933N 03113E, +,RU,PEK,Petrokrepost,Petrokrepost,,1-------,QQ,9207,,5957N 03102E, +,RU,PES,Petrozavodsk,Petrozavodsk,,1--4----,AI,9601,,6147N 03423E, +,RU,PEX,Pechora,Pechora,,1--4----,AI,9601,,6507N 05710E, +,RU,PEZ,Penza,Penza,,---4----,AI,0001,,5312N 04500E, +,RU,PKC,Petropavlovsk-Kamchatskiy,Petropavlovsk-Kamchatskiy,,1--4----,AI,9601,,5301N 15839E, +,RU,PKV,Pskov,Pskov,,--34----,AI,9901,,5749N 02820E, +,RU,PRI,Primorsk (Koivisto),Primorsk (Koivisto),,1-------,RQ,9506,,6022N 02837E, +,RU,PRN,Poronaisk,Poronaisk,,1-------,QQ,9207,,4913N 14306E, +,RU,PSE,Posyet,Posyet,,1-------,QQ,9207,,4239N 13048E, +,RU,PTN,Plastun,Plastun,,1-------,QQ,9207,,4446N 13617E, +,RU,PUD,Pudozh,Pudozh,,1-------,QQ,9207,,6149N 03632E, +,RU,PVE,Peresvet,Peresvet,MOS,--3-----,RQ,0901,,5625N 03810E, +,RU,PVX,Provedenia,Provedenia,,---4----,AI,0307,,5636N 02901E, +,RU,PWE,Pevek,Pevek,,1--4----,AI,9601,,6942N 17016E, +,RU,PYJ,Polyarnyj,Polyarnyj,,---4----,AI,0001,,6625N 11203E, +,RU,RAT,Raduzhnyi,Raduzhnyi,,---4----,AI,0001,,6208N 07728E, +,RU,RDP,Rudnaya Pristan,Rudnaya Pristan,,1-------,QQ,9207,,4422N 13549E, +,RU,REN,Orenburg,Orenburg,,-234----,AI,0003,,5146N 05506E, +,RU,ROV,Rostov,Rostov,,1--4----,AI,9601,,4713N 03943E, +,RU,RTW,Saratov,Saratov,,1--4----,AI,9601,,5132N 04602E, +,RU,RYB,Rybinsk,Rybinsk,,1--4----,AI,9601,,5803N 03850E, +,RU,RZN,Ryazan,Ryazan,,---4----,AI,0001,,5440N 03941E, +,RU,SCW,Syktyvkar,Syktyvkar,,---4----,AI,0001,,6140N 05050E, +,RU,SEG,Segezha,Segezha,,1-------,QQ,9207,,6345N 03419E, +,RU,SEW,Severodvinsk,Severodvinsk,,1-------,QQ,9207,,6434N 03949E, +,RU,SGC,Surgut,Surgut,,---4----,AI,0001,,6115N 07324E, +,RU,SHA,Shakhtersk,Shakhtersk,,1-------,RQ,9506,,4909N 14203E, +,RU,SKA,Slavyanka,Slavyanka,,1-------,QQ,9207,,4252N 13124E, +,RU,SKX,Saransk,Saransk,,---4----,AI,0001,,5411N 04511E, +,RU,SLV,Solovyevsk,Solovyevsk,,-2------,QQ,9207,,5413N 12426E, +,RU,SLY,Salehard,Salehard,,---4----,AI,0001,,6632N 06637E, +,RU,SOG,Sovetskaya Gavan,Sovetskaya Gavan,,1-------,QQ,9207,,4858N 14017E, +,RU,SPA,"Spafaryeva, O","Spafaryeva, O",,1-------,QQ,9207,,5911N 14905E, +,RU,SRM,Severomorsk,Severomorsk,,1-------,QQ,9207,,6904N 03325E, +,RU,STW,Stavropol,Stavropol,,---4----,AI,9601,,4503N 04158E, +,RU,SVE,Svetlaya,Svetlaya,,1-------,QQ,9207,,4632N 13819E, +,RU,SVG,Svetogorsk,Svetogorsk,,-2------,QQ,9207,,6107N 02852E, +,RU,SVK,Severo-Kurilsk,Severo-Kurilsk,,1-------,QQ,9207,,5040N 15607E, +,RU,SVO,Sheremetyevo Apt/Moscow,Sheremetyevo Apt/Moscow,,---4----,AI,9601,,5558N 03725E, +,RU,SYZ,Syzran,Syzran,,1-------,QQ,9207,,5309N 04828E, +,RU,TAG,Taganrog,Taganrog,,1-------,QQ,9207,,4713N 03856E, +,RU,TAU,Tauisk,Tauisk,,1-------,QQ,9207,,5944N 14920E, +,RU,TBW,Tambov,Tambov,,---4----,AI,0001,,5243N 04127E, +,RU,TOF,Tomsk,Tomsk,,-2-4----,AI,2007,,5629N 08457E, +,RU,TOX,Tobolsk,Tobolsk,,-2-4----,AI,2007,,5812N 06815E, +,RU,TTI,Tolyatti,Tolyatti,,1-------,QQ,9207,,5331N 04924E, +,RU,TUA,Tuapse,Tuapse,,1-------,QQ,9207,,4406N 03904E, +,RU,TYA,Tula,Tula,,---4----,AI,0001,,5412N 03737E, +,RU,TYD,Tynda,Tynda,,---4----,AI,0001,,5509N 12444E, +,RU,UCT,Ukhta,Ukhta,,---4----,AI,0001,,6334N 05341E, +,RU,UFA,Ufa,Ufa,,--34----,AI,9901,,5444N 05557E, +,RU,UGL,Uglegorsk,Uglegorsk,,1-------,RQ,9506,,4905N 14204E, +,RU,UIK,Ust-Ilimsk,Ust-Ilimsk,,---4----,AI,0001,,5758N 10244E, +,RU,UKX,Ust-Kut,Ust-Kut,,---4----,AI,0001,,5647N 10545E, +,RU,UMB,Umba,Umba,,1-------,QQ,9207,,6641N 03420E, +,RU,URJ,Uraj,Uraj,,---4----,AI,0001,,6008N 06448E, +,RU,URS,Kursk,Kursk,,--34----,AI,9901,,5144N 03612E, +,RU,USK,Usinsk,Usinsk,,---4----,AI,0001,,6560N 05733E, +,RU,UUA,Bugulma,Bugulma,,---4----,AI,0001,,5432N 05248E, +,RU,UUD,Ulan-Ude,Ulan-Ude,,---4----,AI,0001,,5150N 10735E, +,RU,VGD,Vologda,Vologda,,---4----,AI,0001,,5913N 03954E, +,RU,VKO,Vnukovo Apt/Moscow,Vnukovo Apt/Moscow,,---4----,AI,9601,,5536N 03716E, +,RU,VKT,Vorkuta,Vorkuta,,---4----,AI,0001,,6730N 06404E, +,RU,VLA,Vladikavkaz,Vladikavkaz,,--3-----,AI,0003,,4301N 04441E, +,RU,VLK,Volgodonsk,Volgodonsk,,---4----,AI,0001,,4731N 04210E, +,RU,VLU,Velikiye Luki,Velikiye Luki,,---4----,AI,0001,,5621N 03032E, +,RU,VNN,Vanino,Vanino,,1-------,QQ,9207,,4905N 14016E, +,RU,VNY,Venyov,Venyov,,1----6--,RL,1107,,5420N 03814E, +,RU,VOZ,Voronezh,Voronezh,,-2-4----,AI,2007,,5140N 03912E, +,RU,VUS,Velikij Ustyug,Velikij Ustyug,,---4----,AI,9601,,6046N 04618E, +,RU,VVO,Vladivostok,Vladivostok,,12-4----,AI,2007,,4307N 13153E, +,RU,VYA,Vyartsilya,Vyartsilya,,-2------,QQ,8601,,6211N 03042E, +,RU,VYG,Vyborg,Vyborg,,1--4----,QQ,9207,,6043N 02845E, +,RU,YAB,Yagelnaya Bukhta,Yagelnaya Bukhta,,1-------,QQ,9207,,6915N 03319E, +,RU,YEY,Yeysk,Yeysk,,1-------,RQ,9506,,4643N 03816E, +,RU,YKS,Yakutsk,Yakutsk,,---4----,AI,0001,,6202N 12944E, +,RU,ZAO,"Zavyalova, O","Zavyalova, O",,1-------,QQ,9207,,5904N 15039E, +,RU,ZEM,Zeleniy Mys,Zeleniy Mys,,1-------,QQ,8012,,6847N 16123E, +,RU,ZHL,Zheleznodorozhniy,Zheleznodorozhniy,,-2------,QQ,9207,,5545N 03801E, +,RW,BTQ,Butare,Butare,,---4----,AI,0001,,0236S 02944E, +,RW,GYI,Gisenyi,Gisenyi,,---4----,AI,0001,,0142S 02916E, +,RW,KGL,Kigali,Kigali,,--345---,AI,9601,,0157S 03004E, +,RW,KME,Kamembe,Kamembe,,---4----,AI,0001,,0229S 02855E, +,RW,RHG,Ruhengeri,Ruhengeri,,---4----,AI,0001,,0130S 02938E, +,RW,RUB,Rubengera,Rubengera,,1----6--,RL,1107,,0204S 02925E, +,SA,ABT,Al Baha,Al Baha,,---4----,AI,0001,,2001N 04128E, +,SA,AHA,Al Hada,Al Hada,,1-------,QQ,8103,,2122N 04017E, +,SA,AHB,Abha,Abha,,---4----,AI,0001,,1813N 04230E, +,SA,AJF,Jouf,Jouf,,---4----,AI,9401,,1724N 04251E, +,SA,ALK,Al Khobar,Al Khobar,,1-------,RQ,9506,,2618N 05012E, +,SA,AQI,Qaisumah,Qaisumah,,---4----,AI,0001,,2819N 04608E, +,SA,ARR,Ar Rass,Ar Rass,,--3-----,RL,9901,,2552N 04330E, +,SA,BHH,Bisha,Bisha,,---4----,AI,9401,,1959N 04224E, +,SA,DHA,Dhahran,Dhahran,,1--4----,AI,9401,,2618N 05007E, +,SA,EAM,Nejran,Nejran,,---4----,AI,9401,,1730N 04411E, +,SA,EJH,Wedjh,Wedjh,,1--4----,AI,9601,,2617N 03625E, +,SA,ELQ,Gassim,Gassim,,---4----,AI,9401,,2548N 04252E, +,SA,HAS,Hail,Hail,,---4----,AI,9401,,2731N 04142E, +,SA,HBT,Hafar al Batin,Hafar al Batin,,--34----,AI,9901,,2826N 04558E, +,SA,HOF,Hofuf,Hofuf,,---4----,QQ,8103,,2522N 04935E, +,SA,KKH,King Khalid,King Khalid,,0-------,RQ,9307,,1817N 04249E, +,SA,KMX,Khamis Mushayt,Khamis Mushayt,,--34----,AI,9601,,1818N 04244E, +,SA,LIT,Lith,Lith,,1-------,QQ,8103,,2009N 04016E, +,SA,MAK,Makkah,Makkah,,1-------,QQ,8103,,2125N 03950E, +,SA,MED,Madinah,Madinah,,---4----,AI,0001,,2428N 03937E, +,SA,MJH,Majma,Majma,,---4----,AI,0001,,2554N 04521E, +,SA,MUF,Manfouha,Manfouha,,1-------,QQ,8103,,2436N 04644E, +,SA,QTF,Qatif,Qatif,,---4----,AI,0001,,2634N 05001E, +,SA,QUR,Qurayyah,Qurayyah,,1-------,QQ,8103,,2554N 05006E, +,SA,RAB,Rabigh,Rabigh,,1-------,QQ,8103,,2248N 03902E, +,SA,RAE,Arar,Arar,,---4----,AI,0001,,3059N 04101E, +,SA,RAH,Rafha,Rafha,,---4----,AI,9401,,2938N 04331E, +,SA,RAM,Ras al Mishab,Ras al Mishab,,1-------,QQ,8103,,2807N 04838E, +,SA,RAR,Ras al Khafji,Ras al Khafji,,1-------,QQ,8103,,2825N 04830E, +,SA,SAF,Safaniya,Safaniya,,--3-----,RL,1107,,2817N 04845E, +,SA,SHW,Sharurah,Sharurah,,---4----,AI,9601,,1729N 04707E, +,SA,TIF,Taif,Taif,,---4----,AI,9601,,2116N 04025E, +,SA,TUI,Turaif,Turaif,,---4----,AI,9401,,3140N 03840E, +,SA,TUU,Tabuk,Tabuk,,---4----,AI,9401,,2824N 03634E, +,SA,URY,Gurayat,Gurayat,,---4----,AI,9401,,3120N 03721E, +,SA,UZH,Unayzah,Unayzah,,--34----,AI,9901,,2605N 04359E, +,SA,WAE,Wadi ad Dawasir,Wadi ad Dawasir,,--34----,AI,9901,,2028N 04448E, +,SA,ZUL,Zilfi,Zilfi,,---4----,AI,0001,,2618N 04449E, +,SB,AFT,Afutara,Afutara,,---4----,AI,0001,,0911S 16057E, +,SB,AKS,"Auki, Malaita Is","Auki, Malaita Is",,1--4----,AI,9601,,0846S 16042E, +,SB,AOB,Aola Bay,Aola Bay,,1-------,RQ,9506,,0932S 16029E, +,SB,AVU,"Avu Avu, Guadalcanal Is","Avu Avu, Guadalcanal Is",,---4----,AI,9601,,0952S 16025E, +,SB,GEF,Geva,Geva,,---4----,AI,0001,,0735S 15636E, +,SB,HIR,"Honiara, Guadalcanal Is","Honiara, Guadalcanal Is",,1--45---,AI,9601,,0926S 15957E, +,SB,IRA,"Kirakira, San Cristobal Is","Kirakira, San Cristobal Is",,1--4----,AI,9601,,1027S 16155E, +,SB,KUE,Kukundu,Kukundu,,---4----,AI,0001,,0801S 15657E, +,SB,KWR,Kwai Harbour,Kwai Harbour,,---4----,AI,0001,,0834S 16044E, +,SB,KWS,Kwailabesi,Kwailabesi,,---4----,AI,0001,,0821S 16045E, +,SB,MBU,"Mbambanakira, Guadalcanal Is","Mbambanakira, Guadalcanal Is",,---4----,AI,9601,,0945S 15950E, +,SB,MNY,Mono,Mono,,---4----,AI,0001,,0722S 15534E, +,SB,MUA,"Munda, New Georgia","Munda, New Georgia",,---4----,AI,0001,,0820S 15716E, +,SB,NNB,Santa Ana,Santa Ana,,---4----,AI,0001,,1050S 16228E, +,SB,NOR,"Noro, New Georgia","Noro, New Georgia",,1-------,AC,9401,,0813S 15713E, +,SB,OTV,Ontong Java,Ontong Java,,---4----,AI,0001,,0519S 15922E, +,SB,RBV,Ramata,Ramata,,---4----,AI,0001,,0811S 15739E, +,SB,RNL,Rennell Island,Rennell Island,,---4----,AI,9601,,1140S 16013E, +,SB,RUS,"Marau Sound, Guadalcanal Is","Marau Sound, Guadalcanal Is",,1--4----,AI,9601,,0948S 16051E, +,SB,SCZ,Santa Cruz Is,Santa Cruz Is,,1--4----,AI,9601,,1100S 16615E, +,SB,SVY,Savo,Savo,,---4----,AI,0001,,0908S 15949E, +,SB,TLG,"Tulagi, Ngella","Tulagi, Ngella",,1--4----,AI,9601,,0906S 16009E, +,SB,VAO,Suavanao,Suavanao,,---4----,AI,0001,,0735S 15844E, +,SB,VIU,Viru Harbour,Viru Harbour,,1--4----,AI,9506,,0830S 15744E, +,SC,BDI,Bird Island,Bird Island,,---4----,AI,9601,,0343S 05512E, +,SC,DEI,Denis Island,Denis Island,,---4----,AI,0001,,0348S 05540E, +,SC,MAW,Mahe,Mahe,,1-------,QQ,8103,,0441S 05530E, +,SC,POV,Port Victoria,Port Victoria,,1-------,QQ,8103,,0437S 05527E, +,SC,PRI,Praslin Island,Praslin Island,,---4----,AI,9601,,0419S 05544E, +,SD,AAD,Ad Dabbah,Ad Dabbah,,---4----,AI,0212,,1803N 03057E, +,SD,ATB,Atbara,Atbara,,---4----,AI,9601,,1741N 03359E, +,SD,DNX,Dinder,Dinder,,---4----,AI,0001,,1316N 03409E, +,SD,DOG,Dongola,Dongola,NO,---4----,AI,1307,,1910N 03028E, +,SD,EDB,Eldebba,Eldebba,,---4----,AI,0001,,1803N 03057E, +,SD,GBU,Khashm El Girba,Khashm El Girba,GD,---4----,AI,1307,,1457N 03554E, +,SD,GSU,Gedaref,Gedaref,GD,---4----,AI,1307,,1402N 03524E, +,SD,KRT,Khartoum,Khartoum,KH,---45---,AI,1307,,1534N 03232E, +,SD,KSL,Kassala,Kassala,KA,---4----,AI,1307,,1527N 03623E, +,SD,MWE,Merowe,Merowe,,---4----,AI,9601,,1829N 03149E, +,SD,NHF,New Halfa,New Halfa,KA,---4----,AI,1307,,1519N 03536E, +,SD,NUD,En Nahud,En Nahud,,---4----,AI,0001,,1242N 02825E, +,SD,PZU,Port Sudan,Port Sudan,RS,1--45---,AI,1307,,1937N 03713E, +,SD,RSS,Roseires,Roseires,,---4----,AI,9601,,1152N 03423E, +,SD,SWA,Swakin,Swakin,,1-------,AC,8103,,1906N 03720E, +,SD,WHF,Wadi Halfa,Wadi Halfa,NO,---4----,AI,1307,,2148N 03121E, +,SE,AAK,�kers Styckebruk,Akers Styckebruk,D,-23-----,RQ,9307,,5915N 01706E, +,SE,AAR,Ar,Ar,I,1-------,AF,8312,,5755N 01857E, +,SE,AAS,�seda,Aseda,F,--3-----,RL,9307,,5710N 01521E, +,SE,ABY,Aneby,Aneby,F,--3-----,RQ,9704,,5750N 01445E, +,SE,ADG,Arildsl�ge,Arildslage,M,1-------,RL,9901,,5616N 01236E, +,SE,AEN,�lvdalen,Alvdalen,W,--3-----,RL,0105,,6120N 01345E, +,SE,AGH,Helsingborg-�ngelholm Apt,Helsingborg-Angelholm Apt,M,---4----,AI,9601,,5617N 01251E, +,SE,AGO,Ag�,Ago,,--3-----,RL,9811,,5917N 01806E, +,SE,AHT,�lghult,Alghult,G,--3-----,RN,9806,,5701N 01534E, +,SE,AJG,Emmaljunga,Emmaljunga,,--3-----,RQ,9705,,5624N 01339E, +,SE,AJR,Arvidsjaur,Arvidsjaur,BD,--3-----,RL,0001,,6540N 01915E, +,SE,AKA,�kersberga,Akersberga,AB,--3-----,RN,9806,,5929N 01818E, +,SE,ALB,Alby,Alby,Y,--3-----,RL,0105,,6230N 01529E, +,SE,ALF,Alfredshem,Alfredshem,Y,1-------,AF,8312,,6316N 01842E, +,SE,ALM,�lmhult,Almhult,G,--3-----,RL,9501,,5633N 01407E, +,SE,ALV,Alvesta,Alvesta,G,--3-----,RQ,9501,XXA,5655N 01430E, +,SE,ANG,�ngelholm,Angelholm,M,-23-----,AI,1301,,5615N 01252E, +,SE,ANK,Ankarsvik,Ankarsvik,C,1-------,AF,8312,,6222N 01725E, +,SE,ANP,Anderstorp,Anderstorp,F,--3-----,RQ,9501,,5717N 01338E, +,SE,ARB,Arbr�,Arbra,X,123-----,AF,8312,,6128N 01622E, +,SE,ARD,�rstadal,Arstadal,AB,--3-----,RL,9307,,5918N 01802E, +,SE,ARG,Arjeplog,Arjeplog,BD,--3-----,RL,9901,,6625N 01700E, +,SE,ARI,Arninge,Arninge,AB,--3-----,RL,9805,,5928N 01808E, +,SE,ARJ,�rj�ng,Arjang,O,--3-----,RL,9501,,5925N 01210E, +,SE,ARK,Arn�viken,Arnoviken,C,1-------,AF,8312,,6142N 01723E, +,SE,ARL,Arl�v,Arlov,M,--3-----,RL,9307,,5538N 01305E, +,SE,ARN,Arlanda Apt/Stockholm,Arlanda Apt/Stockholm,C,---4----,AI,,,5939N 01755E, +,SE,ART,Arlandastad,Arlandastad,AB,--3-----,RN,9901,,5937N 01753E, +,SE,ARV,Arvika,Arvika,S,123-----,AI,9704,XYY,5946N 01239E, +,SE,ASA,Asarum,Asarum,K,--3-----,RL,9307,,5612N 01450E, +,SE,ASD,Askersund,Askersund,T,1-------,RL,9901,,5852N 01455E, +,SE,ASE,�sensbruk,Asensbruk,O,--3-----,RL,9307,,5848N 01225E, +,SE,ASK,�skloster,Askloster,N,--3-----,RL,9307,,5713N 01213E, +,SE,AST,�storp,Astorp,M,--3-----,RL,9501,,5608N 01257E, +,SE,ASU,Ark�sund,Arkosund,E,1-------,RL,9901,,5829N 01656E, +,SE,ATV,�tvidaberg,Atvidaberg,E,-23-----,RL,9307,,5810N 01600E, +,SE,AVE,Avesta,Avesta,W,--3-----,RL,9501,XYP,6013N 01620E, +,SE,AVK,Almvik,Almvik,,0-------,RQ,9811,,5750N 01628E, +,SE,BAC,B�ckviken,Backviken,M,1-------,AI,9704,,5554N 01243E, +,SE,BAL,Ballingsl�v,Ballingslov,M,--3-----,RL,9307,,5613N 01351E, +,SE,BAR,B�ckhammar,Backhammar,S,--3-----,RN,9806,,5910N 01411E, +,SE,BAS,B�stad,Bastad,M,1-------,AI,9704,,5626N 01252E, +,SE,BAT,B�tsk�rsn�s,Batskarsnas,BD,1-------,AF,8312,,6547N 02325E, +,SE,BBE,B�berg,Baberg,O,--3-----,RL,0101,,5820N 01216E, +,SE,BBG,Blidsberg,Blidsberg,O,--3-----,RN,9806,,5756N 01330E, +,SE,BDQ,B�da,Boda,H,1-------,AI,9704,,5716N 01702E, +,SE,BDS,Bodafors,Bodafors,F,--3-----,RL,9501,,5730N 01442E, +,SE,BFS,B�ckfors,Backfors,AC,--3-----,RL,9811,,6422N 02057E, +,SE,BGS,Borgstena,Borgstena,O,--3-----,RN,9806,,5753N 01301E, +,SE,BHM,Bergshamra,Bergshamra,AB,--3-----,RN,9811,,5938N 01839E, +,SE,BIL,Billingsfors,Billingsfors,O,-23-----,AF,8312,,5859N 01215E, +,SE,BIM,Billesholm,Billesholm,M,--3-----,RL,9307,,5604N 01258E, +,SE,BJA,Bj�rnum,Bjarnum,M,--3-----,RL,9501,,5617N 01343E, +,SE,BJK,Bj�rklinge,Bjorklinge,C,--3-----,RL,9705,,6002N 01733E, +,SE,BJN,Bj�rneborg,Bjorneborg,S,--3-----,RL,9805,,5915N 01415E, +,SE,BJU,Bjuv,Bjuv,M,--3-----,RL,0105,,5605N 01255E, +,SE,BLA,Blankaholm,Blankaholm,H,1-------,AF,8312,,5735N 01632E, +,SE,BLD,Bovallstrand,Bovallstrand,O,1-------,RL,9901,,5829N 01120E, +,SE,BLE,Borl�nge,Borlange,W,-2-4----,AI,9601,,6029N 01525E, +,SE,BLL,Bollebygd,Bollebygd,O,--3-----,RL,9501,,5745N 01236E, +,SE,BLO,Blomsterm�la,Blomstermala,H,--3-----,RL,0105,,5659N 01620E, +,SE,BLS,Bolln�s,Bollnas,X,--3-----,RL,0001,,6121N 01624E, +,SE,BMA,Bromma Apt/Stockholm,Bromma Apt/Stockholm,AB,---4----,AI,,,5921N 01756E, +,SE,BND,Bankeryd,Bankeryd,F,--3-----,RN,9806,,5752N 01408E, +,SE,BNF,Br�nnfors,Brannfors,AC,--3-----,RN,9811,,6436N 02043E, +,SE,BOD,Boden,Boden,BD,--3-----,RL,9501,,6550N 02140E, +,SE,BOG,Borensberg,Borensberg,E,1-------,RL,0207,,5834N 01517E, +,SE,BOI,Boliden,Boliden,AC,--3-----,RL,9501,,6452N 02023E, +,SE,BOM,Borgholm,Borgholm,H,1-------,AI,9704,,5653N 01640E, +,SE,BON,Borghamn,Borghamn,E,--3-----,AF,8312,,5823N 01442E, +,SE,BOS,Bor�s,Boras,O,-23-----,AF,8312,,5743N 01256E, +,SE,BOT,Bottnaryd,Bottnaryd,F,--3-----,RL,9307,,5746N 01350E, +,SE,BOX,Boxholm,Boxholm,E,--3-----,RL,9501,,5810N 01500E, +,SE,BPG,Bispg�rden,Bispgarden,Z,--3-----,RL,9704,,6301N 01638E, +,SE,BRA,Br�landa,Bralanda,O,--3-----,RL,9307,,5834N 01221E, +,SE,BRD,Bredaryd,Bredaryd,F,--3-----,RL,9705,,5710N 01344E, +,SE,BRE,Bredviken,Bredviken,,1-------,AF,8312,,6535N 02213E, +,SE,BRH,Br�kne-Hoby,Brakne-Hoby,K,--3-----,RL,9307,,5614N 01507E, +,SE,BRM,Brom�lla,Bromolla,M,--3-----,RL,9307,,5607N 01433E, +,SE,BRT,Brottby,Brottby,AB,1-------,AF,8312,,5934N 01814E, +,SE,BRX,Bro,Bro,AB,--3-----,RL,0105,,5953N 01829E, +,SE,BTF,Bengtsfors,Bengtsfors,O,1-3-----,RN,9806,,5902N 01213E, +,SE,BUR,Bure�,Burea,AC,1-------,AF,8312,,6437N 02112E, +,SE,BUV,Burgsvik,Burgsvik,I,1-------,AI,9704,,5702N 01817E, +,SE,BYS,Byske (Br�nnfors),Byske (Brannfors),AC,--3-----,RQ,9506,,6457N 02112E, +,SE,BYX,Byxelkrok,Byxelkrok,H,1-------,AI,9704,,5720N 01701E, +,SE,CHA,Charlottenberg,Charlottenberg,S,-23----B,RL,9501,,5953N 01218E, +,SE,DAL,Dals-L�nged,Dals-Langed,O,-23-----,RL,9307,,5856N 01218E, +,SE,DAN,Dannemora,Dannemora,C,--3-----,RL,9501,,6012N 01752E, +,SE,DEG,Degerhamn,Degerhamn,H,1-------,AA,1601,,5621N 01625E, +,SE,DEJ,Deje,Deje,S,--3-----,RL,0105,,5936N 01328E, +,SE,DEL,Delsbo,Delsbo,X,--3-----,RL,0105,,6148N 01633E, +,SE,DFO,Dalsj�fors,Dalsjofors,O,--3-----,RN,9811,,5743N 01306E, +,SE,DFS,Degerfors,Degerfors,T,-23-----,RL,9307,XXD,5916N 01426E, +,SE,DHN,Djurhamn,Djurhamn,AB,0-------,RL,1301,,5920N 01843E, +,SE,DJP,Djupvik,Djupvik,O,1-------,RL,9901,,5759N 01142E, +,SE,DJU,Djurmo,Djurmo,W,1-------,AF,8312,,6033N 01511E, +,SE,DLA,Dalar�,Dalaro,AB,1-------,RL,1301,,5908N 01824E, +,SE,DLB,Dalby,Dalby,M,-23-----,RL,9705,,5540N 01321E, +,SE,DLP,Dalstorp,Dalstorp,O,--3-----,RN,9806,,5736N 01331E, +,SE,DND,Danderyd,Danderyd,AB,--3-----,RN,9811,,5924N 01802E, +,SE,DOM,Domsj�,Domsjo,Y,1-------,AI,9704,,6315N 01843E, +,SE,DON,Dons�,Donso,O,1-------,AI,9704,,5736N 01148E, +,SE,DYN,Dyn�s,Dynas,Y,123-----,AF,8312,,6258N 01743E, +,SE,EDS,Edsbyn,Edsbyn,X,--3-----,RL,9501,,6123N 01549E, +,SE,EDZ,Ed,Ed,O,--3-----,RL,9704,,5855N 01156E, +,SE,EEN,Eken�ssj�n,Ekenassjon,F,--3-----,RN,9806,,5730N 01501E, +,SE,EKE,Eker�,Ekero,AB,--3-----,RL,9307,,5917N 01749E, +,SE,EKS,Eksj�,Eksjo,F,--3-----,RL,9501,,5740N 01512E, +,SE,EKT,Eskilstuna,Eskilstuna,D,---4----,AI,9601,,5922N 01630E, +,SE,EMM,Emmaboda,Emmaboda,H,--3-----,RL,9501,,5638N 01532E, +,SE,ENA,Eneryda,Eneryda,G,--3-----,RL,9307,,5642N 01420E, +,SE,ENE,Enebyberg,Enebyberg,AB,--3-----,AF,8312,,5926N 01802E, +,SE,ERS,Ersmark,Ersmark,AC,--3-----,RL,9307,,6451N 02054E, +,SE,ESL,Esl�v,Eslov,M,--3-----,RL,9501,,5551N 01319E, +,SE,EVG,Sveg,Sveg,Z,-234----,AI,9601,,6202N 01422E, +,SE,FAA,Fagersta,Fagersta,U,-23-----,RL,9307,,5958N 01550E, +,SE,FAE,F�rgelanda,Fargelanda,O,--3-----,RL,0105,,5835N 01200E, +,SE,FAK,Fagervik,Fagervik,X,1-------,AI,9704,,6053N 01708E, +,SE,FAN,Falun,Falun,W,--3-----,AF,8312,,6036N 01538E, +,SE,FBK,Fiskeb�ckskil,Fiskebackskil,O,1-------,RL,9901,,5815N 01127E, +,SE,FBY,Floby,Floby,O,--3-----,RN,9806,,5808N 01320E, +,SE,FEL,Fellingsbro,Fellingsbro,T,--3-----,RL,9307,,5926N 01535E, +,SE,FHD,Forsheda,Forsheda,F,-23-----,RL,9705,,5710N 01350E, +,SE,FIG,Figeholm,Figeholm,H,1-------,AF,8312,,5723N 01633E, +,SE,FIL,Filipstad,Filipstad,S,1-3-----,RL,0207,,5942N 01411E, +,SE,FIN,Finsp�ng,Finspang,E,-23-----,AF,8312,,5848N 01550E, +,SE,FIS,Fiskeb�ck,Fiskeback,O,1-------,AI,9704,,5739N 01152E, +,SE,FJA,Fj�llbacka,Fjallbacka,O,1-------,AI,9704,,5836N 01117E, +,SE,FKG,Falk�ping,Falkoping,O,123-----,RL,0207,XYF,5812N 01331E, +,SE,FLE,Flen,Flen,D,-23-----,AF,0307,XYI,5903N 01643E, +,SE,FLM,Flemingsberg/Stockholm,Flemingsberg/Stockholm,AB,--3-----,RL,9307,,5913N 01756E, +,SE,FLX,Flaxenvik,Flaxenvik,,0-------,RQ,9012,,5928N 01824E, +,SE,FOA,Forsbacka,Forsbacka,X,--3-----,RL,0105,,6037N 01654E, +,SE,FOM,Forserum,Forserum,F,--3-----,RN,9806,,5742N 01428E, +,SE,FOS,Forshaga,Forshaga,S,--3-----,RL,9501,,5932N 01328E, +,SE,FRA,Fr�n�,Frano,Y,123-----,AF,8312,,6254N 01750E, +,SE,FRI,Fristad,Fristad,O,--3-----,RL,9307,,5749N 01300E, +,SE,FRS,Fors,Fors,W,-23-----,RL,9704,,6012N 01618E, +,SE,FSB,Falsterbo,Falsterbo,M,1-------,RL,9901,,5524N 01251E, +,SE,FSD,F�r�sund,Farosund,I,1-------,AI,9704,,5752N 01903E, +,SE,FTY,Fritsla,Fritsla,O,--3-----,RN,9806,,5733N 01247E, +,SE,FVK,Forsvik,Forsvik,O,--3-----,RL,9307,,5835N 01426E, +,SE,GAA,Gr�nna,Granna,F,--3-----,RL,0105,,5802N 01428E, +,SE,GAD,G�ddviken,Gaddviken,,0-------,RQ,9307,,5732N 01312E, +,SE,GAR,Garphyttan,Garphyttan,T,--3-----,RL,9307,,5917N 01453E, +,SE,GET,Getinge,Getinge,N,--3-----,RL,9307,,5649N 01244E, +,SE,GEV,G�llivare,Gallivare,BD,---4----,AI,9601,,6718N 02015E, +,SE,GGF,Gagnef,Gagnef,W,--3-----,RL,9805,,6030N 01500E, +,SE,GHR,G�nghester,Ganghester,O,--3-----,RN,9811,,5742N 01301E, +,SE,GIS,Gislaved,Gislaved,F,--3-----,RL,9501,,5715N 01327E, +,SE,GLA,Glanshammar,Glanshammar,T,--3-----,AF,8312,,5919N 01524E, +,SE,GLI,Glim�kra,Glimakra,M,--3-----,RL,9307,,5618N 01408E, +,SE,GMS,Grums,Grums,S,--3-----,RL,9501,,5927N 01305E, +,SE,GNA,Gnarp,Gnarp,X,0-------,RL,1301,,6205N 01735E, +,SE,GNE,Gnesta,Gnesta,D,--3-----,RL,0105,,5903N 01702E, +,SE,GNO,Gnosj�,Gnosjo,F,--3-----,RL,9307,,5722N 01347E, +,SE,GOE,G�tene,Gotene,O,-23-----,RL,9307,,5833N 01332E, +,SE,GRA,Gr�bo,Grabo,O,--3-----,AF,8312,,5750N 01218E, +,SE,GRD,Grundsund,Grundsund,O,1-3-----,AI,9704,,5813N 01125E, +,SE,GRE,Grebbestad,Grebbestad,O,1-3-----,AI,9704,,5842N 01115E, +,SE,GRK,Grundvik,Grundvik,,0-------,RQ,9811,,6118N 01707E, +,SE,GRP,Gr�storp,Grastorp,O,--3-----,RL,0105,,5820N 01240E, +,SE,GRT,Grytg�l,Grytgol,S,--3-----,RL,9307,,5848N 01533E, +,SE,GRV,Grevie,Grevie,M,-2------,RL,9705,,5624N 01247E, +,SE,GRY,Grycksbo,Grycksbo,W,--3-----,RL,9501,,6041N 01529E, +,SE,GUB,Gustavsberg,Gustavsberg,AB,1-------,AI,9704,,5920N 01823E, +,SE,GUM,Gusum,Gusum,E,--3-----,RL,0105,,5816N 01630E, +,SE,GUN,Gunnebo,Gunnebo,E,1-------,AI,9704,,5743N 01632E, +,SE,GVN,Gravarne,Gravarne,O,1-------,RL,9901,,5822N 01115E, +,SE,HAA,Haparanda,Haparanda,BD,123-----,AF,8312,,6550N 02408E, +,SE,HAB,Habo,Habo,O,--3-----,RL,9501,,5842N 01410E, +,SE,HAG,Hagen,Hagen,W,--3-----,AF,9801,,6030N 01450E, +,SE,HAR,Harspr�nget,Harspranget,BD,--3-----,RL,9307,,6046N 01527E, +,SE,HAS,Hallstan�s,Hallstanas,Y,1-------,AF,8312,,6255N 01754E, +,SE,HBA,Hisings Backa,Hisings Backa,O,--3-----,RN,9811,,5745N 01159E, +,SE,HBB,Holsbybrunn,Holsbybrunn,F,-23-----,AF,8312,,5726N 01512E, +,SE,HBG,Hamburgsund,Hamburgsund,O,1-------,RL,9901,,5834N 01116E, +,SE,HED,Hedemora,Hedemora,W,--3-----,RL,9501,XXU,6017N 01559E, +,SE,HEJ,Herrljunga,Herrljunga,O,--3-----,RL,9501,XYC,5802N 01307E, +,SE,HEL,Helsingborg,Helsingborg,M,12-4----,AI,9704,,5603N 01242E, +,SE,HER,Herr�ng,Herrang,AB,1-------,AF,8312,,6008N 01839E, +,SE,HFS,Hagfors,Hagfors,S,--3-----,RL,9705,,6002N 01339E, +,SE,HGR,H�gersten/Stockholm,Hagersten/Stockholm,AB,--3-----,RL,9307,,5918N 01758E, +,SE,HGS,H�gsj�,Hogsjo,Y,1-------,RL,9307,,6247N 01749E, +,SE,HIL,Hillerstorp,Hillerstorp,F,--3-----,RL,9307,,5719N 01353E, +,SE,HIT,Hittarp,Hittarp,M,--3-----,RL,9307,,5618N 01408E, +,SE,HJD,Hjorted,Hjorted,H,--3-----,RL,9307,,5737N 01618E, +,SE,HJO,Hjo,Hjo,O,--3-----,RL,9501,,5818N 01413E, +,SE,HLD,Holmsund,Holmsund,AC,123-----,AA,1601,,6342N 02022E, +,SE,HLF,Hultsfred,Hultsfred,H,-234----,AI,9601,,5724N 01548E, +,SE,HLL,H�llefors,Hallefors,T,--3-----,RL,9501,,5950N 01434E, +,SE,HLN,Helgen�s,Helgenas,,0-------,RQ,9811,,5760N 01630E, +,SE,HLS,H�llekis,Hallekis,O,123-----,RL,9307,,5838N 01326E, +,SE,HMV,Hemavan,Hemavan,AC,---4----,AI,0001,,6549N 01505E, +,SE,HNB,H�rneborg,Horneborg,,1-------,AF,8312,,6316N 01843E, +,SE,HNE,Haninge,Haninge,D,-23-----,RL,9307,,5903N 01816E, +,SE,HOD,Horred,Horred,O,--3-----,RL,0105,,5722N 01228E, +,SE,HOE,H�rby,Horby,M,--3-----,RL,0105,,5551N 01339E, +,SE,HOF,Hofors,Hofors,X,-23-----,RL,9307,,6030N 01620E, +,SE,HOL,Holmsj�,Holmsjo,K,--3-----,RL,9501,,5625N 01532E, +,SE,HOO,H��r,Hoor,M,--3-----,RL,0105,,5556N 01332E, +,SE,HOR,H�gs�ter,Hogsater,O,--3-----,RL,9307,,5839N 01203E, +,SE,HOV,Hovmantorp,Hovmantorp,G,--3-----,RL,0105,,5647N 01508E, +,SE,HRN,Horndal,Horndal,W,-23-----,RL,9705,,6017N 01624E, +,SE,HRS,H�lleforsn�s,Halleforsnas,D,--3-----,RL,0105,,5909N 01630E, +,SE,HSG,Hallsberg,Hallsberg,T,--3-----,RL,0105,XWM,5903N 01515E, +,SE,HSM,H�ssleholm,Hassleholm,M,-23-----,RL,9307,XWP,5613N 01344E, +,SE,HSQ,Huskvarna,Huskvarna,F,-23-----,RL,9307,,5748N 01416E, +,SE,HUN,Hunnebostrand,Hunnebostrand,O,1-3-----,AI,1201,,5826N 01118E, +,SE,HVA,Hova,Hova,O,--3-----,RL,9705,,5851N 01413E, +,SE,HVD,H�stveda,Hastveda,M,--3-----,RL,9501,,5617N 01356E, +,SE,HYD,Hallaryd,Hallaryd,G,--3-----,AF,9801,,5629N 01353E, +,SE,HYL,Hyltebruk,Hyltebruk,N,--3-----,RL,0701,,5660N 01314E, +,SE,HYP,Hyppeln,Hyppeln,O,1-------,AI,9704,,5746N 01136E, +,SE,HZS,Hovsl�tt,Hovslatt,F,--3-----,RN,9806,,5744N 01407E, +,SE,IDB,Idre,Idre,W,---4----,AI,0001,,6152N 01243E, +,SE,JAO,J�rbo,Jarbo,X,--3-----,RL,0105,,6043N 01636E, +,SE,JHV,Johanneshov,Johanneshov,AB,--3-----,RL,9307,,5918N 01805E, +,SE,JKG,J�nk�ping,Jonkoping,F,1--4----,AI,9601,,5747N 01410E, +,SE,JMJ,J�mj�,Jamjo,K,--3-----,RN,9811,,5611N 01550E, +,SE,JOH,Johannedal,Johannedal,,1-------,AF,8312,,6226N 01723E, +,SE,JON,Jonsered,Jonsered,O,-23-----,RQ,9307,,5745N 01210E, +,SE,JOR,Jordbro,Jordbro,AB,--3-----,RL,9307,,5909N 01808E, +,SE,JUN,Junsele,Junsele,Y,--3-----,RL,0105,,6342N 01653E, +,SE,KAD,K�llered,Kallered,O,--3-----,RL,0105,,5737N 01203E, +,SE,KAE,K�ttilstorp,Kattilstorp,O,--3-----,RL,9307,,5803N 01343E, +,SE,KAG,K�ge,Kage,AC,1-------,AF,8312,,6450N 02059E, +,SE,KAK,Karlsvik,Karlsvik,X,1-------,AF,8312,,6536N 02205E, +,SE,KAM,Katrineholm,Katrineholm,D,--3-----,RL,0105,XXR,5860N 01612E, +,SE,KAT,Katthammarsvik,Katthammarsvik,I,1-------,AI,9704,,5726N 01851E, +,SE,KAX,Kalix,Kalix,BD,123-----,AF,8312,,6600N 02300E, +,SE,KBY,K�llby,Kallby,O,--3-----,RL,9307,,5831N 01318E, +,SE,KIA,Kinna,Kinna,O,--3-----,RL,9501,,5730N 01242E, +,SE,KID,Kristianstad,Kristianstad,M,1234----,AI,9601,,5602N 01409E, +,SE,KIL,Kil,Kil,S,--3-----,RL,0105,XXN,5934N 01311E, +,SE,KIN,Kinnarp,Kinnarp,O,--3-----,RL,0105,,5804N 01331E, +,SE,KIS,Kista,Kista,AB,--3-----,RL,9307,,5924N 01757E, +,SE,KLP,Klippan,Klippan,M,--3-----,RL,9501,,5609N 01310E, +,SE,KNA,Knivsta,Knivsta,C,--3-----,RN,9811,,5945N 01749E, +,SE,KNN,Kungs�ngen,Kungsangen,AB,--3-----,RL,9704,,5929N 01745E, +,SE,KOA,Kolsva,Kolsva,U,--3-----,RN,9806,,5936N 01551E, +,SE,KOL,Kolb�ck,Kolback,U,--3-----,RL,0105,,5934N 01614E, +,SE,KOR,Korsberga,Korsberga,F,--3-----,RL,9501,,5718N 01508E, +,SE,KOS,Korsn�s,Korsnas,W,-23-----,AF,8312,,6035N 01544E, +,SE,KPA,Karpalund,Karpalund,M,--3-----,AF,9801,,5602N 01406E, +,SE,KPO,Kopparberg,Kopparberg,T,--3-----,RL,9501,,5952N 01459E, +,SE,KRD,K�ger�d,Kagerod,M,--3-----,RL,0105,,5560N 01305E, +,SE,KRN,Kiruna,Kiruna,BD,---4----,AI,9601,,6810N 01930E, +,SE,KRY,Krylbo,Krylbo,W,-23-----,RL,9705,XYP,6008N 01613E, +,SE,KSA,Kisa,Kisa,E,--3-----,RL,0105,,5759N 01537E, +,SE,KSK,Karlskoga,Karlskoga,T,---4----,RL,9506,,5920N 01431E, +,SE,KSL,Koskullskulle,Koskullskulle,BD,--3-----,RL,9501,,6711N 02044E, +,SE,KUB,Kubikenborg,Kubikenborg,X,1-------,AA,1601,,6223N 01721E, +,SE,KUM,Kumla,Kumla,T,--3-----,RL,9501,XXV,5907N 01507E, +,SE,KUV,Kung�lv,Kungalv,O,1-3-----,RL,0207,,5754N 01155E, +,SE,KVA,Kvarnholmen,Kvarnholmen,AB,1-------,AI,9704,,5919N 01808E, +,SE,KVH,Kopparverkshamnen,Kopparverkshamnen,M,1-------,AI,9704,,5600N 01243E, +,SE,KVL,K�vlinge,Kavlinge,M,--3-----,RL,9501,,5547N 01302E, +,SE,KVM,Kv�num,Kvanum,O,-23-----,AF,8312,,5818N 01311E, +,SE,KYR,Kyrkebyn,Kyrkebyn,S,1-------,AF,8312,,5917N 01305E, +,SE,LAH,Laholm,Laholm,N,--3-----,RL,0105,,5630N 01314E, +,SE,LAM,Lammhult,Lammhult,F,--3-----,RL,9307,,5710N 01435E, +,SE,LAN,L�ngasj�,Langasjo,F,--3-----,AF,8312,,5635N 01527E, +,SE,LAO,Landsbro,Landsbro,F,--3-----,RN,9806,,5722N 01454E, +,SE,LAX,Lax�,Laxa,T,-23-----,RL,9705,,5857N 01430E, +,SE,LBY,Lyckeby,Lyckeby,K,--3-----,RL,9307,,5612N 01539E, +,SE,LDG,Lindesberg,Lindesberg,T,--3-----,RN,9806,,5940N 01515E, +,SE,LDN,Lofsdalen,Lofsdalen,Z,--3-----,RN,9806,,6207N 01316E, +,SE,LDV,Lenhovda,Lenhovda,G,--3-----,RL,0002,,5660N 01517E, +,SE,LEK,Leksand,Leksand,W,--3-----,RL,0105,XXO,6043N 01500E, +,SE,LEO,Lessebo,Lessebo,G,--3-----,RL,0105,,5646N 01516E, +,SE,LER,Lerum,Lerum,O,--3-----,RL,9501,,5750N 01218E, +,SE,LIL,Liljendal,Liljendal,S,--3-----,AF,9801,,6009N 01404E, +,SE,LIO,Liding�,Lidingo,AB,123-----,AF,8312,,5922N 01811E, +,SE,LIT,Lidhult,Lidhult,G,--3-----,RL,9501,,5650N 01326E, +,SE,LJL,Ljusdal,Ljusdal,X,--3-----,RL,0105,,6152N 01542E, +,SE,LJY,Ljungby,Ljungby,G,-23-----,AF,8312,,5651N 01356E, +,SE,LMD,Limmared,Limmared,O,--3-----,RN,9806,,5732N 01321E, +,SE,LOM,Lomma,Lomma,M,123-----,AI,9704,,5540N 01305E, +,SE,LOU,Loudden/Stockholm,Loudden/Stockholm,AB,1-------,RL,9703,,5920N 01808E, +,SE,LPI,Link�ping,Linkoping,E,-234----,AI,9601,,5825N 01537E, +,SE,LUD,Lund,Lund,M,-23-----,AF,8312,,5542N 01312E, +,SE,LUN,L�vholmen,Lovholmen,BD,1-------,AF,8312,,6546N 02317E, +,SE,LUV,Ludvika,Ludvika,W,--3-----,RN,9901,,6012N 01450E, +,SE,LVR,L�v�nger,Lovanger,AC,1-------,AF,8312,,6422N 02119E, +,SE,LYC,Lycksele,Lycksele,AC,---4----,AI,0001,,6436N 01810E, +,SE,MAN,Marsviken,Marsviken,D,1-------,AI,9704,,5840N 01701E, +,SE,MAP,Mantorp,Mantorp,E,--3-----,RL,9307,,5821N 01517E, +,SE,MAR,Marieberg,Marieberg,,1-------,AA,1601,,5920N 01801E, +,SE,MAT,Matfors,Matfors,Y,--3-----,RL,9501,,6217N 01658E, +,SE,MEL,Mellerud,Mellerud,O,--3-----,RL,1301,,5843N 01228E, +,SE,MEM,Mem,Mem,E,1-3-----,RL,9901,,5829N 01625E, +,SE,MJB,Mj�lby,Mjolby,E,-23-----,AF,8312,XXM,5819N 01508E, +,SE,MLO,Moll�sund,Mollosund,O,1-3-----,RL,9901,,5804N 01129E, +,SE,MLU,Malung,Malung,W,--3-----,RN,9806,,6034N 01340E, +,SE,MND,M�lndal,Molndal,O,--3-----,RL,9501,,5737N 01205E, +,SE,MNF,Munkfors,Munkfors,S,--3-----,RL,9705,,5949N 01330E, +,SE,MOL,Molkom,Molkom,S,--3-----,RL,0105,,5936N 01344E, +,SE,MOM,M�rrum,Morrum,K,--3-----,RL,0105,,5612N 01445E, +,SE,MOO,Mo,Mo,Y,1-------,AF,8312,,6327N 01827E, +,SE,MOP,M�rarp,Morarp,M,--3-----,AF,8312,,5603N 01251E, +,SE,MOT,Motala,Motala,E,-23-----,AF,1407,,5833N 01502E, +,SE,MRA,Mora,Mora,W,-23-----,AF,8312,,6057N 01425E, +,SE,MRF,Mariefred,Mariefred,D,1-3-----,RL,0207,,5916N 01713E, +,SE,MRH,Marieholm,Marieholm,M,--3-----,RN,9806,,5552N 01309E, +,SE,MRK,Markaryd,Markaryd,G,--3-----,RL,9501,,5633N 01336E, +,SE,MST,M�rsta,Marsta,AB,--3-----,RL,9501,,5938N 01751E, +,SE,MTM,Mattmar,Mattmar,Z,-23-----,AF,8312,,6318N 01350E, +,SE,MUK,Munkedal,Munkedal,O,0-------,RL,1301,,5833N 01140E, +,SE,MUN,Munksund,Munksund,BD,123-----,AF,8312,,6517N 02130E, +,SE,NAC,Nacka,Nacka,AB,--3-----,RL,9307,,5919N 01812E, +,SE,NAS,N�s,Nas,W,1-------,AF,8312,,6010N 01520E, +,SE,NAV,N�vekvarn,Navekvarn,D,1-------,AF,8312,,5838N 01648E, +,SE,NBG,Norberg,Norberg,W,--3-----,RL,9501,,6005N 01557E, +,SE,NCS,Nacka Strand,Nacka Strand,AB,--3-----,RN,9806,,5919N 01809E, +,SE,NDE,N�dinge,Nodinge,O,--3-----,RL,0105,,5754N 01203E, +,SE,NHN,Nyhamn,Nyhamn,X,1-------,AF,8312,,5746N 01825E, +,SE,NHR,Norrahammar,Norrahammar,F,--3-----,RL,9307,,5742N 01407E, +,SE,NJA,Norrbottens J�rnverk-SSAB,Norrbottens Jarnverk-SSAB,BD,1-------,AI,9704,,6534N 02212E, +,SE,NOA,Nora,Nora,T,--3-----,RL,0105,,5932N 01501E, +,SE,NOR,Norrbysk�r,Norrbyskar,Y,1-------,AF,8312,,6333N 01953E, +,SE,NRS,Norsborg,Norsborg,D,--3-----,RL,9307,,5915N 01748E, +,SE,NSO,Nossebro,Nossebro,O,--3-----,RN,9806,,5811N 01243E, +,SE,NVK,N�sviken,Nasviken,Y,-23-----,AF,8312,,6145N 01652E, +,SE,NYB,Nybro,Nybro,H,--3-----,RL,9705,,5645N 01554E, +,SE,NYM,Nym�lla,Nymolla,M,0-------,RL,1301,,5602N 01428E, +,SE,NYP,Nyvarp,Nyvarp,,0-------,RL,9012,,5924N 01830E, +,SE,OAX,Oaxen,Oaxen,D,1-------,AF,8312,,5859N 01743E, +,SE,OBB,Obbola,Obbola,AC,1-------,AI,9704,,6342N 02019E, +,SE,OCK,Ockelbo,Ockelbo,X,-23-----,AF,8312,,6053N 01635E, +,SE,OCO,�cker�,Ockero,O,1-------,AI,9704,,5743N 01138E, +,SE,OEM,�verum,Overum,H,--3-----,RL,0105,,5759N 01619E, +,SE,OEV,�verkalix,Overkalix,BD,--3-----,RL,0105,,6625N 02230E, +,SE,OGR,�regrund,Oregrund,C,1-------,AI,9704,,6020N 01827E, +,SE,OLO,Olofstr�m,Olofstrom,K,--3-----,RN,9811,,5618N 01431E, +,SE,ORB,�rebro,Orebro,T,---4----,AI,9601,,5916N 01513E, +,SE,ORK,�rkelljunga,Orkelljunga,M,--3-----,RL,9501,,5617N 01317E, +,SE,ORS,Orsa,Orsa,W,--3-----,RL,9501,,6118N 01445E, +,SE,ORV,�rviken,Orviken,AC,1-------,AF,8312,,6440N 02111E, +,SE,OSD,�stersund,Ostersund,Z,--34----,AI,9601,,6311N 01438E, +,SE,OVL,�verlida,Overlida,O,--3-----,RL,9307,,5721N 01254E, +,SE,PAR,Partille,Partille,O,--3-----,RL,9501,,5744N 01207E, +,SE,PAS,P�skallavik,Paskallavik,H,1-------,AF,8312,,5710N 01628E, +,SE,PPK,Perstorp,Perstorp,M,--3-----,RL,9307,,5612N 01322E, +,SE,RAA,R��,Raa,M,1-------,AF,8312,,5560N 01244E, +,SE,RAM,Ramvik,Ramvik,Y,123-----,AF,8312,,6249N 01752E, +,SE,RAN,Ramn�s,Ramnas,U,--3-----,RL,9501,,5947N 01612E, +,SE,REP,Reftele,Reftele,F,--3-----,RL,9307,,5711N 01336E, +,SE,RIM,Rimbo,Rimbo,AB,--3-----,RL,0105,,5945N 01822E, +,SE,RNS,Rottneros,Rottneros,S,--3-----,RL,0105,,5948N 01307E, +,SE,ROE,Rone,Rone,I,--3-----,AF,8312,,5713N 01827E, +,SE,ROR,R�nnsk�r,Ronnskar,X,1-------,AF,8312,,6154N 01721E, +,SE,ROS,Rosersberg,Rosersberg,AB,--3-----,RL,9307,,5935N 01753E, +,SE,ROT,Rotebro,Rotebro,AB,--3-----,RL,9307,,5929N 01755E, +,SE,ROV,R�nnsk�rsverken,Ronnskarsverken,X,1-------,AF,8312,,6440N 02116E, +,SE,RST,Ransta,Ransta,U,0-------,RQ,9012,,5949N 01638E, +,SE,RUN,Runsten,Runsten,H,--3-----,RL,9307,,5642N 01642E, +,SE,RUR,Runmar�,Runmaro,AB,0-------,RL,1301,,5917N 01846E, +,SE,RVK,R�ttvik,Rattvik,W,--3-----,RL,9501,,6058N 01523E, +,SE,RYD,Rydsg�rd,Rydsgard,M,--3-----,RL,9307,,5528N 01335E, +,SE,RYM,Rydaholm,Rydaholm,F,--3-----,RL,0105,,5659N 01419E, +,SE,RYZ,Ryd,Ryd,G,--3-----,RN,9811,,5628N 01442E, +,SE,SAE,Sandarne,Sandarne,X,123-----,AI,9704,,6116N 01710E, +,SE,SAK,Sandvik,Sandvik,,1-------,AI,9704,,6037N 01648E, +,SE,SAL,Sala,Sala,U,--3-----,RL,9903,XYX,5958N 01636E, +,SE,SAN,Sandviken,Sandviken,X,-23-----,AF,8312,,6037N 01647E, +,SE,SAR,S�ter,Sater,W,--3-----,RL,0105,,6019N 01545E, +,SE,SBB,Saltsj�-Boo,Saltsjo-Boo,AB,1-------,AF,8312,,5919N 01815E, +,SE,SBN,Saltsj�baden,Saltsjobaden,D,123-----,AF,8312,,5917N 01818E, +,SE,SBO,Sj�bo,Sjobo,M,--3-----,RN,9806,,5538N 01341E, +,SE,SBV,S�tra Brunn,Satra Brunn,U,--3-----,RN,9811,,5952N 01627E, +,SE,SDR,S�derfors,Soderfors,X,--3-----,RL,9705,,6023N 01714E, +,SE,SEA,Svedala,Svedala,M,1-3-----,AA,1601,,5533N 01313E, +,SE,SES,Seskar�,Seskaro,BD,1-------,AF,8312,,6544N 02344E, +,SE,SFS,Storfors,Storfors,S,--3-----,RL,0105,,5933N 01420E, +,SE,SGZ,Skog�s,Skogas,AB,--3-----,RN,9811,,5913N 01809E, +,SE,SIK,Sike�,Sikea,AC,1-------,AF,8312,,6410N 02056E, +,SE,SJA,Svenljunga,Svenljunga,O,--3-----,RL,0105,,5729N 01306E, +,SE,SJQ,S�vsj�,Savsjo,F,--3-----,RN,9811,,5720N 01440E, +,SE,SKA,Sk�pafors,Skapafors,O,--3-----,RL,9307,,5901N 01217E, +,SE,SKB,Sk�rblacka,Skarblacka,E,123-----,AF,8312,,5835N 01555E, +,SE,SKG,Sk�nninge,Skanninge,E,--3-----,RL,9501,,5824N 01505E, +,SE,SKH,Sk�rholmen/Stockholm,Skarholmen/Stockholm,AB,--3-----,RL,9307,,5917N 01754E, +,SE,SKI,Skillingaryd,Skillingaryd,F,--3-----,RL,0105,,5726N 01406E, +,SE,SKK,Sk�nvik,Skonvik,Z,--3-----,AF,8312,,6311N 01532E, +,SE,SKL,Skalhamn,Skalhamn,O,1-------,AI,9704,,5819N 01124E, +,SE,SKN,Skuthamn,Skuthamn,BD,1-------,AF,8312,,6529N 02113E, +,SE,SKR,Skredsvik,Skredsvik,O,1-3-----,RL,9012,,5823N 01140E, +,SE,SKU,Skurup,Skurup,M,-23-----,AF,8312,,5529N 01333E, +,SE,SKV,Sk�vde,Skovde,O,-23-----,AF,8312,,5823N 01351E, +,SE,SKZ,Skene,Skene,O,--3-----,RL,9501,,5729N 01239E, +,SE,SLF,Sollefte�,Solleftea,Y,--3-----,RL,9903,,6323N 01655E, +,SE,SLN,Solna,Solna,AB,--3-----,RL,9705,,5922N 01800E, +,SE,SME,Smedjebacken,Smedjebacken,W,--3-----,RL,9501,,6009N 01525E, +,SE,SMO,Sm�gen,Smogen,O,1-3-----,RL,9901,,5821N 01114E, +,SE,SMS,Salmis,Salmis,BD,1-------,RL,9811,,6548N 02360E, +,SE,SNA,Sv�ngsta,Svangsta,K,--3-----,RL,0105,,5616N 01446E, +,SE,SNN,Sennan,Sennan,N,--3-----,RL,9307,,5646N 01259E, +,SE,SOA,Sollentuna,Sollentuna,AB,--3-----,RL,9501,,5926N 01757E, +,SE,SOG,S�derk�ping,Soderkoping,E,123-----,AF,1201,,5827N 01620E, +,SE,SOK,Storvik,Storvik,X,-23-----,RL,9704,,6034N 01629E, +,SE,SOO,S�derhamn,Soderhamn,X,1234----,AI,9601,,6118N 01704E, +,SE,SPA,Sp�nga,Spanga,AB,-23-----,AF,8312,,5923N 01754E, +,SE,SPR,Spr�ngsviken,Sprangsviken,Y,123-----,AF,8312,,6252N 01752E, +,SE,SRA,Skara,Skara,O,--3-----,RL,0105,,5823N 01326E, +,SE,SSD,Str�msund,Stromsund,Z,--3-----,RL,0105,,6415N 01522E, +,SE,SSG,Skinnskatteberg,Skinnskatteberg,U,--3-----,RL,0105,,5949N 01545E, +,SE,SSL,S�sdala,Sosdala,M,--3-----,RL,9704,,5602N 01341E, +,SE,SSO,Stensj�,Stensjo,AC,--3-----,RL,9811,,5647N 01238E, +,SE,STD,St�lldalen,Stalldalen,T,--3-----,RL,9307,,5956N 01457E, +,SE,STL,Saltk�llan,Saltkallan,O,1-3-----,RL,9901,,5826N 01142E, +,SE,STN,Storlien,Storlien,Z,-23-----,RL,9905,,6319N 01206E, +,SE,STP,Staffanstorp,Staffanstorp,M,--3-----,RL,9307,,5539N 01312E, +,SE,STS,Str�msn�sbruk,Stromsnasbruk,G,--3-----,AF,8312,,5633N 01344E, +,SE,STZ,Skultuna,Skultuna,U,--3-----,RN,9806,,5943N 01626E, +,SE,SUD,Stocksund,Stocksund,AB,1-------,AF,8312,,5923N 01803E, +,SE,SUE,Sunne,Sunne,S,--3-----,RL,0105,,5951N 01309E, +,SE,SUG,Sundbyberg,Sundbyberg,AB,123-----,AF,8312,,5922N 01758E, +,SE,SUH,Surahammar,Surahammar,U,--3-----,RL,9912,,5945N 01609E, +,SE,SUN,Sund,Sund,,1-------,AF,8312,,5752N 01515E, +,SE,SVD,Silverdalen,Silverdalen,H,--3-----,RL,9307,,5733N 01545E, +,SE,SVI,Svinesund,Svinesund,O,--3----B,RL,0105,,5906N 01116E, +,SE,SVK,Svartvik,Svartvik,X,1-------,AF,8312,,6205N 01659E, +,SE,SVO,Sv�rdsj�,Svardsjo,W,--3-----,RL,9704,,6045N 01554E, +,SE,SVX,Svan�,Svano,Y,1-------,AF,8312,,6254N 01753E, +,SE,SYS,Syssleb�ck,Syssleback,S,--3-----,RL,0105,,6044N 01252E, +,SE,TAE,T�rnaby,Tarnaby,AC,--3-----,RL,0105,,6543N 01517E, +,SE,TAG,T�ngaberg,Tangaberg,N,--3-----,RQ,0101,,5710N 01214E, +,SE,TAN,Tanumshede,Tanumshede,O,--3-----,RN,9806,,5843N 01120E, +,SE,TAO,Tranemo,Tranemo,O,--3-----,RN,9806,,5730N 01326E, +,SE,TBY,T�by,Taby,AB,-2------,RL,9705,,5928N 01804E, +,SE,TEG,Taberg,Taberg,F,--3-----,RQ,0101,,5741N 01406E, +,SE,TIB,Tibro,Tibro,O,-23-----,AF,8312,,5825N 01412E, +,SE,TID,Tidaholm,Tidaholm,O,-23-----,AF,8312,,5812N 01356E, +,SE,TIE,Tierp,Tierp,C,--3-----,RL,0105,,6020N 01737E, +,SE,TIM,Timr�,Timra,Y,--3-----,RL,9912,,6230N 01718E, +,SE,TIN,Tingsryd,Tingsryd,G,--3-----,RL,9501,,5632N 01458E, +,SE,TJP,Tj�rnarp,Tjornarp,M,--3-----,RL,9307,,5560N 01338E, +,SE,TKF,T�cksfors,Tocksfors,S,--3-----,RL,9501,,5931N 01151E, +,SE,TLL,Tollarp,Tollarp,M,--3-----,RL,9705,,5556N 01359E, +,SE,TNH,Tenhult,Tenhult,F,--3-----,RL,9705,,5742N 01419E, +,SE,TNS,Tran�s,Tranas,F,--3-----,RL,9501,,5803N 01450E, +,SE,TOB,T�reboda,Toreboda,O,--3-----,RL,9501,,5843N 01406E, +,SE,TOM,Tomelilla,Tomelilla,M,-23-----,AF,8312,,5533N 01356E, +,SE,TOP,Torup,Torup,N,--3-----,RL,0105,,5657N 01304E, +,SE,TOR,Tors�s,Torsas,H,--3-----,RL,9501,,5625N 01550E, +,SE,TOV,Torekov,Torekov,M,1-------,AI,9704,,5626N 01238E, +,SE,TRA,Tr�ngsviken,Trangsviken,Z,-23-----,AF,8312,,6320N 01401E, +,SE,TRD,Traryd,Traryd,G,--3-----,RL,9501,,5635N 01345E, +,SE,TRL,Torslanda,Torslanda,O,0-------,RL,1301,,5743N 01146E, +,SE,TRR,Tr�vad,Travad,O,--3-----,RL,9307,,5815N 01305E, +,SE,TRS,Trosa,Trosa,D,0-------,AF,1301,,5850N 01730E, +,SE,TUL,Tungelsta,Tungelsta,AB,-23-----,RQ,9307,,5906N 01803E, +,SE,TVK,Torsvik,Torsvik,F,--3-----,AF,9801,,5742N 01410E, +,SE,TYF,Torsby,Torsby,S,--34----,RL,9506,,6030N 01305E, +,SE,TYG,Tygelsj�,Tygelsjo,M,--3-----,AF,8312,,5531N 01300E, +,SE,TYR,Tyringe,Tyringe,M,--3-----,RL,0105,,5610N 01336E, +,SE,TYS,Tyres�,Tyreso,AB,--3-----,RL,9704,,5913N 01820E, +,SE,UGG,Ugglarp,Ugglarp,N,0-------,AF,1301,,5649N 01238E, +,SE,UGN,Ulebergshamn,Ulebergshamn,O,1-3-----,RL,9901,,5827N 01118E, +,SE,ULD,Ullared,Ullared,N,--3-----,RL,9501,,5708N 01243E, +,SE,ULR,Ulricehamn,Ulricehamn,O,--3-----,RN,9806,,5748N 01323E, +,SE,URD,Unnaryd,Unnaryd,N,--3-----,RN,9811,,5657N 01332E, +,SE,URS,Ursviken,Ursviken,AC,123-----,AF,8312,,6442N 02111E, +,SE,UTA,Utansj�,Utansjo,Y,1-------,AA,1601,,6246N 01755E, +,SE,VAD,Vadstena,Vadstena,E,--3-----,RL,0105,,5826N 01447E, +,SE,VAG,Varberg,Varberg,N,123-----,AA,1601,XWV,5706N 01215E, +,SE,VAJ,V�ja,Vaja,Y,123-----,AI,9704,,6259N 01742E, +,SE,VAK,Valdemarsvik,Valdemarsvik,E,1-------,AI,9704,,5812N 01636E, +,SE,VAO,Vansbro,Vansbro,W,--3-----,RL,0105,,6025N 01420E, +,SE,VAR,V�rnamo,Varnamo,F,-23-----,AF,8312,,5712N 01405E, +,SE,VAX,Vara,Vara,O,--3-----,RN,9806,,5816N 01257E, +,SE,VDS,V�derstad,Vaderstad,E,--3-----,RL,9307,,5819N 01455E, +,SE,VER,Verkeb�ck,Verkeback,H,1-------,AI,9704,,5744N 01631E, +,SE,VGD,Vaggeryd,Vaggeryd,F,--3-----,RL,9501,,5733N 01405E, +,SE,VHD,Vagnh�rad,Vagnharad,D,0-------,RL,1301,,5857N 01730E, +,SE,VHE,V�sterhaninge,Vasterhaninge,AB,--3-----,RL,0105,,5907N 01807E, +,SE,VHM,Vilhelmina,Vilhelmina,AC,---4----,AI,0001,,6450N 01600E, +,SE,VIA,Ving�ker,Vingaker,D,--3-----,RL,0105,,5904N 01553E, +,SE,VIK,Vikmanshyttan,Vikmanshyttan,W,--3-----,RL,0105,,6018N 01550E, +,SE,VIM,Vimmerby,Vimmerby,H,--3-----,RL,9903,,5741N 01550E, +,SE,VIN,Vindeln,Vindeln,BD,--3-----,RL,9501,,6412N 01943E, +,SE,VIR,Virserum,Virserum,H,--3-----,RL,0105,,5719N 01535E, +,SE,VIS,Vinsl�v,Vinslov,M,--3-----,RL,9501,,5606N 01355E, +,SE,VIT,Vittaryd,Vittaryd,G,--3-----,RL,9901,,5658N 01357E, +,SE,VIV,Vivstavarv,Vivstavarv,X,123-----,AI,9704,,6230N 01721E, +,SE,VKF,Viskafors,Viskafors,O,--3-----,RL,9501,,5738N 01251E, +,SE,VLA,V�sterlanda,Vasterlanda,O,--3-----,RN,0104,,5805N 01203E, +,SE,VLB,Valbo,Valbo,X,--3-----,RL,9307,,6039N 01701E, +,SE,VLN,Vislanda,Vislanda,G,--3-----,RL,9501,,5647N 01427E, +,SE,VRG,V�rg�rda,Vargarda,O,--3-----,RL,9501,,5802N 01247E, +,SE,VSJ,Vittsj�,Vittsjo,M,--3-----,RL,9805,,5621N 01340E, +,SE,VTA,Vallentuna,Vallentuna,AB,--3-----,RL,0201,,5935N 01813E, +,SE,VTL,Vetlanda,Vetlanda,F,--3-----,RL,9501,,5722N 01510E, +,SE,VXO,V�xj�,Vaxjo,G,-2-4----,AI,9601,,5653N 01449E, +,SE,VXT,V�xtorp,Vaxtorp,N,--3-----,RL,9307,,5625N 01307E, +,SG,KEP,Keppel Wharves,Keppel Wharves,,1-------,QQ,8103,,0116N 10350E, +,SG,PUB,Pulau Bukom,Pulau Bukom,,1-------,RQ,9506,,0114N 10346E, +,SG,SCT,Singapore Container Terminal,Singapore Container Terminal,,1-------,QQ,8103,,0116N 10350E, +,SG,SEB,Pulau Sebarok,Pulau Sebarok,,1-------,RQ,9506,,0112N 10348E, +,SG,SEM,Sembawang Port,Sembawang Port,,1-------,QQ,8103,,0127N 10349E, +,SG,SIN,Singapore,Singapore,,1--45---,AI,9601,,0117N 10351E, +,SG,SLT,Seletar,Seletar,,1-------,RQ,9506,,0125N 10353E, +,SG,TGA,Tengah,Tengah,,---4----,AI,0001,,0122N 10348E, +,SG,TPG,Tanjong Pagar,Tanjong Pagar,,1-------,RQ,9506,,0117N 10351E, +,SG,WDL,Woodlands,Woodlands,,0-------,RQ,9506,,0126N 10347E, +,SH,ASI,Georgetown,Georgetown,,1--4----,AI,9506,,0756S 01425W, +,SH,SHN,Jamestown,Jamestown,,1-------,QQ,8103,,1556S 00543W, +,SH,TDC,Tristan da Cunha,Tristan da Cunha,,1---5---,AI,9810,,3707S 01217W, +,SI,ANH,Anhovo,Anhovo,,--3-----,RL,9901,,4603N 01337E, +,SI,BVC,Bovec,Bovec,,--3-----,RQ,9806,,4620N 01333E, +,SI,DZE,Domzale,Domzale,,--3-----,RL,9805,,4608N 01436E, +,SI,IZO,Izola,Izola,,1-------,RL,0201,,4532N 01340E, +,SI,KCV,Kocevje,Kocevje,,--3-----,RL,9901,,4539N 01451E, +,SI,KNK,Kamnik,Kamnik,,--3-----,RL,9901,,4614N 01437E, +,SI,KOP,Koper,Koper,,1-------,RL,0201,,4533N 01344E, +,SI,KRJ,Kranj,Kranj,,--3-----,RL,9901,,4615N 01421E, +,SI,LJR,Ljutomer,Ljutomer,,--3-----,RL,0201,,4631N 01612E, +,SI,LJU,Ljubljana,Ljubljana,,---45---,AI,9601,,4603N 01430E, +,SI,MBX,Maribor,Maribor,,---4----,AI,9601,,4633N 01539E, +,SI,PIR,Piran,Piran,,1-------,RL,0201,,4532N 01334E, +,SI,POW,Portoroz,Portoroz,,1--4----,AI,8103,,4531N 01335E, +,SI,RSA,Rogaska Slatina,Rogaska Slatina,,--3-----,RL,9901,,4614N 01538E, +,SI,SBA,Slovenska Bistrica,Slovenska Bistrica,,--3-----,RQ,0101,,4624N 01534E, +,SI,VEL,Velenje,Velenje,,--3-----,RL,9901,,4622N 01507E, +,SI,ZAL,Zalec,Zalec,,--3-----,RL,9901,,4615N 01510E, +,SI,ZRE,Zrece,Zrece,,--3-----,RQ,0201,,4622N 01523E, +,SK,BAA,Devinska Nova Ves/Bratislava,Devinska Nova Ves/Bratislava,BL,-2------,AF,9803,,4813N 01658E, +,SK,BAB,Bratislava Port,Bratislava Port,BL,1-------,AF,9803,,4808N 01709E, +,SK,BCK,Beckov,Beckov,TA,1-------,RL,0701,,4847N 01754E, +,SK,BEC,Becherov,Becherov,PV,--3----B,AF,9803,,4925N 02119E, +,SK,BRO,Brodsk�,Brodske,TA,--3----B,AF,9803,,4841N 01701E, +,SK,BRP,Petrzalka/Bratislava,Petrzalka/Bratislava,BL,--3----B,AF,9803,,4807N 01707E, +,SK,CAD,Cadca,Cadca,ZI,-2-----B,AF,9803,,4926N 01847E, +,SK,CAN,Cana,Cana,KI,-2------,AF,9803,,4843N 02115E, +,SK,CNT,Cierna nad Tisou,Cierna nad Tisou,KI,-2-----B,AF,9803,,4825N 02205E, +,SK,DJA,Dunajsk� Streda,Dunajska Streda,,--3-----,RL,0607,,4759N 01737E, +,SK,DOM,Domica,Domica,KI,--3----B,AF,9803,,4829N 02028E, +,SK,DRI,Drietoma,Drietoma,TC,--3----B,AF,9803,,4854N 01757E, +,SK,DTA,Detva,Detva,,--3-----,RL,0101,,4834N 01925E, +,SK,FIA,Filakovo,Filakovo,BC,-2------,AF,9803,,4816N 01949E, +,SK,HKS,Haniska pri Kosiciach,Haniska pri Kosiciach,,--3-----,AC,0507,,4837N 02115E, +,SK,HOS,Hostovce,Hostovce,KI,--3----B,AF,9803,,4834N 02051E, +,SK,HRI,Hricov,Hricov,ZI,---4---B,AF,9803,,4921N 01901E, +,SK,HSM,Horn� Srnie,Horne Srnie,TC,--3----B,AF,0201,,4859N 01806E, +,SK,ILZ,Zilina,Zilina,,---45---,AI,9601,,4913N 01844E, +,SK,JAR,Jarovce,Jarovce,BL,--3----B,AF,9803,,4804N 01707E, +,SK,KAL,Kalonda,Kalonda,BC,--3----B,AF,9803,,4815N 01939E, +,SK,KLO,Klokocov,Klokocov,ZI,--3----B,AF,9803,,4927N 01834E, +,SK,KNA,Komarno,Komarno,NI,-23-----,AF,9803,,4745N 01808E, +,SK,KRA,Kral,Kral,BC,--3----B,AF,9803,,4820N 02021E, +,SK,LEN,Lenartovce,Lenartovce,BC,-2------,AF,9803,,4818N 02019E, +,SK,LMS,Lysa pod Makytou-Strelna,Lysa pod Makytou-Strelna,TC,--3----B,AF,9803,,4912N 01812E, +,SK,LUE,Lucenec,Lucenec,,---4----,AI,9601,,4820N 01940E, +,SK,MED,Medvedov,Medvedov,TA,--3----B,AF,9803,,4748N 01740E, +,SK,MHB,Makov-Horni Becva,Makov-Horni Becva,ZI,--3----B,AF,9803,,4926N 01817E, +,SK,MIL,Milhost,Milhost,KI,--3----B,AF,9803,,4832N 02116E, +,SK,MRT,Martin,Martin,,--3-----,RL,9704,,4904N 01856E, +,SK,MVA,Matovsk� Vojkovsk�,Matovske Vojkovske,,-2------,AF,9803,,4834N 02208E, +,SK,MYJ,Myjava,Myjava,TC,-2-----B,AF,9803,,4845N 01735E, +,SK,NOB,Nova Bosaca,Nova Bosaca,TC,--3----B,AF,9803,,4853N 01748E, +,SK,NRA,Nitra,Nitra,,0-------,RL,9012,,4819N 01805E, +,SK,PAL,Palota,Palota,PV,-2-----B,AF,9803,,4916N 02160E, +,SK,PLA,Plavec,Plavec,PV,-2-----B,AF,9803,,4916N 02051E, +,SK,POD,Podspady,Podspady,PV,--3----B,AF,9803,,4917N 02010E, +,SK,POM,Podzavoz (Milosova),Podzavoz (Milosova),ZI,--3----B,AF,9803,,4927N 01847E, +,SK,POV,Presov,Presov,,---4----,AI,0001,,4900N 02114E, +,SK,PRI,Pribeta,Pribeta,NI,--3-----,RQ,0901,,4754N 01819E, +,SK,PRV,Pohronsky Ruskov,Pohronsky Ruskov,NI,--3-----,RQ,0901,,4758N 01839E, +,SK,PZK,Pezinok,Pezinok,,--3-----,RQ,0101,,4817N 01716E, +,SK,PZY,Piestany,Piestany,,---4----,AI,9601,,4835N 01749E, +,SK,RSV,Rusovce/Bratislava,Rusovce/Bratislava,BL,-23-----,AF,9803,,4803N 01709E, +,SK,SAL,Salka,Salka,NI,--3----B,AF,9803,,4753N 01845E, +,SK,SDA,Slovenske Darmoty,Slovenske Darmoty,BC,--3-----,AF,9803,,4805N 01918E, +,SK,SHA,Sahy,Sahy,NI,--3-----,AF,9803,,4804N 01857E, +,SK,SIB,Siatorska Bukovinka,Siatorska Bukovinka,BC,--3-----,AF,9803,,4811N 01950E, +,SK,SKA,Skalica,Skalica,TA,-23----B,AF,9803,,4851N 01714E, +,SK,SKE,Skalit�,Skalite,ZI,--3----B,AF,9803,,4930N 01854E, +,SK,SLD,Sliac,Sliac,,---4----,AI,9601,,4837N 01909E, +,SK,SPV,Stropkov,Stropkov,,--3-----,RL,0002,,4912N 02139E, +,SK,SSA,Slovensk� Nov� Mesto,Slovenske Nove Mesto,KI,-23-----,AF,9803,,4824N 02140E, +,SK,SVR,Srvcinovec,Srvcinovec,ZI,--3----B,AF,9803,,4929N 01848E, +,SK,SVT,Svit,Svit,PV,--3-----,RL,0002,,4903N 02012E, +,SK,TAT,Poprad/Tatry,Poprad/Tatry,PV,---4----,AI,0001,,4903N 02018E, +,SK,TBE,Trencianske Bohuslavice,Trencianske Bohuslavice,TC,1-3-----,RL,0701,,4848N 01752E, +,SK,TON,Ton,Ton,NI,--3-----,RQ,0901,,4748N 01750E, +,SK,TOP,Topolnica,Topolnica,TA,-----6--,RL,1107,,4810N 01748E, +,SK,TSA,Trstena,Trstena,ZI,--3-----,AF,9803,,4922N 01936E, +,SK,UBL,Ubla,Ubla,PV,--3----B,AF,9803,,4854N 02223E, +,SK,VEK,"Vefky Kamenec, Pacin","Vefky Kamenec, Pacin",KI,--3----B,AF,9803,,4822N 02148E, +,SL,BTE,Bonthe,Bonthe,,1--4----,AI,9601,,0732N 01230W, +,SL,DSL,Daru,Daru,,---4----,AI,0001,,0730N 01110W, +,SL,FNA,Freetown,Freetown,,1--45---,AI,9401,,0829N 01316W, +,SL,GBK,Gbangbatok,Gbangbatok,,---4----,AI,9601,,0748N 01223W, +,SL,KBA,Kabala,Kabala,,---4----,AI,0001,,0935N 01133W, +,SL,KBS,Bo,Bo,,---4----,AI,9601,,0758N 01144W, +,SL,KEN,Kenema,Kenema,,---4----,AI,9601,,0753N 01111W, +,SL,NIT,Nitti,Nitti,,1-------,QQ,8103,,0746N 01224W, +,SL,PEP,Pepel,Pepel,,1-------,QQ,8103,,0836N 01304W, +,SL,SBO,Sherbro,Sherbro,,1-------,QQ,8103,,0731N 01236W, +,SL,SRK,Sierra Leone Apt,Sierra Leone Apt,,---4----,RQ,0901,,0837N 01312W, +,SM,GAL,Galazzano,Galazzano,09,--3-----,RL,0901,,4359N 01229E, +,SM,SAI,San Marino,San Marino,,---4----,AI,9601,,4356N 01227E, +,SN,BXE,Bakel,Bakel,,---4----,AI,9601,,1454N 01227W, +,SN,DKR,Dakar,Dakar,,1--45---,AI,9601,,1442N 01727W, +,SN,FOU,Foundiougne,Foundiougne,,1-------,RQ,9506,,1408N 01628W, +,SN,KDA,Kolda,Kolda,,---4----,AI,0001,,1254N 01456W, +,SN,KGG,Kedougou,Kedougou,,---4----,AI,9601,,1233N 01211W, +,SN,KLC,Kaolack,Kaolack,,1--4----,AI,9601,,1408N 01605W, +,SN,LYN,Lyndiane,Lyndiane,,1-------,RQ,9506,,1411N 01608W, +,SN,MAX,Matam,Matam,,---4----,AI,9601,,1539N 01315W, +,SN,NIK,Niokolo Koba,Niokolo Koba,,---4----,AI,0001,,1301N 01314W, +,SN,POD,Podor,Podor,,---4----,AI,0001,,1639N 01458W, +,SN,RDT,Richard Toll,Richard Toll,,---4----,AI,9601,,1628N 01541W, +,SN,SMY,Simenti,Simenti,,---4----,AI,9601,,1302N 01318W, +,SN,TUD,Tambacounda,Tambacounda,,---4----,AI,9601,,1346N 01340W, +,SN,ZIG,Ziguinchor,Ziguinchor,,1--4----,AI,9601,,1234N 01616W, +,SO,ALU,Alula,Alula,,---4----,AI,9601,,1158N 05045E, +,SO,BBO,Berbera,Berbera,,1--4----,AI,9601,,1026N 04501E, +,SO,BIB,Baidoa,Baidoa,,---4----,AI,0001,,0307N 04339E, +,SO,BSA,Bossaso,Bossaso,,---4----,AI,9601,,1117N 04909E, +,SO,BSY,Bardera,Bardera,,---4----,AI,0001,,0220N 04217E, +,SO,BUO,Burao,Burao,,---4----,AI,9601,,0932N 04532E, +,SO,BXX,Borama,Borama,,---4----,AI,0001,,0956N 04311E, +,SO,CMO,Obbia,Obbia,,---4----,AI,0001,,0521N 04832E, +,SO,CMS,Scusciuban,Scusciuban,,---4----,AI,0001,,1017N 05014E, +,SO,CXN,Candala,Candala,,---4----,AI,0001,,1128N 04952E, +,SO,DAN,Dante (Ras Hafun),Dante (Ras Hafun),,0-------,RQ,9506,,1025N 05116E, +,SO,ERA,Erigavo,Erigavo,,---4----,AI,0001,,1037N 04722E, +,SO,GBM,Garbaharey,Garbaharey,,---4----,AI,0001,,0320N 04213E, +,SO,GGR,Garoe,Garoe,,---4----,AI,0001,,0824N 04829E, +,SO,GLK,Galcaio,Galcaio,,---4----,AI,0001,,0646N 04726E, +,SO,GSR,Gardo,Gardo,,---4----,AI,9601,,0240N 04356E, +,SO,HCM,Eil,Eil,,---4----,AI,0001,,1032N 04512E, +,SO,HGA,Hargeisa,Hargeisa,,---4----,AI,9601,,0934N 04404E, +,SO,KMU,Kismayu,Kismayu,,1--4----,AI,9601,,0022S 04233E, +,SO,LGX,Lugh Ganane,Lugh Ganane,,---4----,AI,0001,,0349N 04233E, +,SO,LKR,Las Khoreh,Las Khoreh,,---4----,AI,0001,,1110N 04812E, +,SO,MER,Merca,Merca,,1-------,QQ,8103,,0143N 04446E, +,SO,MGQ,Mogadishu,Mogadishu,,1--45---,AI,9601,,0202N 04521E, +,SR,AAJ,Awaradam,Awaradam,,---4----,AI,0001,,0351N 05537W, +,SR,ABN,Albina,Albina,,1--4----,AI,9601,,0530N 05403W, +,SR,AGI,Wageningen,Wageningen,,1--4----,AI,9601,,0546N 05641W, +,SR,BTO,Botopasie,Botopasie,,---4----,AI,0001,,0413N 05527W, +,SR,DOE,Djoemoe,Djoemoe,,---4----,AI,0001,,0401N 05528W, +,SR,DRJ,Drietabbetje,Drietabbetje,,---4----,AI,0001,,0407N 05440W, +,SR,ICK,Nieuw Nickerie,Nieuw Nickerie,,1--4----,AI,9601,,0557N 05659W, +,SR,KCB,Kasikasima,Kasikasima,,---4----,AI,0001,,0259N 05525W, +,SR,LDO,Ladouanie,Ladouanie,,---4----,AI,0001,,0423N 05524W, +,SR,MOJ,Moengo,Moengo,,1--4----,AI,9601,,0537N 05424W, +,SR,OEM,Paloemeu,Paloemeu,,---4----,AI,0001,,0321N 05526W, +,SR,PBM,Paramaribo,Paramaribo,,1--45---,AI,9601,,0549N 05510W, +,SR,PRM,Paranam,Paranam,,1-------,AI,9401,,0537N 05506W, +,SR,SMZ,Stoelmans Eiland,Stoelmans Eiland,,---4----,AI,9601,,0421N 05425W, +,SR,TOT,Totness,Totness,,---4----,AI,0001,,0553N 05620W, +,SR,WSO,Washabo,Washabo,,---4----,AI,0001,,0513N 05711W, +,ST,ANG,Angolares,Angolares,,----5---,AI,9805,,0009N 00638E, +,ST,GUA,Guadalupe,Guadalupe,,----5---,AI,9805,,0022N 00637E, +,ST,MAD,Madalena,Madalena,,----5---,AI,9805,,0020N 00639E, +,ST,NEV,Neves,Neves,,----5---,AI,9805,,0019N 00632E, +,ST,PCP,Principe,Principe,,1--4----,AI,9601,,0137N 00724E, +,ST,PGP,Porto Alegre,Porto Alegre,,---4----,AI,0001,,0002N 00632E, +,ST,RIA,Ribeira Afonso,Ribeira Afonso,,----5---,AI,9805,,0012N 00640E, +,ST,SAA,Santo Antonio,Santo Antonio,,1-------,RQ,9506,,0138N 00725E, +,ST,SAM,Santo Amaro,Santo Amaro,,----5---,AI,9805,,0021N 00641E, +,ST,STA,Santana,Santana,,----5---,AI,9805,,0016N 00642E, +,ST,TMS,Sao Tome Island,Sao Tome Island,,1--45---,AI,9601,,0021N 00644E, +,ST,TRI,Trindade,Trindade,,----5---,AI,9805,,0017N 00638E, +,SV,AQJ,Acajutla,Acajutla,,1-3-----,AI,9401,,1335N 08950W, +,SV,LUN,La Union,La Union,,1-------,AI,9401,,1320N 08751W, +,SV,MIR,Miramar,Miramar,AH,1-------,RQ,0901,,1331N 08854W, +,SV,NHZ,Nahuizalco,Nahuizalco,SO,1-------,RQ,0901,,1347N 08944W, +,SV,SAL,San Salvador,San Salvador,,1--45---,AI,9601,,1342N 08911W, +,SV,STA,Santa Ana,Santa Ana,,----5---,AI,9601,,1360N 08933W, +,SV,TUE,Moncagua,Moncagua,AH,1-------,RQ,0901,,1332N 08815W, +,SY,ALP,Aleppo (Alep),Aleppo (Alep),,---45---,AI,9601,,3612N 03710E, +,SY,DAM,Damascus (Damas),Damascus (Damas),,1--45---,AI,9601,,3331N 03619E, +,SY,DEZ,Deirezzor,Deirezzor,,---4----,AI,9601,,3520N 04009E, +,SY,KAC,Kameshli,Kameshli,,---4----,AI,9601,,3703N 04113E, +,SY,PMS,Palmyra,Palmyra,,---4----,AI,0001,,3433N 03817E, +,SY,QDR,Dera'a,Dera'a,,---45---,AI,9805,,3238N 03606E, +,SY,QHM,Hama,Hama,,0-------,RQ,9506,,3508N 03645E, +,SY,QSW,Sweida,Sweida,,---4----,AI,0001,,3242N 03634E, +,SY,WST,Wasit,Wasit,,0-------,RQ,9012,,3540N 03621E, +,SZ,MAT,Matsapha,Matsapha,,--3-----,RQ,9705,,2630S 03119E, +,SZ,MTS,Manzini,Manzini,,---45---,AI,9805,,2630S 03122E, +,SZ,QMN,Mbabane,Mbabane,,-2-45---,AI,9805,,2620S 03109E, +,TC,GDT,Grand Turk Island,Grand Turk Island,,1--45---,AI,9601,,2128N 07108W, +,TC,MDS,Middle Caicos,Middle Caicos,,---4----,AI,9601,,2148N 07146W, +,TC,NCA,North Caicos,North Caicos,,1--4----,AI,9601,,2153N 07157W, +,TC,PIC,Pine Cay,Pine Cay,,---4----,AI,9601,,2152N 07205W, +,TC,PLS,Providenciales,Providenciales,,1--4----,RQ,9506,,2148N 07218W, +,TC,SLX,Salt Cay,Salt Cay,,1--4----,AI,9601,,2119N 07112W, +,TC,XSC,South Caicos,South Caicos,,1--4----,AI,9601,,2131N 07131W, +,TD,AKM,Zakouma,Zakouma,,---4----,AI,0001,,1054N 01949E, +,TD,AMC,Am Timan,Am Timan,,---4----,AI,0001,,1102N 02017E, +,TD,AMO,Mao,Mao,,---4----,AI,0001,,1407N 01519E, +,TD,ATV,Ati,Ati,,---4----,AI,9601,,1313N 01820E, +,TD,BKR,Bokoro,Bokoro,,---4----,AI,0001,,1223N 01703E, +,TD,FYT,Faya,Faya,,---4----,AI,0001,,1755N 01906E, +,TD,GHD,Gadang-Haddad-Dandi,Gadang-Haddad-Dandi,,--3-----,RL,0002,,1022N 01702E, +,TD,LTC,Lai,Lai,,---4----,AI,0001,,0924N 01618E, +,TD,MEF,Melfi,Melfi,,---4----,AI,9601,,1104N 01756E, +,TD,MQQ,Moundou,Moundou,,---4----,AI,9601,,0834N 01604E, +,TD,MVO,Mongo,Mongo,,---4----,AI,9601,,1211N 01841E, +,TD,OGR,Bongor,Bongor,,---4----,AI,9601,,1017N 01522E, +,TD,OTC,Bol,Bol,,---4----,AI,9601,,1328N 01443E, +,TD,OUM,Oum Hadjer,Oum Hadjer,,---4----,AI,0001,,1318N 01941E, +,TD,OUT,Bousso,Bousso,,---4----,AI,0001,,1029N 01643E, +,TD,PLF,Pala,Pala,,---4----,AI,0001,,0922N 01455E, +,TD,SRH,Sarh,Sarh,,---45---,AI,9805,,0908N 01824E, +,TG,KPE,Kpeme,Kpeme,,1-------,QQ,8103,,0626N 00111E, +,TG,LFW,Lome,Lome,,1--45---,AI,9601,,0608N 00113E, +,TH,CAN,Amnat Charoen,Amnat Charoen,,--3-----,RL,9901,,1552N 10438E, +,TH,CHB,Chon Buri,Chon Buri,,--3-----,RL,9901,QHI,1322N 10059E, +,TH,PNA,Phra Nakhon si Ayutthaya,Phra Nakhon si Ayutthaya,,--3-----,RQ,9901,,1421N 10035E, +,TH,RYG,Rayong,Rayong,,--3-----,RL,0101,,1241N 10117E, +,TH,TPT,Thai prosperity terminal,Thai prosperity terminal,,--3-----,RQ,9705,,1339N 10033E, +,TH,YAL,Yala,Yala,,--3-----,RL,0001,,0633N 10117E, +,TJ,DYU,Dushanbe,Dushanbe,,---4----,AI,9601,,3835N 06847E, +,TJ,LBD,Khudzhand,Khudzhand,,---4----,AI,0001,,4017N 06937E, +,TM,CRZ,Tchardjou,Tchardjou,,---45---,AI,9808,,3906N 06334E, +,TM,KUK,Kushka,Kushka,,-23-----,AI,8601,,3516N 06220E, +,TM,MYP,Mary,Mary,,---4----,AI,0001,,3736N 06150E, +,TM,SRK,Sarakhs,Sarakhs,,--3-----,RL,0002,,3631N 06113E, +,TN,ASH,Ashtart Terminal,Ashtart Terminal,,1-------,RQ,9506,,3417N 01123E, +,TN,BDL,Les Berges du Lac,Les Berges du Lac,11,-----6--,RL,1107,,3650N 01014E, +,TN,BGA,Ben Gardane,Ben Gardane,,--3-----,QQ,8103,,3308N 01113E, +,TN,BIZ,Bizerte,Bizerte,,1234----,QQ,8103,,3716N 00952E, +,TN,DJE,Djerba,Djerba,,1-34----,AI,9601,,3346N 01053E, +,TN,EBM,El Borma,El Borma,,---4----,AI,0001,,3141N 00913E, +,TN,GAF,Gafsa,Gafsa,,---4----,AI,0001,,3425N 00847E, +,TN,KER,Kerkena,Kerkena,,--3-----,QQ,8103,,3439N 01102E, +,TN,KKE,Kalaa Kebira,Kalaa Kebira,,-23-----,QQ,8103,,3552N 01032E, +,TN,KOR,Korba,Korba,,--3-----,QQ,8103,,3634N 01051E, +,TN,LGN,La Goulette Nord (Halqueloued),La Goulette Nord (Halqueloued),,123-----,QQ,8103,,3649N 01018E, +,TN,LSK,La Skhirra,La Skhirra,,123-----,QQ,8103,,3418N 01004E, +,TN,MAT,Mateur,Mateur,,-23-----,QQ,8103,,3702N 00940E, +,TN,MBA,Menzel Bourguiba,Menzel Bourguiba,,123-----,QQ,8103,,3709N 00948E, +,TN,MIR,Monastir,Monastir,,--345---,AI,9601,,3546N 01050E, +,TN,MOK,Moknine,Moknine,,--3-----,QQ,8103,,3538N 01053E, +,TN,MTE,Menzel Temime,Menzel Temime,,--3-----,QQ,8103,,3647N 01060E, +,TN,NAB,Nabeul,Nabeul,,-23-----,QQ,8103,,3627N 01044E, +,TN,QKN,Kairouan,Kairouan,,---4----,AI,0001,,3540N 01006E, +,TN,SFA,Sfax,Sfax,,1234----,AI,9601,,3444N 01046E, +,TN,SUS,Sousse,Sousse,,1234----,QQ,8103,,3550N 01038E, +,TN,TBJ,Tabarka,Tabarka,,-234----,AI,9601,,3657N 00845E, +,TN,TOE,Tozeur,Tozeur,,---4----,AI,0001,,3355N 00808E, +,TN,TUN,Tunis,Tunis,,12345---,AI,9601,,3648N 01011E, +,TO,HPA,Ha'apai,Ha'apai,,1--4----,AI,9601,,1947S 17427W, +,TO,NEI,Neiafu,Neiafu,,1-------,QQ,8103,,1839S 17359W, +,TO,NFO,Niuafo'ou,Niuafo'ou,,---4----,AI,0001,,1536S 17538W, +,TO,NTT,Niuatoputapu,Niuatoputapu,,---4----,AI,0001,,1557S 17347W, +,TO,PAN,Pangai,Pangai,,1-------,RQ,9506,,1948S 17421W, +,TO,VAV,Vava'u,Vava'u,,---4----,AI,9601,,1837S 17400W, +,TR,ACI,Acibadem,Acibadem,34,0-------,RN,9710,,4100N 02903E, +,TR,ADA,Adana,Adana,01,1--4----,AI,9601,,3659N 03520E, +,TR,ADI,Adiyaman,Adiyaman,02,0-------,RN,9811,,3746N 03817E, +,TR,ADK,Anadolukavagi,Anadolukavagi,34,0-------,RN,9811,,4110N 02905E, +,TR,ADN,Aydin,Aydin,09,0-------,RN,9710,,3751N 02751E, +,TR,ADZ,Adapazari,Adapazari,54,--3-----,RQ,8103,,4047N 03024E, +,TR,AFY,Afyonkarahisar,Afyonkarahisar,03,--34----,AI,0601,,3845N 03032E, +,TR,AHM,Ahmetli,Ahmetli,45,0-------,RN,9710,,3837N 02840E, +,TR,AHR,Aksehir,Aksehir,42,0-------,RN,9710,,3822N 03125E, +,TR,AHS,Akhisar,Akhisar,45,0-------,RN,9710,,3855N 02750E, +,TR,AJI,Agri,Agri,04,---4----,AI,9710,,3943N 04303E, +,TR,AKI,Akseki,Akseki,07,0-------,RN,9710,,3703N 03147E, +,TR,AKS,Aksaray,Aksaray,34,0-------,RN,9710,,3822N 03402E, +,TR,AKZ,Akyazi,Akyazi,54,0-------,RN,9710,,4041N 03037E, +,TR,ALE,Alemdag,Alemdag,34,0-------,RN,9710,,4103N 02914E, +,TR,ALI,Aliaga,Aliaga,35,1-------,RL,1901,,3848N 02658E, +,TR,ALT,Altintepe,Altintepe,34,0-------,RN,9710,,4057N 02906E, +,TR,AMA,Amasra,Amasra,67,1-------,RL,1901,,4145N 03223E, +,TR,AMY,Amasya,Amasya,05,0-------,RN,9710,,4039N 03550E, +,TR,ANK,Ankara,Ankara,06,-2345---,AI,9601,,3955N 03251E, +,TR,API,Alapli,Alapli,67,0-------,RN,9710,,4111N 03123E, +,TR,APY,Acipayam,Acipayam,20,0-------,RN,9710,,3726N 02921E, +,TR,ARI,Ayranci,Ayranci,70,0-------,RN,9710,,3721N 03343E, +,TR,ARY,Aksaray,Aksaray,68,0-------,RN,9710,,3822N 03402E, +,TR,ASH,Alasehir,Alasehir,45,0-------,RN,9710,,3821N 02831E, +,TR,AVN,Artvin,Artvin,08,0-------,RN,9710,,4111N 04150E, +,TR,AYD,Altinkum,Altinkum,09,1-------,RQ,8103,,3721N 02717E, +,TR,AYS,Ayas,Ayas,06,0-------,RN,9710,,4001N 03220E, +,TR,AYZ,Ayazaga,Ayazaga,34,0-------,RN,9710,,4107N 02860E, +,TR,BAB,Babaeski,Babaeski,39,0-------,RN,9710,,4126N 02706E, +,TR,BAF,Bafra,Bafra,55,0-------,RN,9811,,4134N 03554E, +,TR,BAG,Bagcilar,Bagcilar,34,0-------,RN,9710,,4102N 02851E, +,TR,BAL,Batman,Batman,72,---4----,AI,9710,,3753N 04108E, +,TR,BAN,Banaz,Banaz,64,0-------,RN,9710,,3844N 02945E, +,TR,BAY,Bayrampasa,Bayrampasa,34,0-------,RN,9710,,4102N 02855E, +,TR,BBD,Babadag,Babadag,20,0-------,RN,9710,,3748N 02851E, +,TR,BCE,Buyukcekmece,Buyukcekmece,34,0-------,RN,9710,,4101N 02835E, +,TR,BCK,Bucak,Bucak,15,0-------,RN,9710,,3727N 03035E, +,TR,BDG,Bozdogan,Bozdogan,09,0-------,RN,9710,,3740N 02819E, +,TR,BDN,Buldan,Buldan,20,0-------,RN,9710,,3803N 02850E, +,TR,BDR,Burdur,Burdur,15,0-------,RN,9710,,3743N 03017E, +,TR,BER,Bergama,Bergama,35,0-------,RN,9710,,3907N 02711E, +,TR,BEY,Beykoz,Beykoz,34,1-------,RN,9710,,4108N 02906E, +,TR,BHN,Burhaniye,Burhaniye,10,1-------,RN,9710,,3930N 02659E, +,TR,BIG,Biga,Biga,17,0-------,RN,9710,,4014N 02715E, +,TR,BIL,Bilecik,Bilecik,11,0-------,RN,9710,,4009N 02959E, +,TR,BLY,Balya,Balya,10,0-------,RN,9710,,3945N 02735E, +,TR,BOL,Bolu,Bolu,14,1-------,RN,9710,,4044N 03137E, +,TR,BOR,Bornova,Bornova,35,0-------,RN,9710,,3828N 02713E, +,TR,BOS,Bostanci,Bostanci,34,0-------,RN,9710,,4057N 02906E, +,TR,BPZ,Beypazari,Beypazari,06,0-------,RN,9710,,4010N 03155E, +,TR,BTN,Bartin,Bartin,74,0-------,RN,9710,,4138N 03220E, +,TR,BTZ,Bursa,Bursa,16,--3-----,AI,9601,,4011N 02904E, +,TR,BUC,Buca,Buca,35,0-------,RN,9710,,3823N 02710E, +,TR,BUH,Buharkent,Buharkent,09,0-------,RN,9710,,3758N 02845E, +,TR,BVN,Bolvadin,Bolvadin,03,0-------,RN,9710,,3843N 03103E, +,TR,BYD,Beydag,Beydag,35,0-------,RN,9710,,3805N 02813E, +,TR,BYL,Beylikduzu,Beylikduzu,34,0-------,RN,9710,,4100N 02838E, +,TR,BYM,Bayramic,Bayramic,17,0-------,RN,9710,,3949N 02637E, +,TR,BYN,Bayindir,Bayindir,35,0-------,RN,9710,,3813N 02739E, +,TR,BYR,Bayramoglu,Bayramoglu,41,0-------,RN,9710,,4048N 02921E, +,TR,BYS,Beysehir,Beysehir,42,0-------,RN,9710,,3741N 03144E, +,TR,BYT,Bayburt,Bayburt,69,0-------,RN,9710,,4015N 04013E, +,TR,BZB,Bozburun,Bozburun,48,1-------,QQ,8103,,3642N 02803E, +,TR,BZI,Balikesir,Balikesir,10,1--4----,AI,9710,MQJ,3939N 02753E, +,TR,CAL,Cal,Cal,20,0-------,RN,9710,,3805N 02924E, +,TR,CEV,Cevizli,Cevizli,34,0-------,RN,9710,,4055N 02909E, +,TR,CEY,Ceyhan,Ceyhan,01,0-------,RQ,9506,,3702N 03549E, +,TR,CHB,Cihanbeyli,Cihanbeyli,42,0-------,RN,9710,,3840N 03255E, +,TR,CIF,Ciftehavuzlar,Ciftehavuzlar,34,0-------,RN,9710,,4102N 02854E, +,TR,CIG,Cigli,Cigli,35,0-------,RN,9710,,3830N 02704E, +,TR,CIN,Cine,Cine,09,0-------,RN,9710,,3737N 02804E, +,TR,CTK,Celtik,Celtik,42,0-------,RN,9710,,3901N 03147E, +,TR,CUB,Cubuklu,Cubuklu,34,1-------,QQ,8103,,4106N 02905E, +,TR,DAR,Darica,Darica,41,1-------,RQ,9506,,4045N 02923E, +,TR,DAZ,Dazkiri,Dazkiri,03,0-------,RN,9710,,3755N 02952E, +,TR,DCI,Demirci,Demirci,45,0-------,RN,9710,,3903N 02840E, +,TR,DDM,Didim,Didim,09,0-------,RN,9710,,3723N 02716E, +,TR,DHN,Doganhisar,Doganhisar,42,0-------,RN,9710,,3809N 03141E, +,TR,DIL,Diliskelesi,Diliskelesi,41,1-------,RN,9710,,4047N 02931E, +,TR,DIY,Diyarbakir,Diyarbakir,21,--34----,AI,9601,,3755N 04014E, +,TR,DLM,Dalaman,Dalaman,48,---4----,AI,9710,,3646N 02848E, +,TR,DLV,Dilovasi,Dilovasi,41,0-------,RN,9710,,4047N 02932E, +,TR,DNR,Dinar,Dinar,03,0-------,RN,9710,,3804N 03010E, +,TR,DNZ,Denizli,Denizli,20,--3-----,RQ,9705,,3747N 02906E, +,TR,DOL,Dolayoba,Dolayoba,34,0-------,RN,9710,,4054N 02915E, +,TR,DPR,Dumlupinar,Dumlupinar,43,0-------,RN,9710,,3924N 03002E, +,TR,DRC,Derince,Derince,41,1-3-----,QQ,8103,,4045N 02950E, +,TR,DRK,Devrek,Devrek,67,0-------,RN,9710,,4113N 03157E, +,TR,DRY,Dursunbey,Dursunbey,10,0-------,RN,9710,,3935N 02838E, +,TR,DUD,Dudullu,Dudullu,34,0-------,RN,9710,,4101N 02909E, +,TR,ECE,Eceabat,Eceabat,17,0-------,RN,9710,,4011N 02622E, +,TR,EDI,Edirne,Edirne,22,1-------,RQ,8103,,4141N 02634E, +,TR,EDK,Edincik,Edincik,10,0-------,RQ,9506,,4021N 02752E, +,TR,EGI,Egirdir,Egirdir,32,0-------,RN,9710,,3752N 03051E, +,TR,EGZ,Emirgazi,Emirgazi,42,0-------,RN,9710,,3754N 03350E, +,TR,ELM,Elmali,Elmali,07,0-------,RN,9710,,3644N 02955E, +,TR,EME,Emet,Emet,43,0-------,RN,9710,,3920N 02916E, +,TR,EMG,Emirdag,Emirdag,03,0-------,RN,9710,,3901N 03109E, +,TR,ERN,Erenkoy,Erenkoy,34,--3-----,RN,9710,,4058N 02905E, +,TR,ERZ,Erzurum,Erzurum,25,-234----,AI,9601,,3954N 04116E, +,TR,ESB,Esenboga Apt/Ankara,Esenboga Apt/Ankara,06,---4----,AI,9601,,4008N 03260E, +,TR,ESE,Esenler,Esenler,34,0-------,RN,9710,,4102N 02853E, +,TR,ESK,Eskisehir,Eskisehir,26,-234----,AI,9601,AOE,3946N 03031E, +,TR,ESM,Esme,Esme,64,0-------,RN,9710,,3824N 02858E, +,TR,ESY,Esenyurt,Esenyurt,34,0-------,RN,9710,,4102N 02841E, +,TR,ETI,Etiler,Etiler,34,0-------,RN,9710,,4105N 02902E, +,TR,EZI,Ezine,Ezine,17,0-------,RN,9710,,3947N 02620E, +,TR,EZS,Elazig,Elazig,23,---4----,AI,9710,,3840N 03913E, +,TR,FAT,Fatih,Fatih,34,-2--5---,QQ,0212,,4101N 02857E, +,TR,FIK,Fikirtepe,Fikirtepe,34,0-------,RN,9710,,4060N 02903E, +,TR,FLO,Florya,Florya,34,0-------,RN,9710,,4059N 02847E, +,TR,GAY,Gayrettepe,Gayrettepe,34,0-------,RN,9710,,4104N 02900E, +,TR,GAZ,Gaziosmanpasa,Gaziosmanpasa,34,0-------,RN,9710,,4103N 02855E, +,TR,GDZ,Gediz,Gediz,43,0-------,RN,9710,,3860N 02923E, +,TR,GEL,Gelibolu,Gelibolu,17,1-3-----,QQ,8103,,4024N 02640E, +,TR,GER,Gerede,Gerede,14,0-------,RN,9710,,4048N 03212E, +,TR,GEY,Geyve,Geyve,54,0-------,RN,9710,,4031N 03017E, +,TR,GRK,Germencik,Germencik,09,0-------,RN,9710,,3752N 02736E, +,TR,GTA,Galata,Galata,34,1-------,RQ,8103,,4102N 02858E, +,TR,GUN,Gunesli,Gunesli,34,0-------,RN,9710,,4102N 02850E, +,TR,GZT,Gaziantep,Gaziantep,27,--34----,AI,9601,,3704N 03723E, +,TR,HAB,Habibler,Habibler,34,0-------,RN,9710,,4108N 02850E, +,TR,HAK,Hakkari,Hakkari,30,0-------,RN,9710,,3735N 04344E, +,TR,HAL,Halkali,Halkali,34,-23-----,RN,9710,,4102N 02848E, +,TR,HAP,Hasanpasa,Hasanpasa,34,0-------,RN,9710,,4058N 02915E, +,TR,HAR,Haramidere,Haramidere,34,1-------,QQ,0212,,4100N 02841E, +,TR,HAT,Hatay,Hatay,31,---4----,RL,1701,HTY,3606N 03609E, +,TR,HAV,Havsa,Havsa,22,0-------,RN,9710,,4133N 02649E, +,TR,HAY,Haydarpasa,Haydarpasa,34,1-3-----,QQ,8103,,4060N 02901E, +,TR,HEN,Hendek,Hendek,54,0-------,RN,9710,,4048N 03045E, +,TR,HER,Hereke,Hereke,41,1-------,QQ,8103,,4048N 02939E, +,TR,HMA,Haymana,Haymana,06,0-------,RN,9710,,3926N 03230E, +,TR,HMY,Hadimkoy,Hadimkoy,34,--3-----,RQ,0901,,4110N 02837E, +,TR,HVR,Havran,Havran,10,0-------,RN,9710,,3933N 02706E, +,TR,HYR,Hayrabolu,Hayrabolu,59,0-------,RN,9710,,4113N 02706E, +,TR,ICE,Icerenkoy,Icerenkoy,34,0-------,RN,9710,,4058N 02907E, +,TR,ICO,Incirliova,Incirliova,09,0-------,RN,9710,,3751N 02743E, +,TR,IGD,Igdir,Igdir,76,0-------,RN,9710,,3955N 04403E, +,TR,IHY,Ihsaniye,Ihsaniye,03,--3-----,RQ,0901,,3902N 03025E, +,TR,IKI,Ikitelli,Ikitelli,34,0-------,RN,9710,,4104N 02848E, +,TR,ILG,Ilgin,Ilgin,42,0-------,RN,9710,,3817N 03155E, +,TR,INH,Inhisar,Inhisar,11,0-------,RN,9710,,4003N 03023E, +,TR,INO,Inonu,Inonu,26,--3-----,RN,0212,,3949N 03009E, +,TR,IPS,Ipsala,Ipsala,22,--3-----,QQ,8103,,4055N 02623E, +,TR,ISE,Isparta,Isparta,32,---4----,AI,9710,,3746N 03033E, +,TR,IZK,Iznik,Iznik,16,0-------,RN,9710,,4026N 02943E, +,TR,KAD,Kadikoy,Kadikoy,34,0-------,RN,9710,,4059N 02902E, +,TR,KAL,Kalekoy,Kalekoy,,0-------,RQ,9811,,4034N 03556E,More than one place with this name +,TR,KAN,Kandira,Kandira,41,0-------,RN,9710,,4104N 03009E, +,TR,KAR,Kartal,Kartal,34,1-------,QQ,8103,,4053N 02911E, +,TR,KAY,Kaynarca,Kaynarca,34,0-------,RN,9710,,4053N 02915E, +,TR,KAZ,Kazlicesme,Kazlicesme,34,0-------,RN,9710,,4059N 02855E, +,TR,KBN,Karaburun,Karaburun,35,0-------,RN,9710,,3838N 02631E, +,TR,KBY,Karacabey,Karacabey,16,1-------,RN,9710,,4013N 02822E, +,TR,KCA,Kaynarca,Kaynarca,54,0-------,RN,9710,,4102N 03018E, +,TR,KCK,Kuyucak,Kuyucak,09,0-------,RN,9710,,3755N 02828E, +,TR,KCM,Kahramanmaras,Kahramanmaras,46,---4----,AI,9710,,3735N 03656E, +,TR,KCO,Kocaeli,Kocaeli,41,---4----,AI,9811,,4046N 02956E,Cengis Topez Apt +,TR,KCU,Karacasu,Karacasu,09,0-------,RN,9710,,3744N 02836E, +,TR,KCZ,Koycegiz,Koycegiz,48,0-------,RN,9710,,3658N 02841E, +,TR,KEB,Keban,Keban,23,0-------,RN,9710,,3848N 03844E, +,TR,KEM,Kemerburgaz,Kemerburgaz,34,0-------,RN,9710,,4110N 02855E, +,TR,KES,Kesan,Kesan,22,0-------,RN,9710,,4051N 02638E, +,TR,KHN,Kadinhani,Kadinhani,42,0-------,RN,9710,,3814N 03213E, +,TR,KIR,Kirklareli,Kirklareli,39,0-------,RN,9710,,4144N 02713E, +,TR,KKL,Konakli,Konakli,31,-----6--,RL,1107,,3648N 03615E, +,TR,KLA,Kula,Kula,45,0-------,RN,9710,,3833N 02839E, +,TR,KLS,Keles,Keles,16,0-------,RN,9710,,3955N 02914E, +,TR,KLU,Karpuzlu,Karpuzlu,09,0-------,RN,9710,,3734N 02750E, +,TR,KMN,Karaman,Karaman,70,0-------,RN,9710,,3711N 03313E, +,TR,KNK,Kinik,Kinik,35,0-------,RN,9710,,3905N 02723E, +,TR,KOR,Korkuteli,Korkuteli,07,0-------,RN,9710,,3704N 03012E, +,TR,KOZ,Kozyatagi,Kozyatagi,34,0-------,RN,9710,,4058N 02906E, +,TR,KPN,Karapinar,Karapinar,42,0-------,RN,9710,,3743N 03333E, +,TR,KPS,Kemalpasa,Kemalpasa,35,0-------,RN,9710,,3826N 02725E, +,TR,KPU,Kapikule,Kapikule,22,--3-----,QQ,8103,,4117N 02754E, +,TR,KRH,Karahanli,Karahanli,64,0-------,RN,9710,,3703N 03510E, +,TR,KRK,Kirikkale,Kirikkale,71,--3-----,RQ,9705,,3950N 03330E, +,TR,KRZ,Kiraz,Kiraz,35,0-------,RN,9710,,3814N 02812E, +,TR,KSH,Kirsehir,Kirsehir,40,0-------,RN,9710,,3909N 03410E, +,TR,KSL,Kestel,Kestel,16,0-------,RN,9710,,4012N 02913E, +,TR,KST,Kepsut,Kepsut,10,0-------,RN,9710,,3941N 02809E, +,TR,KSY,Kars,Kars,36,---4----,AI,9710,,4036N 04306E, +,TR,KTM,Kastamonu,Kastamonu,37,---4----,RN,9710,KFS,4123N 03347E, +,TR,KUL,Kulu,Kulu,42,0-------,RN,9710,,3905N 03305E, +,TR,KUM,Kumluca,Kumluca,07,0-------,RN,9710,,3622N 03017E, +,TR,KYA,Konya,Konya,42,-234----,AI,9601,,3752N 03230E, +,TR,KZM,Kizilcahamam,Kizilcahamam,06,0-------,RN,9710,,4028N 03239E, +,TR,KZN,Kozan,Kozan,01,0-------,RN,9710,,3727N 03549E, +,TR,KZZ,Kazan,Kazan,06,0-------,RN,9710,,4012N 03241E, +,TR,LAP,Lapseki,Lapseki,17,0-------,RN,9710,,4021N 02641E, +,TR,LEV,Levent,Levent,34,0-------,RN,9710,,4105N 02901E, +,TR,MAH,Mahmutbey,Mahmutbey,34,0-------,RN,9710,,4103N 02849E, +,TR,MAL,Maltepe,Maltepe,34,1-------,RN,9710,,4055N 02908E, +,TR,MAM,Manisa,Manisa,45,-23-----,RQ,8103,,3837N 02726E, +,TR,MAR,Marmara Ereglisi,Marmara Ereglisi,59,0-------,RN,9710,,4058N 02757E, +,TR,MAS,Maslak,Maslak,34,0-------,RQ,9307,,4107N 02901E, +,TR,MDN,Mardin,Mardin,47,0-------,RN,9710,,3719N 04044E, +,TR,MDR,Mudurnu,Mudurnu,14,0-------,RN,9710,,4028N 03113E, +,TR,MEK,Mevlanakapi,Mevlanakapi,34,0-------,RN,9710,,4101N 02855E, +,TR,MEN,Menderes,Menderes,35,0-------,RN,9710,,3815N 02708E, +,TR,MHM,Mahmudiye,Mahmudiye,26,0-------,RN,9710,,3930N 03059E, +,TR,MIL,Milas,Milas,48,---4----,RL,1701,BJV,3719N 02747E, +,TR,MKP,Mustafa Kemalpasa,Mustafa Kemalpasa,16,--3-----,RN,0601,,4100N 02842E, +,TR,MLK,Malkara,Malkara,59,0-------,RN,9710,,4054N 02654E, +,TR,MLX,Malatya,Malatya,44,---4----,AI,9710,,3821N 03819E, +,TR,MNM,Menemen,Menemen,35,0-------,RN,9710,,3837N 02704E, +,TR,MPT,Marport,Marport,34,123-----,RQ,0607,,4058N 02840E, +,TR,MRT,Merter,Merter,34,0-------,RN,9710,,4101N 02853E, +,TR,MSR,Mus,Mus,49,---4----,AI,9710,,3844N 04129E, +,TR,MUG,Mugla,Mugla,48,0-------,RN,9710,,3713N 02822E, +,TR,MUR,Muratli,Muratli,59,0-------,RN,9710,,4110N 02730E, +,TR,MUT,Mut,Mut,70,0-------,RN,9710,,3639N 03326E, +,TR,MYS,Manyas,Manyas,10,0-------,RN,9710,,4003N 02758E, +,TR,MZH,Merzifon,Merzifon,05,---4----,AI,9710,,4052N 03528E, +,TR,NAL,Nallihan,Nallihan,06,0-------,RN,9710,,4011N 03121E, +,TR,NEM,Nemrut Bay,Nemrut Bay,35,1-------,RQ,9506,,3846N 02655E, +,TR,NEV,Nevsehir,Nevsehir,50,---4----,RN,9710,NAV,3838N 03443E, +,TR,NIG,Nigde,Nigde,51,0-------,RN,9710,,3758N 03441E, +,TR,NZL,Nazilli,Nazilli,09,0-------,RN,9710,,3755N 02819E, +,TR,ODU,Odunluk,Odunluk,17,1-------,QQ,8103,,4012N 02860E, +,TR,OGZ,Orhangazi,Orhangazi,16,0-------,RN,9710,,4030N 02918E, +,TR,OHL,Orhaneli,Orhaneli,16,0-------,RN,9710,,3954N 02859E, +,TR,OKM,Okmeydani,Okmeydani,34,0-------,RN,9710,,4104N 02858E, +,TR,OLI,Osmaneli,Osmaneli,11,0-------,RN,9710,,4021N 03001E, +,TR,OME,Omerli,Omerli,34,0-------,RN,9710,,4105N 02920E, +,TR,ORH,Orhanli,Orhanli,34,0-------,RN,9710,,4054N 02922E, +,TR,ORN,Ornektepe,Ornektepe,34,0-------,RN,9710,,4103N 02857E, +,TR,ORT,Ortaca,Ortaca,48,0-------,RN,9710,,3650N 02846E, +,TR,OSZ,Osmangazi,Osmangazi,16,0-------,RN,9710,,4012N 02904E, +,TR,PAY,Payas,Payas,31,0-------,RN,9811,,3645N 03613E, +,TR,PAZ,"Pazarkule,","Pazarkule,",22,--3-----,QQ,8103,,4139N 02629E, +,TR,PEN,Pendik,Pendik,34,1-------,AI,9710,,4053N 02914E, +,TR,PIN,Pinarhisar,Pinarhisar,39,0-------,RN,9710,,4138N 02731E, +,TR,POV,Pamukova,Pamukova,54,0-------,RN,9710,,4030N 03010E, +,TR,PTL,Polatli,Polatli,06,0-------,RN,9710,,3935N 03209E, +,TR,PYI,Pazaryeri,Pazaryeri,11,0-------,RN,9710,,3960N 02954E, +,TR,RAH,Rahmanlar,Rahmanlar,34,0-------,RN,9710,,3855N 02719E, +,TR,RAI,Rami,Rami,34,0-------,RN,9710,,4103N 02855E, +,TR,RAM,Raman,Raman,21,--3-----,RQ,8103,,3758N 04011E, +,TR,RES,Resadiye,Resadiye,60,0-------,RN,9811,,4024N 03720E, +,TR,SAL,Salihli,Salihli,45,--3-----,RQ,9501,,3829N 02808E, +,TR,SAM,Samandira,Samandira,34,0-------,RN,9710,,4058N 02913E, +,TR,SAR,Saray,Saray,59,0-------,RN,9710,,4127N 02753E, +,TR,SCA,Sapanca,Sapanca,54,0-------,RN,9710,,4041N 03016E, +,TR,SCN,Sincan,Sincan,06,0-------,RN,9710,,3958N 03235E, +,TR,SDG,Sindirgi,Sindirgi,10,0-------,RN,9710,,3914N 02810E, +,TR,SDI,Sultandagi,Sultandagi,03,0-------,RN,9710,,3832N 03114E, +,TR,SEF,Sefakoy,Sefakoy,34,0-------,RN,9710,,4100N 02848E, +,TR,SEI,Serik,Serik,07,0-------,RN,9710,,3655N 03106E, +,TR,SEL,Selimiye,Selimiye,34,0-------,RN,9710,,4100N 02901E, +,TR,SEN,Senirkent,Senirkent,32,0-------,RN,9710,,3806N 03033E, +,TR,SEY,Seydisehir,Seydisehir,42,--3-----,QQ,8103,,3725N 03151E, +,TR,SFH,Seferihisar,Seferihisar,35,--3-----,RN,0601,,3812N 02650E, +,TR,SFQ,Sanliurfa,Sanliurfa,63,---4----,AI,9710,,3710N 03848E, +,TR,SHL,Saruhanli,Saruhanli,45,0-------,RN,9710,,3844N 02734E, +,TR,SHN,Saphane,Saphane,43,0-------,RN,9710,,3902N 02913E, +,TR,SHR,Sultanhisar,Sultanhisar,09,0-------,RN,9710,,3753N 02809E, +,TR,SIR,Sirkeci,Sirkeci,34,-2------,QQ,8103,,4101N 02858E, +,TR,SIS,Sisli,Sisli,34,0-------,RN,9710,,4104N 02859E, +,TR,SKE,Soke,Soke,09,0-------,RN,9710,,3745N 02724E, +,TR,SKR,Sarkikaraaga�,Sarkikaraagac,32,--3-----,RN,0601,,3805N 03122E, +,TR,SMA,Soma,Soma,45,0-------,RN,9710,,3911N 02737E, +,TR,SMV,Simav,Simav,43,0-------,RN,9710,,3905N 02859E, +,TR,SRG,Sarigazi,Sarigazi,34,0-------,RN,9710,,4100N 02913E, +,TR,SRN,Sirinevler,Sirinevler,34,0-------,RN,9710,,4060N 02851E, +,TR,SRY,Sariyer,Sariyer,34,0-------,RN,9710,,4110N 02903E, +,TR,SSL,Susurluk,Susurluk,10,0-------,RN,9710,,3955N 02809E, +,TR,SUA,Suadiye,Suadiye,34,0-------,RN,9710,,4058N 02905E, +,TR,SUT,Sutluce,Sutluce,34,1-------,RN,9710,,4103N 02857E, +,TR,SVR,Sivrihisar,Sivrihisar,26,0-------,RN,9710,,3927N 03132E, +,TR,SVS,Sivasli,Sivasli,64,0-------,RN,9710,,3830N 02941E, +,TR,SXZ,Siirt,Siirt,56,---4----,AI,9710,,3756N 04157E, +,TR,SYR,Seyrantepe,Seyrantepe,34,0-------,RN,9710,,4106N 02859E, +,TR,SYT,Seyitgazi,Seyitgazi,26,0-------,RN,9710,,3927N 03042E, +,TR,SZF,Carsamba Apt/Samsun,Carsamba Apt/Samsun,55,---4----,AI,9901,,4116N 03633E, +,TR,TAR,Tarsus,Tarsus,33,-23-----,RQ,8103,,3655N 03454E, +,TR,TAV,Tavas,Tavas,20,0-------,RN,9710,,3734N 02904E, +,TR,TBY,Tarabya,Tarabya,34,0-------,RN,9710,,4108N 02903E, +,TR,TFN,Tefenni,Tefenni,15,0-------,RN,9710,,3719N 02947E, +,TR,TGL,Turgutlu,Turgutlu,45,0-------,RN,9710,,3830N 02743E, +,TR,TJK,Tokat,Tokat,60,---4----,AI,9710,,4019N 03633E, +,TR,TOC,Topcular,Topcular,34,0-------,RN,9710,,4102N 02856E, +,TR,TOR,Torbali,Torbali,35,0-------,RN,9710,,3809N 02722E, +,TR,TRE,Tire,Tire,35,0-------,RN,9710,,3805N 02744E, +,TR,TSD,Tasdelen,Tasdelen,34,0-------,RN,9710,,4102N 02914E, +,TR,TUN,Tunceli,Tunceli,62,0-------,RN,9710,,3906N 03933E, +,TR,TUR,Turan,Turan,35,1-------,QQ,8103,,3828N 02709E, +,TR,TVS,Tavsanli,Tavsanli,43,0-------,RN,9710,,3933N 02930E, +,TR,ULA,Ula,Ula,48,0-------,RN,9710,,3706N 02825E, +,TR,ULU,Ulubey,Ulubey,64,0-------,RN,9710,,3825N 02917E, +,TR,UMR,Umraniye,Umraniye,34,0-------,RN,9710,,4102N 02906E, +,TR,URL,Urla,Urla,35,1-------,RN,9710,,3819N 02646E, +,TR,USA,Usak,Usak,64,---4----,RN,9710,USQ,3841N 02924E, +,TR,VAN,Van,Van,65,-234----,AI,9601,,3830N 04324E, +,TR,VAS,Sivas,Sivas,58,--34----,AI,9601,,3945N 03701E, +,TR,VIZ,Vize,Vize,39,0-------,RN,9710,,4134N 02746E, +,TR,YAK,Yakacik,Yakacik,34,0-------,RN,9710,,4055N 02913E, +,TR,YAR,Yarimca,Yarimca,41,1-------,QQ,8103,,4046N 02947E, +,TR,YBS,Yenibosna,Yenibosna,34,0-------,RN,9710,,4101N 02850E, +,TR,YDG,Yenidogan,Yenidogan,34,--3-----,RQ,0901,,4101N 02915E, +,TR,YEN,Yenice,Yenice,17,0-------,RN,9710,,3956N 02715E, +,TR,YEZ,Yenipazar,Yenipazar,11,0-------,RN,9710,,4011N 03031E, +,TR,YOZ,Yozgat,Yozgat,66,0-------,RN,9710,,3949N 03448E, +,TR,YPZ,Yenipazar,Yenipazar,09,0-------,RN,9710,,3749N 02812E, +,TR,YSR,Yenisehir,Yenisehir,16,0-------,RN,9710,,4016N 02939E, +,TR,YTG,Yatagan,Yatagan,48,0-------,RN,9710,,3721N 02808E, +,TR,ZEY,Zeytinburnu,Zeytinburnu,34,1-------,RN,9710,,4059N 02854E, +,TT,CHA,Chaguaramas,Chaguaramas,,1-------,QQ,8103,,1041N 06138W, +,TT,LAB,La Brea (Brighton),La Brea (Brighton),,1-------,AI,9401,,1014N 06137W, +,TT,PIA,Piarco,Piarco,,----5---,AI,9805,,1036N 06120W, +,TT,PLY,Plymouth,Plymouth,,1-------,RQ,9506,,1113N 06046W, +,TT,PTF,Point Fortin,Point Fortin,,1-------,QQ,8103,,1011N 06141W, +,TT,PTG,Point Galeota,Point Galeota,,1-------,QQ,8103,,1008N 06060W, +,TT,PTP,Pointe a Pierre,Pointe a Pierre,,1-------,QQ,8103,,1019N 06127W, +,TT,PTS,Point Lisas,Point Lisas,,1-------,AI,9401,,1024N 06129W, +,TT,SCA,Scarborough/Tobago,Scarborough/Tobago,,1-------,QQ,8103,,1111N 06044W, +,TT,SFE,San Fernando,San Fernando,,1-------,QQ,8103,,1017N 06128W, +,TT,TAB,Tobago,Tobago,,---4----,AI,9601,,1114N 06040W, +,TT,TUN,Tunapuna,Tunapuna,,--3-----,RL,0002,,1039N 06123W, +,TV,FUN,Funafuti,Funafuti,,1--45---,AI,9601,,0831S 17912E, +,TW,APG,An Ping,An Ping,,1-------,RQ,9811,,2237N 12039E, +,TW,CLI,Chung-Li,Chung-Li,,--3-----,RQ,9806,,2458N 12113E, +,TW,CYI,Chiayi,Chiayi,,---4----,AI,9601,,2329N 12027E, +,TW,GNI,Green Island,Green Island,,---4----,AI,0001,,2240N 12130E, +,TW,HCN,Hengchun,Hengchun,,---4----,AI,0001,,2200N 12045E, +,TW,HOP,Hoping,Hoping,HUA,1-------,RQ,0901,,2509N 12146E, +,TW,HUN,Hualien,Hualien,,1--4----,AI,9601,,2359N 12136E, +,TW,KEL,Keelung (Chilung),Keelung (Chilung),,1-------,QQ,8103,,2508N 12145E, +,TW,KHH,Kaohsiung,Kaohsiung,,1--4----,AI,9601,,2237N 12019E, +,TW,KNH,Kinmen,Kinmen,,---4----,AI,0001,,2426N 11815E, +,TW,KYD,Orchid Island,Orchid Island,,---4----,AI,0001,,2203N 12133E, +,TW,LHN,Lishan,Lishan,,---4----,AI,0001,,2415N 12115E, +,TW,MFK,Matsu,Matsu,,---4----,AI,0001,,2612N 11958E, +,TW,MZG,Makung,Makung,,---4----,AI,9601,,2333N 11934E, +,TW,PIF,Pingtung,Pingtung,,---4----,AI,0001,,2240N 12029E, +,TW,SUO,Suao,Suao,,1-------,QQ,8103,,2433N 12150E, +,TW,TNN,Tainan,Tainan,,1--4----,AI,9601,,2259N 12011E, +,TW,TTT,Taitung,Taitung,,1--4----,AI,9601,,2245N 12109E, +,TW,TXG,Taichung,Taichung,TXG,1--4----,AI,1701,,2413N 12029E, +,TW,TYN,Taoyuan,Taoyuan,,1-34----,RQ,0607,,2460N 12118E, +,TW,YLN,Yunlin,Yunlin,YUN,1-------,RQ,0901,,2341N 12023E, +,TZ,ARK,Arusha,Arusha,,---45---,AI,9601,,0322S 03641E, +,TZ,BKZ,Bukoba,Bukoba,,---4----,AI,9601,,0120S 03149E, +,TZ,DOD,Dodoma,Dodoma,,---4----,AI,9601,,0611S 03545E, +,TZ,GIT,Geita,Geita,,--34----,AI,9601,,0252S 03214E, +,TZ,IRI,Iringa,Iringa,,---4----,AI,0001,,0747S 03542E, +,TZ,JOM,Njombe,Njombe,,---4----,AI,0001,,0920S 03446E, +,TZ,JRO,Kilimanjaro,Kilimanjaro,,---4----,AI,9601,,1017S 03930E, +,TZ,KIK,Kilwa Kivinje,Kilwa Kivinje,,1-------,QQ,8103,,0845S 03925E, +,TZ,KIM,Kilwa Masoko,Kilwa Masoko,,1-------,QQ,8103,,0856S 03931E, +,TZ,KIY,Kilwa,Kilwa,,---4----,AI,9601,,0936S 03357E, +,TZ,LDI,Lindi,Lindi,,1--4----,AI,9601,,0960S 03943E, +,TZ,LUY,Lushoto,Lushoto,,---4----,AI,0001,,0448S 03817E, +,TZ,MBI,Mbeya,Mbeya,,---4----,AI,0001,,0854S 03328E, +,TZ,MFA,Mafia,Mafia,,---4----,AI,9601,,0749S 03948E, +,TZ,MIK,Mikindani,Mikindani,,1-------,QQ,8103,,1017S 04007E, +,TZ,MKO,"Mkokotoni, Zanzibar","Mkokotoni, Zanzibar",,1-------,QQ,8103,,0552S 03915E, +,TZ,MOH,Mohoro,Mohoro,,1-------,QQ,8103,,0809S 03911E, +,TZ,MUZ,Musoma,Musoma,,---4----,AI,9601,,0130S 03348E, +,TZ,MWN,Mwadui,Mwadui,,---4----,AI,0001,,0355S 03204E, +,TZ,MYW,Mtwara,Mtwara,,1--4----,AI,9601,,1017S 04011E, +,TZ,NCH,Nachingwea,Nachingwea,,---4----,AI,9601,,1022S 03846E, +,TZ,PAN,Pangani,Pangani,,1-------,QQ,8103,,0644S 03860E, +,TZ,PMA,Pemba,Pemba,,1--4----,AI,9601,,0510S 03948E, +,TZ,SAM,Samanga,Samanga,,1-------,QQ,8103,,0318S 03732E, +,TZ,SEU,Seronera,Seronera,,---4----,AI,0001,,0227S 03449E, +,TZ,SGX,Songea,Songea,,---4----,AI,9601,,1041S 03539E, +,TZ,SHY,Shinyanga,Shinyanga,,---4----,AI,0001,,0339S 03326E, +,TZ,SUT,Sumbawanga,Sumbawanga,,---4----,AI,0001,,0757S 03137E, +,TZ,TBO,Tabora,Tabora,,---4----,AI,9601,,0501S 03249E, +,TZ,TGT,Tanga,Tanga,,1--4----,AI,9601,,0504S 03906E, +,TZ,TKQ,Kigoma,Kigoma,,1--4----,AI,9601,,0453S 02938E, +,TZ,WHA,Wesha,Wesha,,0-------,RQ,9811,,0514S 03944E, +,TZ,XMI,Masasi,Masasi,,---4----,AI,0001,,1044S 03848E, +,TZ,ZNZ,Zanzibar,Zanzibar,,1--45---,AI,9601,,0610S 03912E, +,UA,CEJ,Chernigov,Chernigov,,---4----,AI,0001,,5130N 03118E, +,UA,CKC,Cherkassy,Cherkassy,,---4----,AI,0001,,4926N 03203E, +,UA,GOR,Gorenka,Gorenka,30,--3-----,RL,0901,,5034N 03019E, +,UA,HRK,Kharkov,Kharkov,,---4----,AI,9501,,4960N 03614E, +,UA,KBP,Borispol Intl Apt/kiev,Borispol Intl Apt/kiev,,---4----,AI,1601,,5021N 03054E, +,UA,KGO,Kropyvnytskyi,Kropyvnytskyi,,---4----,AI,1701,,4831N 03216E, +,UA,KHU,Kremenchug,Kremenchug,,---4----,AI,0001,,4906N 03326E, +,UA,KWG,Krivoy Rog,Krivoy Rog,,---4----,AI,0001,,4755N 03324E, +,UA,LVI,L'viv,L'viv,,--3-----,RQ,9806,,4951N 02402E, +,UA,MKA,Mostiska,Mostiska,,-23-----,AI,9501,,4948N 02309E, +,UA,MXR,Mirgorod,Mirgorod,,---4----,AI,0001,,4958N 03337E, +,UA,PLV,Poltava,Poltava,,---4----,AI,0001,,4935N 03433E, +,UA,RWN,Rovno,Rovno,,---4----,AI,0001,,5037N 02615E, +,UA,SEV,Severodoneck,Severodoneck,,---4----,AI,0001,,4857N 03830E, +,UA,UMY,Sumy,Sumy,,---4----,AI,0001,,5055N 03448E, +,UA,UZH,Uzhgorod,Uzhgorod,,-2------,AI,9501,,4837N 02218E, +,UA,VSG,Lugansk,Lugansk,,---4----,AI,0001,,4834N 03918E, +,UA,YVV,Yavorov,Yavorov,,--3-----,RL,0006,,4957N 02323E, +,UA,ZTR,Zhitomir,Zhitomir,,---4----,AI,0001,,5016N 02840E, +,UG,BUG,Bugembe,Bugembe,,0-------,RQ,9601,,0102N 03319E, +,UG,BUS,Busia,Busia,,--3-----,QQ,9501,,0028N 03405E, +,UG,EBB,Entebbe,Entebbe,,---4----,AI,9501,,0004N 03228E, +,UG,FPO,Fort Portal,Fort Portal,,0-------,RQ,9601,,0039N 03017E, +,UG,JIN,Jinja,Jinja,,1--4----,AI,9501,,0026N 03312E, +,UG,KAB,Kabale,Kabale,,0-------,RQ,9601,,0047N 03104E, +,UG,KBG,Kabalega Falls,Kabalega Falls,,---4----,AI,0001,,0217N 03141E, +,UG,KCU,Masindi,Masindi,,---4----,AI,9601,,0141N 03143E, +,UG,KLA,Kampala,Kampala,,---45---,AI,9501,,0019N 03235E, +,UG,KSE,Kasese,Kasese,,-234----,AI,9501,,0010N 03005E, +,UG,LIR,Lira,Lira,,0-------,RQ,9601,,0215N 03254E, +,UG,MBA,Mbale,Mbale,,0-------,RQ,9601,,0008N 03246E, +,UG,MBQ,Mbarara,Mbarara,,--34----,AI,9501,,0037S 03039E, +,UG,MSK,Masaka,Masaka,,0-------,RQ,9601,,0020S 03145E, +,UG,MUB,Mubende,Mubende,,0-------,RQ,9601,,0139N 03135E, +,UG,OYG,Moyo,Moyo,,---4----,AI,0001,,0309N 03315E, +,UG,PAF,Pakuba,Pakuba,,---4----,AI,0001,,0212N 03133E, +,UG,RUA,Arua,Arua,,---4----,AI,0001,,0301N 03055E, +,UG,SRT,Soroti,Soroti,,---4----,RQ,9601,,0143N 03337E, +,UG,TRY,Tororo,Tororo,,-234----,AI,9501,,0042N 03411E, +,UG,ULU,Gulu,Gulu,,---4----,AI,0001,,0246N 03218E, +,UG,YMB,Yumbe,Yumbe,303,1----6--,RL,1107,,0328N 03115E, +,UM,AWK,Wake Island,Wake Island,79,1--4----,AI,9501,,1918N 16638E, +,UM,BAK,Baker Island,Baker Island,81,0-------,QQ,9501,,0012N 17629W, +,UM,HOW,Howland Island,Howland Island,84,0-------,QQ,9501,,0048N 17637W, +,UM,JAR,Jarvis Island,Jarvis Island,86,0-------,QQ,9501,,0022S 15960W, +,UM,JON,Johnston Atoll,Johnston Atoll,67,1--4----,AI,9501,,1644N 16932W, +,UM,KIN,Kingman Reef,Kingman Reef,89,0-------,QQ,9501,,0623N 16225W, +,UM,MDY,Midway Islands,Midway Islands,71,1--4----,AI,9501,,2812N 17721W, +,UM,NAV,Navassa Island,Navassa Island,76,0-------,QQ,9501,,1824N 07501W, +,UM,PAL,Palmyra Atoll,Palmyra Atoll,95,0-------,QQ,9501,,0553N 16205W, +,US,AAA,Attalla,Attalla,AL,--3-----,RQ,9307,,3401N 08605W, +,US,AAC,Bloomfield,Bloomfield,CT,--3-----,RQ,9307,,4150N 07244W, +,US,AAD,Bessemer City,Bessemer City,NC,--3-----,RQ,9008,,3517N 08117W, +,US,AAF,Apalachicola,Apalachicola,FL,1--4----,AI,0001,,2944N 08459W, +,US,AAG,Cohutta,Cohutta,GA,--3-----,RQ,9307,,3458N 08457W, +,US,AAH,Covington,Covington,TN,--3-----,RQ,9008,,3534N 08939W, +,US,AAJ,Sweetwater,Sweetwater,FL,--3-----,RQ,9307,,2546N 08022W, +,US,AAL,Madison,Madison,OH,--3-----,RQ,9307,,4146N 08103W, +,US,AAN,Aurora,Aurora,NC,--3-----,RQ,9008,,3518N 07647W, +,US,AAO,Summit,Summit,SC,--3-----,RQ,9008,,3355N 08125W, +,US,AAQ,Audubon,Audubon,PA,--3-----,RQ,9008,,4008N 07525W, +,US,AAR,Culpeper,Culpeper,VA,--3-----,RQ,9008,,3828N 07760W, +,US,AAU,Dresden,Dresden,NY,--3-----,RQ,9307,,4241N 07657W, +,US,AAV,East Berlin,East Berlin,CT,--3-----,RQ,9008,,4137N 07243W, +,US,AAX,Eatonton,Eatonton,GA,--3-----,RQ,9008,,3320N 08323W, +,US,ABA,Oldsmar,Oldsmar,FL,--3-----,RQ,9307,,2802N 08240W, +,US,ABB,Abbeville,Abbeville,AL,--3-----,RQ,9307,,3134N 08515W, +,US,ABD,Abbotsford,Abbotsford,WI,--3-----,RQ,9307,,4457N 09019W, +,US,ABE,Easton,Easton,PA,---4----,AI,0001,,4041N 07513W, +,US,ABF,Abbeville,Abbeville,SC,--3-----,RQ,9307,,3411N 08223W, +,US,ABG,Abingdon,Abingdon,IL,--3-----,RQ,9307,,4048N 09024W, +,US,ABI,Abilene,Abilene,TX,--34----,RQ,9008,,3227N 09945W, +,US,ABL,Ambler,Ambler,AK,---4----,AI,0001,,6705N 15753W, +,US,ABM,Auburn,Auburn,MI,--3-----,RQ,9008,,4336N 08404W, +,US,ABN,Ashburn,Ashburn,GA,--3-----,RQ,9008,,3142N 08339W, +,US,ABO,Bartow,Bartow,GA,--3-----,RQ,9008,,3253N 08228W, +,US,ABP,Saint Charles,Saint Charles,MO,--3-----,RQ,1101,,3847N 09029W, +,US,ABQ,Albuquerque,Albuquerque,NM,---4----,AI,0001,,3505N 10639W, +,US,ABS,Spring,Spring,TX,--3-----,RQ,9307,,3005N 09525W, +,US,ABU,Auburn,Auburn,MA,--3-----,RQ,9307,,4212N 07150W, +,US,ABV,Albertville,Albertville,AL,--3-----,RQ,9307,,3416N 08613W, +,US,ABY,Albany,Albany,GA,---4----,AI,9601,,3135N 08409W, +,US,ABZ,Abilene,Abilene,KS,--3-----,RQ,9307,,3855N 09713W, +,US,ACA,Alicia,Alicia,MI,--3-----,RQ,9307,,4316N 08402W, +,US,ACB,Bellaire,Bellaire,MI,---4----,AI,0001,,4459N 08513W, +,US,ACD,Capitol Heights,Capitol Heights,MD,--3-----,RQ,9008,,3853N 07655W, +,US,ACE,Carol Stream,Carol Stream,IL,--3-----,RQ,9008,,4155N 08808W, +,US,ACG,Catskill,Catskill,NY,--3-----,RQ,9008,,4213N 07352W, +,US,ACH,Central Falls,Central Falls,RI,--3-----,RQ,9008,,4153N 07123W, +,US,ACJ,South Bend,South Bend,WA,1-3-----,RN,0105,,4640N 12349W, +,US,ACK,Nantucket,Nantucket,MA,---4----,AI,0001,,4116N 07006W, +,US,ACM,Chaska,Chaska,MN,--3-----,RQ,9008,,4447N 09336W, +,US,ACN,Cliffside,Cliffside,NC,--3-----,RQ,9008,,3514N 08146W, +,US,ACO,Alcoa,Alcoa,TN,--3-----,RQ,9307,,3547N 08359W, +,US,ACP,Anchor Point,Anchor Point,AK,--3-----,RQ,9307,,5946N 15141W, +,US,ACR,Ackerman,Ackerman,GA,-23-----,RQ,0207,,3319N 08910W, +,US,ACS,Cementon,Cementon,NY,--3-----,RQ,9008,,4208N 07355W, +,US,ACT,Waco,Waco,TX,--34----,AI,9601,,3133N 09709W, +,US,ACU,Canton,Canton,MA,--3-----,RQ,9008,,4210N 07109W, +,US,ACV,Arcata,Arcata,CA,---4----,AI,0001,,4052N 12405W, +,US,ACW,Columbia,Columbia,MD,--3-----,RQ,9008,,3912N 07652W, +,US,ACZ,Conway,Conway,SC,--3-----,RQ,9008,,3350N 07903W, +,US,ADB,Corning,Corning,IA,--3-----,RQ,9008,,4059N 09444W, +,US,ADD,Addis,Addis,LA,--3-----,RQ,9307,,3021N 09116W, +,US,ADE,Adel,Adel,GA,--3-----,RQ,9307,,3108N 08325W, +,US,ADF,Cordele,Cordele,GA,--3-----,RQ,9008,,3158N 08347W, +,US,ADG,Adrian,Adrian,MI,---4----,AI,9601,,4154N 08402W, +,US,ADI,Arcadia,Arcadia,WI,--3-----,RQ,9307,,4415N 09130W, +,US,ADJ,Chester,Chester,CT,--3-----,RQ,9008,,4124N 07227W, +,US,ADK,Adak Island/Adak Apt,Adak Island/Adak Apt,AK,---4----,AI,9601,,5148N 17634W, +,US,ADL,Andalusia,Andalusia,AL,--3-----,RQ,9307,,3118N 08629W, +,US,ADM,Ardmore,Ardmore,OK,--34----,RQ,9008,,3410N 09708W, +,US,ADN,Ashdown,Ashdown,AR,--3-----,RQ,9307,,3340N 09408W, +,US,ADO,Coventry,Coventry,RI,--3-----,RQ,9008,,4141N 07134W, +,US,ADP,Conway,Conway,AR,--3-----,RQ,9008,,3505N 09226W, +,US,ADQ,Kodiak,Kodiak,AK,---4----,AI,0001,,5747N 15224W, +,US,ADR,Andrews,Andrews,SC,--34----,RQ,9008,,3327N 07934W, +,US,ADS,Addison,Addison,AL,--3-----,RQ,0002,,3412N 08711W, +,US,ADT,Ada,Ada,OK,--3-----,AI,9601,,3446N 09641W, +,US,ADV,Adairsville,Adairsville,GA,--3-----,RQ,9008,,3422N 08456W, +,US,ADW,Camp Springs,Camp Springs,MD,---4----,AI,0001,,3848N 07654W, +,US,ADX,Addison,Addison,OH,--3-----,RQ,9307,,3853N 08209W, +,US,ADY,Ardsley,Ardsley,NY,--3-----,RQ,9307,,4101N 07351W, +,US,ADZ,Ada,Ada,MI,--3-----,RQ,9307,,4258N 08530W, +,US,AEA,Flora,Flora,IL,--3-----,RQ,9008,,3840N 08829W, +,US,AEB,Fords,Fords,NJ,--3-----,RQ,9008,,4032N 07419W, +,US,AED,Aleneva,Aleneva,AK,---4----,AI,0001,,5804N 15254W, +,US,AEE,Gaffney,Gaffney,SC,--3-----,RQ,9008,,3504N 08139W, +,US,AEF,Gibsonton,Gibsonton,FL,--3-----,RQ,9008,,2750N 08222W, +,US,AEH,Greensburg,Greensburg,KY,--3-----,RQ,9008,,3716N 08530W, +,US,AEL,Albert Lea,Albert Lea,MN,--34----,AI,9601,,4339N 09322W, +,US,AEN,Alsen,Alsen,NY,--3-----,RQ,9506,,4209N 07355W, +,US,AER,Ayer,Ayer,MA,--3-----,RQ,9307,,4234N 07135W, +,US,AET,Allakaket,Allakaket,AK,---4----,AI,0001,,6634N 15238W, +,US,AEU,Hamden,Hamden,CT,--3-----,RQ,9008,,4124N 07254W, +,US,AEW,Allentown,Allentown,NJ,--3-----,RQ,9307,,4011N 07435W, +,US,AFN,Jaffrey,Jaffrey,NH,---4----,AI,9601,,4249N 07201W, +,US,AFO,Afton,Afton,WY,---4----,AI,0001,,4244N 11056W, +,US,AFQ,Afton,Afton,VA,--3-----,RQ,9307,,3802N 07850W, +,US,AFT,Afton,Afton,TN,--3-----,RQ,9307,,3612N 08244W, +,US,AGE,Adger,Adger,AL,--3-----,AI,9601,,3323N 08706W, +,US,AGL,Atglen,Atglen,PA,--3-----,RQ,9307,,3957N 07558W, +,US,AGN,Angoon,Angoon,AK,---4----,AI,0001,,5727N 13429W, +,US,AGO,Magnolia,Magnolia,AR,---4----,AI,9601,,3316N 09314W, +,US,AGS,Augusta,Augusta,GA,--34----,AI,9601,,3328N 08158W, +,US,AHA,Aloha,Aloha,OR,--3-----,RQ,9307,,4530N 12252W, +,US,AHB,Archbald,Archbald,PA,--3-----,RQ,9307,,4130N 07532W, +,US,AHC,Herlong,Herlong,CA,---4----,AI,9601,,4009N 12008W, +,US,AHH,Amery,Amery,WI,--34----,AI,9601,,4518N 09222W, +,US,AHN,Athens,Athens,GA,--34----,RQ,9008,,3358N 08323W, +,US,AHO,Athol,Athol,MA,--3-----,RQ,9307,,4236N 07214W, +,US,AHR,Amherst,Amherst,VA,--3-----,RQ,9307,,3735N 07903W, +,US,AHT,Amchitka,Amchitka,AK,---4----,AI,0001,,5130N 17902E, +,US,AIA,Alliance,Alliance,NE,--34----,RQ,9008,,4206N 10252W, +,US,AID,Anderson,Anderson,IN,--34----,AI,9601,,4006N 08541W, +,US,AIE,Aiea (Oahu),Aiea (Oahu),HI,--3-----,RQ,9307,,2123N 15755W, +,US,AIH,Alliance,Alliance,OH,--3-----,RQ,9307,,4055N 08106W, +,US,AIK,Aiken,Aiken,SC,--34----,AI,9601,,3334N 08143W, +,US,AIL,Annville,Annville,PA,--3-----,RQ,9307,,4020N 07631W, +,US,AIN,Wainwright,Wainwright,AK,---4----,AI,0001,,7040N 15959W, +,US,AIO,Atlantic,Atlantic,IA,---4----,AI,0001,,4124N 09501W, +,US,AIV,Aliceville,Aliceville,AL,--34----,AI,9601,,3308N 08809W, +,US,AIY,Atlantic City,Atlantic City,NJ,--34----,AI,9601,,3922N 07425W, +,US,AIZ,Kaiser/Lake Ozark,Kaiser/Lake Ozark,MO,---4----,AI,0001,,3808N 09235W, +,US,AJH,Anthem,Anthem,AZ,--3-----,RQ,0607,,3352N 11208W, +,US,AKB,Atka,Atka,AK,---4----,AI,0001,,5213N 17425W, +,US,AKE,Ankeny,Ankeny,IA,--3-----,RQ,9307,,4144N 09336W, +,US,AKI,Akiak,Akiak,AK,---4----,AI,0001,,6054N 16113W, +,US,AKK,Akhiok,Akhiok,AK,---4----,AI,0001,,5657N 15413W, +,US,AKN,King Salmon,King Salmon,AK,---4----,AI,0001,,5845N 15631W, +,US,AKO,Akron,Akron,CO,---4----,AI,0001,,4010N 10313W, +,US,AKP,Anaktuvuk,Anaktuvuk,AK,---4----,AI,0001,,6809N 15143W, +,US,AKR,Akron,Akron,NY,--3-----,RQ,9307,,4301N 07830W, +,US,AKV,Arcola,Arcola,IL,--3-----,RQ,9307,,3941N 08818W, +,US,AKW,Walkertown,Walkertown,NC,-2------,RQ,0407,,3610N 08009W, +,US,AKY,Ackley,Ackley,IA,--3-----,RQ,9307,,4233N 09303W, +,US,ALA,Albany,Albany,CA,--3-----,RQ,9307,,3753N 12218W, +,US,ALB,Albany,Albany,NY,1--4----,AI,0207,,4239N 07345W, +,US,ALD,Ashland,Ashland,VA,--3-----,RQ,9008,,3746N 07729W, +,US,ALE,Alpine,Alpine,TX,---4----,AI,0001,,3022N 10340W, +,US,ALH,Alhambra,Alhambra,CA,--3-----,RQ,9008,,3406N 11808W, +,US,ALI,Alice,Alice,TX,---4----,AI,0001,,2745N 09804W, +,US,ALK,Allison Park,Allison Park,PA,--3-----,RQ,9501,,4034N 07957W, +,US,ALL,Allegan,Allegan,MI,--3-----,RQ,9307,,4233N 08552W, +,US,ALN,Alton,Alton,IL,--34----,AI,9601,,3853N 09011W, +,US,ALO,Waterloo,Waterloo,IA,--34----,AI,9601,,4230N 09220W, +,US,ALS,Alamosa,Alamosa,CO,---4----,AI,0001,,3728N 10552W, +,US,ALT,Allerton,Allerton,IA,--3-----,RQ,9307,,4042N 09322W, +,US,ALU,Alburtis,Alburtis,PA,--3-----,RQ,9307,,4031N 07536W, +,US,ALV,Albertville,Albertville,MN,--3-----,RQ,9307,,4514N 09340W, +,US,ALW,Walla Walla,Walla Walla,WA,---4----,AI,9601,,4604N 11820W, +,US,ALX,Alexander City,Alexander City,AL,---4----,AI,9601,,3257N 08557W, +,US,ALY,Ashland,Ashland,AL,--3-----,RQ,9307,,3316N 08550W, +,US,AMA,Amarillo,Amarillo,TX,---4----,AI,0001,,3512N 10150W, +,US,AMC,Alamance,Alamance,NC,--3-----,RL,0002,,3602N 07929W, +,US,AMH,Amherst,Amherst,NY,--3-----,RQ,9008,,4259N 07848W, +,US,AML,Amelia,Amelia,VA,--3-----,RQ,9307,,3721N 07759W, +,US,AMN,Alma,Alma,MI,--34----,AI,9601,,4323N 08440W, +,US,AMO,Alamo,Alamo,TX,--3-----,RQ,9307,,2611N 09807W, +,US,AMP,Assumption,Assumption,IL,--3-----,RQ,9307,,3931N 08903W, +,US,AMQ,Alma,Alma,GA,--3-----,RQ,9307,,3132N 08228W, +,US,AMR,Ambler,Ambler,PA,--3-----,RQ,9601,,4009N 07513W, +,US,AMS,Amsterdam,Amsterdam,NY,--3-----,RQ,9307,,4257N 07411W, +,US,AMT,Alamo,Alamo,TN,--3-----,RQ,9307,,3547N 08907W, +,US,AMU,Americus,Americus,GA,--3-----,RQ,9307,,3204N 08414W, +,US,AMW,Ames,Ames,IA,--34----,AI,9601,,4202N 09337W, +,US,AMY,Amboy,Amboy,IL,--3-----,RQ,9307,,4143N 08920W, +,US,AMZ,Algoma,Algoma,MS,--3-----,RQ,9307,,3411N 08902W, +,US,ANB,Anniston,Anniston,AL,--34----,RQ,9008,,3340N 08550W, +,US,ANC,Anchorage,Anchorage,AK,1--45---,AI,0001,,6113N 14954W, +,US,AND,Anderson,Anderson,SC,--34----,RQ,9008,,3430N 08239W, +,US,ANE,Anderson,Anderson,AL,--3-----,RQ,9307,,3455N 08716W, +,US,ANG,Angier,Angier,NC,--3-----,RQ,9307,,3530N 07844W, +,US,ANI,Aniak,Aniak,AK,---4----,AI,0001,,6135N 15932W, +,US,ANK,Anoka,Anoka,MN,--3-----,RQ,9307,,4512N 09323W, +,US,ANN,Annette Island,Annette Island,AK,---4----,AI,0001,,5508N 13127W, +,US,ANP,Annapolis,Annapolis,MD,1-34----,AI,2107,,3859N 07630W, +,US,ANQ,Angola,Angola,IN,--34----,AI,9601,,4138N 08460W, +,US,ANR,Andover,Andover,MA,--3-----,RQ,9307,,4239N 07108W, +,US,ANS,Ansonia,Ansonia,OH,--3-----,RQ,9307,,4013N 08438W, +,US,ANV,Anvik,Anvik,AK,---4----,AI,0001,,6239N 16013W, +,US,ANY,Anthony,Anthony,KS,---4----,AI,0001,,3709N 09802W, +,US,ANZ,Antioch,Antioch,CA,--3-----,RQ,9307,,3800N 12148W, +,US,AOB,Albion,Albion,IL,--3-----,RL,0006,,3823N 08803W, +,US,AOC,Avoca,Avoca,PA,--3-----,RQ,9806,,4120N 07544W, +,US,AOH,Ashmore,Ashmore,IL,-23-----,RL,0701,,3932N 08801W, +,US,AOM,Attleboro,Attleboro,MA,--3-----,RQ,9307,,4157N 07117W, +,US,AON,Albion,Albion,NY,--3-----,RQ,9307,,4315N 07812W, +,US,AOP,Apopka,Apopka,FL,--3-----,RQ,9506,,2841N 08131W, +,US,AOS,Amook,Amook,AK,---4----,AI,0001,,5729N 15351W, +,US,AOY,Alloy,Alloy,WV,--3-----,RQ,9307,,3808N 08116W, +,US,APC,Napa,Napa,CA,---4----,AI,9601,,3818N 12217W, +,US,APF,Naples,Naples,FL,--34----,AI,9506,,2609N 08148W, +,US,APG,Aberdeen,Aberdeen,MD,--34----,AI,1601,,3931N 07610W, +,US,APH,Bowling Green,Bowling Green,VA,---4----,AI,0001,,3803N 07721W, +,US,APJ,Apache Junction,Apache Junction,AZ,--3-----,RQ,9307,,3325N 11133W, +,US,APK,Allen Park,Allen Park,MI,--3-----,RQ,9307,,4216N 08313W, +,US,APL,Alpine,Alpine,AL,--3-----,RQ,9307,,3321N 08614W, +,US,APN,Alpena,Alpena,MI,---4----,AI,0001,,4505N 08321W, +,US,APO,Aptos,Aptos,CA,--3-----,RQ,9307,,3660N 12153W, +,US,APP,Appleton,Appleton,MN,--3-----,RQ,9501,,4512N 09601W, +,US,APS,Attapulgus,Attapulgus,GA,--3-----,RQ,9307,,3045N 08429W, +,US,APT,Jasper,Jasper,TN,---4----,AI,0001,,3504N 08538W, +,US,APV,Apple Valley,Apple Valley,CA,--34----,AI,9601,,3430N 11711W, +,US,APX,Apex,Apex,NC,--3-----,RQ,9307,,3544N 07851W, +,US,AQP,Aliquippa,Aliquippa,PA,--3-----,RQ,9307,,4037N 08016W, +,US,AQX,Arabi,Arabi,LA,--3-----,RQ,9307,,2957N 09000W, +,US,AQY,Alyeska,Alyeska,AK,--34----,AI,9601,,6058N 14907W, +,US,ARA,New Iberia,New Iberia,LA,---4----,AI,9601,,3000N 09149W, +,US,ARB,Ann Arbor,Ann Arbor,MI,1--4----,AI,0001,,4217N 08345W, +,US,ARC,Arctic Village,Arctic Village,AK,---4----,AI,0001,,6808N 14530W, +,US,ARD,Arlington,Arlington,GA,--3-----,RQ,9307,,3126N 08443W, +,US,ARE,Arlington,Arlington,MN,--3-----,RQ,9307,,4436N 09405W, +,US,ARF,Arlington,Arlington,OR,--3-----,RQ,9307,,4543N 12012W, +,US,ARG,Walnut Ridge,Walnut Ridge,AR,---4----,AI,9601,,3604N 09057W, +,US,ARH,Arden Hills,Arden Hills,MN,--3-----,RQ,9307,,4505N 09310W, +,US,ARI,Arcadia,Arcadia,FL,--3-----,RQ,9307,,2713N 08152W, +,US,ARJ,Arlington,Arlington,TX,--3-----,RQ,9307,,3244N 09706W, +,US,ARK,Arkansas City,Arkansas City,KS,--3-----,RL,0201,,3704N 09702W, +,US,ARL,Arley,Arley,AL,--3-----,RQ,9307,,3405N 08713W, +,US,ARM,Armuchee,Armuchee,GA,--3-----,RQ,9008,,3419N 08510W, +,US,ARN,Akron,Akron,PA,--3-----,RQ,9307,,4009N 07612W, +,US,ARP,Arlington,Arlington,VA,--3-----,RQ,9307,,3853N 07706W, +,US,ARR,Arleta,Arleta,CA,--3-----,RQ,9307,,3414N 11826W, +,US,ARS,Arenzville,Arenzville,IL,--3-----,RQ,9307,,3953N 09022W, +,US,ART,Watertown,Watertown,NY,---4----,AI,9601,,4358N 07555W, +,US,ARU,Arbuckle,Arbuckle,CA,--3-----,RQ,9307,,3901N 12204W, +,US,ARV,Minocqua,Minocqua,WI,---4----,AI,9601,,4552N 08943W, +,US,ARX,Asbury Park,Asbury Park,NJ,---4----,AI,0001,,4013N 07401W, +,US,ARY,Amory,Amory,MS,--3-----,RQ,9307,,3359N 08829W, +,US,ARZ,Arcadia,Arcadia,SC,--3-----,RQ,9307,,3457N 08159W, +,US,ASD,Ashland,Ashland,MA,--34----,RQ,9008,,4216N 07128W, +,US,ASE,Aspen,Aspen,CO,---4----,AI,0001,,3911N 10649W, +,US,ASF,Ashtabula,Ashtabula,OH,1-3-----,RN,0105,,4152N 08047W, +,US,ASH,Nashua,Nashua,NH,--34----,AI,9601,,4246N 07128W, +,US,ASJ,Assonet,Assonet,MA,--3-----,RQ,9307,,4148N 07104W, +,US,ASK,Ashland,Ashland,OH,--3-----,RQ,9008,,4052N 08219W, +,US,ASL,Marshall,Marshall,TX,--34----,AI,9601,,3233N 09422W, +,US,ASO,Ashville,Ashville,OH,--3-----,RQ,9008,,3943N 08257W, +,US,ASP,Altamonte Springs,Altamonte Springs,FL,--3-----,RQ,9307,,2840N 08123W, +,US,ASQ,Austin,Austin,NV,--34----,AI,9601,,3930N 11704W, +,US,ASR,Asheboro,Asheboro,NC,--3-----,RQ,9307,,3542N 07949W, +,US,AST,Astoria,Astoria,OR,1--4----,AI,0001,,4611N 12350W, +,US,ASV,Ashton,Ashton,ID,--3-----,RQ,9501,,4404N 11127W, +,US,ASX,Ashland,Ashland,WI,1--4----,AI,9601,,4636N 09053W, +,US,ASY,Ashley,Ashley,ND,---4----,AI,0001,,4602N 09922W, +,US,AT4,Astoria,Astoria,IL,--3-----,RQ,0607,,4014N 09022W, +,US,ATA,Athens,Athens,AL,--3-----,RQ,9307,,3448N 08658W, +,US,ATC,Atherton,Atherton,CA,--3-----,RQ,9307,,3727N 12212W, +,US,ATD,Athol,Athol,ID,--3-----,RQ,9307,,4757N 11642W, +,US,ATE,Antlers,Antlers,OK,---4----,AI,0001,,3414N 09537W, +,US,ATF,Atkins,Atkins,AR,--3-----,RQ,9307,,3515N 09256W, +,US,ATK,Atqasuk,Atqasuk,AK,---4----,AI,0001,,7029N 15723W, +,US,ATL,Atlanta,Atlanta,GA,---45---,AI,0001,,3345N 08423W, +,US,ATM,Artesia,Artesia,CA,--34----,AI,9401,,3352N 11805W, +,US,ATN,Athens,Athens,PA,--3-----,RQ,9307,,4157N 07631W, +,US,ATQ,Atchison,Atchison,KS,--3-----,RQ,9307,,3934N 09507W, +,US,ATS,Artesia,Artesia,NM,---4----,AI,9601,,3251N 10424W, +,US,ATT,Atmautluak,Atmautluak,AK,---4----,AI,0001,,6052N 16217W, +,US,ATU,Attu Island,Attu Island,AK,---4----,AI,0001,,5253N 17302E, +,US,ATV,Altavista,Altavista,VA,--3-----,RQ,9307,,3707N 07917W, +,US,ATW,Appleton,Appleton,WI,1--4----,AI,0001,,4416N 08824W, +,US,ATY,Watertown,Watertown,SD,--34----,AI,9601,,4454N 09707W, +,US,AUB,Auburn,Auburn,NY,--3-----,RQ,9307,,4256N 07634W, +,US,AUC,Aurora,Aurora,CO,--3-----,RQ,9307,,3944N 10450W, +,US,AUD,Auburndale,Auburndale,FL,--3-----,RQ,9307,,2804N 08147W, +,US,AUF,Aurora,Aurora,OH,--3-----,RQ,9307,,4119N 08121W, +,US,AUG,Augusta,Augusta,ME,--34----,AI,9601,,4419N 06946W, +,US,AUH,Auburn Heights,Auburn Heights,MI,--3-----,RQ,9307,,4241N 08316W, +,US,AUI,Auburn,Auburn,IN,--3-----,RQ,9307,,4122N 08504W, +,US,AUJ,Auburn,Auburn,WA,--3-----,RQ,9307,,4718N 12214W, +,US,AUK,Alakanuk,Alakanuk,AK,---4----,AI,0001,,6242N 16437W, +,US,AUL,Austell,Austell,GA,--3-----,RQ,9307,,3349N 08438W, +,US,AUM,Austin,Austin,MN,--34----,AI,9601,,4340N 09258W, +,US,AUN,Auburn,Auburn,CA,-234----,AI,0001,,3854N 12104W, +,US,AUO,Auburn,Auburn,AL,--34----,AI,9601,,3237N 08529W, +,US,AUQ,Aurora,Aurora,NE,--3-----,RQ,9307,,4052N 09800W, +,US,AUR,Aurora,Aurora,NY,--3-----,RQ,9307,,4244N 07838W, +,US,AUS,Austin,Austin,TX,--34----,RQ,9008,,3016N 09745W, +,US,AUU,Aurora,Aurora,MO,--3-----,RQ,9307,,3658N 09343W, +,US,AUV,Austintown,Austintown,OH,--3-----,RQ,9307,,4106N 08046W, +,US,AUW,Wausau,Wausau,WI,--34----,AI,9601,,4458N 08938W, +,US,AUX,Aurora,Aurora,OR,--3-----,RQ,9307,,4514N 12245W, +,US,AUY,Aulander,Aulander,NC,--3-----,RQ,9307,,3614N 07707W, +,US,AUZ,Aurora,Aurora,IL,--34----,AI,9601,,4145N 08819W, +,US,AVC,Avon Lake,Avon Lake,ME,--3-----,RQ,9307,,4131N 08201W, +,US,AVD,Avondale,Avondale,LA,1-3-----,RN,0105,,2954N 09011W, +,US,AVE,Avenel,Avenel,NJ,--3-----,RQ,9307,,4035N 07416W, +,US,AVI,Avery Island,Avery Island,LA,--3-----,RQ,9307,,2954N 09154W, +,US,AVK,Avon Lake,Avon Lake,OH,--3-----,RQ,9307,,4131N 08201W, +,US,AVM,Avonmore,Avonmore,PA,--3-----,RQ,9307,,4032N 07928W, +,US,AVN,Avon,Avon,MA,--3-----,RQ,9307,,4208N 07102W, +,US,AVO,Avon Park,Avon Park,FL,--34----,AI,9601,,2736N 08130W, +,US,AVQ,Avon,Avon,OH,--3-----,RQ,9307,,4131N 08201W, +,US,AVT,Avery,Avery,TX,--3-----,RQ,9008,,3333N 09447W, +,US,AVV,Avon,Avon,NY,--3-----,RQ,9307,,4255N 07745W, +,US,AVY,Avon,Avon,KY,--3-----,RQ,9307,,3804N 08419W, +,US,AVZ,Avon,Avon,CT,--3-----,RQ,9307,,4149N 07250W, +,US,AWD,Atwood,Atwood,KS,--3-----,RQ,9307,,3948N 10103W, +,US,AWM,West Memphis,West Memphis,AR,---4----,AI,9601,,3509N 09011W, +,US,AWR,Acworth,Acworth,GA,--3-----,RL,0002,,3404N 08441W, +,US,AWX,Athens,Athens,TX,--3-----,RQ,9307,,3212N 09551W, +,US,AXA,Alexandria,Alexandria,PA,--3-----,RQ,9307,,4033N 07806W, +,US,AXC,Armonk,Armonk,NY,--3-----,RQ,9307,,4108N 07343W, +,US,AXD,Alexandria,Alexandria,IN,--3-----,RQ,9307,,4016N 08541W, +,US,AXF,Arnold,Arnold,MO,--3-----,RQ,9307,,3825N 09023W, +,US,AXH,Arthur,Arthur,IL,--3-----,RQ,9307,,3943N 08828W, +,US,AXI,Arvin,Arvin,CA,--3-----,RQ,9307,,3513N 11850W, +,US,AXM,Ashland,Ashland,MS,--3-----,RQ,9307,,3450N 08911W, +,US,AXN,Alexandria,Alexandria,MN,--34----,AI,9601,,4553N 09522W, +,US,AXV,Wapakoneta,Wapakoneta,OH,---4----,AI,9601,,4034N 08412W, +,US,AXX,Angel Fire,Angel Fire,NM,---4----,AI,0001,,3624N 10517W, +,US,AYA,Ashton,Ashton,IL,--3-----,RQ,9307,,4152N 08913W, +,US,AYE,Fort Devens,Fort Devens,MA,---4----,AI,0001,,4232N 07138W, +,US,AYI,Cary,Cary,IL,--3-----,RL,0004,,4213N 08814W, +,US,AYQ,Ashland,Ashland,TN,--3-----,RQ,9307,,3526N 08740W, +,US,AYR,Ayersville,Ayersville,GA,--3-----,RQ,9307,,3434N 08325W, +,US,AYS,Waycross,Waycross,GA,--34----,AI,9601,,3113N 08221W, +,US,AYT,Aylett,Aylett,VA,--3-----,RL,0701,,3747N 07706W, +,US,AYY,Arden,Arden,NC,--3-----,RQ,9307,,3528N 08231W, +,US,AYZ,Amityville,Amityville,NY,--34----,AI,9601,,4041N 07325W, +,US,AZA,Altadena,Altadena,CA,--3-----,RQ,9307,,3411N 11808W, +,US,AZB,Alvarado,Alvarado,CA,--3-----,RQ,9307,,3736N 12205W, +,US,AZC,Alvin,Alvin,TX,--3-----,RQ,9307,,2925N 09515W, +,US,AZD,Alviso,Alviso,CA,--3-----,RQ,9307,,3726N 12159W, +,US,AZN,Altamont,Altamont,IL,--3-----,RQ,9307,,3904N 08845W, +,US,AZO,Kalamazoo,Kalamazoo,MI,--34----,AI,0001,,4218N 08535W, +,US,AZP,Altoona,Altoona,WI,--3-----,RQ,9307,,4448N 09127W, +,US,AZQ,Altoona,Altoona,FL,--3-----,RQ,9307,,2858N 08139W, +,US,AZT,Alum Rock,Alum Rock,CA,--3-----,RQ,9307,,3722N 12149W, +,US,AZU,Azusa,Azusa,CA,--3-----,RQ,9307,,3408N 11754W, +,US,AZX,Altus,Altus,AR,--3-----,RQ,9307,,3527N 09346W, +,US,AZZ,Arlington,Arlington,WA,--3-----,RQ,9307,,4811N 12208W, +,US,BAA,Bad Axe,Bad Axe,MI,--3-----,RQ,9307,,4348N 08300W, +,US,BAC,Bassett,Bassett,CA,--3-----,RQ,9307,,3403N 11760W, +,US,BAD,Baldwin,Baldwin,NY,--3-----,RQ,9806,,4039N 07337W, +,US,BAG,Bagdad,Bagdad,PA,--3-----,RQ,9307,,4157N 08001W, +,US,BAH,Beacon Hills,Beacon Hills,NY,--3-----,RQ,9307,,4131N 07356W, +,US,BAI,Bailey,Bailey,MI,--3-----,RQ,9307,,4244N 08429W, +,US,BAJ,Blair,Blair,NE,--3-----,RQ,9307,,4133N 09608W, +,US,BAK,Babcock,Babcock,WI,--3-----,RQ,9307,,4418N 09007W, +,US,BAM,Battle Mountain,Battle Mountain,NV,---4----,AI,0001,,4039N 11656W, +,US,BAN,Badin,Badin,NC,--3-----,RQ,9307,,3524N 08007W, +,US,BAO,Barlow,Barlow,OH,--3-----,RQ,9307,,3924N 08140W, +,US,BAQ,Baldwin,Baldwin,SC,--3-----,RQ,9307,,3423N 08209W, +,US,BAR,Baker Island,Baker Island,AK,---4----,AI,0001,,5520N 13335W, +,US,BAS,Bastrop,Bastrop,LA,--3-----,RQ,9307,,3247N 09154W, +,US,BAT,Barberton,Barberton,OH,--3-----,RQ,9008,,4101N 08136W, +,US,BAV,Barnesville,Barnesville,GA,--3-----,RQ,9307,,3303N 08409W, +,US,BAW,Balfour,Balfour,NC,--3-----,RQ,9307,,3521N 08228W, +,US,BAX,Baldwin,Baldwin,FL,--3-----,RQ,9307,,3018N 08159W, +,US,BAY,Bayonne,Bayonne,NJ,1-3-----,RN,0105,,4040N 07407W, +,US,BBB,Benson,Benson,MN,---4----,AI,0001,,4519N 09536W, +,US,BBC,Bay City,Bay City,TX,---4----,AI,0001,,2859N 09558W, +,US,BBD,Brady,Brady,TX,---4----,AI,9601,,3108N 09920W, +,US,BBE,Boscobel,Boscobel,WI,--3-----,RQ,9307,,4308N 09042W, +,US,BBF,Burlington,Burlington,MA,---4----,AI,9601,,4230N 07112W, +,US,BBG,Batesburg,Batesburg,SC,--3-----,RQ,9307,,3355N 08132W, +,US,BBH,Blacksburg,Blacksburg,SC,--3-----,RQ,9307,,3507N 08131W, +,US,BBJ,Baldwin,Baldwin,GA,--3-----,RQ,9307,,3430N 08332W, +,US,BBK,Bound Brook,Bound Brook,NJ,--3-----,RQ,9307,,4034N 07432W, +,US,BBL,Big Bear Lake,Big Bear Lake,CA,--3-----,RL,9811,,3415N 11655W, +,US,BBM,Bamberg,Bamberg,SC,--3-----,RQ,9307,,3318N 08102W, +,US,BBO,Battleboro,Battleboro,NC,--3-----,RQ,9307,,3603N 07745W, +,US,BBQ,Bloomsbury,Bloomsbury,NJ,--3-----,RL,9805,,4039N 07505W, +,US,BBT,Barbours Cut,Barbours Cut,TX,--3-----,RQ,9307,,2941N 09460W, +,US,BBU,Bloomingburg,Bloomingburg,OH,--3-----,RQ,9307,,3936N 08324W, +,US,BBV,Beech Bottom,Beech Bottom,WV,--3-----,RQ,9307,,4014N 08039W, +,US,BBW,Broken Bow,Broken Bow,NE,---4----,AI,9601,,4124N 09938W, +,US,BBX,Blue Bell,Blue Bell,PA,---4----,AI,9601,,4009N 07516W, +,US,BBY,Babylon,Babylon,NY,--3-----,RQ,9307,,4042N 07320W, +,US,BCA,Bainbridge,Bainbridge,NY,--3-----,RQ,9307,,4218N 07529W, +,US,BCB,Blacksburg,Blacksburg,VA,---4----,AI,9601,,3714N 08025W, +,US,BCC,Bear Creek,Bear Creek,AK,---4----,AI,0001,,6013N 14920W, +,US,BCE,Bryce,Bryce,UT,---4----,AI,0001,,3734N 11211W, +,US,BCF,Belle Glade,Belle Glade,FL,--3-----,RQ,9307,,2641N 08040W, +,US,BCK,Brunswick,Brunswick,OH,--3-----,RL,0001,,4115N 08150W, +,US,BCO,Bristol,Bristol,CT,--3-----,RQ,9008,,4140N 07257W, +,US,BCS,Belle Chasse,Belle Chasse,LA,---4----,AI,0001,,2951N 08959W, +,US,BCT,Boca Raton,Boca Raton,FL,---4----,AI,9601,,2622N 08005W, +,US,BCU,Blue Island,Blue Island,IL,--3-----,RQ,9307,,4139N 08741W, +,US,BCV,Brevard,Brevard,NC,--3-----,RL,0212,,3514N 08244W, +,US,BDA,Boardman,Boardman,OR,--3-----,RQ,9307,,4550N 11942W, +,US,BDC,Bland,Bland,VA,--3-----,RQ,9307,,3706N 08107W, +,US,BDD,Braddock,Braddock,PA,--3-----,RQ,9307,,4024N 07952W, +,US,BDE,Baudette,Baudette,MN,1--4----,AI,0001,,4843N 09436W, +,US,BDF,Bradford,Bradford,IL,---4----,AI,0001,,4111N 08939W, +,US,BDG,Blanding,Blanding,UT,---4----,AI,0001,,3737N 10929W, +,US,BDH,Bedford Heights,Bedford Heights,OH,--3-----,RQ,9307,,4125N 08130W, +,US,BDI,Borden,Borden,IN,--3-----,RQ,9307,,3828N 08557W, +,US,BDJ,Biddeford,Biddeford,ME,--3-----,RQ,9307,,4330N 07027W, +,US,BDL,Windsor Locks-Hartford Apt,Windsor Locks-Hartford Apt,CT,---4----,AI,9601,,4156N 07241W, +,US,BDM,Boardman,Boardman,OH,--3-----,RQ,9307,,4101N 08039W, +,US,BDN,Blandon,Blandon,PA,--3-----,RQ,9307,,4026N 07553W, +,US,BDP,Bedford Park,Bedford Park,IL,--3-----,RQ,9008,,4146N 08747W, +,US,BDQ,Bland,Bland,MO,--3-----,RQ,9307,,3818N 09138W, +,US,BDR,Bridgeport,Bridgeport,CT,1--4----,AI,0001,,4111N 07311W, +,US,BDT,Bridgewater,Bridgewater,ME,--3-----,RN,0105,,4626N 06751W, +,US,BDW,Broadway,Broadway,VA,--3-----,RQ,9307,,3837N 07848W, +,US,BDX,Broadus,Broadus,MT,---4----,AI,0001,,4527N 10524W, +,US,BDY,Bandon,Bandon,OR,---4----,AI,0001,,4307N 12425W, +,US,BDZ,Bladensburg,Bladensburg,MD,--3-----,RQ,9307,,3856N 07656W, +,US,BEA,Beardstown,Beardstown,IL,--3-----,RQ,9307,,4001N 09026W, +,US,BEC,Beckemeyer,Beckemeyer,IL,--3-----,RQ,9307,,3836N 08926W, +,US,BED,Bedford,Bedford,MA,--34----,RQ,9008,,4230N 07117W, +,US,BEE,Beech Island,Beech Island,SC,--3-----,RQ,9307,,3326N 08153W, +,US,BEG,Bellevue,Bellevue,NE,--3-----,RQ,9307,,4108N 09554W, +,US,BEH,Benton Harbor,Benton Harbor,MI,--34----,RQ,9008,,4207N 08627W, +,US,BEI,Berkeley Springs,Berkeley Springs,WV,--3-----,RQ,9307,,3938N 07814W, +,US,BEK,Beacon Falls,Beacon Falls,CT,--3-----,RQ,9307,,4127N 07304W, +,US,BEL,Belfast,Belfast,ME,1-3-----,RN,0105,,4426N 06900W, +,US,BEN,Bena,Bena,VA,--3-----,RQ,9307,,3716N 07627W, +,US,BEP,Belpre,Belpre,OH,--3-----,RQ,9307,,3917N 08135W, +,US,BEQ,Beachwood,Beachwood,OH,--3-----,RQ,9307,,4128N 08131W, +,US,BER,Berwick,Berwick,ME,--3-----,RQ,9307,,4316N 07052W, +,US,BES,Beltsville,Beltsville,MD,--3-----,RQ,9008,,3902N 07655W, +,US,BET,Bethel,Bethel,AK,---4----,AI,0001,,6048N 16148W, +,US,BEU,Berea,Berea,KY,--3-----,RQ,9307,,3734N 08418W, +,US,BEV,Beaver Dam,Beaver Dam,OH,--3-----,RQ,9307,,4327N 08850W, +,US,BEW,Berwyn,Berwyn,PA,--3-----,RQ,9307,,4003N 07526W, +,US,BEY,Berryton,Berryton,KS,--3-----,RQ,9307,,3856N 09538W, +,US,BEZ,Belzoni,Belzoni,MS,--3-----,RQ,9307,,3311N 09029W, +,US,BFA,Buford,Buford,GA,--3-----,RQ,9307,,3407N 08400W, +,US,BFC,Branford,Branford,CT,--3-----,RQ,9307,,4117N 07249W, +,US,BFD,Bradford,Bradford,PA,--34----,AI,9601,,4157N 07839W, +,US,BFE,Bluffton,Bluffton,IN,--3-----,RQ,9307,,4044N 08510W, +,US,BFF,Scottsbluff,Scottsbluff,NE,---4----,AI,9601,,4152N 10340W, +,US,BFI,Bayfield,Bayfield,WI,--3-----,RQ,0101,,4649N 09049W, +,US,BFL,Bakersfield,Bakersfield,CA,--34----,AI,9601,,3522N 11901W, +,US,BFN,Bellefontaine,Bellefontaine,OH,--3-----,RQ,9307,,4022N 08346W, +,US,BFO,Beaufort,Beaufort,NC,1-3-----,RN,0105,,3443N 07640W, +,US,BFP,Beaver Falls,Beaver Falls,PA,--34----,RQ,9008,,4045N 08019W, +,US,BFQ,Bluffton,Bluffton,SC,--3-----,RQ,9806,,3214N 08052W, +,US,BFR,Bedford,Bedford,IN,---4----,AI,9601,,3852N 08629W, +,US,BFT,Beaufort,Beaufort,SC,--3-----,RL,9901,,3226N 08040W, +,US,BFU,Buffalo,Buffalo,MO,--3-----,RQ,9307,,3739N 09306W, +,US,BFV,Bellville,Bellville,OH,--3-----,RQ,9307,,4037N 08231W, +,US,BFX,Bellflower,Bellflower,CA,--3-----,RQ,9307,,3353N 11807W, +,US,BFZ,Brookfield,Brookfield,OH,--3-----,RQ,9307,,4114N 08033W, +,US,BGA,Burlington,Burlington,WA,--3-----,RQ,9307,,4828N 12220W, +,US,BGB,Burr Ridge,Burr Ridge,IL,--3-----,RQ,9307,,4145N 08755W, +,US,BGC,Bushnell,Bushnell,IL,--3-----,RQ,9307,,4033N 09031W, +,US,BGE,Bainbridge,Bainbridge,GA,--34----,AI,9601,,3054N 08435W, +,US,BGF,Butler,Butler,AL,--3-----,RQ,9307,,3205N 08813W, +,US,BGG,Butler,Butler,NJ,--3-----,RQ,9307,,4100N 07420W, +,US,BGH,Butternut,Butternut,WI,--3-----,RQ,9307,,4601N 09029W, +,US,BGI,Burlingame,Burlingame,CA,--3-----,RQ,9506,,3735N 12221W, +,US,BGJ,Bellefontaine,Bellefontaine,MS,--3-----,RQ,9307,,3339N 08919W, +,US,BGK,Brighton,Brighton,CO,--3-----,RQ,9501,,3959N 10449W, +,US,BGL,Bloomingdale,Bloomingdale,NJ,--3-----,RQ,9501,,4100N 07420W, +,US,BGN,Bennington,Bennington,VT,--3-----,RL,9901,,4253N 07312W, +,US,BGO,Buffalo Grove,Buffalo Grove,IL,--3-----,RQ,9307,,4209N 08758W, +,US,BGP,Bridgeport,Bridgeport,NE,--3-----,RQ,9307,,4140N 10306W, +,US,BGQ,Big Lake,Big Lake,AK,---4----,AI,9601,,6133N 14950W, +,US,BGR,Bangor,Bangor,ME,1--4----,AI,0001,,4448N 06846W, +,US,BGT,Bagdad,Bagdad,AZ,--34----,RQ,9307,,3435N 11310W, +,US,BGU,Belgium,Belgium,WI,--3-----,RQ,9307,,4330N 08751W, +,US,BGV,Burlington,Burlington,OR,--3-----,RQ,9307,,4539N 12251W, +,US,BGW,Bridgewater,Bridgewater,NY,--3-----,RQ,9307,,4253N 07515W, +,US,BGY,Bridgeton,Bridgeton,NJ,--3-----,RQ,9307,,3926N 07514W, +,US,BGZ,Burlington,Burlington,IN,--3-----,RQ,9307,,4029N 08624W, +,US,BHA,Byhalia,Byhalia,MS,--3-----,RQ,9501,,3452N 08941W, +,US,BHB,Bar Harbor,Bar Harbor,ME,1--4----,AI,0001,,4423N 06812W, +,US,BHD,Bradner,Bradner,OH,--3-----,RQ,9307,,4119N 08326W, +,US,BHE,Berkeley Heights,Berkeley Heights,NJ,--3-----,RQ,9506,,4041N 07427W, +,US,BHG,Boring,Boring,OR,--3-----,RQ,9307,,4526N 12222W, +,US,BHH,Bethany,Bethany,OR,--3-----,RQ,9307,,4534N 12251W, +,US,BHL,Buhl,Buhl,ID,--3-----,RQ,9307,,4236N 11446W, +,US,BHM,Birmingham,Birmingham,AL,--34----,AI,9601,,3331N 08648W, +,US,BHN,Buckhannon,Buckhannon,WV,--3-----,RQ,9307,,3860N 08014W, +,US,BHO,Brighton,Brighton,MI,--3-----,RQ,9307,,4234N 08344W, +,US,BHP,Burnham,Burnham,PA,--3-----,RQ,9307,,4038N 07734W, +,US,BHQ,Brush,Brush,CO,--3-----,RQ,9307,,4016N 10337W, +,US,BHS,Brooklyn Heights,Brooklyn Heights,OH,--3-----,RQ,9307,,4125N 08141W, +,US,BHT,Barnhart,Barnhart,MO,--3-----,RQ,9601,,3820N 09024W, +,US,BHX,Bishop,Bishop,TX,--3-----,RQ,9307,,2735N 09748W, +,US,BHY,Bethany,Bethany,MO,--3-----,RQ,9307,,4016N 09402W, +,US,BIA,Batavia,Batavia,NY,--3-----,RQ,9008,,4260N 07811W, +,US,BIB,Birdsboro,Birdsboro,PA,--3-----,RQ,9307,,4016N 07548W, +,US,BIC,Big Creek,Big Creek,AK,---4----,AI,0001,,3712N 11915W, +,US,BID,Block Island,Block Island,RI,---4----,AI,0001,,4111N 07134W, +,US,BIE,Beatrice,Beatrice,NE,--34----,AI,9601,,4016N 09645W, +,US,BIG,Big Delta,Big Delta,AK,--34----,AI,9601,,6409N 14551W, +,US,BIH,Bishop,Bishop,CA,---4----,AI,9601,,3722N 11824W, +,US,BIK,Berlin,Berlin,CT,--3-----,RQ,9307,,4137N 07245W, +,US,BIL,Billings,Billings,MT,--34----,RQ,9008,,4547N 10830W, +,US,BIN,Birmingham,Birmingham,NJ,--3-----,RQ,9008,,3959N 07443W, +,US,BIP,Biglerville,Biglerville,PA,--3-----,RQ,9307,,3956N 07715W, +,US,BIQ,Bridger,Bridger,MT,--3-----,RQ,9307,,4518N 10855W, +,US,BIS,Bismarck,Bismarck,ND,--34----,RQ,9008,,4648N 10047W, +,US,BIT,Bricktown,Bricktown,NJ,--3-----,RQ,9307,,4004N 07408W, +,US,BIV,Bishopville,Bishopville,SC,--3-----,RQ,9307,,3413N 08015W, +,US,BIW,Blair,Blair,SC,--3-----,RQ,9307,,3425N 08124W, +,US,BIX,Biloxi,Biloxi,MS,---4----,AI,9601,,3024N 08853W, +,US,BIY,Big Sandy,Big Sandy,TN,--3-----,RQ,9307,,3614N 08805W, +,US,BIZ,Birmingham,Birmingham,MI,--3-----,RQ,9307,,4233N 08313W, +,US,BJB,Bridgeburg,Bridgeburg,PA,--3-----,RQ,9307,,4052N 07929W, +,US,BJC,Broomfield,Broomfield,CO,---4----,AI,9601,,3956N 10503W, +,US,BJD,Bearden,Bearden,AR,--3-----,RQ,9307,,3343N 09237W, +,US,BJI,Bemidji,Bemidji,MN,--34----,AI,9601,,4729N 09453W, +,US,BJJ,Wooster,Wooster,OH,--34----,AI,9601,,4048N 08156W, +,US,BJP,Blue Ridge Summit,Blue Ridge Summit,PA,--3-----,RQ,9307,,3943N 07728W, +,US,BJQ,Brooklyn Park,Brooklyn Park,MD,--3-----,RQ,9307,,3914N 07637W, +,US,BJT,Bridgetown,Bridgetown,MD,--3-----,RQ,9307,,3902N 07552W, +,US,BJW,Bridgewater,Bridgewater,MA,--3-----,RQ,9307,,4159N 07059W, +,US,BJY,Buena,Buena,NJ,--3-----,RQ,9307,,3932N 07457W, +,US,BKA,Bucks,Bucks,AL,--3-----,RQ,9307,,3101N 08801W, +,US,BKC,Buckland,Buckland,AK,---4----,AI,0001,,6559N 16108W, +,US,BKE,Baker,Baker,OR,--34----,AI,9601,,0012N 17629W, +,US,BKF,Brooks Lake,Brooks Lake,AK,---4----,AI,0001,,3340N 08606W, +,US,BKG,Baker,Baker,FL,--3-----,RQ,0607,,3010N 08541W, +,US,BKH,Kekaha,Kekaha,HI,---4----,AI,0001,,2158N 15943W, +,US,BKI,Buckeye,Buckeye,AR,--3-----,RQ,9307,,3558N 09010W, +,US,BKJ,Brooksville,Brooksville,FL,--3-----,RQ,9307,,2833N 08223W, +,US,BKN,Brookhaven,Brookhaven,MS,--3-----,RQ,9307,,3135N 09026W, +,US,BKS,Brockton,Brockton,MA,--3-----,RQ,9307,,4205N 07101W, +,US,BKU,Brooklyn,Brooklyn,OH,--3-----,RQ,9307,,4126N 08144W, +,US,BKV,Brecksville,Brecksville,OH,--3-----,RQ,9307,,4119N 08138W, +,US,BKW,Beckley,Beckley,WV,--34----,RQ,9008,,3747N 08111W, +,US,BKX,Brookings,Brookings,SD,---4----,AI,9601,,4419N 09648W, +,US,BKY,Brockway,Brockway,PA,--3-----,RQ,9307,,4115N 07848W, +,US,BKZ,Brookfield,Brookfield,MA,--3-----,RQ,9307,,4213N 07206W, +,US,BL3,"Brooklin, Hancock","Brooklin, Hancock",ME,--3-----,RQ,0607,,4416N 06834W, +,US,BLB,Belair,Belair,CA,--3-----,RQ,9307,,3327N 08207W, +,US,BLC,Black Creek,Black Creek,WI,--3-----,RQ,9307,,4429N 08827W, +,US,BLD,Boulder City,Boulder City,NV,---4----,AI,0001,,3559N 11450W, +,US,BLF,Princeton,Princeton,WV,---4----,AI,0001,,3722N 08106W, +,US,BLG,Bell Gardens,Bell Gardens,CA,--3-----,RQ,9307,,3358N 11809W, +,US,BLH,Blythe,Blythe,CA,---4----,AI,0001,,3337N 11436W, +,US,BLI,Bellingham,Bellingham,WA,1-34----,AI,1701,,4845N 12229W, +,US,BLJ,Belle Mead,Belle Mead,NJ,--3-----,RQ,9307,,4028N 07440W, +,US,BLK,Blackfoot,Blackfoot,ID,--3-----,RQ,9307,,4311N 11221W, +,US,BLL,Ballwin,Ballwin,MO,--3-----,RQ,9008,,3836N 09032W, +,US,BLM,Belmar,Belmar,NJ,--34----,RQ,9008,,4011N 07401W, +,US,BLN,Belen,Belen,NM,--3-----,RQ,9307,,3440N 10647W, +,US,BLO,Bloomington,Bloomington,TX,--3-----,RQ,9307,,2839N 09654W, +,US,BLP,Belle Plaine,Belle Plaine,IA,--3-----,RQ,9307,,4154N 09217W, +,US,BLQ,Belleville,Belleville,PA,--3-----,RQ,9307,,4036N 07744W, +,US,BLR,Ballinger,Ballinger,TX,--3-----,RQ,9307,,3144N 09957W, +,US,BLS,Blissfield,Blissfield,MI,--3-----,RQ,9307,,4152N 08351W, +,US,BLU,Blue Canyon,Blue Canyon,CA,---4----,AI,0001,,3915N 12043W, +,US,BLV,Belleville,Belleville,IL,--34----,AI,9601,,3831N 08959W, +,US,BLW,Waimanalo,Waimanalo,HI,---4----,AI,9506,,2121N 15743W, +,US,BLX,Bel Air,Bel Air,MD,--3-----,RQ,9307,,3932N 07621W, +,US,BLY,Bally,Bally,PA,--3-----,RQ,9307,,4024N 07535W, +,US,BLZ,Belleville,Belleville,MI,--3-----,RQ,9307,,4212N 08329W, +,US,BMA,Brookline,Brookline,MA,--3-----,RQ,9307,,4220N 07107W, +,US,BMB,Bloomingburg,Bloomingburg,NY,--3-----,RQ,9307,,4133N 07426W, +,US,BMC,Brigham City,Brigham City,UT,---4----,AI,9601,,4131N 11201W, +,US,BMF,Bloomfield,Bloomfield,IN,--3-----,RQ,9307,,3902N 08656W, +,US,BMG,Bloomington,Bloomington,IN,--34----,AI,0001,,3910N 08632W, +,US,BML,Berlin,Berlin,NH,--34----,AI,9601,,4428N 07111W, +,US,BMM,Belmont,Belmont,MS,--3-----,RQ,9307,,3430N 08813W, +,US,BMN,Bloomfield,Bloomfield,NJ,--3-----,RQ,9307,,4048N 07411W, +,US,BMQ,Belmont,Belmont,NC,--3-----,RQ,9307,,3515N 08102W, +,US,BMS,Billerica,Billerica,MA,--3-----,RQ,9307,,4234N 07116W, +,US,BMU,Blakely,Blakely,GA,--3-----,RQ,9307,,3123N 08456W, +,US,BMW,Bowmanstown,Bowmanstown,PA,--3-----,RQ,9307,,4048N 07540W, +,US,BMX,Big Mountain,Big Mountain,AK,---4----,AI,0001,,3957N 07656W, +,US,BMZ,Bridgeton,Bridgeton,MO,--3-----,RQ,9307,,3845N 09025W, +,US,BNA,Nashville,Nashville,TN,1--4----,AI,0207,,3610N 08646W, +,US,BND,Burleson,Burleson,TX,--3-----,RQ,9307,,3233N 09719W, +,US,BNE,Blaine,Blaine,MN,--3-----,RQ,9307,,4510N 09314W, +,US,BNF,Baranof,Baranof,AK,---4----,AI,0001,,5652N 13505W, +,US,BNG,Banning,Banning,CA,---4----,AI,0001,,3356N 11653W, +,US,BNL,Barnwell,Barnwell,SC,---4----,AI,0001,,3315N 08122W, +,US,BNM,Bensalem,Bensalem,PA,--3-----,RQ,9307,,4006N 07457W, +,US,BNN,Bannockburn,Bannockburn,IL,--3-----,RQ,9307,,4212N 08752W, +,US,BNO,Burns,Burns,OR,---4----,AI,0001,,4335N 11903W, +,US,BNR,Brandenburg,Brandenburg,KY,--3-----,RQ,9307,,3760N 08610W, +,US,BNT,Bentonville,Bentonville,AR,--3-----,RQ,9506,,3622N 09413W, +,US,BNV,Bensenville,Bensenville,IL,--34----,RQ,9008,,4157N 08757W, +,US,BNW,Boone,Boone,IA,---4----,AI,9601,,4204N 09353W, +,US,BNX,Bronxville,Bronxville,NY,--3-----,RQ,9501,,4056N 07350W, +,US,BNY,Bunn,Bunn,NC,--3-----,RL,0003,,3557N 07815W, +,US,BNZ,Benson,Benson,NC,--3-----,RQ,9307,,3523N 07833W, +,US,BOA,Bon Air,Bon Air,AL,--3-----,RQ,9307,,3316N 08620W, +,US,BOD,Bedford,Bedford,TX,--3-----,RQ,9008,,3251N 09709W, +,US,BOE,Boyertown,Boyertown,PA,--3-----,RQ,9307,,4020N 07538W, +,US,BOF,Botsford,Botsford,CT,--3-----,RQ,9307,,4122N 07315W, +,US,BOG,Bogota,Bogota,NJ,--3-----,RQ,9307,,4053N 07402W, +,US,BOH,Bohemia,Bohemia,NY,--3-----,RQ,9307,,4046N 07307W, +,US,BOI,Boise,Boise,ID,--34----,AI,9601,,4337N 11612W, +,US,BOJ,Bordentown,Bordentown,NJ,--3-----,RQ,9008,,4009N 07443W, +,US,BOK,Brookings,Brookings,OR,---4----,AI,0001,,4203N 12417W, +,US,BOL,Bolton,Bolton,MA,--3-----,RQ,9307,,4226N 07137W, +,US,BOM,Bonham,Bonham,TX,--3-----,RQ,9307,,3335N 09611W, +,US,BON,Bonanza,Bonanza,UT,--3-----,RQ,9307,,4001N 10911W, +,US,BOO,Booneville,Booneville,MS,--3-----,RQ,9307,,3439N 08834W, +,US,BOP,Bonita Springs,Bonita Springs,FL,--3-----,RQ,9307,,2620N 08147W, +,US,BOQ,Booneville,Booneville,AR,--3-----,RQ,9307,,3508N 09355W, +,US,BOS,Boston,Boston,MA,1--45---,AI,9601,,4221N 07104W, +,US,BOU,Bonduel,Bonduel,WI,--3-----,RQ,9307,,4444N 08827W, +,US,BOV,Bolivar,Bolivar,MO,--3-----,RQ,9307,,3737N 09325W, +,US,BOW,Bartow,Bartow,FL,--34----,RQ,9008,,2754N 08151W, +,US,BOX,Bow,Bow,NH,--3-----,RQ,9307,,4308N 07133W, +,US,BPA,Bethpage,Bethpage,NY,---4----,AI,0001,,4045N 07329W, +,US,BPB,Bayport,Bayport,MN,--3-----,RQ,9307,,4501N 09247W, +,US,BPD,Blue Rapids,Blue Rapids,KS,--3-----,RQ,9307,,3941N 09640W, +,US,BPE,Bonsall,Bonsall,CA,--3-----,RQ,9307,,3317N 11714W, +,US,BPG,Bridgeport,Bridgeport,NJ,--3-----,RQ,9307,,3948N 07521W, +,US,BPI,Big Piney,Big Piney,WY,---4----,AI,0001,,4232N 11007W, +,US,BPK,Brockport,Brockport,NY,--3-----,RQ,9307,,4313N 07756W, +,US,BPM,Bridgeport,Bridgeport,MI,--3-----,RQ,9307,,4321N 08353W, +,US,BPR,Blue Springs,Blue Springs,MS,--3-----,RQ,9307,,3424N 08852W, +,US,BPT,Beaumont,Beaumont,TX,1--4----,AI,0001,,3005N 09406W, +,US,BPX,Bayport,Bayport,TX,--3-----,RQ,9307,,2937N 09503W, +,US,BPY,Big Pine Key,Big Pine Key,FL,--3-----,RL,0005,,2440N 08121W, +,US,BPZ,Bayport,Bayport,NY,--3-----,RQ,9307,,4044N 07303W, +,US,BQB,Brentwood,Brentwood,NY,--3-----,RQ,9307,,4047N 07315W, +,US,BQC,Bell,Bell,CA,--3-----,RQ,9307,,3358N 11811W, +,US,BQD,Bradford,Bradford,RI,--3-----,RL,0001,,4124N 07144W, +,US,BQF,Bridgewater,Bridgewater,NJ,--3-----,RQ,9307,,4036N 07436W, +,US,BQG,Brier,Brier,WA,--3-----,RQ,9307,,4747N 12216W, +,US,BQI,Bloomington,Bloomington,MN,--3-----,RQ,9307,,4450N 09319W, +,US,BQL,Burkville,Burkville,AL,--3-----,RQ,9307,,3220N 08632W, +,US,BQM,Black Mountain,Black Mountain,NC,--3-----,RQ,9307,,3537N 08219W, +,US,BQN,Brownstown,Brownstown,MI,--3-----,RL,0002,,4209N 08317W, +,US,BQP,Brooklyn Park,Brooklyn Park,MN,--3-----,RQ,9307,,4506N 09321W, +,US,BQS,Brainards,Brainards,NJ,--3-----,RQ,9307,,4046N 07510W, +,US,BQU,Berkeley,Berkeley,RI,--3-----,RQ,9307,,4156N 07125W, +,US,BQW,Blackwood,Blackwood,NJ,--3-----,RQ,9307,,3948N 07504W, +,US,BQY,Ballston Spa,Ballston Spa,NY,--3-----,RQ,9307,,4300N 07351W, +,US,BRB,Berlin,Berlin,WI,--3-----,RQ,9307,,4358N 08857W, +,US,BRC,Bern,Bern,KS,--3-----,RQ,9307,,3958N 09558W, +,US,BRD,Brainerd,Brainerd,MN,---4----,AI,9601,,4621N 09412W, +,US,BRE,Bellaire,Bellaire,TX,--3-----,RL,9811,,2942N 09528W, +,US,BRF,Bergenfield,Bergenfield,NJ,--3-----,RQ,9307,,4056N 07360W, +,US,BRG,Whitesburg,Whitesburg,KY,---4----,AI,0001,,3707N 08250W, +,US,BRH,Bergholtz,Bergholtz,NY,--3-----,RQ,9307,,4306N 07854W, +,US,BRI,Berlin,Berlin,NY,--3-----,RQ,9501,,4242N 07322W, +,US,BRJ,Broadview,Broadview,IL,--3-----,RQ,9008,,4152N 08751W, +,US,BRK,Brookfield,Brookfield,CT,--3-----,RQ,9307,,4129N 07325W, +,US,BRL,Burlington,Burlington,IA,---4----,AI,9601,,4049N 09106W, +,US,BRM,Brimfield,Brimfield,IL,--3-----,RQ,9506,,4050N 08953W, +,US,BRN,Barrington,Barrington,NJ,--3-----,RQ,9307,,3952N 07503W, +,US,BRQ,Barrington,Barrington,IL,--3-----,RQ,9307,,4209N 08808W, +,US,BRR,Brewster,Brewster,OH,--3-----,RN,0105,,4042N 08136W, +,US,BRS,Brooks,Brooks,OR,--3-----,RQ,9307,,4503N 12257W, +,US,BRT,Bristol,Bristol,CO,--3-----,RQ,9501,,3807N 10219W, +,US,BRU,Battle Ground,Battle Ground,WA,--3-----,RQ,9307,,4547N 12232W, +,US,BRV,Bernardsville,Bernardsville,NJ,--3-----,RQ,9307,,4043N 07434W, +,US,BRW,Barrow,Barrow,AK,---4----,AI,0001,,7117N 15647W, +,US,BRY,Bryan,Bryan,OH,--3-----,RQ,9307,,4128N 08433W, +,US,BRZ,Barrington,Barrington,RI,--3-----,RQ,9307,,4144N 07119W, +,US,BS2,"Blackshear, Pierce","Blackshear, Pierce",GA,--3-----,RQ,0607,,3118N 08214W, +,US,BSA,Brisbane,Brisbane,CA,--3-----,RQ,9307,,3741N 12224W, +,US,BSB,Bloomsburg,Bloomsburg,PA,--3-----,RQ,9307,,4100N 07627W, +,US,BSC,Bascom,Bascom,OH,--3-----,RQ,9307,,4108N 08317W, +,US,BSD,Brownsville,Brownsville,TN,--3-----,RQ,9307,,3536N 08916W, +,US,BSE,Bristol,Bristol,RI,--3-----,RQ,9307,,4141N 07116W, +,US,BSH,Bay Shore,Bay Shore,NY,--3-----,RQ,9307,,4044N 07315W, +,US,BSI,Blairsville,Blairsville,PA,---4----,AI,9601,,4026N 07916W, +,US,BSJ,Bristol,Bristol,WI,--3-----,RQ,9307,,4234N 08803W, +,US,BSK,Basking Ridge,Basking Ridge,NJ,--3-----,RQ,9307,,4042N 07433W, +,US,BSL,Bay Saint Louis,Bay Saint Louis,MS,--3-----,RQ,9307,,3019N 08920W, +,US,BSN,Boston,Boston,VA,--3-----,RQ,9307,,3737N 07550W, +,US,BSP,Bartlett Springs,Bartlett Springs,CA,--3-----,RQ,9307,,3911N 12242W, +,US,BSQ,Bisbee,Bisbee,AZ,---4----,AI,0001,,3127N 10955W, +,US,BSR,Bossier City,Bossier City,LA,--3-----,RQ,9307,,3231N 09344W, +,US,BSS,Bassett,Bassett,VA,--3-----,RQ,9307,,3646N 07959W, +,US,BST,Bean Station,Bean Station,TN,--3-----,RQ,9307,,3621N 08317W, +,US,BSU,Bonner Springs,Bonner Springs,KS,--3-----,RQ,9307,,3904N 09453W, +,US,BSW,Boswell Bay,Boswell Bay,AK,---4----,AI,0001,,6024N 14607W, +,US,BSX,Bristol,Bristol,IN,--3-----,RQ,9307,,4143N 08549W, +,US,BSZ,Bartletts,Bartletts,AK,---4----,AI,0001,,4209N 07043W, +,US,BT2,"Bryant, Hamlin","Bryant, Hamlin",SD,--3-----,RQ,0607,,4435N 09728W, +,US,BTB,Boonton,Boonton,NJ,--3-----,RQ,9307,,4054N 07424W, +,US,BTC,Braintree,Braintree,MA,--3-----,RQ,9307,,4213N 07100W, +,US,BTD,Bettendorf,Bettendorf,IA,--3-----,RQ,9307,,4132N 09031W, +,US,BTE,Bethune,Bethune,SC,--3-----,RQ,9307,,3425N 08021W, +,US,BTF,Bountiful,Bountiful,UT,---4----,AI,9601,,4053N 11153W, +,US,BTG,Bethel,Bethel,PA,--3-----,RQ,9307,,4021N 08003W, +,US,BTI,Barter Island,Barter Island,AK,---4----,AI,0001,,7007N 14340W, +,US,BTJ,Bethel,Bethel,CT,--3-----,RQ,9008,,4122N 07325W, +,US,BTK,Botkins,Botkins,OH,--3-----,RQ,9307,,4028N 08411W, +,US,BTL,Battle Creek,Battle Creek,MI,---4----,AI,0001,,4219N 08511W, +,US,BTN,Bennettsville,Bennettsville,SC,---4----,AI,9601,,3437N 07941W, +,US,BTP,Butler,Butler,PA,--34----,AI,9601,,4052N 07954W, +,US,BTQ,Benton,Benton,IL,--3-----,RQ,9307,,3760N 08855W, +,US,BTT,Bettles,Bettles,AK,---4----,AI,0001,,6654N 15132W, +,US,BTU,Burt,Burt,NY,--3-----,RQ,9307,,4319N 07843W, +,US,BTV,Burlington,Burlington,VT,1--4----,AI,0207,,4429N 07313W, +,US,BTW,Bethany,Bethany,CT,--3-----,RQ,9307,,4125N 07260W, +,US,BTX,Bethany,Bethany,IL,--3-----,RQ,9307,,3939N 08844W, +,US,BTY,Beatty,Beatty,NV,---4----,AI,0001,,3656N 11643W, +,US,BTZ,Benton,Benton,ME,--3-----,RQ,9307,,4435N 06933W, +,US,BUA,Bradbury,Bradbury,CA,--3-----,RQ,9307,,3409N 11758W, +,US,BUC,Buchanan,Buchanan,MI,--3-----,RQ,9307,,4152N 08624W, +,US,BUD,Bude,Bude,MS,--3-----,RQ,9307,,3128N 09051W, +,US,BUE,Buena,Buena,WA,--3-----,RQ,9307,,4626N 12019W, +,US,BUF,Buffalo,Buffalo,NY,1--45---,AI,0207,,4253N 07853W, +,US,BUG,Buffalo Lake,Buffalo Lake,MN,--3-----,RQ,9307,,4444N 09437W, +,US,BUH,Burlington,Burlington,NJ,--3-----,RQ,9307,,4004N 07452W, +,US,BUK,Burbank,Burbank,IL,--3-----,RQ,9307,,4144N 08746W, +,US,BUL,Blue Lake,Blue Lake,CA,--3-----,RQ,9307,,4053N 12359W, +,US,BUM,Butler,Butler,MO,---4----,AI,0001,,3816N 09420W, +,US,BUP,Bucksport,Bucksport,ME,1-3-----,RN,0105,,4434N 06848W, +,US,BUQ,Burr Oak,Burr Oak,MI,--3-----,RQ,9307,,4151N 08519W, +,US,BUR,Burbank,Burbank,CA,---4----,AI,9601,,3411N 11818W, +,US,BUS,Buras,Buras,LA,0-------,RL,9811,,2921N 08931W, +,US,BUT,Burton,Burton,OH,--3-----,RQ,9307,,4128N 08109W, +,US,BUU,Burlington,Burlington,CT,--3-----,RQ,9307,,4146N 07258W, +,US,BUV,Burtonsville,Burtonsville,MD,--3-----,RQ,9008,,3907N 07656W, +,US,BUW,Burlington,Burlington,WI,--3-----,RQ,9307,,4241N 08817W, +,US,BUX,Batavia,Batavia,OH,--3-----,RQ,9307,,3905N 08411W, +,US,BUY,Blauvelt,Blauvelt,NY,--3-----,RQ,9307,,4104N 07357W, +,US,BUZ,Buckley,Buckley,WA,--3-----,RQ,9307,,4710N 12202W, +,US,BVB,Bellville,Bellville,TX,--3-----,RQ,9307,,2957N 09615W, +,US,BVE,Bellevue,Bellevue,WA,--3-----,RQ,9307,,4737N 12212W, +,US,BVF,Beaver Falls,Beaver Falls,NY,--3-----,RQ,9307,,4353N 07526W, +,US,BVH,Beverly Hills,Beverly Hills,CA,--3-----,RQ,9307,,3404N 11824W, +,US,BVJ,Belvidere,Belvidere,IL,--3-----,RQ,9307,,4215N 08851W, +,US,BVL,Boonville,Boonville,NC,--3-----,RQ,9307,,3614N 08042W, +,US,BVM,Boonville,Boonville,MO,--3-----,RQ,9307,,3859N 09245W, +,US,BVN,Belle Vernon,Belle Vernon,PA,--3-----,RQ,9307,,4008N 07952W, +,US,BVO,Bartlesville,Bartlesville,OK,--34----,AI,9601,,3645N 09557W, +,US,BVP,Brookville,Brookville,PA,--3-----,RQ,9307,,4110N 07905W, +,US,BVQ,Boonville,Boonville,IN,--3-----,RQ,9307,,3803N 08716W, +,US,BVR,Beverly,Beverly,OH,--3-----,RQ,9307,,3933N 08138W, +,US,BVT,Belmont,Belmont,CA,--3-----,RQ,9307,,3731N 12218W, +,US,BVU,Beluga,Beluga,AK,---4----,AI,0001,,6108N 15105W, +,US,BVW,Beaverton,Beaverton,OR,--3-----,RQ,9307,,4529N 12248W, +,US,BVY,Beverly,Beverly,MA,--34----,AI,9501,,4233N 07053W, +,US,BVZ,Batesville,Batesville,MS,--3-----,RQ,9307,,3419N 08957W, +,US,BWA,Brookwood,Brookwood,AL,--3-----,RQ,9307,,3315N 08719W, +,US,BWD,Brownwood,Brownwood,TX,---4----,AI,9601,,3142N 09859W, +,US,BWE,Brentwood,Brentwood,TN,--3-----,RQ,9307,,3602N 08647W, +,US,BWG,Bowling Green,Bowling Green,KY,--34----,AI,9601,,3659N 08627W, +,US,BWI,Washington-Baltimore Int Apt,Washington-Baltimore Int Apt,MD,---4----,AI,0201,,3911N 07640W,cf US BAL +,US,BWK,Blowing Rock,Blowing Rock,NC,--3-----,RQ,9307,,3608N 08141W, +,US,BWL,Blackwell,Blackwell,OK,---4----,AI,0001,,3648N 09717W, +,US,BWM,Bowman,Bowman,ND,---4----,AI,0001,,4611N 10324W, +,US,BWN,Bowerston,Bowerston,OH,--3-----,RQ,9307,,4026N 08111W, +,US,BWO,Bowling Green,Bowling Green,OH,--3-----,RQ,9307,,4122N 08339W, +,US,BWP,Baldwin Park,Baldwin Park,CA,--3-----,RQ,9307,,3405N 11758W, +,US,BWQ,Broken Arrow,Broken Arrow,OK,--3-----,RQ,9307,,3603N 09547W, +,US,BWR,Bellmawr,Bellmawr,NJ,--3-----,RQ,9008,,3952N 07506W, +,US,BWS,Blaine,Blaine,WA,--34----,AI,9601,,4859N 12245W, +,US,BWT,Braithwaite,Braithwaite,LA,--3-----,RQ,9307,,2952N 08957W, +,US,BWV,Bowmansville,Bowmansville,PA,--3-----,RQ,9307,,4012N 07601W, +,US,BWW,Brownton,Brownton,MN,--3-----,RQ,9307,,4444N 09421W, +,US,BWX,Bon Wier,Bon Wier,TX,--3-----,RQ,9307,,3044N 09339W, +,US,BWY,Berwyn,Berwyn,IL,--3-----,RQ,9506,,4151N 08748W, +,US,BXA,Bogalusa,Bogalusa,LA,---4----,AI,9601,,3047N 08951W, +,US,BXB,Breaux Bridge,Breaux Bridge,LA,--3-----,RQ,9307,,3016N 09154W, +,US,BXD,Breese,Breese,IL,--3-----,RQ,9307,,3837N 08932W, +,US,BXE,Bremen,Bremen,IN,--3-----,RQ,9307,,4127N 08609W, +,US,BXF,Brentwood,Brentwood,CA,--3-----,RQ,9307,,3756N 12142W, +,US,BXG,Brentwood,Brentwood,MD,--3-----,RQ,9307,,3857N 07657W, +,US,BXH,Brewer,Brewer,ME,--3-----,RQ,9307,,4448N 06846W, +,US,BXI,Brewster,Brewster,WA,--3-----,RQ,9307,,4806N 11947W, +,US,BXJ,Brewton,Brewton,AL,--3-----,RQ,9307,,3106N 08704W, +,US,BXK,Buckeye,Buckeye,AZ,--34----,AI,1807,,3322N 11235W, +,US,BXL,Brian,Brian,LA,--3-----,RQ,9307,,3238N 09356W, +,US,BXM,Bridgeport,Bridgeport,AL,--3-----,RQ,9008,,3457N 08543W, +,US,BXN,Benton,Benton,AR,--3-----,RQ,9307,,3434N 09235W, +,US,BXO,Bladenboro,Bladenboro,NC,--3-----,RQ,9307,,3432N 07847W, +,US,BXP,Box Springs,Box Springs,CA,--3-----,RQ,9307,,3357N 11718W, +,US,BXQ,Brodnax,Brodnax,VA,--3-----,RQ,9307,,3642N 07802W, +,US,BXR,Baxter,Baxter,TN,--3-----,RQ,9307,,3609N 08539W, +,US,BXS,Borrego Springs,Borrego Springs,CA,---4----,AI,0001,,3315N 11621W, +,US,BXT,Bauxite,Bauxite,AR,--3-----,RQ,9307,,3433N 09231W, +,US,BXU,Brownfield,Brownfield,TX,--3-----,RQ,9307,,3311N 10216W, +,US,BXV,Brownstown,Brownstown,IN,--3-----,RQ,9307,,3853N 08603W, +,US,BXW,Bucyrus,Bucyrus,OH,--3-----,RQ,9307,,4049N 08259W, +,US,BXX,Brandon,Brandon,FL,--3-----,RQ,9307,,2756N 08217W, +,US,BYA,Boundary,Boundary,AK,---4----,AI,0001,,6405N 14106W, +,US,BYB,Boynton Beach,Boynton Beach,FL,--3-----,RQ,9307,,2632N 08004W, +,US,BYC,Boyceville,Boyceville,WI,--3-----,RQ,9307,,4503N 09202W, +,US,BYD,Bayard,Bayard,NE,--3-----,RQ,9307,,4145N 10319W, +,US,BYE,Bryn Mawr,Bryn Mawr,PA,--3-----,RQ,9307,,4001N 07518W, +,US,BYF,Bryson City,Bryson City,NC,--3-----,RQ,9307,,3526N 08327W, +,US,BYG,Buffalo,Buffalo,WY,---4----,AI,9601,,4421N 10642W, +,US,BYH,Blytheville,Blytheville,AR,---4----,AI,9601,,3556N 08954W, +,US,BYK,Byron Center,Byron Center,MI,--3-----,RQ,9307,,4249N 08544W, +,US,BYL,Bradley,Bradley,IL,--3-----,RQ,9307,,4109N 08752W, +,US,BYM,Byram,Byram,CT,--3-----,RQ,9307,,4100N 07339W, +,US,BYN,Burney,Burney,CA,--3-----,RQ,9307,,4053N 12140W, +,US,BYO,Burnsville,Burnsville,MN,--3-----,RQ,9307,,4446N 09317W, +,US,BYP,Burley,Burley,PA,--3-----,RQ,9307,,4232N 11348W, +,US,BYQ,Byberry,Byberry,PA,--3-----,RQ,9307,,4007N 07459W, +,US,BYR,Byron,Byron,CA,--3-----,RQ,9307,,3752N 12138W, +,US,BYS,Fort Irwin,Fort Irwin,CA,---4----,AI,0001,,3516N 11641W, +,US,BYU,Bayou la Batre,Bayou la Batre,AL,--3-----,RQ,9307,,3024N 08815W, +,US,BYV,Berryville,Berryville,VA,--3-----,RQ,9307,,3909N 07759W, +,US,BYW,Blakely Island,Blakely Island,WA,---4----,AI,0001,,4834N 12248W, +,US,BYX,Baxley,Baxley,GA,--3-----,RQ,9501,,3147N 08221W, +,US,BYY,Breckenridge,Breckenridge,MN,--3-----,RQ,9307,,4616N 09635W, +,US,BZC,Barnesville,Barnesville,OH,--3-----,RQ,9307,,3959N 08111W, +,US,BZH,Bethesda,Bethesda,MD,--3-----,RQ,9307,,3859N 07706W, +,US,BZJ,Bethel,Bethel,NY,1----6--,RL,1107,,4141N 07452W, +,US,BZT,Brazoria,Brazoria,TX,---4----,AI,0001,,2903N 09534W, +,US,BZW,Barstow,Barstow,CA,--3-----,RQ,9307,,3454N 11701W, +,US,BZY,Blue Springs,Blue Springs,MO,--3-----,RQ,9307,,3901N 09417W, +,US,CAA,Calimesa,Calimesa,CA,--3-----,RQ,9307,,3400N 11704W, +,US,CAB,Canby,Canby,OR,--3-----,RQ,9307,,4516N 12242W, +,US,CAC,Cactus,Cactus,TX,--3-----,RQ,9307,,3603N 10200W, +,US,CAD,Cadillac,Cadillac,MI,---4----,AI,9601,,4415N 08524W, +,US,CAE,Columbia,Columbia,SC,---4----,AI,9601,,3400N 08102W, +,US,CAF,Columbia Station,Columbia Station,OH,--3-----,RQ,9307,,4119N 08157W, +,US,CAG,Calistoga,Calistoga,CA,--3-----,RQ,9307,,3835N 12235W, +,US,CAH,Calhoun,Calhoun,GA,--3-----,RQ,9307,,3430N 08457W, +,US,CAJ,Columbia City,Columbia City,IN,--3-----,RQ,9307,,4109N 08529W, +,US,CAM,Cambridge City,Cambridge City,IN,--3-----,RQ,9307,,3949N 08510W, +,US,CAN,Camanche,Camanche,IA,--3-----,RQ,9307,,4147N 09015W, +,US,CAO,Clayton,Clayton,NM,---4----,AI,0001,,3627N 10311W, +,US,CAQ,Caldwell,Caldwell,OH,--3-----,RQ,9307,,3945N 08131W, +,US,CAR,Caribou,Caribou,ME,---4----,AI,0001,,4652N 06801W, +,US,CAS,Castine,Castine,ME,--3-----,RQ,9307,,4423N 06848W, +,US,CAT,Camden,Camden,TN,--3-----,RQ,9307,,3604N 08806W, +,US,CAU,Calcasieu,Calcasieu,LA,--3-----,RQ,9307,,3105N 09243W, +,US,CAV,Cleveland,Cleveland,TX,--3-----,RQ,9307,,3020N 09505W, +,US,CAW,Carthage,Carthage,IN,--3-----,RQ,9307,,3944N 08534W, +,US,CAX,Carrollton,Carrollton,TX,--3-----,RQ,9307,,3257N 09653W, +,US,CAZ,Cynthiana,Cynthiana,KY,--3-----,RL,9307,,3823N 08418W, +,US,CBB,Chambersburg,Chambersburg,PA,--3-----,RQ,9307,,3956N 07740W, +,US,CBC,Centerbrook,Centerbrook,CT,--3-----,RQ,9307,,4121N 07225W, +,US,CBE,Cumberland,Cumberland,MD,---4----,AI,9601,,3939N 07846W, +,US,CBF,Council Bluffs,Council Bluffs,IA,---4----,AI,9601,,4116N 09551W, +,US,CBG,Christiansburg,Christiansburg,VA,--3-----,RQ,9307,,3708N 08025W, +,US,CBH,Cambridge,Cambridge,OH,--3-----,RQ,9307,,4002N 08135W, +,US,CBI,Corbin,Corbin,KY,--3-----,RQ,9008,,3657N 08406W, +,US,CBJ,Country Side,Country Side,IL,--3-----,RQ,9307,,3922N 07725W, +,US,CBK,Colby,Colby,KS,--34----,AI,9601,,3924N 10103W, +,US,CBL,Coupeville,Coupeville,WA,--3-----,RQ,9307,,4813N 12241W, +,US,CBN,Cleburne,Cleburne,TX,--3-----,RQ,9307,,3221N 09723W, +,US,CBO,Campobello,Campobello,SC,--3-----,RQ,9307,,3507N 08209W, +,US,CBP,Courtland,Courtland,AL,--3-----,RQ,9307,,3440N 08719W, +,US,CBQ,Courtland,Courtland,KS,--3-----,RQ,9307,,3947N 09754W, +,US,CBR,Courtland,Courtland,MN,--3-----,RQ,9307,,4416N 09420W, +,US,CBU,Campbellsburg,Campbellsburg,KY,--3-----,RQ,9806,,3831N 08512W, +,US,CBV,Cedar Bayou,Cedar Bayou,TX,--3-----,RQ,9307,,2947N 09457W, +,US,CBW,Columbus,Columbus,WI,--3-----,RQ,9307,,4320N 08905W, +,US,CBX,Cannon Beach,Cannon Beach,OR,--3-----,RQ,0002,,4553N 12358W, +,US,CBZ,Cabin Creek,Cabin Creek,AK,---4----,AI,0001,,3812N 08129W, +,US,CC5,City of Commerce,City of Commerce,CA,--3-----,RQ,0607,,3528N 09731W, +,US,CCA,Fort Chaffee,Fort Chaffee,AR,---4----,AI,0001,,3519N 09418W, +,US,CCB,Upland,Upland,CA,---4----,AI,9601,,3406N 11739W, +,US,CCE,Chicopee,Chicopee,MO,--3-----,RQ,9307,,3659N 09100W, +,US,CCI,Calhoun City,Calhoun City,MS,--3-----,RQ,9307,,3351N 08919W, +,US,CCJ,Cape Charles,Cape Charles,VA,1-3-----,RN,0105,,3716N 07601W, +,US,CCL,Chocolate Bayou,Chocolate Bayou,TX,--3-----,RQ,9307,,2919N 09515W, +,US,CCN,Clinton,Clinton,MA,--3-----,RQ,9307,,4225N 07141W, +,US,CCP,Caspian,Caspian,MI,--3-----,RQ,9307,,4604N 08838W, +,US,CCQ,Cockeysville,Cockeysville,MD,--3-----,RQ,9307,,3929N 07639W, +,US,CCR,Concord,Concord,CA,---4----,AI,9601,,3759N 12202W, +,US,CCT,Calvert City,Calvert City,KY,1-------,RQ,9307,,3702N 08821W, +,US,CCU,Coconut Creek,Coconut Creek,FL,--3-----,RQ,9307,,2616N 08011W, +,US,CCV,Colchester,Colchester,VT,--3-----,RQ,9307,,4432N 07311W, +,US,CCW,Centereach,Centereach,NY,--3-----,RQ,9307,,4052N 07306W, +,US,CCY,Charles City,Charles City,IA,---4----,AI,0001,,4304N 09241W, +,US,CDB,Cold Bay,Cold Bay,AK,---4----,AI,0001,,5512N 16244W, +,US,CDC,Cedar City,Cedar City,UT,--34----,AI,1607,,3741N 11304W, +,US,CDE,Camden,Camden,NJ,1-3-----,RN,0105,,3957N 07507W, +,US,CDG,Chestnut Ridge,Chestnut Ridge,NY,--3-----,RQ,0002,,4105N 07403W, +,US,CDH,Camden,Camden,AR,--34----,RQ,9008,,3335N 09250W, +,US,CDI,Cedartown,Cedartown,GA,--3-----,RQ,9307,,3401N 08515W, +,US,CDJ,Cedar Hills,Cedar Hills,OR,--3-----,RQ,9307,,4531N 12249W, +,US,CDK,Cedar Key,Cedar Key,FL,--34----,AI,0001,,2908N 08302W, +,US,CDL,Candle,Candle,AK,---4----,AI,0001,,6555N 16155W, +,US,CDM,Cold Spring,Cold Spring,MN,--3-----,RQ,9307,,4527N 09426W, +,US,CDN,Camden,Camden,SC,---4----,AI,9601,,3415N 08036W, +,US,CDO,Chardon,Chardon,OH,--3-----,RQ,9307,,4135N 08112W, +,US,CDP,Childs,Childs,PA,--3-----,RQ,9307,,4133N 07531W, +,US,CDR,Chadron,Chadron,NE,---4----,AI,9601,,4250N 10300W, +,US,CDS,Childress,Childress,TX,--34----,AI,9601,,3426N 10012W, +,US,CDT,Camdenton,Camdenton,MO,--3-----,RL,0001,,3800N 09245W, +,US,CDV,Cordova,Cordova,AK,1--4----,AI,0001,,6033N 14546W, +,US,CDW,Caldwell,Caldwell,NJ,---4----,AI,9601,,4050N 07417W, +,US,CDX,Caldwell,Caldwell,ID,--3-----,RQ,9307,,4340N 11641W, +,US,CDY,Conneaut,Conneaut,OH,1-3-----,RN,0105,,4157N 08033W, +!,US,CEA,Celina,Celina,OH,--3-----,RQ,9307,,4033N 08434W, +,US,CEB,Calera,Calera,AL,--3-----,RQ,9307,,3306N 08645W, +,US,CEC,Crescent City,Crescent City,CA,1-34----,AI,1307,,4151N 12409W, +,US,CED,Cedar Grove,Cedar Grove,NJ,--3-----,RQ,9307,,4051N 07414W, +,US,CEE,Centerville,Centerville,CA,--3-----,RQ,9307,,3644N 11930W, +,US,CEF,Chicopee,Chicopee,MA,---4----,AI,9601,,4209N 07236W, +,US,CEG,Cedarburg,Cedarburg,WI,--3-----,RQ,9307,,4318N 08759W, +,US,CEJ,Coppell,Coppell,TX,--3-----,RQ,9307,,3257N 09701W, +,US,CEL,Cape Elizabeth,Cape Elizabeth,ME,--3-----,RQ,9307,,4336N 07014W, +,US,CEN,Convent,Convent,LA,--3-----,RQ,9501,,3001N 09050W, +,US,CEO,Claremont,Claremont,NC,--3-----,RQ,9307,,3543N 08109W, +,US,CEP,Chapman,Chapman,AL,--3-----,RQ,9307,,3140N 08643W, +,US,CER,Centre,Centre,AL,--3-----,RQ,9307,,3409N 08541W, +,US,CES,Cedar Springs,Cedar Springs,GA,--3-----,RQ,9307,,3111N 08502W, +,US,CET,Copiague,Copiague,NY,--3-----,RQ,9307,,4041N 07324W, +,US,CEU,Clemson,Clemson,SC,--34----,AI,9601,,3441N 08250W, +,US,CEV,Connersville,Connersville,IN,---4----,AI,9601,,3938N 08508W, +,US,CEW,Crestview,Crestview,FL,---4----,AI,9601,,3046N 08634W, +,US,CEX,Chena Hot Springs,Chena Hot Springs,AK,---4----,AI,0001,,6503N 14603W, +,US,CEY,Murray,Murray,KY,--34----,AI,9601,,3637N 08819W, +,US,CEZ,Cortez,Cortez,CO,---4----,AI,0001,,3721N 10835W, +,US,CFA,Coffee Point,Coffee Point,AK,---4----,AI,0001,,4309N 11258W, +,US,CFB,Crawfordsville,Crawfordsville,IN,--3-----,RQ,9307,,4002N 08654W, +,US,CFC,Cary,Cary,NC,--3-----,RQ,9307,,3547N 07847W, +,US,CFD,Bryan,Bryan,TX,--34----,AI,9601,,3040N 09622W, +,US,CFE,Chesterfield,Chesterfield,MO,--3-----,RQ,9307,,3840N 09034W, +,US,CFH,Clifton Heights,Clifton Heights,PA,--3-----,RQ,9307,,3956N 07518W, +,US,CFI,Canal Fulton,Canal Fulton,OH,--3-----,RQ,9307,,4053N 08136W, +,US,CFK,Cresco,Cresco,IA,--3-----,RQ,9307,,4322N 09207W, +,US,CFL,Chesterfield,Chesterfield,MI,--3-----,RQ,9806,,4226N 08318W, +,US,CFM,Columbia,Columbia,MS,--3-----,RQ,9307,,3115N 08950W, +,US,CFN,Cape Fear,Cape Fear,NC,--3-----,RQ,9307,,3526N 07849W, +,US,CFO,Chagrin Falls,Chagrin Falls,OH,--3-----,RQ,9307,,4126N 08123W, +,US,CFP,Clifton Park,Clifton Park,NY,--3-----,RQ,9307,,4252N 07347W, +,US,CFR,Chadds Ford,Chadds Ford,PA,--3-----,RQ,9806,,3952N 07535W, +,US,CFS,Cannon Falls,Cannon Falls,MN,--3-----,RQ,9307,,4430N 09254W, +,US,CFT,Clifton,Clifton,AZ,---4----,AI,0001,,3303N 10918W, +,US,CFU,Clifton,Clifton,NJ,--3-----,RQ,9307,,4052N 07410W, +,US,CFW,Clermont,Clermont,FL,--3-----,RQ,9307,,2833N 08146W, +,US,CFX,Clifton,Clifton,TX,--3-----,RQ,9307,,3147N 09735W, +,US,CGA,Craig,Craig,AK,---4----,AI,0001,,5529N 13309W, +,US,CGC,Corning,Corning,AR,--3-----,RQ,9307,,3625N 09035W, +,US,CGD,Collegedale,Collegedale,TN,--3-----,RQ,9307,,3503N 08503W, +,US,CGE,Cambridge,Cambridge,MD,1-34----,RN,0105,,3834N 07605W, +,US,CGG,College Grove,College Grove,TN,--3-----,RQ,9307,,3553N 08437W, +,US,CGI,Cape Girardeau,Cape Girardeau,MO,--34----,AI,9601,,3718N 08931W, +,US,CGK,Catlettsburg,Catlettsburg,KY,--3-----,RQ,9307,,3824N 08236W, +,US,CGL,Collingdale,Collingdale,PA,--3-----,RQ,9307,,3955N 07517W, +,US,CGM,Crosby,Crosby,MN,--3-----,RQ,9307,,4629N 09357W, +,US,CGN,Clairton,Clairton,PA,--3-----,RQ,9307,,4018N 07953W, +,US,CGO,Chittenango,Chittenango,NY,--3-----,RL,0003,,4303N 07552W, +,US,CGR,Cedar Grove,Cedar Grove,WI,--3-----,RQ,9307,,4334N 08749W, +,US,CGS,College Park,College Park,MD,---4----,AI,0001,,3859N 07656W, +,US,CGT,Carthage,Carthage,MS,--3-----,RQ,9307,,3244N 08932W, +,US,CGV,Collegeville,Collegeville,PA,--3-----,RQ,9307,,4011N 07527W, +,US,CGZ,Casa Grande,Casa Grande,AZ,--34----,AI,9008,,3253N 11145W, +,US,CHB,Chadbourn,Chadbourn,NC,--3-----,RQ,9307,,3419N 07850W, +,US,CHC,Cheshire,Cheshire,CT,--3-----,RQ,9307,,4130N 07254W, +,US,CHD,Chandler,Chandler,AZ,---4----,AI,9601,,3318N 11150W, +,US,CHE,Chapel Hill,Chapel Hill,NC,--3-----,RQ,9506,,3555N 07903W, +,US,CHF,Chalfont,Chalfont,PA,--3-----,RQ,9307,,4017N 07513W, +,US,CHG,Cheboygan,Cheboygan,MI,--3-----,RQ,9307,,4539N 08428W, +,US,CHH,Channahon,Channahon,IL,--3-----,RQ,9307,,4126N 08814W, +,US,CHI,Chicago,Chicago,IL,1--45---,AI,1301,MDW,4153N 08737W, +,US,CHJ,Cherryville,Cherryville,NC,--3-----,RQ,9307,,3523N 08123W, +,US,CHL,Challis,Challis,ID,---4----,AI,0001,,4430N 11414W, +,US,CHM,Champlain,Champlain,NY,--3-----,RQ,9307,,4459N 07327W, +,US,CHN,Charlestown,Charlestown,MA,--3-----,RQ,9307,,4223N 07104W, +,US,CHO,Charlottesville,Charlottesville,VA,--34----,AI,9601,,3802N 07829W, +,US,CHP,Circle Hot Springs,Circle Hot Springs,AK,---4----,AI,0001,,6529N 14439W, +,US,CHQ,Chanhassen,Chanhassen,MN,--3-----,RQ,9307,,4452N 09332W, +,US,CHR,Chugiak,Chugiak,AK,--3-----,RQ,9307,,6122N 14930W, +,US,CHS,Charleston,Charleston,SC,1--4----,AI,0001,,3247N 07956W, +,US,CHT,Chester,Chester,PA,1-3-----,RN,0105,,3951N 07521W, +,US,CHU,Chuathbaluk,Chuathbaluk,AK,---4----,AI,0001,,6134N 15915W, +,US,CHV,Cherry Valley,Cherry Valley,CA,--3-----,RQ,9307,,3359N 11658W, +,US,CHW,Cheswold,Cheswold,DE,--3-----,RQ,9008,,3913N 07535W, +,US,CHX,Cherry Hill,Cherry Hill,NJ,--3-----,RQ,9307,,3956N 07502W, +,US,CHY,Castle Hayne,Castle Hayne,NC,--3-----,RQ,9307,,3421N 07754W, +,US,CHZ,Chiloquin,Chiloquin,OR,---4----,AI,0001,,4235N 12152W, +,US,CI2,Cincinnati,Cincinnati,KY,--3-----,RQ,0607,,3742N 08447W, +,US,CIA,Centerville,Centerville,IA,--3-----,RQ,9307,,4044N 09252W, +,US,CID,Cedar Rapids,Cedar Rapids,IA,--34----,AI,0001,,4159N 09140W, +,US,CIE,Circleville,Circleville,OH,--3-----,RQ,9307,,3936N 08257W, +,US,CIF,Chatham,Chatham,NY,--3-----,RQ,9307,,4222N 07336W, +,US,CIG,Craig,Craig,CO,---4----,AI,0001,,4031N 10733W, +,US,CIH,Chapel Hill,Chapel Hill,TN,--3-----,RQ,9307,,3538N 08642W, +,US,CII,Chili,Chili,NY,--3-----,RQ,9307,,4305N 07745W, +,US,CIK,Chalkyitsik,Chalkyitsik,AK,---4----,AI,0001,,6639N 14347W, +,US,CIL,Council,Council,AK,---4----,AI,0001,,6454N 16341W, +,US,CIM,Campti,Campti,LA,--3-----,RQ,9307,,3154N 09307W, +,US,CIN,Carroll,Carroll,IA,--34----,AI,9601,,4204N 09452W, +,US,CIO,Chino Valley,Chino Valley,AZ,--3-----,RQ,9501,,3445N 11227W, +,US,CIP,Central Islip,Central Islip,NY,--3-----,RQ,9307,,4047N 07312W, +,US,CIQ,Chariton,Chariton,IA,--3-----,RQ,9307,,4101N 09318W, +,US,CIR,Cairo,Cairo,IL,---4----,AI,0001,,3700N 08911W, +,US,CIS,Cisco,Cisco,TX,--3-----,RQ,0002,,3223N 09859W, +,US,CIT,Citronelle,Citronelle,AL,--3-----,RQ,9307,,3106N 08814W, +,US,CIX,Clinton,Clinton,IN,--3-----,RQ,9307,,3939N 08724W, +,US,CIY,Chillicothe,Chillicothe,OH,--3-----,RQ,9307,,3920N 08259W, +,US,CIZ,Clearing,Clearing,IL,--3-----,RQ,9307,,4147N 08746W, +,US,CJ3,Cedar Stock,Cedar Stock,CA,--3--6--,RL,1107,,4051N 12250W, +,US,CJA,Cressona,Cressona,PA,--3-----,RQ,9307,,4038N 07612W, +,US,CJE,Collierville,Collierville,TN,--3-----,RQ,9307,,3503N 08940W, +,US,CJG,Corning,Corning,CA,--3-----,RQ,9307,,3956N 12211W, +,US,CJH,Canajoharie,Canajoharie,NY,--3-----,RQ,9307,,4254N 07434W, +,US,CJJ,Cedar Knolls,Cedar Knolls,NJ,--3-----,RQ,9307,,4049N 07427W, +,US,CJK,Clarkton,Clarkton,NC,--3-----,RQ,9307,,3429N 07839W, +,US,CJL,Chandler,Chandler,IN,--3-----,RQ,9307,,3803N 08722W, +,US,CJM,Champion,Champion,PA,--3-----,RQ,9307,,4005N 07921W, +,US,CJN,El Cajon,El Cajon,CA,---4----,AI,9601,,3248N 11658W, +,US,CJP,Carthage,Carthage,TX,--3-----,RQ,9307,,3209N 09420W, +,US,CJQ,Carthage,Carthage,MO,--3-----,RQ,9307,,3711N 09419W, +,US,CJR,Cairo,Cairo,GA,--3-----,RQ,9307,,3053N 08412W, +,US,CJS,Cashiers,Cashiers,NC,--3-----,RQ,9307,,3507N 08306W, +,US,CJT,Charleston,Charleston,OR,--3-----,RQ,8607,,4320N 12420W, +,US,CJV,Covesville,Covesville,VA,--3-----,RQ,9307,,3753N 07842W, +,US,CJY,Crosby,Crosby,TX,--3-----,RQ,9307,,2955N 09504W, +,US,CKA,Cherokee,Cherokee,OK,---4----,AI,0001,,3645N 09821W, +,US,CKB,Clarksburg,Clarksburg,WV,---4----,AI,9601,,3917N 08021W, +,US,CKC,Clinton,Clinton,MS,--3-----,RQ,9307,,3220N 09019W, +,US,CKD,Crooked Creek,Crooked Creek,AK,---4----,AI,0001,,6151N 15808W, +!,US,CKE,Cherokee,Cherokee,IA,--3-----,RQ,9307,,4245N 09533W, +,US,CKF,Cherokee Falls,Cherokee Falls,SC,--3-----,RQ,9307,,3504N 08133W, +,US,CKH,Cheriton,Cheriton,VA,--3-----,RQ,9307,,3717N 07558W, +,US,CKJ,Clarksboro,Clarksboro,NJ,--3-----,RQ,9307,,3948N 07513W, +,US,CKK,Cherokee,Cherokee,AR,---4----,AI,0001,,3618N 09133W, +,US,CKL,Clarkston,Clarkston,WA,--3-----,RQ,9307,,4625N 11703W, +,US,CKM,Clarksdale,Clarksdale,MS,---4----,AI,9601,,3412N 09034W, +,US,CKN,Crookston,Crookston,MN,---4----,AI,0001,,4746N 09636W, +,US,CKO,Colebrook,Colebrook,NH,--3-----,RQ,9307,,4454N 07130W, +,US,CKP,Columbia,Columbia,PA,--3-----,RQ,9307,,4002N 07630W, +,US,CKQ,Clarksville,Clarksville,IN,--3-----,RQ,9307,,3818N 08546W, +,US,CKR,Crane Island,Crane Island,WA,---4----,AI,0001,,4836N 12260W, +,US,CKS,Clarkston,Clarkston,GA,--3-----,RQ,9307,,3349N 08414W, +,US,CKT,Cheektowaga,Cheektowaga,NY,--3-----,RQ,9307,,4254N 07845W, +!,US,CKU,Clarks Summit,Clarks Summit,PA,--3-----,RQ,9307,,4130N 07542W, +,US,CKV,Clarksville,Clarksville,TN,---4----,AI,9601,,3632N 08722W, +,US,CKW,Choctaw,Choctaw,MS,--3-----,RL,9909,,3350N 08939W, +,US,CKX,Chicken,Chicken,AK,---4----,AI,0001,,6405N 14152W, +,US,CKY,Clayton,Clayton,IL,--3-----,RQ,9307,,4002N 09058W, +,US,CL4,Clark,Clark,MO,--3-----,RQ,0607,,3917N 09221W, +,US,CLA,Claymont,Claymont,DE,1-3-----,RN,0105,,3948N 07528W, +,US,CLB,Clinton,Clinton,CT,--3-----,RQ,9307,,4117N 07232W, +,US,CLF,Cliffwood,Cliffwood,NJ,--3-----,RQ,9307,,4026N 07414W, +,US,CLG,Coalinga,Coalinga,CA,---4----,AI,0001,,3610N 12018W, +,US,CLI,Clintonville,Clintonville,WI,---4----,AI,0001,,4437N 08846W, +,US,CLJ,Camp Lejeune,Camp Lejeune,NC,--3-----,RQ,9307,,3438N 07721W, +!,US,CLK,Claverack,Claverack,NY,--3-----,RQ,9501,,4214N 07344W, +,US,CLL,College Station,College Station,TX,---4----,AI,0001,,3037N 09621W, +,US,CLM,Port Angeles,Port Angeles,WA,1--4----,AI,1101,,4807N 12326W, +,US,CLN,Clinton,Clinton,SC,--3-----,RQ,9008,,3428N 08153W, +,US,CLO,Clermont,Clermont,KY,--3-----,RQ,9307,,3756N 08539W, +,US,CLP,Clarks Point,Clarks Point,AK,---4----,AI,0001,,5851N 15833W, +,US,CLQ,Chalmette,Chalmette,LA,1-3-----,RN,0105,,2957N 08958W, +,US,CLR,Calipatria,Calipatria,CA,---4----,AI,0001,,3309N 11533W, +,US,CLS,Chehalis,Chehalis,WA,---4----,AI,9601,,4640N 12258W, +,US,CLT,Charlotte,Charlotte,NC,---4----,AI,0001,,3514N 08051W, +,US,CLU,Columbus,Columbus,IN,--34----,AI,9601,,3912N 08555W, +,US,CLV,Clarksville,Clarksville,AR,--3-----,RQ,9307,,3528N 09328W, +,US,CLW,Clearwater,Clearwater,FL,--34----,AI,2107,,2758N 08248W, +,US,CLX,Clarksburg,Clarksburg,TN,--3-----,RQ,9307,,3552N 08824W, +,US,CLY,Clayton,Clayton,NY,1-3-----,RN,0105,,4414N 07605W, +,US,CLZ,Clements,Clements,CA,--3-----,RQ,9307,,3811N 12105W, +,US,CM3,Carmichael,Carmichael,CA,--3-----,RQ,0607,,3838N 12119W, +,US,CMA,Coleman,Coleman,MI,--3-----,RQ,9307,,4345N 08435W, +,US,CMB,Cambridge,Cambridge,MS,--3-----,RQ,9307,,4222N 07106W, +,US,CMC,Comanche,Comanche,TX,--3-----,RQ,9307,,3154N 09836W, +,US,CMD,Chelmsford,Chelmsford,MA,--3-----,RQ,9307,,4236N 07121W, +,US,CME,Clayton,Clayton,NC,--3-----,RQ,9008,,3539N 07827W, +,US,CMF,Commack,Commack,NY,--3-----,RQ,9307,,4051N 07318W, +,US,CMG,Cumming,Cumming,GA,--3-----,RQ,9008,,3412N 08408W, +,US,CMH,Columbus,Columbus,OH,---4----,AI,0001,,3958N 08300W, +,US,CMI,Champaign,Champaign,IL,--34----,AI,9601,,4007N 08815W, +,US,CMJ,Comanche,Comanche,OK,--3-----,RQ,9307,,3422N 09758W, +,US,CMK,Coloma,Coloma,MI,--3-----,RQ,9307,,4212N 08619W, +,US,CML,Camilla,Camilla,GA,--3-----,RQ,9307,,3114N 08413W, +,US,CMM,Chamblee,Chamblee,GA,--3-----,RQ,9008,,3354N 08418W, +,US,CMN,Camino,Camino,CA,--3-----,RQ,9307,,3844N 12040W, +,US,CMO,Clemmons,Clemmons,NC,--3-----,RQ,9307,,3601N 08023W, +,US,CMP,Campbellsville,Campbellsville,KY,--3-----,RQ,9008,,3721N 08521W, +,US,CMR,Camarillo,Camarillo,CA,--3-----,RQ,9307,,3413N 11902W, +,US,CMS,Camas,Camas,WA,--3-----,RQ,9307,,4535N 12224W, +,US,CMT,Commerce City,Commerce City,CO,--3-----,RQ,9307,,3948N 10456W, +,US,CMV,Carmel Valley,Carmel Valley,CA,--3-----,RL,9501,,3629N 12144W, +,US,CMW,Camano Is.,Camano Is.,WA,--3-----,RQ,9307,,4810N 12230W, +,US,CMX,Hancock,Hancock,MI,---4----,AI,0001,,4712N 08835W, +,US,CMY,Sparta,Sparta,WI,---4----,AI,9601,,4357N 09049W, +,US,CMZ,Carmel,Carmel,NY,--3-----,RQ,9307,,4126N 07341W, +,US,CNA,Collins,Collins,MS,--3-----,RQ,9307,,3139N 08933W, +,US,CNB,Clinton,Clinton,MD,--3-----,RQ,9307,,3845N 07654W, +,US,CNC,Clinton,Clinton,MI,--3-----,RQ,9307,,4235N 08255W, +,US,CNE,Canon City,Canon City,CO,---4----,AI,0001,,3827N 10513W, +,US,CNF,Canfield,Canfield,OH,--3-----,RQ,9307,,4102N 08046W, +,US,CNG,Clinton,Clinton,NJ,--3-----,RQ,9307,,4038N 07455W, +,US,CNH,Claremont,Claremont,NH,---4----,AI,9601,,4322N 07220W, +,US,CNI,Chilton,Chilton,WI,--3-----,RQ,9307,,4402N 08810W, +,US,CNJ,Colonial Heights,Colonial Heights,VA,--3-----,RQ,9307,,3715N 07725W, +,US,CNK,Concordia,Concordia,KS,---4----,AI,0001,,3934N 09740W, +,US,CNL,Carleton,Carleton,MI,--3-----,RQ,9307,,4204N 08323W, +,US,CNN,Canonsburg,Canonsburg,PA,--3-----,RQ,9307,,4016N 08011W, +,US,CNO,Chino,Chino,CA,---4----,AI,9601,,3401N 11741W, +,US,CNP,Canton,Canton,MS,--3-----,RQ,9307,,3237N 09002W, +,US,CNQ,Canton,Canton,NC,--3-----,RQ,9307,,3532N 08250W, +,US,CNR,Candor,Candor,NC,--3-----,RQ,9307,,3518N 07945W, +,US,CNS,Canastota,Canastota,NY,--3-----,RQ,9307,,4305N 07545W, +,US,CNT,Canton,Canton,MI,--3-----,RQ,9307,,4218N 08329W, +,US,CNU,Chanute,Chanute,KS,---4----,AI,9601,,3741N 09527W, +,US,CNX,Canton,Canton,GA,--3-----,RQ,9307,,3414N 08429W, +,US,CNY,Moab,Moab,UT,---4----,AI,0001,,3834N 10933W, +,US,CNZ,Canton,Canton,MO,--3-----,RQ,9307,,4008N 09131W, +,US,COA,Columbia,Columbia,CA,---4----,AI,0001,,3802N 12024W, +,US,COB,Coos Bay,Coos Bay,OR,1-3-----,RN,9501,,4322N 12413W, +,US,COC,Coachella,Coachella,CA,--3-----,RQ,9307,,3341N 11611W, +,US,COD,Cody,Cody,WY,--3-----,RQ,9307,,4432N 10903W, +,US,COE,Coeur d'Alene,Coeur d'Alene,ID,---4----,AI,9601,,4740N 11647W, +!,US,COF,Colfax,Colfax,LA,--3-----,RQ,9307,,3131N 09242W, +,US,COG,Columbiana,Columbiana,OH,--3-----,RQ,9307,,4053N 08042W, +,US,COH,Castleton On Hudson,Castleton On Hudson,NY,--3-----,RQ,9307,,4232N 07345W, +,US,COI,Cocoa,Cocoa,FL,---4----,AI,9601,,2819N 08037W, +,US,COK,Cokato,Cokato,MN,--3-----,RQ,9307,,4505N 09411W, +,US,COL,Colbert,Colbert,WA,--3-----,RQ,9307,,4749N 11721W, +,US,COM,Coleman,Coleman,TX,---4----,AI,0001,,3150N 09925W, +,US,CON,Concord,Concord,NH,---4----,AI,9601,,4312N 07132W, +,US,COO,Cohoes,Cohoes,NY,--3-----,RQ,9307,,4246N 07342W, +,US,COP,Cooperstown,Cooperstown,NY,---4----,AI,0001,,4242N 07455W, +,US,COQ,Colquitt,Colquitt,GA,--3-----,RQ,9307,,3110N 08444W, +,US,COR,Colora,Colora,MD,--3-----,RQ,9307,,3940N 07606W, +,US,COS,Colorado Springs,Colorado Springs,CO,--34----,AI,9601,,3850N 10450W, +,US,COT,Cotulla,Cotulla,TX,--34----,AI,1307,,2826N 09914W, +,US,COW,Coldwater,Coldwater,OH,--3-----,RQ,9307,,4029N 08438W, +,US,COX,Colmar,Colmar,PA,--3-----,RQ,9307,,4016N 07515W, +,US,COY,Coal City,Coal City,IL,--3-----,RQ,9307,,4117N 08817W, +,US,COZ,Columbia,Columbia,AL,--3-----,RQ,9307,,3118N 08507W, +,US,CPA,Canoga Park,Canoga Park,CA,--3-----,RQ,9307,,3412N 11836W, +,US,CPB,Campbell,Campbell,CA,--3-----,RQ,9307,,3717N 12157W, +,US,CPC,Carle Place,Carle Place,NY,--3-----,RQ,9307,,4045N 07337W, +,US,CPD,Cranberry Lake,Cranberry Lake,NY,--3-----,RQ,9307,,4413N 07450W, +,US,CPE,Campbell,Campbell,NY,--3-----,RQ,9307,,4214N 07712W, +,US,CPF,Chippewa Falls,Chippewa Falls,WI,--3-----,RQ,9307,,4456N 09124W, +,US,CPG,College Park,College Park,GA,--3-----,RQ,9307,,3339N 08427W, +,US,CPH,Cape Hatteras,Cape Hatteras,NC,--3-----,RQ,9307,,3513N 07532W, +,US,CPI,Copperhill,Copperhill,TN,--3-----,RQ,9307,,3459N 08422W, +,US,CPK,Cedar Park,Cedar Park,TX,--3-----,RQ,9307,,3031N 09750W, +,US,CPL,Campbell,Campbell,MO,--3-----,RQ,9307,,3630N 09005W, +,US,CPM,Compton,Compton,CA,---4----,AI,9601,,3354N 11814W, +,US,CPO,Cherry Point,Cherry Point,NC,--3-----,RQ,9307,,3850N 07632W, +,US,CPP,Coraopolis,Coraopolis,PA,--3-----,RQ,9307,,4031N 08010W, +,US,CPQ,Cowpens,Cowpens,SC,--3-----,RQ,9307,,3501N 08148W, +,US,CPR,Casper,Casper,WY,--34----,AI,9601,,4251N 10620W, +!,US,CPS,Cosmopolis,Cosmopolis,WA,--3-----,RQ,9307,,4657N 12346W, +,US,CPT,Carpinteria,Carpinteria,CA,1-3-----,RN,0105,,3424N 11931W, +,US,CPU,Coopersburg,Coopersburg,PA,--3-----,RQ,9307,,4031N 07523W, +,US,CPV,Cape Canaveral,Cape Canaveral,FL,--3-----,RQ,9307,,2827N 08032W, +,US,CPY,Copley,Copley,OH,--3-----,RQ,9506,,4106N 08138W, +,US,CQA,Colma,Colma,CA,--3-----,RQ,9307,,3741N 12228W, +,US,CQB,Columbus Junction,Columbus Junction,IA,--3-----,RQ,9307,,4117N 09122W, +,US,CQC,Colusa,Colusa,CA,--3-----,RQ,9307,,3913N 12201W, +,US,CQD,Carbondale,Carbondale,PA,--3-----,RQ,9307,,4134N 07530W, +,US,CQG,Cranford,Cranford,NJ,--3-----,RQ,9307,,4040N 07418W, +,US,CQH,Cranston,Cranston,RI,--3-----,RQ,9307,,4147N 07126W, +,US,CQI,Carlisle,Carlisle,IN,--3-----,RQ,9307,,3858N 08724W, +,US,CQJ,Clinton Township,Clinton Township,NJ,--3-----,RQ,9307,,4038N 07451W, +,US,CQK,Creighton,Creighton,PA,--3-----,RQ,9307,,4035N 07947W, +,US,CQM,Cloquet,Cloquet,MN,--3-----,RQ,9307,,4643N 09228W, +,US,CQN,Crescent,Crescent,IA,--3-----,RQ,9307,,4122N 09552W, +,US,CQO,Charter Oak,Charter Oak,CA,--3-----,RQ,9307,,3406N 11752W, +,US,CQP,Connellsville,Connellsville,PA,--3-----,RQ,9307,,4001N 07935W, +,US,CQR,Carrollton,Carrollton,OH,--3-----,RQ,9307,,4034N 08105W, +,US,CQS,Chesnee,Chesnee,SC,--3-----,RQ,9307,,3509N 08152W, +,US,CQT,Clinton,Clinton,TN,--3-----,RQ,9307,,3606N 08408W, +,US,CQU,Clearfield,Clearfield,UT,--3-----,RQ,9307,,4107N 11201W, +,US,CQV,Cleveland,Cleveland,GA,--3-----,RQ,9307,,3436N 08346W, +,US,CQW,Chocowinity,Chocowinity,NC,--3-----,RQ,9307,,3531N 07706W, +,US,CQX,Clackamas,Clackamas,OR,--3-----,RQ,9307,,4525N 12233W, +,US,CQY,Clayton,Clayton,DE,--3-----,RQ,9307,,3917N 07538W, +,US,CQZ,Chester,Chester,SC,--3-----,RQ,9307,,3442N 08113W, +,US,CRA,Centralia,Centralia,WA,--3-----,RQ,9307,,4643N 12258W, +,US,CRB,Carrabelle,Carrabelle,FL,1-3-----,RN,0105,,2951N 08440W, +,US,CRD,Cedar Falls,Cedar Falls,IA,--3-----,RQ,9307,,4232N 09227W, +!,US,CRE,Carnegie,Carnegie,PA,--3-----,RQ,9307,,4025N 08005W, +,US,CRF,Croydon,Croydon,PA,--3-----,RQ,9307,,4005N 07454W, +,US,CRG,Chicago Ridge,Chicago Ridge,IL,--3-----,RQ,9307,,4142N 08747W, +,US,CRH,Church Hill,Church Hill,TN,--3-----,RQ,9307,,3631N 08243W, +,US,CRI,Crisfield,Crisfield,MD,--3-----,RN,0105,,3759N 07551W, +,US,CRJ,Carman,Carman,NY,--3-----,RQ,9307,,4246N 07356W, +,US,CRL,Carlisle,Carlisle,OH,--3-----,RQ,9307,,3935N 08419W, +,US,CRM,Crockett,Crockett,CA,1-3-----,RN,0105,,3803N 12213W, +,US,CRN,Coon Rapids,Coon Rapids,IA,--3-----,RQ,9307,,4152N 09441W, +,US,CRO,Corcoran,Corcoran,CA,---4----,AI,9601,,3606N 11934W, +,US,CRP,Corpus Christi,Corpus Christi,TX,1--4----,AI,0001,,2746N 09724W, +,US,CRQ,Charlotte,Charlotte,MI,--3-----,RQ,9307,,4234N 08450W, +,US,CRR,Carrollton,Carrollton,GA,--3-----,RQ,9307,,3335N 08505W, +,US,CRT,Crossett,Crossett,AR,---4----,AI,9601,,3308N 09158W, +,US,CRU,Carson,Carson,CA,--3-----,RQ,9307,,3350N 11815W, +,US,CRV,Carpentersville,Carpentersville,IL,--3-----,RQ,9307,,4207N 08815W, +,US,CRW,Charleston,Charleston,WV,1--4----,AI,0207,,3821N 08138W, +,US,CRY,Careywood,Careywood,ID,--3-----,RQ,9307,,4802N 11639W, +,US,CRZ,Ceres,Ceres,CA,--3-----,RQ,9307,,3736N 12057W, +,US,CSA,Cape Sabine,Cape Sabine,AK,--3-----,RQ,9307,,6855N 16436W, +,US,CSB,Chebanse,Chebanse,IL,--3-----,RQ,9307,,4100N 08754W, +,US,CSC,Coshocton,Coshocton,OH,--3-----,RQ,9307,,4016N 08152W, +,US,CSD,Cliffside Park,Cliffside Park,NJ,--3-----,RQ,9008,,4049N 07359W, +,US,CSE,Crested Butte,Crested Butte,CO,---4----,AI,0001,,3852N 10659W, +,US,CSF,Carteret,Carteret,NJ,1-3-----,RN,0105,,4035N 07414W, +,US,CSG,Columbus,Columbus,GA,--34----,RQ,9008,,3228N 08459W, +,US,CSH,Conshohocken,Conshohocken,PA,--3-----,RQ,9307,,4005N 07518W, +,US,CSI,Chester,Chester,IL,--3-----,RQ,9307,,3755N 08949W, +,US,CSN,Carson City,Carson City,NV,---4----,AI,9601,,3910N 11945W, +,US,CSO,Casnovia,Casnovia,MI,--3-----,RQ,9307,,4316N 08551W, +,US,CSP,Cape Spencer,Cape Spencer,AK,---4----,AI,0001,,5812N 13638W, +,US,CSQ,Creston,Creston,IA,--34----,AI,9601,,4104N 09422W, +,US,CSR,Chester,Chester,NY,--3-----,RN,0105,,4122N 07416W, +,US,CSS,Clifton Springs,Clifton Springs,NY,--3-----,RL,0002,,4258N 07708W, +,US,CST,Charleston,Charleston,TX,--3-----,RQ,9307,,3323N 09532W, +,US,CSU,Carsonville,Carsonville,MI,--3-----,RQ,9307,,4326N 08240W, +,US,CSV,Crossville,Crossville,TN,--34----,AI,9601,,3557N 08502W, +,US,CSW,Chickamauga,Chickamauga,GA,--3-----,RQ,9008,,3452N 08517W, +,US,CSX,Charlevoix,Charlevoix,MI,--3-----,RQ,9307,,4519N 08514W, +,US,CSY,Crosby,Crosby,ND,--3-----,RQ,0101,,4855N 10318W, +,US,CSZ,Chester,Chester,VA,--3-----,RQ,9307,,3721N 07727W, +,US,CTA,Catawba,Catawba,SC,--3-----,RQ,9307,,3451N 08055W, +,US,CTB,Cut Bank,Cut Bank,MT,---4----,AI,0001,,4838N 11220W, +,US,CTC,Charleston,Charleston,TN,--3-----,RQ,9307,,3517N 08445W, +,US,CTD,Crystal Lake,Crystal Lake,IL,--3-----,RQ,9307,,4214N 08819W, +,US,CTE,Chattahoochee,Chattahoochee,FL,--3-----,RQ,9307,,3042N 08451W, +,US,CTF,Crete,Crete,NE,--3-----,RQ,9307,,4038N 09658W, +,US,CTG,Cresco,Cresco,PA,--3-----,RQ,9307,,4109N 07517W, +,US,CTI,Contoocook,Contoocook,NH,--3-----,RQ,9307,,4313N 07143W, +,US,CTJ,Canton,Canton,IL,--3-----,RQ,9307,,4033N 09002W, +,US,CTK,Canton,Canton,SD,---4----,AI,9601,,4318N 09637W, +,US,CTL,Central,Central,SC,--3-----,RQ,9307,,3444N 08247W, +,US,CTM,Cottondale,Cottondale,FL,--3-----,RQ,9307,,3048N 08523W, +,US,CTN,Colts Neck,Colts Neck,NJ,--3-----,RQ,9307,,4017N 07410W, +,US,CTO,Calverton,Calverton,NY,---4----,AI,0001,,4054N 07245W, +,US,CTP,Campton,Campton,KY,--3-----,RQ,9008,,3744N 08333W, +,US,CTQ,Catawba,Catawba,NC,--3-----,RQ,9307,,3542N 08105W, +,US,CTR,Carter Lake,Carter Lake,IA,--3-----,RQ,9307,,4117N 09555W, +,US,CTS,Charles Town,Charles Town,WV,--3-----,RQ,9307,,3917N 07752W, +,US,CTT,Centerport,Centerport,NY,--3-----,RQ,9501,,4054N 07322W, +,US,CTU,Citrus Heights,Citrus Heights,CA,--3-----,RQ,9307,,3842N 12117W, +,US,CTV,Castroville,Castroville,CA,--3-----,RQ,9307,,3646N 12145W, +,US,CTW,Cottonwood,Cottonwood,AZ,---4----,AI,0001,,3444N 11201W, +,US,CTX,Cortland,Cortland,NY,---4----,AI,9601,,4236N 07611W, +,US,CTY,Cross City,Cross City,FL,---4----,AI,0001,,2938N 08308W, +,US,CUC,Counce,Counce,TN,--3-----,RQ,9307,,3503N 08816W, +,US,CUD,Cudahy,Cudahy,WI,--3-----,RQ,9307,,4258N 08752W, +,US,CUE,Cumberland,Cumberland,RI,--3-----,RQ,9307,,4159N 07128W, +,US,CUF,Cut and Shoot,Cut and Shoot,TX,-23-----,RL,0003,,3020N 09521W, +,US,CUG,Cutler,Cutler,CA,--3-----,RQ,9307,,3631N 11917W, +,US,CUH,Cushing,Cushing,OK,---4----,AI,0001,,3559N 09646W, +,US,CUI,Curwensville,Curwensville,PA,--3-----,RQ,9307,,4059N 07832W, +,US,CUJ,Cuyahoga Falls,Cuyahoga Falls,OH,--3-----,RQ,9307,,4108N 08129W, +,US,CUL,Cullman,Cullman,AL,--3-----,RQ,9008,,3410N 08651W, +,US,CUN,Conover,Conover,NC,--3-----,RQ,9307,,3542N 08113W, +,US,CUO,Cupertino,Cupertino,CA,--3-----,RQ,9307,,3719N 12202W, +,US,CUP,Calumet Park,Calumet Park,IL,--3-----,RQ,9307,,4140N 08739W, +,US,CUR,Coburg,Coburg,OR,--3-----,RQ,9806,,4408N 12304W, +,US,CUT,Chestnut,Chestnut,CA,--3-----,RQ,9307,,4003N 08911W, +,US,CUV,Chula Vista,Chula Vista,CA,--3-----,RQ,9307,,3238N 11705W, +,US,CUW,Cube Cove,Cube Cove,AK,---4----,AI,0001,,5757N 13444W, +,US,CUY,Cudahy,Cudahy,CA,--3-----,RQ,9307,,3358N 11811W, +,US,CV2,Centreville,Centreville,GA,--3-----,RQ,0607,,3851N 07726W, +!,US,CVA,Castro Valley,Castro Valley,CA,--3-----,RQ,9307,,3742N 12205W, +,US,CVB,Coralville,Coralville,IA,--3-----,RQ,9307,,4141N 09135W, +,US,CVC,Comstock,Comstock,MI,--3-----,RQ,9307,,4217N 08529W, +,US,CVD,Cleveland,Cleveland,MS,--3-----,RQ,9307,,3345N 09043W, +,US,CVF,Covington,Covington,GA,--3-----,RQ,9307,,3336N 08352W, +,US,CVG,Cincinnati,Cincinnati,OH,1-34----,AI,0207,,3906N 08431W, +,US,CVI,Cape Vincent,Cape Vincent,NY,1-3-----,RN,0105,,4407N 07620W, +,US,CVJ,Covington,Covington,VA,--3-----,RQ,9307,,3748N 07960W, +,US,CVK,Covington,Covington,KY,--3-----,RQ,9307,,3905N 08431W, +,US,CVM,Catonsville,Catonsville,MD,--3-----,RQ,9307,,3916N 07644W, +,US,CVN,Clovis,Clovis,NM,--34----,AI,9601,,3424N 10312W, +,US,CVP,Cloverport,Cloverport,KY,--3-----,RQ,9307,,3750N 08638W, +,US,CVQ,Covina,Covina,CA,--3-----,RQ,9307,,3405N 11753W, +,US,CVR,Culver City,Culver City,CA,---4----,AI,9601,,3401N 11824W, +!,US,CVS,Clovis,Clovis,CA,--3-----,RQ,9307,,3650N 11942W, +,US,CVT,Cleveland,Cleveland,NC,--3-----,RQ,9307,,3544N 08041W, +,US,CVU,Channelview,Channelview,TX,--3-----,RQ,9307,,2947N 09507W, +,US,CVV,Cloverdale,Cloverdale,VA,--3-----,RQ,9307,,3721N 07955W, +,US,CVW,Cleveland,Cleveland,WI,--3-----,RQ,9307,,4355N 08745W, +,US,CVX,Cavendish,Cavendish,VT,--3-----,RL,0002,,4323N 07237W, +,US,CVY,Clarksville,Clarksville,VA,--3-----,RQ,9307,,3637N 07833W, +,US,CVZ,Centerville,Centerville,LA,--3-----,RQ,9307,,2946N 09126W, +!,US,CWA,Coldwater,Coldwater,MI,--3-----,RQ,9307,,4156N 08503W, +,US,CWB,Crestwood,Crestwood,IL,--3-----,RQ,9307,,4140N 08745W, +,US,CWD,Collingswood,Collingswood,NJ,--3-----,RQ,9307,,3955N 07504W, +,US,CWE,Chilhowie,Chilhowie,VA,--3-----,RQ,9307,,3648N 08141W, +,US,CWH,Chatsworth,Chatsworth,CA,--3-----,RQ,9307,,3416N 11836W, +,US,CWI,Clinton,Clinton,IA,---4----,AI,9601,,4151N 09011W, +,US,CWJ,Cave Junction,Cave Junction,OR,--3-----,RQ,9307,,4210N 12339W, +,US,CWK,Cheswick,Cheswick,PA,--3-----,RQ,9307,,4033N 07948W, +,US,CWL,Crowley,Crowley,LA,--3-----,RQ,9307,,3013N 09222W, +,US,CWM,Chatham,Chatham,VA,--3-----,RQ,9307,,3650N 07924W, +,US,CWN,Chestertown,Chestertown,MD,--3-----,RQ,9307,,3913N 07604W, +!,US,CWO,Colwich,Colwich,KS,--3-----,RQ,9307,,3747N 09732W, +,US,CWR,Clearwater,Clearwater,NE,--3-----,RL,0006,,4210N 09811W, +,US,CWS,Center Island,Center Island,WA,---4----,AI,0001,,4829N 12250W, +,US,CXA,Croswell,Croswell,MI,--3-----,RQ,9307,,4317N 08237W, +,US,CXB,Carver,Carver,OR,--3-----,RQ,9307,,4524N 12230W, +,US,CXC,Chitina,Chitina,AK,---4----,AI,0001,,6132N 14419W, +,US,CXD,Creve Coeur,Creve Coeur,IL,--3-----,RQ,9307,,4039N 08935W, +,US,CXE,Clarita,Clarita,OK,--3-----,RQ,9307,,3429N 09626W, +,US,CXF,Coldfoot,Coldfoot,AK,---4----,AI,0001,,6714N 15004W, +,US,CXG,Cross Junction,Cross Junction,VA,--3-----,RQ,9307,,3919N 07818W, +,US,CXH,Cross Plains,Cross Plains,WI,--3-----,RQ,9307,,4307N 08939W, +,US,CXM,Cameron,Cameron,TX,--3-----,RQ,9307,,3051N 09659W, +,US,CXN,Clermont,Clermont,NY,--3-----,RQ,9307,,4205N 07350W, +,US,CXO,Conroe,Conroe,TX,--34----,AI,9601,,3019N 09527W, +,US,CXP,Colorado City,Colorado City,TX,--3-----,RQ,9307,,3224N 10052W, +,US,CXS,Charleston,Charleston,MO,--3-----,RQ,9307,,3655N 08921W, +,US,CXT,Claxton,Claxton,GA,--3-----,RQ,9307,,3210N 08154W, +,US,CXW,Centerville,Centerville,OH,--3-----,RQ,9307,,3938N 08410W, +,US,CXY,Crosbyton,Crosbyton,TX,--3-----,RQ,9307,,3340N 10114W, +,US,CY6,Clay,Clay,NY,--3-----,RQ,0607,,4311N 07612W, +,US,CYA,Clyde,Clyde,NY,--3-----,RQ,9307,,4305N 07652W, +,US,CYB,Clyde,Clyde,OH,--3-----,RQ,9307,,4118N 08259W, +,US,CYC,Cayce,Cayce,SC,--3-----,RQ,9307,,3358N 08104W, +,US,CYD,Cecilton,Cecilton,MD,--3-----,RQ,9307,,3924N 07552W, +,US,CYE,Crystal Lake,Crystal Lake,PA,---4----,AI,0001,,4214N 08819W, +,US,CYF,Chefornak,Chefornak,AK,---4----,AI,0001,,6009N 16415W, +,US,CYG,Cayuga,Cayuga,IN,--3-----,RQ,9307,,3957N 08728W, +,US,CYH,Crystal Springs,Crystal Springs,MS,--3-----,RQ,9307,,3159N 09021W, +,US,CYJ,Cresskill,Cresskill,NJ,--3-----,RQ,9307,,4056N 07358W, +,US,CYK,Clay Center,Clay Center,KS,--3-----,RQ,9307,,3923N 09707W, +,US,CYL,Chantilly,Chantilly,VA,--3-----,RN,0105,,3854N 07726W, +,US,CYM,Chatham,Chatham,AK,---4----,AI,0001,,5731N 13457W, +,US,CYN,Clayton,Clayton,NJ,--3-----,RQ,9307,,3940N 07506W, +,US,CYO,Croton,Croton,OH,--3-----,RQ,9307,,4014N 08242W, +,US,CYR,Conyers,Conyers,GA,--3-----,RQ,9008,,3340N 08401W, +,US,CYS,Cheyenne,Cheyenne,WY,---4----,AI,9601,,4108N 10449W, +!,US,CYT,Clayton,Clayton,OH,--3-----,RQ,9307,,3952N 08422W, +,US,CYU,Cayuta,Cayuta,NY,--3-----,RQ,9307,,4217N 07642W, +,US,CYV,Cordova,Cordova,WV,--3-----,RQ,9307,,3804N 08025W, +,US,CYW,Clyattville,Clyattville,GA,--3-----,RL,0002,,3041N 08319W, +,US,CYX,Cypress,Cypress,TX,--3-----,RQ,9307,,2958N 09542W, +,US,CYY,Crystal City,Crystal City,TX,--3-----,RQ,9307,,2841N 09950W, +,US,CYZ,Chester,Chester,NJ,--3-----,RQ,9307,,4047N 07442W, +,US,CZA,Cornelia,Cornelia,GA,--3-----,RQ,9307,,3431N 08332W, +,US,CZB,Corydon,Corydon,IN,--3-----,RQ,9307,,3813N 08608W, +,US,CZD,Cornwells Heights,Cornwells Heights,PA,--3-----,RQ,9008,,4005N 07457W, +,US,CZE,Corona,Corona,CA,--3-----,RQ,9307,,3353N 11734W, +,US,CZF,Cape Romanzof,Cape Romanzof,AK,---4----,AI,0001,,6149N 16606W, +,US,CZK,Cascade Locks,Cascade Locks,OR,---4----,AI,0001,,4540N 12153W, +,US,CZL,Corte Madera,Corte Madera,CA,--3-----,RQ,9307,,3756N 12232W, +,US,CZN,Chisana,Chisana,AK,---4----,AI,0001,,6206N 14200W, +,US,CZO,Chistochina,Chistochina,AK,---4----,AI,0001,,6235N 14455W, +,US,CZP,Cape Pole,Cape Pole,AK,---4----,AI,0001,,5558N 13348W, +,US,CZQ,Coudersport,Coudersport,PA,--3-----,RQ,9307,,4146N 07801W, +,US,CZR,Crozet,Crozet,VA,--3-----,RQ,9307,,3804N 07842W, +,US,CZS,Chelsea,Chelsea,MA,--3-----,RQ,9008,,4223N 07102W, +,US,CZT,Carrizo Springs,Carrizo Springs,TX,---4----,AI,0001,,2831N 09952W, +,US,CZU,Conley,Conley,GA,--3-----,RQ,9307,,3339N 08420W, +,US,CZV,Cottonwood,Cottonwood,CA,--3-----,RQ,9307,,4023N 12217W, +,US,CZW,Cottonwood,Cottonwood,MN,--3-----,RQ,9307,,4437N 09540W, +,US,CZY,Comyn,Comyn,TX,--3-----,RQ,9307,,3204N 09828W, +,US,CZZ,Campo,Campo,CA,---4----,AI,0001,,3237N 11628W, +,US,DAA,Fort Belvoir,Fort Belvoir,VA,---4----,AI,0001,,3843N 07709W, +,US,DAB,Daytona Beach,Daytona Beach,FL,---4----,AI,9601,,2913N 08101W, +,US,DAC,Dallas,Dallas,NC,--3-----,RQ,9307,,3519N 08111W, +,US,DAE,Dallas,Dallas,OR,--3-----,RQ,9307,,4455N 12319W, +,US,DAG,Daggett,Daggett,CA,---4----,AI,0001,,3452N 11653W, +,US,DAI,Dailey,Dailey,WV,--3-----,RQ,9307,,3848N 07954W, +,US,DAK,Dakota City,Dakota City,IA,--3-----,RQ,9307,,4243N 09412W, +,US,DAL,Dallas,Dallas,TX,-234----,RL,0003,DFW,3247N 09648W,Apt cf US DFW +,US,DAM,Damascus,Damascus,GA,--3-----,RQ,9307,,3118N 08443W, +,US,DAN,Danville,Danville,VA,--34----,AI,9601,,3635N 07924W, +,US,DAO,Davidson,Davidson,NC,--3-----,RQ,9307,,3530N 08051W, +,US,DAP,Danville,Danville,PA,--3-----,RQ,9307,,4058N 07637W, +,US,DAQ,Darien,Darien,CT,--3-----,RQ,9307,,4105N 07328W, +,US,DAR,Dardanelle,Dardanelle,AR,--3-----,RQ,9307,,3513N 09309W, +,US,DAS,Davis,Davis,CA,--3-----,RQ,9307,,3833N 12144W, +,US,DAT,Dayton,Dayton,TN,--3-----,RQ,9307,,3530N 08501W, +,US,DAU,Danbury,Danbury,NH,--3-----,RL,9805,,4332N 07152W, +,US,DAV,Davenport,Davenport,CA,1-3-----,RN,9501,,3701N 12212W, +,US,DAW,Dawson,Dawson,GA,--3-----,RQ,9307,,3146N 08427W, +,US,DAX,Dandridge,Dandridge,TN,--3-----,RQ,9307,,3601N 08325W, +,US,DAY,Dayton,Dayton,OH,---4----,AI,0001,,3946N 08411W, +,US,DBB,Darby,Darby,PA,--3-----,RQ,9307,,3955N 07516W, +,US,DBD,Midway,Midway,IL,---4----,RQ,1401,,4001N 08738W,5 places in IL +,US,DBI,Dubois,Dubois,IN,--3-----,RQ,9307,,3827N 08648W, +,US,DBN,Dublin,Dublin,GA,---4----,AI,9601,,3232N 08254W, +,US,DBQ,Dubuque,Dubuque,IA,1-34----,AI,0207,,4230N 09040W, +,US,DBR,Diamond Bar,Diamond Bar,CA,--3-----,RQ,9307,,3402N 11749W, +,US,DBS,Dubois,Dubois,ID,--34----,AI,9601,,4411N 11214W, +,US,DBY,Derby Line,Derby Line,VT,--3-----,RN,9501,,4500N 07206W, +,US,DCA,National Apt/Washington,National Apt/Washington,DC,---4----,AI,0201,,3851N 07703W, +,US,DCG,Decatur,Decatur,GA,--3-----,RQ,9307,,3346N 08418W, +,US,DCL,Declo,Declo,ID,--3-----,RQ,9307,,4231N 11338W, +,US,DCR,Decatur,Decatur,IN,---4----,AI,0001,,4050N 08456W, +,US,DCS,Dorchester,Dorchester,WI,--3-----,RQ,9307,,4500N 09020W, +,US,DCT,Derby,Derby,CT,--3-----,RQ,9008,,4119N 07302W, +,US,DCU,Decatur,Decatur,AL,---4----,AI,9601,,3436N 08659W, +,US,DDB,Dade City,Dade City,FL,--3-----,RQ,9307,,2822N 08212W, +,US,DDC,Dodge City,Dodge City,KS,--34----,AI,9601,,3745N 10001W, +,US,DDG,Dodge,Dodge,NE,--3-----,RQ,9307,,4143N 09653W, +,US,DDI,Durand,Durand,IL,--3-----,RQ,9307,,4226N 08920W, +,US,DDJ,Dry Ridge,Dry Ridge,KY,--3-----,RQ,9307,,3841N 08435W, +,US,DDQ,Dundalk,Dundalk,MD,--3-----,RQ,9307,,3916N 07629W, +,US,DE3,Deridder,Deridder,LA,1----6--,RL,1107,,3051N 09317W, +,US,DEA,Delavan,Delavan,WI,--3-----,RQ,9307,,4238N 08839W, +,US,DEC,Decatur,Decatur,IL,1--4----,AI,0001,,3951N 08857W, +,US,DED,Dedham,Dedham,MA,--3-----,RQ,9307,,4215N 07111W, +,US,DEE,Deerfield Beach,Deerfield Beach,FL,--3-----,RQ,9008,,2619N 08006W, +,US,DEF,Deferiet,Deferiet,NY,--3-----,RQ,9008,,4402N 07541W, +,US,DEH,Decorah,Decorah,IA,--34----,AI,9601,,4318N 09147W, +,US,DEK,De Kalb,De Kalb,IL,--3-----,RQ,9307,,4200N 08907W, +,US,DEL,Delaware,Delaware,OH,--3-----,RQ,9307,,4018N 08304W, +,US,DEN,Denver,Denver,CO,---45---,AI,0001,,3944N 10459W, +,US,DEO,Dearborn,Dearborn,MI,---4----,AI,9601,,4219N 08311W, +,US,DEP,Delphos,Delphos,OH,--3-----,RQ,9307,,4051N 08420W, +,US,DEQ,Deep River,Deep River,CT,--3-----,RQ,9307,,4123N 07226W, +,US,DER,Dover,Dover,IL,--3-----,RQ,9806,,4126N 08924W, +,US,DES,Des Plaines,Des Plaines,IL,--3-----,RQ,9307,,4202N 08753W, +,US,DEV,Devon,Devon,PA,--3-----,RQ,9307,,4003N 07526W, +,US,DEW,Dewitt,Dewitt,NY,--3-----,RQ,9307,,4302N 07604W, +,US,DEX,Deer Park,Deer Park,TX,--3-----,RQ,9307,,2942N 09507W, +,US,DEY,Delray Beach,Delray Beach,FL,--3-----,RQ,9307,,2628N 08004W, +,US,DEZ,Dewitt,Dewitt,IL,--3-----,RQ,9307,,4149N 09032W, +,US,DFD,Deerfield,Deerfield,WI,--3-----,RQ,9307,,4303N 08905W, +,US,DFG,Daingerfield,Daingerfield,TX,--3-----,RQ,9307,,3302N 09443W, +,US,DFI,Defiance,Defiance,OH,---4----,AI,9601,,4117N 08421W, +,US,DFL,Deerfield,Deerfield,OH,--3-----,RQ,9307,,3919N 08417W, +,US,DFM,Deerfield,Deerfield,MO,--3-----,RQ,9307,,3750N 09430W, +,US,DFN,De Funiak Springs,De Funiak Springs,FL,--3-----,RQ,9307,,3043N 08606W, +,US,DFO,De Forest,De Forest,WI,--3-----,RQ,9307,,4728N 09235W, +,US,DFW,Dallas-Fort Worth Int Apt,Dallas-Fort Worth Int Apt,TX,---4----,AI,0201,,3254N 09702W,cf US DAL +,US,DFX,Defense,Defense,TX,--3-----,RQ,9307,,3242N 09703W, +!,US,DGL,Douglassville,Douglassville,PA,--3-----,RQ,9307,,4015N 07544W, +,US,DGN,Dahlgren,Dahlgren,VA,---4----,AI,0001,,3820N 07703W, +,US,DGT,Dighton,Dighton,MA,--3-----,RQ,9008,,4149N 07107W, +,US,DGV,Douglasville,Douglasville,GA,--3-----,RQ,9307,,3345N 08445W, +,US,DGW,Douglas/Converse,Douglas/Converse,WY,---4----,AI,9601,,4246N 10523W, +,US,DGZ,Douglas,Douglas,AR,--3-----,RQ,9307,,3403N 09132W, +,US,DHH,Durham,Durham,OR,--3-----,RQ,9307,,4524N 12245W, +,US,DHL,Dahlonega,Dahlonega,GA,--3-----,RQ,9307,,3432N 08359W, +,US,DHN,Dothan,Dothan,AL,--34----,RQ,9008,,3113N 08524W, +,US,DHQ,Durham,Durham,CT,--3-----,RQ,9307,,4129N 07241W, +,US,DHS,Desert Hot Springs,Desert Hot Springs,CA,--3-----,RQ,9307,,3358N 11630W, +,US,DHT,Dalhart,Dalhart,TX,---4----,AI,9601,,3604N 10231W, +,US,DIB,Diboll,Diboll,TX,--3-----,RQ,9307,,3111N 09447W, +,US,DID,Denver,Denver,NC,--3-----,RQ,9307,,3532N 08102W, +,US,DIK,Dickinson,Dickinson,ND,---4----,AI,9601,,4653N 10247W, +,US,DIM,Derma,Derma,MS,--3-----,RQ,9307,,3351N 08917W, +,US,DIO,Diomede Island,Diomede Island,AK,---4----,AI,0001,,6545N 16856W, +,US,DIU,Dinuba,Dinuba,CA,--3-----,RQ,9307,,3633N 11923W, +,US,DJN,Delta Junction,Delta Junction,AK,---4----,AI,9401,,6402N 14544W, +,US,DKC,Dakota City,Dakota City,NE,--3-----,RQ,9307,,4225N 09625W, +,US,DKD,Dunkirk,Dunkirk,IN,--3-----,RQ,9307,,4022N 08512W, +,US,DKS,Dierks,Dierks,AR,--3-----,RQ,9307,,3407N 09401W, +,US,DLA,Delair,Delair,NJ,--3-----,RQ,9307,,3958N 07504W, +,US,DLD,De Land,De Land,FL,--3-----,RQ,9307,,4007N 08839W, +,US,DLE,Delisle,Delisle,MS,--3-----,RQ,9307,,4001N 08434W, +!,US,DLF,De Leon Springs,De Leon Springs,FL,--3-----,RQ,9307,,2907N 08121W, +,US,DLG,Dillingham,Dillingham,AK,---4----,AI,0001,,5903N 15831W, +,US,DLH,Duluth,Duluth,MN,1--4----,AI,0207,,4646N 09208W, +,US,DLJ,Delanco,Delanco,NJ,--3-----,RQ,9307,,4003N 07457W, +,US,DLK,Dayville,Dayville,CT,--3-----,RQ,9307,,4151N 07153W, +,US,DLL,Dillon,Dillon,SC,--34----,AI,9601,,3425N 07922W, +,US,DLN,Dillon,Dillon,MT,---4----,AI,0001,,4513N 11238W, +,US,DLO,Dolomi,Dolomi,AK,---4----,AI,0001,,5508N 13203W, +,US,DLP,Darlington,Darlington,PA,--3-----,RQ,9307,,4049N 08025W, +,US,DLS,The Dalles,The Dalles,OR,--34----,AI,0101,,4536N 12111W, +,US,DLT,Deltona,Deltona,FL,--3-----,RQ,9307,,2854N 08114W, +,US,DLU,Delano,Delano,PA,--3-----,RQ,9307,,4050N 07605W, +,US,DLV,Danville,Danville,IA,--3-----,RQ,9307,,4052N 09119W, +,US,DLX,Dallas,Dallas,GA,--3-----,RQ,9307,,3355N 08450W, +,US,DLZ,Deerfield,Deerfield,MI,--3-----,RQ,9307,,4214N 08346W, +,US,DMA,Del Mar,Del Mar,CA,--3-----,RQ,0901,,3258N 11716W, +,US,DMD,Diamond,Diamond,MO,--3-----,RL,0004,,3660N 09419W, +,US,DMI,Drayton Plains,Drayton Plains,MI,--3-----,RQ,9307,,4241N 08323W, +,US,DML,Dimondale,Dimondale,MI,--3-----,RQ,9307,,4239N 08439W, +,US,DMN,Deming,Deming,NM,---4----,AI,9601,,3216N 10745W, +,US,DMO,Sedalia,Sedalia,MO,---4----,AI,9601,,3843N 09314W, +,US,DMP,Demopolis,Demopolis,AL,--3-----,RL,0001,,3231N 08750W, +,US,DMS,Dumas,Dumas,AR,--3-----,RQ,9307,,3353N 09129W, +,US,DMZ,Dominguez,Dominguez,CA,--3-----,RQ,9307,,3350N 11813W, +,US,DNA,Donaldsonville,Donaldsonville,LA,--3-----,RQ,8902,,3006N 09059W, +,US,DNB,Dunedin,Dunedin,FL,--3-----,RQ,9307,,2801N 08247W, +,US,DNC,Dorrance,Dorrance,KS,--3-----,RQ,9307,,3851N 09835W, +,US,DNG,Dongola,Dongola,IL,--3-----,RL,9901,,3722N 08910W, +,US,DNK,Duncan,Duncan,SC,--3-----,RQ,9008,,3456N 08209W, +,US,DNL,Denville,Denville,NJ,--3-----,RQ,9501,,4054N 07429W, +,US,DNM,Denham Springs,Denham Springs,LA,--3-----,RQ,9307,,3029N 09057W, +,US,DNN,Dalton,Dalton,GA,---4----,AI,9601,,3446N 08458W, +,US,DNO,Delano,Delano,CA,--3-----,RQ,9307,,3546N 11915W, +,US,DNP,Derry,Derry,NH,--3-----,RQ,9307,,4253N 07120W, +,US,DNQ,Denver,Denver,PA,--3-----,RQ,9307,,4014N 07608W, +,US,DNS,Denison,Denison,IA,---4----,AI,9601,,4201N 09521W, +!,US,DNT,Downingtown,Downingtown,PA,--3-----,RQ,9307,,4000N 07542W, +,US,DNZ,Dunmore,Dunmore,PA,--3-----,RQ,9307,,4125N 07538W, +,US,DOC,Maddock,Maddock,ND,--3-----,RQ,0901,,4758N 09932W, +,US,DOE,Doe Run,Doe Run,KY,--3-----,RQ,9307,,3955N 07549W, +,US,DOF,Dora Bay,Dora Bay,AK,---4----,AI,0001,,5512N 13216W, +,US,DOL,Dolomite,Dolomite,AL,--3-----,RQ,9307,,3328N 08658W, +,US,DOO,Dover,Dover,OH,--3-----,RQ,9307,,4031N 08128W, +,US,DOR,Dover,Dover,FL,--3-----,RQ,9506,,2760N 08213W, +,US,DOS,Doswell,Doswell,VA,--3-----,RQ,9307,,3752N 07728W, +,US,DOU,Douglas,Douglas,GA,--3-----,RQ,9307,,3131N 08251W, +,US,DOW,Dowagiac,Dowagiac,MI,--3-----,RQ,9307,,4159N 08607W, +,US,DOX,Delano,Delano,MN,--3-----,RL,0002,,4503N 09347W, +!,US,DPA,Deerpark,Deerpark,FL,--3-----,RQ,9307,,4127N 07439W, +,US,DPE,Depew,Depew,NY,--3-----,RQ,9307,,4254N 07842W, +,US,DPF,Deptford,Deptford,NJ,--3-----,RQ,9307,,3950N 07507W, +,US,DPG,Dugway,Dugway,UT,---4----,AI,9601,,4013N 11245W, +,US,DPI,Deposit,Deposit,NY,--3-----,RQ,9307,,4204N 07526W, +,US,DPK,Deer Park,Deer Park,NY,---4----,AI,9601,,4046N 07320W, +,US,DPQ,Dalton,Dalton,PA,--3-----,RQ,9307,,4132N 07544W, +,US,DPV,Disputanta,Disputanta,VA,--3-----,RQ,9307,,3707N 07714W, +,US,DPW,Deepwater,Deepwater,NJ,--3-----,RQ,9307,,3941N 07529W, +,US,DQB,Dublin,Dublin,CA,--3-----,RQ,9307,,3742N 12156W, +,US,DQL,Dacula,Dacula,GA,--3-----,RQ,9307,,3359N 08354W, +,US,DRA,Mercury,Mercury,NV,---4----,AI,0001,,3640N 11560W, +,US,DRD,Deerfield,Deerfield,IL,--3-----,RQ,9307,,4210N 08751W, +,US,DRE,Drummond Island,Drummond Island,MI,---4----,AI,0001,,4601N 08339W, +,US,DRF,Drift River,Drift River,AK,---4----,AI,9601,,6036N 15210W, +,US,DRG,Deering,Deering,AK,---4----,AI,0001,,6605N 16246W, +,US,DRH,Doraville,Doraville,GA,--3-----,RQ,9008,,3354N 08417W, +,US,DRJ,Delran,Delran,NJ,--3-----,RQ,9307,,4001N 07457W, +,US,DRN,Darlington,Darlington,SC,--3-----,RQ,9008,,3418N 07953W, +,US,DRO,Durango,Durango,CO,--34----,AI,9601,,3717N 10753W, +,US,DRP,Donora,Donora,PA,--3-----,RQ,9307,,4011N 07951W, +,US,DRR,Darrow,Darrow,LA,--3-----,RQ,9501,,3007N 09059W, +,US,DRS,Dorsey,Dorsey,MD,--3-----,RQ,9307,,3915N 07650W, +,US,DRT,Del Rio,Del Rio,TX,---4----,AI,0001,,2921N 10054W, +,US,DRU,Drummond,Drummond,MT,---4----,AI,0001,,4640N 11309W, +,US,DRV,Dover,Dover,NH,--3-----,RQ,9307,,4312N 07052W, +,US,DRX,Drexel,Drexel,NC,--3-----,RQ,9307,,3545N 08136W, +,US,DRY,Dry Branch,Dry Branch,GA,--3-----,RQ,9307,,3248N 08330W, +,US,DSC,Damascus,Damascus,OR,--3-----,RQ,9307,,4525N 12228W, +,US,DSD,Dresden,Dresden,TN,--3-----,RQ,9307,,3617N 08842W, +,US,DSG,Dawson Springs,Dawson Springs,KY,--3-----,RQ,9307,,3710N 08742W, +,US,DSI,Destin,Destin,FL,---4----,AI,0001,,3024N 08630W, +,US,DSM,Des Moines,Des Moines,IA,1--4----,AI,0001,,4135N 09337W, +,US,DSO,Danielson,Danielson,CT,--3-----,RQ,9008,,4148N 07153W, +,US,DSP,Dallas,Dallas,PA,--3-----,RQ,9307,,4120N 07558W, +,US,DSV,Dansville,Dansville,NY,---4----,AI,0001,,4228N 07740W, +,US,DSW,Dresser,Dresser,WI,--3-----,RQ,9307,,4521N 09238W, +,US,DSX,Dickinson,Dickinson,TX,--3-----,RQ,9307,,2928N 09503W, +,US,DTA,Delta,Delta,UT,---4----,AI,0001,,3921N 11235W, +,US,DTL,Detroit Lakes,Detroit Lakes,MN,--34----,AI,9901,,4649N 09551W, +,US,DTR,Decatur Island,Decatur Island,WA,---4----,AI,0001,,4830N 12248W, +,US,DTT,Detroit,Detroit,IL,1-3-----,RQ,0207,,3937N 09041W, +,US,DTV,Decatur,Decatur,TN,--3-----,RQ,9307,,3531N 08447W, +,US,DTW,Wayne County Apt/Detroit,Wayne County Apt/Detroit,MI,---45---,AI,0201,,4213N 08321W, +,US,DTX,Dayton,Dayton,TX,--3-----,RQ,9307,,3003N 09453W, +,US,DUA,Durant,Durant,OK,--34----,AI,9601,,3360N 09623W, +,US,DUB,Duarte,Duarte,CA,--3-----,RQ,9307,,3408N 11759W, +,US,DUC,Duncan,Duncan,OK,--34----,AI,1701,,3430N 09757W, +,US,DUF,Duck,Duck,NC,---4----,AI,0001,,3610N 07545W, +,US,DUG,Douglas,Douglas,AZ,---4----,AI,0001,,3121N 10933W, +,US,DUJ,Dubois,Dubois,PA,--34----,AI,9601,,4107N 07846W, +,US,DUL,Dunellen,Dunellen,NJ,--3-----,RQ,9307,,4035N 07428W, +,US,DUM,Dunn,Dunn,SC,--3-----,RQ,9307,,3346N 07901W, +,US,DUO,Dublin,Dublin,OH,--3-----,RQ,9307,,4006N 08307W, +,US,DUQ,Duquoin,Duquoin,IL,--3-----,RQ,9307,,3723N 09804W, +,US,DUR,Durham,Durham,NC,--3-----,RN,0201,,3560N 07854W,cf Apt RDU +,US,DUS,Dushore,Dushore,PA,--3-----,RL,9901,,4131N 07624W, +,US,DUT,Dutch Harbor,Dutch Harbor,AK,1--4----,AI,0001,,5353N 16633W, +,US,DUV,Duncansville,Duncansville,PA,--3-----,RQ,9307,,4025N 07826W, +,US,DUW,Durbin,Durbin,WV,--3-----,RQ,9307,,3833N 07950W, +,US,DUX,Dumas,Dumas,TX,--3-----,RQ,9307,,3552N 10158W, +,US,DUZ,Dunn,Dunn,NC,--3-----,RQ,9307,,3518N 07837W, +,US,DVB,Dravosburg,Dravosburg,PA,--3-----,RQ,9307,,4021N 07953W, +,US,DVC,Denver City,Denver City,TX,--3-----,RQ,9307,,3258N 10250W, +,US,DVD,Devine,Devine,TX,--3-----,RQ,9307,,2908N 09854W, +,US,DVE,Davie,Davie,NC,--3-----,RQ,9307,,3550N 08032W, +,US,DVF,Davie,Davie,FL,--3-----,RQ,9307,,2604N 08017W, +,US,DVJ,Dover,Dover,NJ,--3-----,RQ,9307,,4053N 07434W, +,US,DVK,Danville,Danville,KY,--3-----,RQ,9008,,3739N 08446W, +,US,DVL,Devils Lake,Devils Lake,ND,---4----,AI,0001,,4807N 09852W, +,US,DVN,Davenport,Davenport,IA,1-34----,AI,0207,,4131N 09035W, +,US,DVP,Davenport,Davenport,FL,--3-----,RQ,9307,,2810N 08136W, +,US,DVR,Danvers,Danvers,MA,--3-----,RQ,9008,,4234N 07056W, +,US,DVT,Davant,Davant,LA,1-3-----,RN,9501,,2937N 08951W, +,US,DVV,Davisville,Davisville,RI,1-3-----,RN,9501,,4137N 07129W, +,US,DWG,Delaware Water Gap,Delaware Water Gap,PA,--3-----,RQ,9307,,4059N 07509W, +!,US,DWH,Dilworth,Dilworth,MN,--3-----,RQ,9307,,4653N 09642W, +,US,DWO,Dewey,Dewey,OK,--3-----,RQ,9307,,3648N 09556W, +,US,DWT,De Witt,De Witt,MI,--3-----,RQ,9307,,3923N 09313W, +,US,DWV,Dunbar,Dunbar,WV,--3-----,RQ,9307,,3822N 08144W, +,US,DWW,Dewitt,Dewitt,IA,--3-----,RQ,9307,,4149N 09032W, +,US,DWZ,Downey,Downey,PA,--3-----,RQ,9307,,3958N 07853W, +,US,DXC,Dixon,Dixon,CA,--3-----,RQ,9307,,3827N 12149W, +,US,DXD,Durand,Durand,WI,--3-----,RQ,9307,,4438N 09158W, +,US,DXE,Dexter,Dexter,MO,--3-----,RQ,9307,,3648N 08957W, +,US,DXG,Diamond Springs,Diamond Springs,CA,--3-----,RQ,9307,,3842N 12049W, +,US,DXL,Daly City,Daly City,CA,--3-----,RQ,9307,,3741N 12228W, +,US,DXN,Dixon,Dixon,IL,--3-----,RQ,9307,,4151N 08929W, +,US,DXR,Danbury,Danbury,CT,---4----,AI,9601,,4124N 07327W, +,US,DXY,Dollar Bay,Dollar Bay,MI,--3-----,RQ,9307,,4707N 08831W, +,US,DYA,Duryea,Duryea,PA,--3-----,RQ,9307,,4121N 07545W, +,US,DYE,Dyersville,Dyersville,IA,--3-----,RQ,9307,,4229N 09107W, +,US,DYI,Dundee,Dundee,IL,--3-----,RQ,9307,,4206N 08816W, +,US,DYJ,Dayton,Dayton,NV,--3-----,RQ,9307,,3914N 11936W, +,US,DYK,Dundee,Dundee,NY,--3-----,RQ,9307,,4231N 07659W, +,US,DYL,Doylestown,Doylestown,PA,---4----,AI,9601,,4019N 07508W, +,US,DYR,Dyersburg,Dyersburg,TN,--3-----,RQ,9008,,3602N 08923W, +!,US,DYS,Dyer,Dyer,TN,--3-----,RQ,9307,,3604N 08860W, +,US,DYT,Dayton,Dayton,NJ,--3-----,RQ,9307,,4022N 07431W, +,US,DYV,Dayton,Dayton,VA,--3-----,RQ,9307,,3825N 07856W, +,US,DYW,Dayton,Dayton,WA,--3-----,RQ,9307,,4619N 11758W, +,US,E2T,Etna,Etna,CA,1-------,RQ,0901,,4127N 12254W, +,US,EAA,Eagle,Eagle,AK,---4----,AI,0001,,6447N 14111W, +,US,EAB,East Bridgewater,East Bridgewater,MA,--3-----,RQ,9307,,4202N 07058W, +,US,EAG,Eagle Point,Eagle Point,NJ,--3-----,RQ,9012,,4228N 12248W, +,US,EAJ,Eatontown,Eatontown,NJ,--3-----,RQ,9307,,4018N 07403W, +,US,EAL,Easley,Easley,SC,--3-----,RQ,9307,,3450N 08235W, +,US,EAM,Earle,Earle,AR,--3-----,RN,0105,,3516N 09028W, +,US,EAN,Wheatland,Wheatland,WY,---4----,AI,0001,,4203N 10457W, +,US,EAO,East Aurora,East Aurora,NY,--3-----,RQ,9307,,4246N 07837W, +,US,EAQ,Eaton,Eaton,OH,--3-----,RQ,9307,,3945N 08438W, +,US,EAR,Kearney,Kearney,NE,---4----,AI,9601,,4042N 09905W, +,US,EAS,Eastover,Eastover,SC,--3-----,RQ,9307,,3353N 08042W, +,US,EAT,Wenatchee,Wenatchee,WA,--34----,AI,9601,,4725N 12019W, +,US,EAU,Eau Claire,Eau Claire,WI,--34----,AI,9601,,4449N 09130W, +,US,EBC,East Bridgeport,East Bridgeport,CT,--3-----,RQ,9307,,4111N 07311W, +,US,EBE,Ebensburg,Ebensburg,PA,--3-----,RQ,9307,,4029N 07843W, +,US,EBL,East Berlin,East Berlin,PA,--3-----,RQ,9307,,3956N 07659W, +,US,EBN,East Boston,East Boston,MA,--3-----,RQ,9307,,4223N 07102W, +,US,EBQ,East Brookfield,East Brookfield,MA,--3-----,RQ,9307,,4214N 07203W, +!,US,EBR,East Brunswick,East Brunswick,NJ,--3-----,RQ,9307,,4026N 07425W, +,US,EBT,East Butler,East Butler,PA,--3-----,RQ,9307,,4053N 07951W, +,US,EBY,East Granby,East Granby,CT,--3-----,RQ,9307,,4156N 07244W, +,US,ECA,East Tawas,East Tawas,MI,---4----,AI,0001,,4417N 08329W, +,US,ECD,Escondido,Escondido,CA,--3-----,RQ,9307,,3307N 11705W, +,US,ECG,Elizabeth City,Elizabeth City,NC,---4----,AI,9601,,3618N 07613W, +,US,ECH,East Chicago,East Chicago,IN,1-3-----,RN,0105,,4138N 08727W, +,US,ECM,East Cambridge,East Cambridge,MA,--3-----,RQ,9307,,4222N 07105W, +,US,ECN,East Camden,East Camden,AR,--3-----,RQ,9307,,3336N 09244W, +,US,ECQ,El Cerrito,El Cerrito,CA,--3-----,RQ,9307,,3755N 12218W, +,US,ECS,Newcastle,Newcastle,WY,---4----,AI,0001,,4351N 10412W, +,US,ECV,Ellicottville,Ellicottville,NY,--3-----,RQ,9307,,4217N 07840W, +,US,EDA,Edna Bay,Edna Bay,AK,---4----,AI,0001,,5558N 13341W, +,US,EDB,Eden,Eden,NC,--3-----,RQ,9307,,3629N 07946W, +,US,EDD,Edgewood,Edgewood,NJ,--3-----,RQ,9307,,4009N 07416W, +,US,EDE,Edenton,Edenton,NC,---4----,AI,9601,,3603N 07636W, +!,US,EDF,Edgefield,Edgefield,SC,--3-----,RQ,9307,,3347N 08156W, +,US,EDG,Edgewood,Edgewood,MD,---4----,AI,0001,,3925N 07617W, +,US,EDI,Eden,Eden,ID,--3-----,RQ,9307,,4236N 11413W, +,US,EDK,El Dorado,El Dorado,KS,---4----,AI,0001,,3749N 09652W, +,US,EDN,Edison,Edison,NJ,--3-----,RQ,9008,,4031N 07425W, +,US,EDO,East Douglas,East Douglas,MA,--3-----,RQ,9307,,4204N 07143W, +,US,EDP,Eden Prairie,Eden Prairie,MN,--3-----,RQ,9307,,4451N 09328W, +,US,EDQ,Edinburg,Edinburg,TX,--3-----,RQ,9307,,2618N 09810W, +,US,EDS,Edison,Edison,CA,--3-----,RQ,9307,,3521N 11852W, +,US,EDT,Eldon,Eldon,TX,--3-----,RQ,9307,,2949N 09455W, +!,US,EDW,Edwardsville,Edwardsville,KS,--3-----,RQ,9307,,3904N 09449W, +,US,EDX,Edcouch,Edcouch,TX,--3-----,RQ,9307,,2618N 09758W, +,US,EDY,Eden,Eden,NY,--3-----,RQ,9307,,4239N 07854W, +,US,EED,Needles,Needles,CA,--34----,AI,1607,,3450N 11436W, +,US,EEI,Emmett,Emmett,ID,--3-----,RQ,9307,,4352N 11630W, +,US,EEK,Eek,Eek,AK,---4----,AI,0001,,6013N 16202W, +,US,EEN,Keene,Keene,NH,---4----,AI,0001,,4256N 07217W, +,US,EEX,Essex,Essex,CT,--3-----,RL,0005,,4121N 07223W, +!,US,EFD,Eastford,Eastford,CT,--3-----,RQ,9307,,4154N 07205W, +,US,EFI,Effingham,Effingham,IL,--3-----,RQ,9008,,3907N 08833W, +,US,EFK,Newport,Newport,VT,---4----,AI,9601,,4456N 07213W, +,US,EFO,East Fork,East Fork,AK,---4----,AI,0001,,6442N 16417W, +,US,EFR,East Farmingdale,East Farmingdale,NY,--3-----,RQ,9307,,4044N 07325W, +,US,EFW,Jefferson,Jefferson,IA,---4----,AI,9601,,4201N 09422W, +,US,EGC,Granby,Granby,CT,--3-----,RQ,9008,,4157N 07247W, +!,US,EGE,Elgin,Elgin,SC,--3-----,RQ,9307,,3440N 08044W, +,US,EGF,Eagle Grove,Eagle Grove,IA,--3-----,RQ,9307,,4240N 09354W, +,US,EGM,Edgemont,Edgemont,PA,--3-----,RQ,9307,,4017N 07651W, +,US,EGN,Elgin,Elgin,IL,--3-----,RQ,9307,,4202N 08817W, +,US,EGO,East Goshen,East Goshen,PA,--3-----,RQ,9307,,3960N 07533W, +,US,EGQ,East Grand Forks,East Grand Forks,MN,--3-----,RQ,9307,,4756N 09701W, +,US,EGR,Eagle Rock,Eagle Rock,CA,--3-----,RQ,9307,,3408N 11813W, +,US,EGS,Emigsville,Emigsville,PA,--3-----,RQ,9307,,4001N 07644W, +,US,EGU,Edgemoor,Edgemoor,DE,--3-----,RQ,9307,,3945N 07530W, +,US,EGV,Eagle River,Eagle River,WI,---4----,AI,0001,,4555N 08915W, +,US,EGW,Edgewater,Edgewater,NJ,--3-----,RQ,9307,,4050N 07359W, +,US,EGX,Egegik,Egegik,AK,---4----,AI,9601,,5814N 15729W, +,US,EGY,East Greenbush,East Greenbush,NY,--3-----,RQ,9307,,4235N 07342W, +,US,EHA,East Hanover,East Hanover,NJ,--3-----,RQ,9307,,4049N 07422W, +,US,EHM,Cape Newenham,Cape Newenham,AK,---4----,AI,0001,,5839N 16204W, +,US,EHN,Easthampton,Easthampton,MA,--3-----,RQ,9307,,4216N 07240W, +,US,EHP,Ephrata,Ephrata,PA,--3-----,RQ,9307,,4011N 07611W, +,US,EHT,East Hartford,East Hartford,CT,--34----,AI,1801,,4147N 07237W, +,US,EHV,East Haven,East Haven,CT,--3-----,RQ,9307,,4117N 07252W, +,US,EIA,Elyria,Elyria,OH,--3-----,RQ,9307,,4122N 08206W, +,US,EIC,Eau Claire,Eau Claire,MI,-23-----,RL,0701,,4159N 08618W, +,US,EIG,Eight Mile,Eight Mile,AL,--3-----,RQ,9307,,3046N 08808W, +!,US,EIL,Elsie,Elsie,MI,--3-----,RQ,9307,,4305N 08423W, +,US,EIN,Elkin,Elkin,NC,--3-----,RQ,9506,,3616N 08051W, +,US,EJD,East Jordan,East Jordan,MI,--3-----,RQ,9307,,4509N 08507W, +,US,EJV,Helmville,Helmville,MT,--3-----,RQ,0901,,4652N 11258W, +,US,EJW,Edgewater,Edgewater,FL,--3-----,RQ,9307,,2858N 08059W, +,US,EKA,Eureka,Eureka,CA,1--4----,AI,0001,,4047N 12410W, +,US,EKD,Elkridge,Elkridge,MD,--3-----,RL,9909,,3913N 07643W, +,US,EKI,Elkhart,Elkhart,IN,1--4----,AI,9506,,4141N 08559W, +,US,EKM,Elkton,Elkton,MI,--3-----,RQ,0101,,4349N 08311W, +,US,EKN,Elkins,Elkins,WV,--34----,AI,2107,,3856N 07951W, +,US,EKO,Elko,Elko,NV,--34----,AI,9601,,4050N 11546W, +,US,EKP,Ecorse,Ecorse,MI,--3-----,RQ,9307,,4215N 08309W, +,US,EKV,Elkton,Elkton,VA,--3-----,RQ,9307,,3824N 07837W, +,US,EKX,Elizabethtown,Elizabethtown,KY,--34----,AI,9601,,3742N 08552W, +,US,ELA,Eagle Lake,Eagle Lake,TX,---4----,AI,0001,,2935N 09620W, +,US,ELB,Elberton,Elberton,GA,--3-----,RQ,9008,,3407N 08252W, +,US,ELD,El Dorado,El Dorado,AR,---4----,AI,9601,,3313N 09240W, +,US,ELH,Elkhorn,Elkhorn,WI,--3-----,RQ,9307,,4240N 08833W, +,US,ELI,Elim,Elim,AK,---4----,AI,0001,,6437N 16217W, +,US,ELK,Elk City,Elk City,OK,---4----,AI,0001,,3525N 09925W, +,US,ELL,Elwood,Elwood,IN,--3-----,RQ,9307,,4017N 08551W, +,US,ELM,Elmira,Elmira,NY,---4----,AI,0001,,4205N 07648W, +,US,ELN,Ellensburg,Ellensburg,WA,---4----,AI,9601,,4660N 12033W, +,US,ELO,East Liverpool,East Liverpool,OH,--3-----,RQ,9307,,4037N 08035W, +,US,ELQ,Elkland,Elkland,PA,--3-----,RQ,9307,,4159N 07719W, +,US,ELR,Elmhurst,Elmhurst,IL,--3-----,RQ,9307,,4154N 08756W, +,US,ELS,El Segundo,El Segundo,CA,1-3-----,RN,0105,,3355N 11825W, +,US,ELT,Elkton,Elkton,MD,--3-----,RQ,9307,,3936N 07550W, +,US,ELU,Ellisville,Ellisville,MO,--3-----,RQ,9307,,3836N 09035W, +,US,ELV,Elfin Cove,Elfin Cove,AK,---4----,AI,0001,,5812N 13621W, +,US,ELW,Ellamar,Ellamar,AK,---4----,AI,0001,,6054N 14642W, +,US,ELY,Ely,Ely,NV,--34----,AI,9601,,3915N 11454W, +,US,ELZ,Wellsville,Wellsville,NY,---4----,AI,0001,,4207N 07757W, +,US,EMA,Emelle,Emelle,AL,--3-----,RQ,9307,,3244N 08819W, +,US,EMB,Embarcadero/San Francisco,Embarcadero/San Francisco,CA,---4----,AI,0401,,3814N 12227W, +,US,EMC,Eldersburg,Eldersburg,MD,--3-----,RQ,9307,,3924N 07657W, +,US,EMI,East Millinocket,East Millinocket,ME,--3-----,RQ,9307,,4538N 06835W, +,US,EMK,Emmonak,Emmonak,AK,---4----,AI,0001,,6247N 16432W, +,US,EMN,East Moline,East Moline,IL,--3-----,RQ,9008,,4131N 09027W, +,US,EMO,Elmore,Elmore,WV,--3-----,RQ,9307,,3734N 08124W, +,US,EMP,Emporia,Emporia,KS,---4----,AI,9601,,3824N 09611W, +,US,EMR,Elmira Heights,Elmira Heights,NY,--3-----,RQ,9307,,4208N 07649W, +,US,EMT,El Monte,El Monte,CA,--34----,AI,2101,,3405N 11802W, +,US,ENA,Kenai,Kenai,AK,---4----,AI,0001,,6033N 15115W, +,US,ENB,Edinburgh,Edinburgh,IN,--3-----,RQ,9307,,3921N 08558W, +,US,ENC,Endicott,Endicott,NY,--34----,AI,0201,,4206N 07603W,cf US BGM Apt +!,US,END,Endeavor,Endeavor,PA,--3-----,RQ,9307,,4135N 07923W, +,US,ENE,Ennis,Ennis,TX,--3-----,RQ,9307,,3220N 09638W, +,US,ENF,Enfield,Enfield,CT,--3-----,RQ,9307,,4159N 07235W, +,US,ENG,Englewood Cliffs,Englewood Cliffs,NJ,--3-----,RQ,9307,,4053N 07357W, +,US,ENK,Enka,Enka,NC,--3-----,RQ,9307,,3533N 08239W, +,US,ENL,Centralia,Centralia,IL,--34----,AI,9601,,3832N 08908W, +,US,ENN,Nenana,Nenana,AK,---4----,AI,9601,,6432N 14905W, +,US,ENO,Encino,Encino,CA,--3-----,RQ,9307,,3410N 11830W, +,US,ENQ,East Norwalk,East Norwalk,CT,--3-----,RQ,9307,,4106N 07324W, +,US,ENW,Kenosha,Kenosha,WI,1-34----,AI,1001,,4235N 08749W, +,US,EOD,Edmond,Edmond,OK,--3-----,RQ,9307,,3539N 09728W, +,US,EOJ,Enochs,Enochs,TX,--3-----,RQ,0901,,3352N 10246W, +,US,EOK,Keokuk,Keokuk,IA,---4----,AI,9601,,4024N 09123W, +,US,EOL,East Alton,East Alton,IL,--3-----,RQ,9307,,3853N 09007W, +,US,EON,Enoree,Enoree,SC,--3-----,RQ,9307,,3439N 08158W, +,US,EOO,El Dorado Springs,El Dorado Springs,MO,--3-----,RQ,9307,,3753N 09401W, +,US,EOR,Elloree,Elloree,SC,--3-----,RQ,9307,,3332N 08034W, +,US,EOS,Neosho,Neosho,MO,---4----,AI,9601,,3652N 09422W, +,US,EOT,Edmonston,Edmonston,MD,--3-----,RQ,9307,,3857N 07656W, +,US,EOW,Edmonds,Edmonds,WA,1-3-----,RN,0105,,4749N 12223W, +,US,EPD,East Palo Alto,East Palo Alto,CA,--3-----,RQ,9307,,3728N 12208W, +,US,EPG,Weeping Water,Weeping Water,NE,---4----,AI,0001,,4052N 09608W, +,US,EPH,Ephrata,Ephrata,WA,---4----,AI,9601,,4719N 11933W, +,US,EPK,Eaton Park,Eaton Park,FL,--3-----,RQ,9307,,2801N 08154W, +,US,EPN,East Point,East Point,GA,--3-----,RQ,9307,,3341N 08426W, +,US,EPO,East Peoria,East Peoria,IL,--3-----,RQ,9307,,4040N 08935W, +,US,EPT,Export,Export,PA,--3-----,RQ,9307,,4025N 07938W, +,US,EQG,East Quogue,East Quogue,NY,--3-----,RQ,9307,,4050N 07235W, +,US,EQO,Elco,Elco,IL,--3-----,RQ,9307,,3718N 08916W, +,US,EQU,Ecru,Ecru,MS,--3-----,RQ,9307,,3421N 08901W, +,US,EQX,Edinburg,Edinburg,VA,--3-----,RQ,9307,,3849N 07834W, +,US,ERD,Elfrida,Elfrida,AZ,--3-----,RL,9909,,3141N 10941W, +,US,ERI,Erie,Erie,PA,1--4----,AI,0001,,4208N 08005W, +,US,ERK,East Flat Rock,East Flat Rock,NC,--3-----,RQ,9307,,3517N 08225W, +,US,ERL,Erlanger,Erlanger,KY,--3-----,RQ,9307,,3901N 08436W, +,US,ERO,Eldred Rock,Eldred Rock,AK,---4----,AI,0001,,5858N 13513W, +,US,ERQ,Eagle River,Eagle River,AK,--3-----,RQ,9307,,6119N 14934W, +,US,ERR,Errol,Errol,NH,---4----,AI,0001,,4447N 07108W, +,US,ERU,East Rutherford,East Rutherford,NJ,--3-----,RQ,9307,,4050N 07406W, +,US,ERV,Kerrville,Kerrville,TX,---4----,AI,9601,,3003N 09908W, +,US,ERW,Erwin,Erwin,TN,--3-----,RQ,9307,,3609N 08225W, +,US,ERZ,Erie,Erie,IL,--3-----,RQ,9307,,4139N 09005W, +,US,ESA,East Sparta,East Sparta,OH,--3-----,RQ,9307,,4040N 08121W, +,US,ESC,Escanaba,Escanaba,MI,1--4----,AI,0001,,4551N 08711W, +,US,ESD,Eastsound,Eastsound,WA,---4----,AI,0001,,4842N 12254W, +,US,ESF,Alexandria,Alexandria,LA,--34----,RQ,9008,,3119N 09227W, +,US,ESL,East Saint Louis,East Saint Louis,IL,--3-----,RQ,9307,,3838N 09010W, +,US,ESM,Esmond,Esmond,RI,--3-----,RQ,9307,,4152N 07130W, +,US,ESN,Easton,Easton,MD,--34----,AI,0001,,3846N 07605W, +,US,ESO,Espanola,Espanola,NM,---4----,AI,0001,,3559N 10605W, +,US,ESP,East Stroudsburg,East Stroudsburg,PA,---4----,AI,9601,,4060N 07511W, +,US,ESS,Essex Junction,Essex Junction,VT,--3-----,RQ,9307,,4429N 07307W, +,US,EST,Estherville,Estherville,IA,--34----,AI,9901,,4324N 09450W, +,US,ESW,Easton,Easton,WA,---4----,AI,0001,,4714N 12111W, +,US,ESX,Eddystone,Eddystone,PA,--3-----,RQ,9307,,3952N 07521W, +,US,ESY,East Syracuse,East Syracuse,NY,--3-----,RQ,9307,,4304N 07605W, +,US,ETA,East Los Angeles,East Los Angeles,CA,--3-----,RQ,9307,,3401N 11810W, +,US,ETB,West Bend,West Bend,WI,---4----,AI,9601,,4326N 08811W, +,US,ETC,Earth City,Earth City,MO,--3-----,RQ,9307,,3846N 09028W, +,US,ETJ,Eastchester,Eastchester,NY,--3-----,RQ,9307,,4058N 07348W, +,US,ETK,East Newark,East Newark,NJ,--3-----,RQ,9307,,4045N 07410W, +,US,ETL,East Longmeadow,East Longmeadow,MA,--3-----,RL,0005,,4204N 07231W, +,US,ETM,Easton,Easton,MA,--3-----,RQ,9307,,4201N 07108W, +,US,ETN,Eastland,Eastland,TX,---4----,AI,0001,,3224N 09849W, +,US,ETO,Etowah,Etowah,TN,--3-----,RQ,9307,,3519N 08431W, +,US,ETP,Eaton Rapids,Eaton Rapids,MI,--3-----,RQ,9307,,4231N 08439W, +,US,ETQ,Eaton,Eaton,CO,--3-----,RQ,9307,,4032N 10443W, +,US,ETS,Enterprise,Enterprise,AL,---4----,AI,9601,,3119N 08551W, +,US,ETX,Essington,Essington,PA,--3-----,RQ,9307,,3952N 07518W, +,US,ETY,East Liberty,East Liberty,OH,--3-----,RQ,9601,,4020N 08249W, +,US,EUC,Euclid,Euclid,OH,--3-----,RQ,9307,,4136N 08132W, +,US,EUE,Eureka,Eureka,NV,---4----,AI,0001,,3931N 11558W, +,US,EUF,Eufaula,Eufaula,AL,---4----,AI,9601,,3153N 08509W, +,US,EUG,Eugene,Eugene,OR,--34----,RQ,9008,,4403N 12306W, +,US,EUI,Emporium,Emporium,PA,--3-----,RQ,9307,,4131N 07814W, +,US,EUL,Eklutna,Eklutna,AK,--3-----,RQ,9307,,6127N 14922W, +,US,EUS,Eustis,Eustis,FL,--3-----,RQ,9307,,2851N 08141W, +,US,EVA,Evadale,Evadale,TX,---4----,AI,9601,,3021N 09404W, +,US,EVC,Evans City,Evans City,PA,--3-----,RQ,9307,,4046N 08004W, +,US,EVD,Evanston,Evanston,IL,--3-----,RQ,9307,,4203N 08741W, +,US,EVE,Ellisville,Ellisville,MS,--3-----,RQ,9307,,3136N 08912W, +,US,EVG,Evans,Evans,GA,--3-----,RQ,9008,,3331N 08208W, +,US,EVL,Evendale,Evendale,OH,--3-----,RQ,9307,,3915N 08425W, +,US,EVM,Eveleth,Eveleth,MN,---4----,AI,0001,,4728N 09232W, +,US,EVR,Evergreen,Evergreen,AL,--3-----,RQ,9008,,3126N 08657W, +,US,EVT,Everett,Everett,MA,--3-----,RQ,9307,,4225N 07103W, +,US,EVW,Evanston,Evanston,WY,---4----,AI,9601,,4116N 11058W, +,US,EWB,New Bedford-Fall River Apt,New Bedford-Fall River Apt,MA,1--4----,AI,9506,,4141N 07057W,"cf US FAV, US NBD" +,US,EWD,Englewood,Englewood,NJ,--3-----,RQ,9307,,4054N 07358W, +,US,EWE,Elwell,Elwell,MI,--3-----,RQ,9307,,4323N 08445W, +,US,EWF,Eden,Eden,WI,--3-----,RQ,9307,,4342N 08822W, +,US,EWH,Ewa Beach (Oahu),Ewa Beach (Oahu),HI,--3-----,RQ,9307,,2119N 15801W, +,US,EWI,Elwood,Elwood,IL,--3-----,RQ,9307,,4124N 08807W, +,US,EWJ,Erwin,Erwin,NC,--3-----,RQ,9307,,3520N 07841W, +,US,EWK,Newton,Newton,KS,---4----,AI,9601,,3803N 09721W, +,US,EWN,New Bern,New Bern,NC,--34----,AI,9601,,3507N 07703W, +,US,EWP,Elmwood Park,Elmwood Park,NJ,--3-----,RQ,9008,,4054N 07407W, +,US,EWQ,Elwood,Elwood,NJ,--3-----,RQ,9307,,3935N 07443W, +,US,EWS,East Windsor,East Windsor,NJ,--3-----,RQ,9307,,4016N 07432W, +,US,EWT,Ellsworth,Ellsworth,WA,--3-----,RQ,9307,,4537N 12234W, +,US,EWW,Elwood,Elwood,KS,--3-----,RQ,9307,,3945N 09452W, +,US,EWY,East Weymouth,East Weymouth,MA,--3-----,RQ,9307,,4213N 07055W, +,US,EXA,Exmore,Exmore,VA,--3-----,RQ,9307,,3732N 07549W, +,US,EXE,Exeter,Exeter,NH,--3-----,RQ,9307,,4259N 07057W, +,US,EXG,Evergreen,Evergreen,WA,--3-----,RQ,9307,,4744N 12220W, +,US,EXI,Excursion Inlet,Excursion Inlet,AK,---4----,AI,0001,,5825N 13526W, +,US,EXN,Exton,Exton,PA,--3-----,RQ,9307,,4002N 07537W, +,US,EXP,Exeter,Exeter,PA,--3-----,RQ,9307,,4119N 07549W, +,US,EXQ,Estacada,Estacada,OR,--3-----,RQ,9307,,4517N 12220W, +,US,EXT,Exeter,Exeter,CA,--3-----,RQ,9307,,3618N 11909W, +,US,EYP,Eynon,Eynon,PA,--3-----,RQ,9307,,4130N 07534W, +,US,EYR,Yerington,Yerington,NV,--34----,RQ,9601,,3859N 11910W, +,US,EYV,Eddyville,Eddyville,IA,--3-----,RQ,9307,,4109N 09238W, +,US,EYW,Key West,Key West,FL,1--4----,AI,0001,,2433N 08148W, +,US,EZA,Elizabeth,Elizabeth,NJ,--3-----,RQ,9307,,4040N 07413W, +,US,EZB,Elizabethton,Elizabethton,TN,--3-----,RQ,9307,,3621N 08213W, +,US,EZG,Eastman,Eastman,GA,--3-----,RQ,9307,,3212N 08311W, +,US,EZI,Ellsinore,Ellsinore,MO,--3-----,RQ,9307,,3656N 09045W, +,US,EZT,Elizabethtown,Elizabethtown,PA,--3-----,RQ,9307,,4009N 07636W, +,US,EZV,East Danville,East Danville,VA,--3-----,RQ,9307,,3907N 08343W, +,US,EZW,Elizabethtown,Elizabethtown,NC,--3-----,RQ,9307,,3438N 07836W, +,US,FAC,Falls Church,Falls Church,VA,--3-----,RL,9909,,3853N 07710W, +,US,FAE,Fairfield,Fairfield,TN,--3-----,RQ,9307,,3550N 08726W, +,US,FAF,Fort Eustis,Fort Eustis,VA,---4----,AI,0001,,3708N 07636W, +,US,FAG,Fairgrove,Fairgrove,MI,--3-----,RQ,9307,,4208N 08313W, +,US,FAH,Fairless Hills,Fairless Hills,PA,--3-----,RQ,9307,,4011N 07451W, +,US,FAI,Fairbanks,Fairbanks,AK,1--4----,AI,0001,,6450N 14740W, +,US,FAK,False Island,False Island,AK,---4----,AI,0001,,5622N 13338W, +,US,FAL,Roma,Roma,TX,---4----,AI,0001,,2624N 09901W, +,US,FAM,Farmington,Farmington,MO,---4----,AI,9601,,3747N 09025W, +,US,FAN,Fairmont,Fairmont,NC,--3-----,RQ,9307,,3430N 07907W, +,US,FAO,Fairfield,Fairfield,OH,--3-----,RQ,9307,,3921N 08434W, +,US,FAQ,Faulkner,Faulkner,MD,--3-----,RQ,9307,,3826N 07659W, +,US,FAR,Fargo,Fargo,ND,--34----,AI,9601,,4653N 09647W, +,US,FAS,Fallsington,Fallsington,PA,--3-----,RQ,9307,,4011N 07449W, +,US,FAT,Fresno,Fresno,CA,---4----,AI,0001,,3644N 11943W, +,US,FAW,Farwell,Farwell,TX,--3-----,RQ,9307,,3423N 10302W, +,US,FAX,Fairfield,Fairfield,TX,--3-----,RQ,9307,,3143N 09610W, +,US,FAY,Fayetteville,Fayetteville,NC,--34----,RQ,9008,,3503N 07853W, +,US,FBA,Fairborn,Fairborn,OH,--3-----,RQ,9307,,3949N 08401W, +,US,FBG,Fort Bragg,Fort Bragg,NC,---4----,AI,0001,,3508N 07909W, +,US,FBR,Fort Bridger,Fort Bridger,WY,---4----,AI,0001,,4119N 11024W, +,US,FBX,Farmers Branch,Farmers Branch,TX,--3-----,RQ,9307,,3256N 09654W, +,US,FBY,Fairbury,Fairbury,NE,---4----,AI,9601,,4008N 09711W, +,US,FCA,Kalispell,Kalispell,MT,--34----,AI,9601,,4812N 11419W, +,US,FCB,Frisco City,Frisco City,AL,--3-----,RQ,9307,,3126N 08724W, +!,US,FCH,Fitchville,Fitchville,CT,--3-----,RQ,9307,,4134N 07209W, +,US,FCI,Foster City,Foster City,CA,--3-----,RQ,9307,,3734N 12216W, +,US,FCK,Frisco,Frisco,PA,--3-----,RQ,9307,,4051N 08016W, +,US,FCL,Florence,Florence,CA,--3-----,RQ,9307,,3358N 11816W, +,US,FCN,Forest City,Forest City,NC,--3-----,RQ,9307,,3520N 08152W, +,US,FCO,Fort Covington,Fort Covington,NY,--3-----,RN,0105,,4459N 07430W, +,US,FCR,Fancher,Fancher,NY,--3-----,RQ,9008,,4315N 07805W, +!,US,FCT,Ford City,Ford City,PA,--3-----,RQ,9307,,4046N 07932W, +,US,FDA,Ferdinand,Ferdinand,IN,--3-----,RQ,9307,,3813N 08652W, +,US,FDD,Floydada,Floydada,TX,--3-----,RQ,9307,,3359N 10120W, +,US,FDJ,Fieldsboro,Fieldsboro,NJ,--3-----,RQ,9307,,4008N 07444W, +,US,FDL,Federalsburg,Federalsburg,MD,--3-----,RQ,9307,,3842N 07546W, +,US,FDO,Fredonia,Fredonia,AR,--3-----,RQ,9307,,3449N 09124W, +,US,FDR,Frederick,Frederick,OK,---4----,AI,9601,,3423N 09901W, +,US,FDU,Fridley,Fridley,MN,--3-----,RQ,9307,,4505N 09316W, +,US,FDW,Federal Way,Federal Way,WA,--3-----,RQ,9307,,4719N 12220W, +,US,FDY,Findlay,Findlay,OH,---4----,AI,9601,,4102N 08339W, +,US,FDZ,Flanders,Flanders,NJ,--3-----,RQ,9307,,4051N 07442W, +,US,FEA,Feasterville,Feasterville,PA,--3-----,RQ,9307,,4009N 07460W, +,US,FEE,Ferndale,Ferndale,MI,--3-----,RQ,9307,,4228N 08308W, +,US,FEH,Freehold,Freehold,NJ,--3-----,RQ,9307,,4016N 07416W, +,US,FEM,Fremont,Fremont,MI,--3-----,RQ,9307,,4328N 08557W, +,US,FEN,Freeland,Freeland,MI,--3-----,RQ,9307,,4332N 08407W, +,US,FEO,Fredonia,Fredonia,NY,--3-----,RQ,9307,,4226N 07920W, +,US,FEP,Freeport,Freeport,IL,---4----,AI,9601,,4218N 08937W, +,US,FER,Ferrysburg,Ferrysburg,MI,--3-----,RN,0105,,4305N 08613W, +,US,FET,Fremont,Fremont,NE,---4----,AI,9601,,4126N 09630W, +,US,FFA,Kill Devil Hills,Kill Devil Hills,NC,---4----,AI,0001,,3602N 07541W, +,US,FFB,Fairfield,Fairfield,AL,--3-----,RQ,9307,,3329N 08655W, +,US,FFD,Frankford,Frankford,PA,--3-----,RL,0101,,4002N 07505W, +,US,FFI,Fairfield,Fairfield,CT,--3-----,RQ,9307,,4108N 07316W, +,US,FFL,Fairfield,Fairfield,IA,---4----,AI,9601,,4100N 09158W, +,US,FFM,Fergus Falls,Fergus Falls,MN,--3-----,RL,0006,,4617N 09605W, +,US,FFR,Fairforest,Fairforest,SC,--3-----,RQ,9307,,3457N 08201W, +,US,FFT,Frankfort,Frankfort,KY,--34----,AI,9601,,3812N 08452W, +,US,FFX,Fairfax,Fairfax,AL,--3-----,RQ,9307,,3248N 08511W, +,US,FFY,Fairfield,Fairfield,NY,--3-----,RQ,9307,,4308N 07455W, +,US,FGF,Concord,Concord,VA,--3-----,RQ,0901,,3722N 07637W,More than one place with this name +,US,FGM,Frogmore,Frogmore,SC,--3-----,RQ,9307,,3224N 08035W, +,US,FGV,Forest Grove,Forest Grove,OR,--3-----,RQ,9307,,4531N 12307W, +,US,FHE,Fletcher,Fletcher,NC,--3-----,RQ,9307,,3526N 08230W, +,US,FHI,Farmington Hills,Farmington Hills,MI,--3-----,RQ,9307,,4229N 08323W, +,US,FHM,Framingham,Framingham,MA,--3-----,RQ,9307,,4217N 07125W, +,US,FHN,Frohna,Frohna,MO,--3-----,RL,0002,,3738N 08937W, +,US,FHP,Fair Hill,Fair Hill,PA,--3-----,RQ,9307,,4019N 07517W, +,US,FHU,Sierra Vista-Fort Huachuca Apt,Sierra Vista-Fort Huachuca Apt,AZ,---4----,AI,0001,,3135N 11021W, +,US,FID,Fishers Island,Fishers Island,NY,---4----,AI,0001,,4115N 07201W, +,US,FII,Filer,Filer,ID,--3-----,RQ,9307,,4234N 11436W, +,US,FIL,Fillmore,Fillmore,UT,---4----,AI,0001,,3858N 11219W, +,US,FIP,Five Points,Five Points,CA,--3-----,RQ,9307,,3503N 11831W, +,US,FIR,Firebaugh,Firebaugh,CA,--3-----,RQ,9307,,3652N 12027W, +,US,FIS,Fountain Inn,Fountain Inn,SC,--3-----,RQ,9008,,3441N 08212W, +,US,FIT,Fitchburg,Fitchburg,MA,--3-----,RQ,9307,,4235N 07148W, +,US,FIV,Five Finger,Five Finger,AK,---4----,AI,0001,,5716N 13338W, +,US,FJM,Freedom,Freedom,CA,--3-----,RQ,0901,,3656N 12148W, +,US,FKA,Franklin,Franklin,IN,--3-----,RQ,9307,,3929N 08603W, +,US,FKI,Franklin,Franklin,NH,--3-----,RQ,9307,,4327N 07139W, +,US,FKL,Franklin,Franklin,PA,---4----,AI,9601,,4124N 07950W, +,US,FKM,Frankenmuth,Frankenmuth,MI,--3-----,RQ,9307,,4321N 08347W, +,US,FKN,Franklin,Franklin,VA,---4----,AI,9601,,3641N 07655W, +,US,FKR,Frankfort,Frankfort,NY,--3-----,RQ,9601,,4302N 07504W, +,US,FKX,Fredericksburg,Fredericksburg,IA,--3-----,RQ,9307,,4258N 09212W, +,US,FKY,Florence,Florence,KY,--3-----,RQ,9307,,3860N 08438W, +,US,FLA,Fairfield,Fairfield,NJ,--3-----,RQ,9008,,4012N 07413W, +,US,FLB,Flowery Branch,Flowery Branch,GA,--3-----,RQ,9307,,3411N 08356W, +,US,FLD,Fond du Lac,Fond du Lac,WI,---4----,AI,9601,,4346N 08827W, +,US,FLE,Flemington,Flemington,NJ,--3-----,RQ,9307,,4031N 07452W, +,US,FLG,Flagstaff,Flagstaff,AZ,---4----,AI,9601,,3512N 11139W, +,US,FLH,Franklin,Franklin,OH,--3-----,RQ,9307,,3934N 08418W, +,US,FLI,Franklin Park,Franklin Park,IL,--3-----,RQ,9307,,4156N 08752W, +,US,FLK,Franklin,Franklin,KY,--3-----,RQ,9307,,3643N 08635W, +,US,FLM,Florence,Florence,MA,--3-----,RQ,9307,,4220N 07240W, +,US,FLN,Franklin,Franklin,MA,--3-----,RQ,9307,,4205N 07124W, +,US,FLO,Florence,Florence,SC,--34----,RQ,9008,,3412N 07946W, +,US,FLP,Floral Park,Floral Park,NY,--3-----,RQ,9501,,4043N 07342W, +,US,FLR,Florence,Florence,NJ,--3-----,RQ,9307,,3944N 07455W, +,US,FLS,Foley,Foley,FL,--3-----,RQ,9307,,3004N 08332W, +,US,FLT,Flat,Flat,AK,---4----,AI,0001,,6226N 15804W, +,US,FLU,Flushing Apt/New York,Flushing Apt/New York,NY,---4----,AI,0201,,4047N 07350W, +,US,FLV,Fort Leavenworth,Fort Leavenworth,KS,---4----,AI,9601,,3921N 09455W, +!,US,FLX,Florence,Florence,TX,--3-----,RQ,9307,,3050N 09748W, +,US,FLY,Fair Lawn,Fair Lawn,NJ,--3-----,RQ,9307,,4056N 07408W, +,US,FMB,Flemingsburg,Flemingsburg,KY,--3-----,RQ,0101,,3825N 08344W, +,US,FMC,Five Mile,Five Mile,AK,---4----,AI,0001,,3659N 09442W, +,US,FME,Fort Meade,Fort Meade,MD,--34----,AI,1807,,3906N 07644W, +,US,FMF,Farmington,Farmington,CT,--3-----,RQ,9307,,4143N 07250W, +,US,FMG,Fort Morgan,Fort Morgan,CO,--3-----,RQ,9307,,4015N 10348W, +,US,FMH,Falmouth,Falmouth,MA,---4----,AI,0001,,4133N 07037W, +,US,FMI,Farmington,Farmington,MI,--3-----,RQ,9008,,4229N 08323W, +,US,FMN,Farmington,Farmington,NM,--34----,AI,9601,,3644N 10812W, +,US,FMO,Fillmore,Fillmore,NY,--3-----,RQ,9307,,4228N 07807W, +,US,FMQ,Farmington,Farmington,ME,--3-----,RQ,9307,,4440N 07009W, +,US,FMS,Fort Madison,Fort Madison,IA,---4----,AI,9601,,4038N 09119W, +,US,FMV,Farmville,Farmville,VA,--3-----,RQ,9008,,3718N 07824W, +,US,FNC,Fremont,Fremont,CA,--3-----,RQ,9307,,3733N 12159W, +,US,FNI,Floyds Knobs,Floyds Knobs,IN,--3-----,RQ,9307,,3819N 08552W, +,US,FNL,Fort Collins,Fort Collins,CO,---4----,AI,9307,,4035N 10505W, +,US,FNM,Fenton,Fenton,MO,--3-----,RQ,9307,,3831N 09026W, +,US,FNN,Franklin,Franklin,NJ,--3-----,RQ,9008,,4107N 07435W, +,US,FNT,Flint,Flint,MI,--34----,AI,9601,,4301N 08341W, +,US,FNX,Forney,Forney,TX,--3-----,RQ,9307,,3245N 09628W, +,US,FOA,Florida,Florida,NY,--3-----,RQ,9307,,4253N 07412W, +,US,FOB,Fort Bragg,Fort Bragg,CA,1--4----,AI,0001,,3927N 12349W, +,US,FOD,Fort Dodge,Fort Dodge,IA,--34----,AI,9601,,4230N 09411W, +!,US,FOE,Forestville,Forestville,CT,--3-----,RQ,9307,,4141N 07255W, +,US,FOG,Fogelsville,Fogelsville,PA,--3-----,RQ,9307,,4035N 07538W, +,US,FOI,Flora,Flora,IN,--3-----,RQ,9307,,4033N 08631W, +,US,FOJ,Folsom,Folsom,LA,--3-----,RQ,9307,,3038N 09011W, +,US,FOK,Westhampton,Westhampton,NY,---4----,AI,0001,,4049N 07239W, +,US,FOL,Fort Lee,Fort Lee,NJ,--3-----,RQ,9307,,4051N 07358W, +,US,FOO,Follansbee,Follansbee,WV,--3-----,RQ,9307,,4018N 08036W, +,US,FOP,Forest Park,Forest Park,GA,---4----,AI,9601,,3337N 08422W, +,US,FOR,Fallbrook,Fallbrook,CA,--3-----,RQ,9506,,3323N 11715W, +,US,FOS,Fair Oaks,Fair Oaks,CA,--3-----,RQ,9307,,3839N 12115W, +,US,FOT,Florissant,Florissant,MO,--3-----,RQ,9307,,3848N 09019W, +,US,FOU,Folsom,Folsom,CA,--3-----,RQ,9307,,3841N 12111W, +,US,FOV,Forty Fort,Forty Fort,PA,--3-----,RQ,9307,,4117N 07553W, +,US,FOW,Fowler,Fowler,CA,--3-----,RQ,9307,,3638N 11941W, +,US,FOX,Fox,Fox,AK,---4----,AI,0001,,6458N 14736W, +,US,FOZ,Fox River Grove,Fox River Grove,IL,--3-----,RQ,9307,,4212N 08813W, +,US,FPA,Forest Park,Forest Park,IL,--3-----,RQ,9307,,4153N 08749W, +,US,FPN,Fort Payne,Fort Payne,AL,--3-----,RQ,9307,,3427N 08543W, +,US,FPO,Freeport,Freeport,TX,1-3-----,RN,0105,,2857N 09522W, +,US,FPR,Fort Pierce,Fort Pierce,FL,1--4----,AI,0001,,2727N 08020W, +,US,FPY,Perry,Perry,FL,---4----,AI,9601,,3007N 08335W, +,US,FQL,Franklin,Franklin,NC,--3-----,RQ,9307,,3511N 08323W, +,US,FQP,Frank,Frank,PA,--3-----,RQ,9307,,3833N 07948W, +,US,FQR,Frank,Frank,WV,--3-----,RQ,9307,,3833N 07948W, +,US,FQV,Franklinville,Franklinville,NJ,--3-----,RQ,9307,,3937N 07505W, +,US,FRA,Franklinville,Franklinville,NC,--3-----,RL,9805,,3545N 07942W, +,US,FRD,Friday Harbor,Friday Harbor,WA,---4----,AI,0001,,4832N 12301W, +,US,FRF,Friendship,Friendship,NC,--3-----,RQ,9307,,3619N 08016W, +,US,FRG,Farmingdale,Farmingdale,NY,---4----,AI,9601,,4044N 07327W, +,US,FRH,French Lick,French Lick,IN,---4----,AI,0001,,3833N 08637W, +,US,FRI,Fort Riley,Fort Riley,KS,---4----,AI,9601,,3907N 09649W, +,US,FRJ,Friant,Friant,CA,--3-----,RQ,0101,,3659N 11943W, +,US,FRL,Franklin Lakes,Franklin Lakes,NJ,--3-----,RL,0004,,4101N 07412W, +,US,FRM,Fairmont,Fairmont,MN,---4----,AI,9601,,4339N 09428W, +,US,FRN,Fort Richardson,Fort Richardson,AK,---4----,AI,0001,,6114N 14936W, +,US,FRQ,Frankfort,Frankfort,IN,--3-----,RQ,9307,,4017N 08631W, +,US,FRR,Front Royal,Front Royal,VA,---4----,AI,9601,,3855N 07812W, +,US,FRU,Frostproof,Frostproof,FL,--3-----,RQ,9307,,2745N 08132W, +,US,FRV,Farmville,Farmville,NC,--3-----,RQ,9307,,3536N 07735W, +,US,FRX,Freeport,Freeport,NY,--3-----,RQ,9307,,4039N 07335W, +,US,FRY,Fryeburg,Fryeburg,ME,---4----,AI,0001,,4401N 07059W, +,US,FRZ,Frazer,Frazer,PA,--3-----,RQ,9307,,4002N 07533W, +,US,FSA,Franconia,Franconia,PA,--3-----,RQ,9307,,4018N 07522W, +,US,FSC,Frisco,Frisco,CO,--3-----,RQ,9307,,3934N 10606W, +,US,FSD,Sioux Falls,Sioux Falls,SD,---4----,AI,9601,,4333N 09644W, +,US,FSI,Fort Sill,Fort Sill,OK,--34----,AI,1601,,3442N 09830W, +,US,FSL,Forest Lake,Forest Lake,MN,--3-----,RQ,9307,,4517N 09259W, +,US,FSN,Fort Sheridan,Fort Sheridan,IL,---4----,AI,0001,,4213N 08749W, +,US,FSO,Fostoria,Fostoria,OH,--3-----,RQ,9307,,4109N 08325W, +,US,FSR,Franklin Square,Franklin Square,NY,--3-----,RQ,9307,,4042N 07341W, +,US,FSU,Fort Sumner,Fort Sumner,NM,--34----,AI,9901,,3428N 10415W, +,US,FTG,Fort Gaines,Fort Gaines,GA,--3-----,RQ,9307,,3136N 08503W, +,US,FTI,Forest,Forest,MS,--3-----,RQ,9307,,3222N 08928W, +,US,FTJ,Frackville,Frackville,PA,--3-----,RQ,9307,,4047N 07614W, +,US,FTK,Fort Knox,Fort Knox,KY,--34----,AI,1307,,3754N 08554W, +,US,FTQ,Fortuna,Fortuna,CA,--3-----,RQ,9307,,4036N 12409W, +,US,FTV,Fort Valley,Fort Valley,GA,--3-----,RQ,9307,,3233N 08353W, +,US,FTW,Forest View,Forest View,IL,--3-----,RL,0006,,4149N 08747W, +,US,FTX,Friona,Friona,TX,--3-----,RQ,9307,,3438N 10243W, +,US,FTY,Filer City,Filer City,MI,--3-----,RQ,9307,,4413N 08617W, +,US,FTZ,Fulton,Fulton,MS,--3-----,RQ,9307,,3416N 08825W, +,US,FUH,Flushing,Flushing,MI,--3-----,RQ,9307,,4305N 08352W, +,US,FUN,Fulton,Fulton,NY,--3-----,RQ,9307,,4234N 07427W, +,US,FUT,Fulton,Fulton,MO,--3-----,RQ,9307,,3851N 09157W, +,US,FVH,Fairhaven,Fairhaven,MA,--3-----,RQ,9307,,4138N 07054W, +,US,FVI,Fairview,Fairview,OR,--3-----,RQ,9307,,4532N 12227W, +,US,FVL,Forestville,Forestville,MD,--3-----,RQ,9307,,3851N 07652W, +,US,FVW,Franksville,Franksville,WI,--3-----,RQ,9307,,4246N 08755W, +,US,FWB,Fort Walton Beach,Fort Walton Beach,FL,--3-----,RQ,9307,,3024N 08637W, +,US,FWD,Flowood,Flowood,MS,--3-----,RQ,9307,,3219N 09008W, +,US,FWE,Fernwood,Fernwood,ID,--3-----,RQ,9307,,4707N 11624W, +,US,FWJ,Fanwood,Fanwood,NJ,--3-----,RQ,9307,,4038N 07423W, +,US,FWL,Farewell,Farewell,AK,---4----,AI,0001,,6233N 15337W, +,US,FWP,Fleetwood,Fleetwood,PA,--3-----,RQ,9307,,4027N 07549W, +,US,FWR,Fort Wright,Fort Wright,KY,--3-----,RQ,9307,,3903N 08432W, +,US,FWT,Fort Worth,Fort Worth,TX,-234----,RL,0003,DFW,3245N 09720W,Apt cf US DFW +,US,FWY,Fort Washington,Fort Washington,MD,--3-----,RQ,9307,,3844N 07659W, +,US,FWZ,Green Town,Green Town,IN,1-3-----,RQ,0901,,3324N 08021W, +,US,FXB,Foxboro,Foxboro,MA,--3-----,RQ,9307,,4205N 07115W, +,US,FXC,Foxcroft,Foxcroft,PA,--3-----,RQ,9307,,3960N 07521W, +,US,FXG,Fredericksburg,Fredericksburg,TX,--3-----,RQ,9307,,3017N 09852W, +,US,FXM,Flaxman Island,Flaxman Island,AK,---4----,AI,0001,,7011N 14603W, +,US,FXN,Fallon,Fallon,CA,--3-----,RQ,9307,,3816N 12254W, +,US,FXX,Fairfax,Fairfax,VA,--3-----,RQ,9501,,3851N 07718W, +,US,FXY,Forest City,Forest City,IA,---4----,AI,9601,,4316N 09338W, +,US,FYC,Five Corners,Five Corners,WA,--3-----,RQ,9307,,4541N 12234W, +,US,FYD,Felida,Felida,WA,--3-----,RQ,9307,,4543N 12242W, +,US,FYM,Fayetteville,Fayetteville,TN,---4----,AI,9601,,3509N 08634W, +,US,FYR,Fernley,Fernley,NV,--3-----,RQ,9307,,3936N 11915W, +,US,FYT,Fayette,Fayette,AL,--3-----,RQ,9307,,3341N 08750W, +,US,FYU,Fort Yukon,Fort Yukon,AK,---4----,AI,9601,,6635N 14516W, +,US,FYV,Fayetteville,Fayetteville,AR,--34----,RQ,9008,,3604N 09409W, +,US,FZG,Fitzgerald,Fitzgerald,GA,--3-----,RQ,9307,,3143N 08315W, +,US,FZN,Flinton,Flinton,PA,--3-----,RQ,0901,,4043N 07831W, +,US,FZO,Faison,Faison,NC,--3-----,RQ,9307,,3507N 07808W, +,US,FZR,Fisher,Fisher,WA,--3-----,RQ,9307,,4610N 12303W, +,US,FZY,Fraser,Fraser,NY,--3-----,RQ,9307,,4215N 07458W, +,US,G2M,Gambrills,Gambrills,MD,-----6--,RQ,0901,,3906N 07639W, +,US,GAB,Gabbs,Gabbs,NV,---4----,AI,9601,,3852N 11756W, +,US,GAC,Gardena,Gardena,CA,--3-----,RQ,9307,,3353N 11818W, +,US,GAD,Gadsden,Gadsden,AL,--34----,AI,9601,,3401N 08600W, +,US,GAF,Garfield,Garfield,NJ,--3-----,RQ,9307,,4053N 07407W, +,US,GAK,Gakona,Gakona,AK,---4----,AI,0001,,6220N 14517W, +,US,GAL,Galena,Galena,AK,---4----,AI,9601,,6445N 15651W, +,US,GAM,Gambell,Gambell,AK,---4----,AI,0001,,6347N 17144W, +,US,GAN,Gallatin,Gallatin,TN,--3-----,RQ,9307,,3623N 08627W, +,US,GAP,Gallipolis,Gallipolis,OH,--3-----,RQ,9501,,3849N 08212W, +,US,GAR,Garden City,Garden City,NJ,--3-----,RQ,9307,,3946N 07504W, +,US,GAT,Gaston,Gaston,SC,--3-----,RQ,9307,,3349N 08106W, +,US,GAV,Gassville,Gassville,AR,--3-----,RQ,9307,,3617N 09230W, +,US,GAW,Glendale,Glendale,MD,--3-----,RQ,9307,,3923N 07635W, +,US,GAX,Garrison,Garrison,MD,--3-----,RQ,9307,,3924N 07645W, +,US,GAY,Gaylord,Gaylord,MN,--3-----,RQ,9307,,4433N 09413W, +,US,GBA,Globe,Globe,AZ,--3-----,RQ,9008,,3324N 11047W, +,US,GBB,Gibbsboro,Gibbsboro,NJ,--3-----,RQ,9307,,3950N 07458W, +,US,GBD,Great Bend,Great Bend,KS,---4----,AI,9601,,3822N 09847W, +,US,GBG,Galesburg,Galesburg,IL,--34----,AI,9601,,4057N 09022W, +,US,GBM,Glen Burnie,Glen Burnie,MD,--3-----,RQ,9307,,3910N 07637W, +,US,GBO,Greensboro,Greensboro,NC,--3-----,RN,0106,,3604N 07948W, +,US,GBR,Great Barrington,Great Barrington,MA,---4----,AI,0001,,4212N 07322W, +,US,GBT,Gainesboro,Gainesboro,TN,--3-----,RQ,9307,,3621N 08540W, +,US,GBU,Grantsburg,Grantsburg,WI,--3-----,RQ,0002,,4546N 09244W, +,US,GBY,Granbury,Granbury,TX,--3-----,RQ,9307,,3227N 09747W, +,US,GCC,Gillette,Gillette,WY,--34----,AI,9601,,4417N 10530W, +,US,GCD,Glen Allen,Glen Allen,MD,--3-----,RQ,9307,,3719N 09002W, +,US,GCE,Grace,Grace,SC,--3-----,RQ,9307,,3442N 08051W, +,US,GCG,Garden City,Garden City,GA,--3-----,RQ,9307,,3207N 08109W, +,US,GCH,Gerlach,Gerlach,NV,--3-----,RQ,0101,,4039N 11921W, +,US,GCI,Gas City,Gas City,IN,--3-----,RL,9912,,4029N 08537W, +,US,GCK,Garden City,Garden City,KS,---4----,AI,9601,,3758N 10052W, +,US,GCP,Green Springs,Green Springs,OH,--3-----,RQ,9307,,4115N 08303W, +,US,GCS,Green Cove Springs,Green Cove Springs,FL,--3-----,RQ,9307,,2960N 08141W, +,US,GCT,Gilcrest,Gilcrest,CO,--3-----,RQ,9307,,4017N 10447W, +,US,GCV,Graceville,Graceville,FL,--3-----,RQ,9307,,3057N 08531W, +,US,GDA,Glendale,Glendale,AZ,--3-----,RQ,9008,,3332N 11211W, +,US,GDE,Gladstone,Gladstone,MI,--3-----,RQ,9307,,4551N 08701W, +,US,GDF,Godfrey,Godfrey,IL,--3-----,RL,0002,,3857N 09011W, +,US,GDG,Grand Ledge,Grand Ledge,MI,--3-----,RL,0006,,4245N 08445W, +,US,GDL,Glendale,Glendale,NY,--3-----,RQ,9307,,4042N 07353W, +,US,GDM,Gardner,Gardner,MA,---4----,AI,0001,,4235N 07160W, +,US,GDN,Gardiner,Gardiner,ME,--3-----,RQ,9601,,4414N 06946W, +,US,GDO,Golden,Golden,MS,--3-----,RQ,9506,,3429N 08811W, +,US,GDP,Grand Prairie,Grand Prairie,TX,--3-----,RQ,9307,,3245N 09660W, +,US,GDQ,Glendora,Glendora,CA,--3-----,RQ,9307,,3408N 11752W, +,US,GDR,Gardiner,Gardiner,OR,1-3-----,RN,0105,,4344N 12407W, +,US,GDT,Goodlettsville,Goodlettsville,TN,--3-----,RQ,9307,,3619N 08643W, +,US,GDV,Glendive,Glendive,MT,---4----,AI,0001,,4706N 10443W, +,US,GDW,Gladwin,Gladwin,MI,---4----,AI,0001,,4402N 08426W, +,US,GDZ,Gardner,Gardner,KS,--3-----,RQ,9307,,3849N 09456W, +,US,GED,Georgetown,Georgetown,DE,---4----,AI,0001,,3841N 07523W, +,US,GEE,Glendale,Glendale,WI,--3-----,RQ,9307,,4308N 08756W, +,US,GEF,Glenford,Glenford,OH,--3-----,RQ,9307,,3953N 08219W, +,US,GEG,Spokane,Spokane,WA,---4----,AI,9601,,4739N 11725W, +,US,GEK,Ganes Creek,Ganes Creek,AK,---4----,AI,0001,,6305N 15626W, +,US,GEL,Glen Ellyn,Glen Ellyn,IL,--3-----,RQ,9806,,4153N 08804W, +,US,GEN,Geneva,Geneva,NY,--3-----,RQ,9307,,4252N 07659W, +,US,GEO,Georgetown,Georgetown,KY,--3-----,RQ,9307,,3813N 08434W, +,US,GEQ,Georgetown,Georgetown,FL,--3-----,RQ,9307,,2923N 08138W, +,US,GER,Georgetown,Georgetown,GA,--3-----,RQ,9307,,3153N 08506W, +,US,GEU,Glen Allen,Glen Allen,VA,--3-----,RQ,9307,,3740N 07730W, +,US,GEV,Geneva,Geneva,NE,--3-----,RQ,0101,,4032N 09736W, +,US,GEW,Georgetown,Georgetown,WA,--3-----,RQ,9307,,4733N 12220W, +,US,GEY,Greybull,Greybull,WY,---4----,AI,0001,,4429N 10803W, +!,US,GFA,Granite Falls,Granite Falls,NC,--3-----,RQ,9307,,3548N 08126W, +,US,GFC,Greenfield,Greenfield,CA,--3-----,RQ,9307,,3619N 12115W, +,US,GFD,Greenfield,Greenfield,IN,---4----,AI,0001,,3947N 08546W, +,US,GFE,Gallipolis Ferry,Gallipolis Ferry,WV,--3-----,RQ,9307,,3846N 08212W, +,US,GFH,Greenfield,Greenfield,MO,--3-----,RQ,9307,,3725N 09350W, +,US,GFI,Griffin,Griffin,TX,--3-----,RQ,9307,,3202N 09505W, +,US,GFK,Grand Forks,Grand Forks,ND,--34----,AI,9601,,4756N 09702W, +,US,GFL,Glens Falls,Glens Falls,NY,---4----,AI,9601,,4319N 07339W, +,US,GFN,Grafton,Grafton,WI,--3-----,RQ,9307,,4319N 08754W, +,US,GFO,Grafton,Grafton,OH,--3-----,RQ,9307,,4116N 08203W, +,US,GFQ,Grove,Grove,OK,--3-----,RQ,9307,,3635N 09446W, +,US,GFT,Grafton,Grafton,ND,--3-----,RQ,9307,,4825N 09725W, +,US,GFV,Grandview,Grandview,WA,--3-----,RQ,9307,,4615N 11954W, +,US,GGA,Georgia,Georgia,VT,--3-----,RQ,9307,,4443N 07309W, +,US,GGE,Georgetown,Georgetown,SC,1--4----,AI,0001,,3323N 07918W, +,US,GGH,Greenville,Greenville,OH,--3-----,RQ,9307,,4006N 08438W, +,US,GGO,Gouldsboro,Gouldsboro,PA,--3-----,RQ,9307,,4115N 07527W, +,US,GGS,Glasgow,Glasgow,MO,--3-----,RQ,9307,,3914N 09251W, +!,US,GGW,Glasgow,Glasgow,DE,--3-----,RQ,9307,,3936N 07544W, +,US,GGY,Gay,Gay,GA,--3-----,RQ,1001,,3306N 08434W, +,US,GGZ,Gig Harbor,Gig Harbor,WA,--3-----,RQ,9307,,4720N 12235W, +,US,GHH,Gorham,Gorham,ME,--3-----,RQ,9307,,4341N 07027W, +,US,GHL,Granada Hills,Granada Hills,CA,--3-----,RQ,9307,,3416N 11831W, +,US,GHM,Centerville,Centerville,TN,---4----,AI,0001,,3547N 08728W, +,US,GHN,Grand Haven,Grand Haven,MI,1-3-----,RN,0105,,4304N 08614W, +,US,GHO,Gresham,Gresham,OR,--3-----,RQ,9307,,4530N 12226W, +,US,GHZ,Garfield Heights,Garfield Heights,OH,--3-----,RQ,9307,,4125N 08136W, +,US,GIA,Greenfield,Greenfield,IA,--3-----,RQ,9008,,4118N 09428W, +,US,GIF,Winter Haven,Winter Haven,FL,---4----,AI,9601,,2801N 08144W, +,US,GIG,Guild,Guild,TN,--3-----,RQ,9307,,3057N 10253W, +,US,GIJ,Grand Isle,Grand Isle,LA,--3-----,RQ,9307,,2914N 08959W, +,US,GIL,Gillette,Gillette,NJ,--3-----,RQ,9501,,4040N 07428W, +,US,GIM,Green Isle,Green Isle,MN,--3-----,RQ,9307,,4441N 09400W, +,US,GIR,Gilroy,Gilroy,CA,--3-----,RQ,9307,,3700N 12134W, +,US,GIW,Grinnell,Grinnell,IA,--3-----,RQ,9307,,4145N 09243W, +,US,GIX,Gilmer,Gilmer,TX,--3-----,RQ,9307,,3244N 09457W, +,US,GIY,Gainesville,Gainesville,MO,--3-----,RQ,9307,,3636N 09226W, +,US,GIZ,Gibson,Gibson,PA,--3-----,RQ,9307,,4008N 07960W, +,US,GJC,Genesee,Genesee,WI,--3-----,RQ,9307,,4258N 08822W, +,US,GJD,Gardner,Gardner,IL,--3-----,RQ,0607,,4111N 08819W, +,US,GJJ,Gibsonia,Gibsonia,PA,--3-----,RQ,9307,,4038N 07958W, +,US,GJM,Grimes,Grimes,IA,--3-----,RQ,9307,,4141N 09347W, +,US,GJT,Grand Junction,Grand Junction,CO,--34----,RQ,9008,,3904N 10834W, +,US,GKA,Granville,Granville,IA,--3-----,RQ,0901,,4259N 09552W, +,US,GKD,Garland,Garland,NC,--3-----,RQ,0901,,3447N 07824W, +,US,GKN,Gulkana,Gulkana,AK,---4----,AI,0001,,6212N 14527W, +,US,GKT,Gatlinburg,Gatlinburg,TN,---4----,AI,0001,,3543N 08331W, +,US,GLC,Gloucester City,Gloucester City,NJ,1-3-----,RN,0105,,3954N 07507W, +,US,GLD,Goodland,Goodland,KS,---4----,AI,9601,,3921N 10143W, +,US,GLH,Greenville,Greenville,MS,1--4----,AI,0001,,3325N 09104W, +,US,GLJ,Goldston,Goldston,NC,--3-----,RQ,9307,,3536N 07920W, +,US,GLK,Glen Rock,Glen Rock,NJ,--3-----,RQ,9307,,4058N 07408W, +,US,GLL,Glastonbury,Glastonbury,CT,--3-----,RQ,9307,,4143N 07236W, +,US,GLM,Glenbrook,Glenbrook,CT,--3-----,RQ,9307,,4104N 07332W, +,US,GLN,Glen Cove,Glen Cove,NY,--3-----,RQ,9307,,4052N 07338W, +,US,GLO,Gloucester,Gloucester,MA,1-3-----,RN,0105,,4237N 07040W, +,US,GLQ,Glennallen,Glennallen,AK,---4----,AI,9601,,6206N 14532W, +!,US,GLR,Glassboro,Glassboro,NJ,--3-----,RQ,9307,,3942N 07507W, +,US,GLS,Galveston,Galveston,TX,1--4----,AI,0001,,2918N 09448W, +,US,GLT,Greenbelt,Greenbelt,MD,--3-----,RQ,9601,,3900N 07653W, +,US,GLU,Gloster,Gloster,MS,--3-----,RQ,9307,,3112N 09101W, +,US,GLV,Golovin,Golovin,AK,---4----,AI,0001,,6434N 16260W, +,US,GLW,Glasgow,Glasgow,KY,---4----,AI,9601,,3660N 08555W, +,US,GLX,Galax,Galax,VA,--3-----,RQ,9307,,3640N 08055W, +,US,GLY,Glen Rose,Glen Rose,TX,--3-----,RQ,9307,,3214N 09745W, +,US,GLZ,Gleason,Gleason,TN,--3-----,RQ,9307,,3613N 08837W, +,US,GMN,Germantown,Germantown,WI,--3-----,RQ,9307,,4314N 08807W, +,US,GMR,Graham,Graham,NC,--3-----,RQ,9307,,3604N 07924W, +,US,GMX,Gallman,Gallman,MS,--3-----,RQ,9307,,3156N 09023W, +,US,GNA,Greenwich,Greenwich,VA,--3-----,RQ,9307,,3845N 07739W, +,US,GNB,Grant,Grant,NE,--3-----,RQ,9307,,4051N 10144W, +,US,GND,Gnadenhutten,Gnadenhutten,OH,--3-----,RQ,9307,,4022N 08126W, +,US,GNE,Glenolden,Glenolden,PA,--3-----,RL,0004,,3954N 07517W, +,US,GNF,Greenfield,Greenfield,OH,--3-----,RQ,9307,,3921N 08323W, +,US,GNG,Gooding,Gooding,ID,---4----,AI,9601,,4256N 11443W, +,US,GNH,Greenfield,Greenfield,MA,--3-----,RQ,9307,,4235N 07236W, +,US,GNI,Geneva,Geneva,IL,--3-----,RQ,9008,,4153N 08818W, +,US,GNK,Great Neck,Great Neck,NY,--3-----,RQ,0002,,4048N 07344W, +,US,GNL,Greenland,Greenland,NH,--3-----,RQ,9307,,4302N 07050W, +,US,GNM,Greenville,Greenville,MI,--3-----,RQ,9307,,4311N 08515W, +,US,GNN,Greenland,Greenland,TN,--3-----,RQ,9307,,3630N 08247W, +,US,GNO,Greensboro,Greensboro,GA,--3-----,RQ,9307,,3335N 08311W, +,US,GNP,Greenville,Greenville,PA,--3-----,RQ,9307,,4124N 08023W, +,US,GNT,Grants,Grants,NM,---4----,AI,0001,,3509N 10751W, +,US,GNU,Goodnews Bay,Goodnews Bay,AK,---4----,AI,0001,,5908N 16135W, +,US,GNV,Gainesville,Gainesville,FL,--34----,AI,9601,,2939N 08219W, +!,US,GNY,Greenville,Greenville,NY,--3-----,RQ,9307,,4122N 07437W, +,US,GNZ,Gonzales,Gonzales,LA,--3-----,RQ,9307,,3014N 09055W, +,US,GOD,Godwin,Godwin,NC,--3-----,RQ,9307,,3513N 07841W, +,US,GOE,Golden,Golden,CO,--3-----,RQ,9307,,3945N 10513W, +,US,GOI,Genoa,Genoa,IL,--3-----,RQ,9307,,4206N 08842W, +,US,GOK,Guthrie,Guthrie,OK,---4----,AI,0001,,3553N 09726W, +,US,GOL,Gold Beach,Gold Beach,OR,--34----,AI,9506,,4224N 12425W, +,US,GON,New London-Groton Apt,New London-Groton Apt,CT,1-34----,AI,2101,,4120N 07203W, +,US,GOR,Gordon,Gordon,GA,--3-----,RQ,9008,,3253N 08320W, +,US,GOS,Goshen,Goshen,AL,--3-----,RQ,9307,,3143N 08607W, +,US,GOT,Groton,Groton,MA,--3-----,RQ,9307,,4237N 07134W, +,US,GOU,Goulds,Goulds,FL,--3-----,RQ,9307,,2534N 08023W, +,US,GOV,Gordonsville,Gordonsville,TN,--3-----,RQ,9307,,3610N 08556W, +,US,GPE,Gardners,Gardners,PA,--3-----,RQ,9307,,4000N 07712W, +,US,GPK,Galena Park,Galena Park,TX,--3-----,RQ,9307,,2944N 09514W, +,US,GPL,Grapeland,Grapeland,TX,--3-----,RQ,9307,,3130N 09529W, +,US,GPT,Gulfport,Gulfport,MS,1--4----,AI,0001,,3022N 08906W, +,US,GPU,Gypsum,Gypsum,OH,--3-----,RQ,9307,,4130N 08253W, +,US,GPX,Glassport,Glassport,PA,--3-----,RQ,9307,,4019N 07954W, +,US,GPZ,Grand Rapids,Grand Rapids,MN,---4----,AI,9601,,4714N 09332W, +,US,GQA,Gardendale,Gardendale,AL,--3-----,RQ,0901,,3340N 08649W, +,US,GRA,Grand Portage,Grand Portage,MN,1-3-----,RN,0105,,4759N 08943W, +,US,GRD,Greenwood,Greenwood,SC,--34----,AI,9601,,3412N 08210W, +,US,GRE,Greenville,Greenville,IL,---4----,AI,9601,,3854N 08925W, +,US,GRG,Gray,Gray,ME,--3-----,RQ,9307,,4353N 07020W, +,US,GRH,Greenwich,Greenwich,CT,--3-----,RQ,9008,,4102N 07338W, +,US,GRI,Grand Island,Grand Island,NE,--34----,AI,9601,,4055N 09820W, +!,US,GRK,Grant Park,Grant Park,IL,--3-----,RQ,9307,,4115N 08739W, +,US,GRL,Great Lakes,Great Lakes,IL,--3-----,RQ,9307,,4219N 08751W, +,US,GRM,Grand Marais,Grand Marais,MN,---4----,AI,0001,,4745N 09020W, +,US,GRN,Greenville,Greenville,AL,--3-----,RL,0001,,3150N 08637W, +,US,GRO,Grove City,Grove City,PA,--3-----,RQ,9307,,4109N 08005W, +,US,GRP,Greencastle,Greencastle,PA,--3-----,RQ,9307,,3947N 07744W, +,US,GRQ,Graham,Graham,WA,--3-----,RQ,9307,,4702N 12217W, +,US,GRR,Grand Rapids,Grand Rapids,MI,1--4----,AI,0001,,4258N 08540W, +,US,GRS,Greensburg,Greensburg,IN,--3-----,RQ,9307,,3920N 08529W, +,US,GRT,Groveton,Groveton,NH,--3-----,RQ,0002,,4436N 07131W, +,US,GRU,Grundy Center,Grundy Center,IA,--3-----,RQ,9307,,4222N 09246W, +,US,GRW,Greenwich,Greenwich,NY,--3-----,RN,0105,,4305N 07330W, +,US,GRX,Garland,Garland,TX,--3-----,RQ,9307,,3255N 09638W, +,US,GRY,Gramercy,Gramercy,LA,1-3-----,RN,0105,,3003N 09041W, +,US,GRZ,Griffin,Griffin,GA,--3-----,RQ,9307,,3315N 08416W, +,US,GSB,Goldsboro,Goldsboro,NC,--34----,AI,9601,,3523N 07760W, +,US,GSC,Goose Creek,Goose Creek,SC,--3-----,RQ,9008,,3260N 08002W, +,US,GSG,Glasgow,Glasgow,MT,--3-----,RL,0001,,4812N 10638W, +,US,GSH,Goshen,Goshen,IN,---4----,AI,9601,,4135N 08550W, +,US,GSM,Geismar,Geismar,LA,--3-----,RQ,9307,,3012N 09101W, +,US,GSN,Gaston,Gaston,NC,--3-----,RQ,9307,,3630N 07739W, +,US,GSP,Greer-Greenville Apt,Greer-Greenville Apt,SC,-234----,AI,0001,,3454N 08213W, +,US,GSR,Glade Spring,Glade Spring,VA,--3-----,RL,0201,,3647N 08146W, +,US,GST,Gustavus,Gustavus,AK,---4----,AI,0001,,5825N 13545W, +,US,GSV,Griswoldville,Griswoldville,MA,--3-----,RQ,9307,,4239N 07243W, +,US,GSY,Gassaway,Gassaway,WV,--3-----,RQ,9008,,3840N 08046W, +,US,GSZ,Garrison,Garrison,MO,--3-----,RQ,9307,,3650N 09301W, +,US,GTF,Great Falls,Great Falls,MT,---4----,AI,0001,,4730N 11118W, +,US,GTJ,Grant,Grant,MI,--3-----,RQ,9307,,4320N 08549W, +,US,GTL,Gretna,Gretna,LA,--3-----,RQ,9307,,2955N 09003W, +,US,GTO,Guntown,Guntown,MS,--3-----,RQ,9307,,3427N 08840W, +,US,GTP,Green Tree,Green Tree,PA,--3-----,RQ,9307,,4025N 08003W, +,US,GTS,Greeneville,Greeneville,TN,--3-----,RQ,9008,,3610N 08250W, +,US,GTT,Gillett,Gillett,WI,--3-----,RQ,9307,,4454N 08816W, +,US,GTU,Gladstone,Gladstone,OR,--3-----,RQ,9307,,4523N 12236W, +,US,GTV,Graniteville,Graniteville,SC,--3-----,RQ,9307,,3334N 08148W, +,US,GTW,Georgetown,Georgetown,TX,--3-----,RN,0105,,3038N 09741W, +,US,GTY,Gettysburg,Gettysburg,PA,---4----,AI,9601,,3950N 07714W, +,US,GTZ,Glenmont,Glenmont,NY,--3-----,RQ,9307,,4236N 07346W, +,US,GUC,Gunnison,Gunnison,CO,---4----,AI,0001,,3833N 10656W, +,US,GUF,Gulf Shores,Gulf Shores,AL,---4----,AI,9601,,3016N 08741W, +,US,GUH,Guthrie,Guthrie,KY,-----6--,RL,1107,,3639N 08710W, +,US,GUO,Gurdon,Gurdon,AR,--3-----,RQ,9307,,3355N 09309W, +,US,GUP,Gallup,Gallup,NM,--34----,AI,9601,,3532N 10845W, +,US,GUR,Gurnee,Gurnee,IL,--3-----,RQ,9307,,4222N 08754W, +,US,GUS,Peru,Peru,IN,--34----,AI,9601,,4045N 08604W, +,US,GUT,Gustine,Gustine,CA,--3-----,RQ,9307,,3715N 12060W, +,US,GUW,Guilderland Center,Guilderland Center,NY,--3-----,RQ,9307,,4242N 07358W, +,US,GUY,Guymon,Guymon,OK,---4----,AI,0001,,3641N 10129W, +,US,GVD,Groveland,Groveland,FL,--3-----,RQ,9307,,2834N 08151W, +,US,GVE,Gordonsville,Gordonsville,VA,---4----,AI,0001,,3808N 07811W, +,US,GVH,Grove Hill,Grove Hill,AL,--3-----,RQ,9307,,3143N 08747W, +,US,GVI,Granville,Granville,NY,--3-----,RQ,9307,,4324N 07316W, +,US,GVK,Gloversville,Gloversville,NY,--3-----,RQ,9307,,4303N 07421W, +,US,GVL,Gainesville,Gainesville,GA,--34----,AI,9601,,3418N 08349W, +,US,GVO,Groveland,Groveland,MA,--3-----,RQ,9307,,4246N 07102W, +,US,GVP,Groveport,Groveport,OH,--3-----,RQ,9307,,3951N 08253W, +,US,GVQ,Greenville,Greenville,MA,--3-----,RQ,9307,,4212N 07155W, +,US,GVT,Greenville,Greenville,TX,--34----,AI,9601,,3308N 09607W, +,US,GVV,Green River,Green River,WY,--3-----,RQ,9307,,4132N 10928W, +,US,GVW,Grandview,Grandview,MO,---4----,AI,9601,,3853N 09432W, +,US,GVX,Glen View,Glen View,IL,--3-----,RQ,9307,,3744N 08115W, +,US,GVY,Golden Valley,Golden Valley,MN,--3-----,RQ,9008,,4459N 09323W, +,US,GWA,George,George,WA,--3-----,RQ,9307,,4705N 11951W, +,US,GWD,Greenwood,Greenwood,FL,--3-----,RQ,9307,,3052N 08510W, +,US,GWE,Greenville,Greenville,MO,--3-----,RQ,9307,,3708N 09027W, +,US,GWF,Greenleaf,Greenleaf,ID,--3-----,RQ,9307,,4341N 11649W, +,US,GWL,Glenshaw,Glenshaw,PA,--3-----,RQ,9307,,4032N 07958W, +,US,GWO,Greenwood,Greenwood,MS,---4----,AI,9601,,3331N 09011W, +,US,GWS,Glenwood Springs,Glenwood Springs,CO,---4----,AI,9601,,3933N 10719W, +,US,GWT,Goodwater,Goodwater,AL,--3-----,RQ,9307,,3304N 08603W, +,US,GWU,Guin,Guin,AL,--3-----,RQ,9307,,3358N 08755W, +,US,GWV,Glendale,Glendale,WV,---4----,AI,9601,,3917N 08109W, +,US,GWX,Glenwood,Glenwood,IA,--3-----,RQ,9307,,4103N 09545W, +,US,GWY,Gwynedd,Gwynedd,PA,--3-----,RQ,9307,,4011N 07515W, +,US,GXF,Grafton,Grafton,VA,--3-----,RQ,9307,,3734N 07628W, +,US,GXQ,Greencastle,Greencastle,IN,--3-----,RQ,9307,,3939N 08652W, +,US,GXT,Georgetown,Georgetown,MA,--3-----,RQ,9307,,4243N 07060W, +,US,GXV,Gilbertsville,Gilbertsville,PA,--3-----,RQ,9307,,4019N 07537W, +,US,GXY,Greeley,Greeley,CO,---4----,AI,9601,,4025N 10443W, +,US,GYC,Grass Valley,Grass Valley,CA,--3-----,RQ,9307,,3913N 12104W, +,US,GYD,Gaylord,Gaylord,MI,--3-----,RL,0001,,4502N 08440W, +,US,GYF,Griffith,Griffith,IN,--3-----,RQ,9307,,4132N 08726W, +,US,GYJ,Grand Ridge,Grand Ridge,IL,--3-----,RQ,9307,,4114N 08850W, +,US,GYR,Goodyear,Goodyear,AZ,---4----,AI,0001,,3324N 11224W, +,US,GYV,Garyville,Garyville,LA,--3-----,RQ,9307,,3004N 09038W, +,US,GYY,Gary,Gary,IN,1--4----,AI,0001,,4136N 08720W, +,US,GZN,Galena,Galena,OH,--3-----,RL,1107,,4013N 08253W, +,US,GZS,Gonzales,Gonzales,CA,--3-----,RQ,9307,,3630N 12127W, +,US,GZV,Garrettsville,Garrettsville,OH,--3-----,RQ,9307,,4117N 08106W, +,US,HAA,Havertown,Havertown,PA,--3-----,RQ,9307,,3959N 07519W, +,US,HAB,Hamilton,Hamilton,AL,--34----,RL,0001,,3409N 08759W, +,US,HAE,Havasupai,Havasupai,AZ,---4----,AI,0001,,3609N 11240W, +,US,HAF,Half Moon Bay,Half Moon Bay,CA,---4----,AI,0001,,3728N 12226W, +,US,HAH,Hahnville,Hahnville,LA,1-3-----,RN,0105,,2959N 09025W, +,US,HAI,Three Rivers,Three Rivers,MI,---4----,AI,9601,,4157N 08538W, +,US,HAM,Hamburg,Hamburg,NJ,--3-----,RQ,9307,,4109N 07435W, +,US,HAN,Hanover,Hanover,NJ,--3-----,RQ,9307,,4001N 07435W, +,US,HAO,Hamilton,Hamilton,OH,--34----,AI,9601,,3924N 08434W, +,US,HAQ,Hartland,Hartland,ME,--3-----,RQ,9307,,4453N 06927W, +,US,HAS,Hartsdale,Hartsdale,NY,--3-----,RQ,9307,,4101N 07348W, +,US,HAV,Haverhill,Haverhill,MA,--3-----,RQ,9307,,4247N 07105W, +,US,HAW,Hawthorne,Hawthorne,NY,--3-----,RQ,9008,,4106N 07348W, +,US,HAX,Hampton,Hampton,NH,--3-----,RQ,9307,,4256N 07049W, +,US,HAY,Haycock,Haycock,AK,---4----,AI,0001,,6513N 16110W, +,US,HAZ,Hawkinsville,Hawkinsville,GA,--3-----,RQ,9307,,3217N 08328W, +,US,HBA,Hobart,Hobart,IN,--3-----,RQ,9307,,4132N 08715W, +!,US,HBB,Hilbert,Hilbert,WI,--3-----,RQ,9307,,4408N 08810W, +,US,HBD,Harbeson,Harbeson,DE,--3-----,RQ,9307,,3843N 07517W, +,US,HBE,Hobe Sound,Hobe Sound,FL,--3-----,RQ,9307,,2705N 08008W, +,US,HBF,Harrodsburg,Harrodsburg,KY,--3-----,RQ,9307,,3746N 08451W, +,US,HBG,Hattiesburg,Hattiesburg,MS,---4----,AI,9601,,3120N 08917W, +,US,HBH,Hobart Bay,Hobart Bay,AK,---4----,AI,0001,,5726N 13319W, +,US,HBI,Hubbard,Hubbard,OR,--3-----,RQ,9307,,4511N 12249W, +,US,HBK,Hoboken,Hoboken,NJ,1-3-----,RN,0105,,4045N 07402W, +,US,HBL,Hannibal,Hannibal,MO,--3-----,RQ,9008,,3942N 09122W, +,US,HBN,Hebron,Hebron,KY,--3-----,RQ,9307,,3904N 08442W, +,US,HBQ,Hamburg,Hamburg,IA,--3-----,RQ,9307,,4036N 09539W, +,US,HBR,Hobart,Hobart,OK,---4----,AI,0001,,3502N 09906W, +,US,HBS,Heber Springs,Heber Springs,AR,--3-----,RQ,9307,,3530N 09202W, +,US,HBV,Harrisonburg,Harrisonburg,VA,--3-----,RQ,9008,,3827N 07852W, +,US,HBZ,Heidlersburg,Heidlersburg,PA,--3-----,RQ,9307,,3957N 07709W, +,US,HCA,Big Spring,Big Spring,TX,---4----,AI,9601,,3215N 10129W, +,US,HCC,Hudson,Hudson,NY,---4----,AI,9601,,4215N 07347W, +,US,HCH,Hutchinson,Hutchinson,MN,--3-----,RL,0006,,4453N 09422W, +,US,HCK,Hackensack,Hackensack,NJ,--3-----,RQ,9008,,4053N 07402W, +,US,HCR,Holy Cross,Holy Cross,AK,---4----,AI,0001,,6211N 15949W, +,US,HCS,Hockessin,Hockessin,DE,--3-----,RQ,9307,,3947N 07542W, +,US,HCT,Hackettstown,Hackettstown,NJ,--3-----,RQ,9307,,4051N 07450W, +,US,HCV,Hanceville,Hanceville,AL,--3-----,RQ,9307,,3404N 08646W, +,US,HCW,Cheraw,Cheraw,SC,---4----,AI,9601,,3442N 07953W, +,US,HCY,Haltom City,Haltom City,TX,--3-----,RQ,9307,,3248N 09716W, +,US,HCZ,Harford,Harford,NY,--3-----,RQ,9307,,4226N 07614W, +,US,HDD,Hiddenite,Hiddenite,NC,--3-----,RQ,9307,,3554N 08105W, +,US,HDE,Holdrege,Holdrege,NE,---4----,AI,0001,,4026N 09922W, +,US,HDF,Hilliard,Hilliard,FL,--3-----,RQ,9307,,3041N 08155W, +,US,HDK,Haddock,Haddock,GA,--3-----,RQ,9307,,3302N 08326W, +,US,HDL,Hinsdale,Hinsdale,NH,--3-----,RQ,9008,,4247N 07229W, +,US,HDM,Hudson,Hudson,MA,--3-----,RQ,9307,,4223N 07134W, +,US,HDN,Hayden,Hayden,CO,---4----,AI,0001,,4029N 10714W, +,US,HDO,Henderson,Henderson,CO,--3-----,RQ,9307,,3955N 10452W, +,US,HDP,Harding,Harding,PA,--3-----,RQ,9307,,4122N 07549W, +,US,HDQ,Heidelberg,Heidelberg,PA,--3-----,RQ,9307,,4024N 08005W, +,US,HDR,Hildebran,Hildebran,NC,--3-----,RQ,9307,,3543N 08125W, +,US,HDS,Hudson,Hudson,CO,--3-----,RQ,9307,,4004N 10439W, +,US,HDT,Henderson,Henderson,TN,--3-----,RQ,9307,,3526N 08838W, +,US,HDU,Hudson,Hudson,NH,--3-----,RQ,9307,,4246N 07126W, +,US,HDV,Hendersonville,Hendersonville,TN,--3-----,RQ,9307,,3618N 08637W, +,US,HDX,Hood River,Hood River,OR,--3-----,RQ,9307,,4543N 12131W, +,US,HDY,Hadley,Hadley,PA,--3-----,RQ,9307,,4125N 08014W, +,US,HEA,Hearne,Hearne,TX,--3-----,RQ,9307,,3053N 09636W, +,US,HEB,Hebron,Hebron,OH,--3-----,RQ,9307,,3958N 08229W, +,US,HEC,Hermosa Beach,Hermosa Beach,CA,--3-----,RQ,9307,,3352N 11824W, +,US,HED,Herendeen,Herendeen,AK,---4----,AI,0001,,5504N 15925W, +,US,HEE,Helena,Helena,AR,--34----,RQ,9008,,3432N 09037W, +,US,HEF,Heflin,Heflin,AL,--3-----,RQ,9307,,3339N 08535W, +,US,HEH,Hershey,Hershey,PA,--3-----,RQ,9307,,4017N 07639W, +,US,HEK,Hyde Park,Hyde Park,NY,--3-----,RQ,9506,,4147N 07356W, +,US,HEL,Hellertown,Hellertown,PA,--3-----,RQ,9307,,4035N 07520W, +,US,HEM,Hemlock,Hemlock,MI,--3-----,RQ,9307,,4325N 08414W, +,US,HEN,Henderson,Henderson,NC,--3-----,RQ,9307,,3620N 07824W, +,US,HEO,Hebron,Hebron,IL,--3-----,RQ,9307,,4228N 08826W, +,US,HEP,Hempstead,Hempstead,NY,--3-----,RQ,9307,,4040N 07337W, +,US,HER,Herrin,Herrin,IL,--3-----,RQ,9307,,3748N 08902W, +,US,HES,Hermiston,Hermiston,OR,---4----,AI,9601,,4550N 11917W, +,US,HET,Hesston,Hesston,KS,--3-----,RQ,9307,,3808N 09726W, +,US,HEU,Helm,Helm,CA,--3-----,RQ,9307,,3632N 12006W, +,US,HEV,Hendersonville,Hendersonville,NC,--34----,RL,0006,AVL,3519N 08228W, +,US,HEW,Hopewell,Hopewell,NJ,--3-----,RQ,9501,,4023N 07446W, +,US,HEZ,Natchez,Natchez,MS,1--4----,AI,0207,,3134N 09124W, +,US,HFC,Hartford City,Hartford City,IN,--3-----,RQ,9307,,4027N 08522W, +,US,HFD,Hartford,Hartford,CT,---4----,AI,9601,,4146N 07241W, +,US,HFE,Hatfield,Hatfield,AR,--3-----,RQ,9307,,3429N 09423W, +,US,HFF,Hoffman,Hoffman,NC,---4----,AI,0001,,3502N 07933W, +,US,HFI,Hartford,Hartford,IL,--3-----,RQ,9307,,3850N 09006W, +,US,HFL,Haddonfield,Haddonfield,NJ,--3-----,RQ,9601,,3953N 07502W, +,US,HFN,Hamilton,Hamilton,IN,--3-----,RQ,9307,,4133N 08455W, +,US,HFR,Hereford,Hereford,TX,--3-----,RQ,9307,,3449N 10224W, +,US,HFY,Hudson Falls,Hudson Falls,NY,--3-----,RQ,9307,,4318N 07335W, +,US,HGA,Hogansville,Hogansville,GA,--3-----,RQ,9307,,3310N 08455W, +,US,HGH,Highland Park,Highland Park,CA,--3-----,RQ,9307,,3407N 11812W, +,US,HGL,Highland,Highland,IL,--3-----,RQ,9307,,3844N 08940W, +,US,HGM,Hingham,Hingham,MA,--3-----,RQ,9307,,4215N 07053W, +,US,HGN,Hawaiian Gardens,Hawaiian Gardens,CA,--3-----,RQ,9307,,3350N 11804W, +,US,HGR,Hagerstown,Hagerstown,MD,---4----,AI,9601,,3939N 07743W, +,US,HGT,Jolon,Jolon,CA,---4----,AI,0001,,3558N 12110W, +,US,HGZ,Hogatza,Hogatza,AK,---4----,AI,0001,,6611N 15543W, +,US,HHB,Humboldt,Humboldt,TN,--3-----,RQ,9307,,3549N 08855W, +,US,HHE,Hacienda Heights,Hacienda Heights,CA,--3-----,RQ,9307,,3360N 11758W, +,US,HHI,Wahiawa,Wahiawa,HI,---4----,AI,0001,,2130N 15801W, +,US,HHL,Holly Hill,Holly Hill,FL,--3-----,RQ,9307,,2915N 08102W, +,US,HHO,Haverhill,Haverhill,OH,--3-----,RQ,9307,,3835N 08250W, +,US,HHR,Hawthorne,Hawthorne,CA,---4----,AI,9601,,3355N 11821W, +,US,HHY,Herkimer,Herkimer,NY,--3-----,RQ,9307,,4302N 07459W, +,US,HIA,Highland Park,Highland Park,IL,--3-----,RQ,9307,,4211N 08748W, +,US,HIB,Hibbing-Chisholm Apt,Hibbing-Chisholm Apt,MN,---4----,AI,9601,,4723N 09250W, +,US,HIE,Whitefield,Whitefield,NH,---4----,AI,0001,,4422N 07137W, +,US,HIG,Higganum,Higganum,CT,--3-----,RQ,9307,,4129N 07233W, +,US,HIH,Highland,Highland,NY,--3-----,RQ,9307,,4143N 07358W, +,US,HII,Lake Havasu City,Lake Havasu City,AZ,---4----,AI,0001,,3429N 11420W, +,US,HIJ,Highland,Highland,IN,--3-----,RQ,9307,,4133N 08727W, +!,US,HIK,Highland Heights,Highland Heights,OH,--3-----,RQ,9008,,4133N 08129W, +,US,HIL,Hills,Hills,IA,--3-----,RQ,9501,,4133N 09132W, +,US,HIO,Hillsboro,Hillsboro,OR,---4----,AI,9601,,4531N 12259W, +,US,HIP,Highland Park,Highland Park,MI,--3-----,RQ,9307,,4224N 08306W, +,US,HIQ,Highland,Highland,CA,--3-----,RQ,9307,,3407N 11711W, +,US,HIS,Highgate Springs,Highgate Springs,VT,--3-----,RN,0105,,4459N 07306W, +,US,HIU,Hinesburg,Hinesburg,VT,--3-----,RQ,9307,,4420N 07307W, +,US,HIY,Hickory,Hickory,KY,--3-----,RQ,9307,,3649N 08839W, +,US,HJL,Hilliard,Hilliard,OH,--3-----,RQ,9307,,4002N 08310W, +,US,HJQ,Hood,Hood,CA,--3-----,RQ,9307,,3822N 12131W, +,US,HJW,Hillsboro,Hillsboro,IN,--3-----,RQ,9307,,4006N 08709W, +,US,HKB,Healy Lake,Healy Lake,AK,---4----,AI,0001,,6401N 14440W, +,US,HKL,Hinckley,Hinckley,ME,--3-----,RQ,9307,,4441N 06938W, +,US,HKQ,Houlka,Houlka,MS,--3-----,RQ,9307,,3402N 08901W, +,US,HKR,Henniker,Henniker,NH,--3-----,RQ,9307,,4311N 07149W, +,US,HKY,Hickory,Hickory,NC,--34----,AI,9601,,3544N 08121W, +,US,HLA,Healdsburg,Healdsburg,CA,--3-----,RQ,9307,,3836N 12253W, +,US,HLB,Batesville,Batesville,IN,--34----,AI,9601,,3918N 08513W, +,US,HLC,Hill City,Hill City,KS,---4----,AI,0001,,3922N 09951W, +,US,HLD,Haledon,Haledon,NJ,--3-----,RQ,9008,,4056N 07411W, +,US,HLE,Headland,Headland,AL,--3-----,RQ,9307,,3121N 08521W, +,US,HLG,Wheeling,Wheeling,WV,---4----,AI,9601,,4004N 08043W, +,US,HLH,Hinkley,Hinkley,CA,--3-----,RQ,9307,,3456N 11712W, +,US,HLI,Hollister,Hollister,CA,---4----,AI,9601,,3651N 12124W, +,US,HLL,Hillsboro,Hillsboro,TX,--3-----,RQ,9307,,3201N 09708W, +,US,HLN,Helena,Helena,MT,--34----,AI,9601,,4636N 11202W, +,US,HLO,Hammond,Hammond,LA,--3-----,RQ,9008,,3030N 09028W, +,US,HLP,Holly Pond,Holly Pond,AL,--3-----,RQ,9307,,3410N 08637W, +,US,HLQ,Holcomb,Holcomb,KS,--3-----,RQ,9307,,3759N 10059W, +,US,HLS,Hillside,Hillside,NJ,--3-----,RQ,9008,,4042N 07414W, +,US,HLT,Hamilton,Hamilton,MT,--3-----,RQ,9307,,4615N 11409W, +,US,HLW,Hollywood,Hollywood,CA,--3-----,RQ,9307,,3406N 11820W, +,US,HLX,Holland,Holland,PA,--3-----,RQ,9307,,4010N 07460W, +,US,HLZ,Healy,Healy,AK,--3-----,RQ,9307,,6352N 14901W, +,US,HMA,Harmans,Harmans,MD,--3-----,RQ,9307,,3909N 07642W, +,US,HMI,Homedale,Homedale,ID,--3-----,RQ,9307,,4337N 11656W, +,US,HMJ,Harvey,Harvey,LA,--3-----,RQ,9307,,2954N 09005W, +,US,HML,Hamlet,Hamlet,NC,--3-----,RQ,9307,,3453N 07942W, +,US,HMN,Hammond,Hammond,IN,--3-----,RQ,9307,,4137N 08731W, +,US,HMO,Harrisonville,Harrisonville,MO,--3-----,RQ,9008,,3839N 09421W, +,US,HMP,Hammondsport,Hammondsport,NY,--3-----,RQ,9008,,4224N 07713W, +,US,HMT,Hemet,Hemet,CA,---4----,AI,9601,,3345N 11658W, +,US,HMV,Homerville,Homerville,GA,--3-----,RQ,9307,,3102N 08245W, +,US,HMX,Humble,Humble,TX,--3-----,RQ,9307,,2960N 09516W, +,US,HMZ,Hamilton,Hamilton,MS,--3-----,RQ,9307,,3455N 08903W, +,US,HNB,Huntingburg,Huntingburg,IN,---4----,AI,9601,,3818N 08657W, +,US,HNC,Hatteras,Hatteras,NC,---4----,AI,0001,,3513N 07541W, +,US,HND,Hernando,Hernando,MS,--3-----,RQ,9307,,3449N 08960W, +,US,HNG,Huntington Park,Huntington Park,CA,--3-----,RQ,9307,,3359N 11814W, +,US,HNH,Hoonah,Hoonah,AK,---4----,AI,9506,,5807N 13527W, +,US,HNI,Hansen,Hansen,ID,--3-----,RQ,9307,,4232N 11418W, +,US,HNM,Hana,Hana,HI,---4----,AI,0001,,2045N 15559W, +,US,HNN,Hanoverton,Hanoverton,OH,--3-----,RQ,9307,,4045N 08056W, +,US,HNR,Hainesport,Hainesport,NJ,--3-----,RQ,9307,,3958N 07450W, +,US,HNS,Haines,Haines,AK,1--4----,AI,0001,,5914N 13527W, +,US,HNW,Hornell,Hornell,NY,--3-----,RQ,9307,,4220N 07740W, +,US,HNX,Hanna,Hanna,WY,---4----,AI,0001,,4152N 10634W, +,US,HNY,Honey Brook,Honey Brook,PA,--3-----,RQ,9307,,4006N 07555W, +,US,HNZ,Henderson,Henderson,NV,--3-----,RQ,9307,,3602N 11459W, +,US,HOA,Horsham,Horsham,PA,--3-----,RQ,9307,,4011N 07508W, +,US,HOB,Hobbs,Hobbs,NM,---4----,AI,0001,,3242N 10308W, +,US,HOC,Holly,Holly,MI,--3-----,RQ,9307,,4248N 08338W, +,US,HOD,Honesdale,Honesdale,PA,--3-----,RQ,9307,,4135N 07515W, +,US,HOE,Sweet Home,Sweet Home,OR,--3-----,RQ,9307,,4424N 12244W, +,US,HOJ,Howell,Howell,NJ,--3-----,RQ,9307,,4008N 07413W, +,US,HOK,Hodgkins,Hodgkins,IL,--3-----,RQ,9307,,4146N 08751W, +,US,HOM,Homer,Homer,AK,1--4----,AI,0001,,5939N 15132W, +,US,HON,Huron,Huron,SD,---4----,AI,9601,,4422N 09813W, +,US,HOO,Holland,Holland,OH,--3-----,RQ,9008,,4137N 08343W, +,US,HOP,Hopkinsville,Hopkinsville,KY,---4----,AI,9601,,3652N 08729W, +,US,HOT,Hot Springs,Hot Springs,AR,--34----,RQ,9008,,3430N 09303W, +,US,HPA,Hyde Park,Hyde Park,CA,--3-----,RQ,9307,,3359N 11820W, +,US,HPB,Hooper Bay,Hooper Bay,AK,---4----,AI,0001,,6131N 16607W, +,US,HPD,Hampstead,Hampstead,MD,--3-----,RQ,9307,,3936N 07651W, +,US,HPF,Hampton,Hampton,FL,--3-----,RQ,9307,,2952N 08208W, +,US,HPH,Halethorpe,Halethorpe,MD,--3-----,RQ,9307,,3914N 07641W, +,US,HPI,Hope,Hope,IN,--3-----,RQ,9008,,3918N 08546W, +,US,HPK,Hanover Park,Hanover Park,IL,--3-----,RQ,9307,,4160N 08809W, +,US,HPL,Hapeville,Hapeville,GA,--3-----,RQ,9307,,3340N 08425W, +,US,HPO,Hopkins,Hopkins,MN,--3-----,RQ,9307,,4455N 09325W, +,US,HPR,Hope,Hope,AR,--3-----,RQ,9307,,3340N 09335W, +,US,HPS,Hampshire,Hampshire,IL,--3-----,RL,0006,,4206N 08832W, +,US,HPT,Hampton,Hampton,IA,---4----,AI,0001,,4245N 09312W, +,US,HPW,Hopewell,Hopewell,VA,--3-----,RN,0105,,3718N 07717W, +,US,HPX,Hopedale,Hopedale,MA,--3-----,RQ,9307,,4208N 07132W, +,US,HPY,Baytown,Baytown,TX,1--4----,AI,0001,,2944N 09459W, +,US,HQA,Horn Lake,Horn Lake,MS,--3-----,RQ,9307,,3457N 09002W, +,US,HQB,Hillsborough,Hillsborough,CA,--3-----,RQ,9307,,3733N 12222W, +,US,HQF,Highgrove,Highgrove,CA,--3-----,RQ,9307,,3401N 11719W, +,US,HQH,Highway Highlands,Highway Highlands,CA,--3-----,RQ,9307,,3414N 11816W, +,US,HQJ,Washington,Washington,LA,1----6--,RL,1107,,3037N 09203W, +,US,HQL,Haskell,Haskell,TX,--3-----,RQ,9307,,3310N 09944W, +,US,HQM,Hoquiam,Hoquiam,WA,---4----,AI,0001,,4659N 12353W, +,US,HQN,Houston,Houston,MO,--3-----,RQ,9307,,3720N 09157W, +,US,HQP,Hesperia,Hesperia,CA,--3-----,RQ,9307,,3426N 11718W, +,US,HQV,Happy Valley,Happy Valley,OR,--3-----,RQ,9307,,4526N 12230W, +,US,HQW,Highlands,Highlands,WA,--3-----,RQ,9307,,4613N 11911W, +,US,HQZ,Hazel Dell,Hazel Dell,WA,--3-----,RQ,9307,,4541N 12240W, +,US,HRB,Harbor City,Harbor City,CA,--3-----,RQ,9307,,3347N 11818W, +,US,HRE,Harlem,Harlem,GA,--3-----,RQ,9307,,3325N 08219W, +,US,HRI,Harriman,Harriman,NY,--3-----,RQ,9307,,4119N 07409W, +,US,HRJ,Harahan,Harahan,LA,--3-----,RQ,9307,,2956N 09012W, +,US,HRK,Holbrook,Holbrook,MA,--3-----,RQ,9307,,4209N 07101W, +,US,HRL,Harlingen,Harlingen,TX,--34----,AI,9601,,2611N 09742W, +,US,HRN,Harrison,Harrison,NJ,--3-----,RQ,9307,,4045N 07409W, +,US,HRO,Harrison,Harrison,AR,--34----,RQ,9008,,3614N 09306W, +,US,HRP,Harpersfield,Harpersfield,OH,--3-----,RQ,9307,,4146N 08057W, +,US,HRR,Harrington,Harrington,DE,--3-----,RQ,9008,,3855N 07535W, +,US,HRT,Hart,Hart,MI,--3-----,RQ,9307,,4342N 08622W, +,US,HRU,Harvard,Harvard,IL,--3-----,RQ,9307,,4225N 08837W, +,US,HRV,Herndon,Herndon,VA,--3-----,RQ,9307,,3858N 07723W, +,US,HRW,Horicon,Horicon,WI,--3-----,RQ,9307,,4327N 08838W, +,US,HRX,Haw River,Haw River,NC,--3-----,RQ,9307,,3605N 07922W, +,US,HRY,Harvey,Harvey,IL,--3-----,RQ,9307,,4137N 08739W, +,US,HSA,Hinsdale,Hinsdale,IL,--3-----,RQ,9307,,4148N 08756W, +,US,HSB,Harrisburg,Harrisburg,IL,--34----,AI,9901,,3744N 08832W, +,US,HSC,Harmony,Harmony,SC,--3-----,RQ,9307,,3450N 08057W, +,US,HSE,Hillsdale,Hillsdale,MI,--3-----,RQ,9307,,4155N 08441W, +!,US,HSH,Hollis,Hollis,NH,--3-----,RQ,9307,,4245N 07135W, +,US,HSI,Hastings,Hastings,NE,--34----,AI,9601,,4035N 09823W, +,US,HSL,Huslia,Huslia,AK,---4----,AI,0001,,6542N 15620W, +,US,HSM,Houston,Houston,MS,--3-----,RQ,9307,,3354N 08860W, +,US,HSN,Holstein,Holstein,IA,--3-----,RQ,9307,,4229N 09533W, +,US,HSO,Houston,Houston,PA,--3-----,RQ,9307,,4015N 08013W, +,US,HSP,Hot Springs,Hot Springs,VA,---4----,AI,0001,,3760N 07950W, +,US,HSR,Harrisburg,Harrisburg,NC,--3-----,RQ,9307,,3520N 08039W, +,US,HSS,High Springs,High Springs,FL,--3-----,RQ,9307,,2950N 08236W, +,US,HST,Homestead,Homestead,FL,---4----,AI,9601,,2528N 08029W, +,US,HSV,Huntsville,Huntsville,AL,---4----,AI,9601,,3444N 08635W, +,US,HTC,Hutchins,Hutchins,TX,--3-----,RQ,9307,,3239N 09643W, +,US,HTE,Hartselle,Hartselle,AL,--3-----,RQ,9307,,3427N 08656W, +,US,HTG,Huntingdon,Huntingdon,PA,--3-----,RQ,9307,,4029N 07801W, +,US,HTH,Hawthorne,Hawthorne,NV,---4----,AI,9601,,3831N 11837W, +,US,HTI,Hawthorne,Hawthorne,NJ,--3-----,RQ,9008,,4057N 07409W, +,US,HTK,Hutchinson,Hutchinson,KS,--3-----,RQ,9008,,3804N 09756W, +,US,HTL,Houghton,Houghton,MI,---4----,AI,9601,,4707N 08834W, +,US,HTM,Hartwell,Hartwell,GA,--3-----,RQ,9307,,3421N 08256W, +,US,HTN,Hinton,Hinton,VA,--3-----,RQ,9307,,3828N 07858W, +,US,HTO,East Hampton,East Hampton,NY,---4----,AI,0001,,4058N 07211W, +,US,HTP,Hatboro,Hatboro,PA,--3-----,RQ,9307,,4010N 07506W, +,US,HTQ,Huntley,Huntley,IL,--3-----,RQ,9307,,4210N 08826W, +,US,HTS,Huntington-Ashland Apt,Huntington-Ashland Apt,WV,---4----,AI,0001,,3822N 08234W, +,US,HTT,Hartford,Hartford,MI,--3-----,RQ,9307,,4212N 08608W, +,US,HTV,Huntsville,Huntsville,TX,---4----,AI,9601,,3043N 09533W, +,US,HTX,Henrietta,Henrietta,TX,--3-----,RQ,9307,,3349N 09812W, +,US,HTY,Hartley,Hartley,IA,--3-----,RQ,9307,,4311N 09529W, +,US,HTZ,Huntington,Huntington,VA,--3-----,RQ,9307,,3847N 07704W, +!,US,HUA,Huber,Huber,GA,--3-----,RQ,9307,,3242N 08333W, +,US,HUC,Hurlock,Hurlock,MD,--3-----,RQ,9307,,3838N 07552W, +,US,HUD,Humboldt,Humboldt,IA,---4----,AI,0001,,4243N 09413W, +,US,HUE,Humboldt,Humboldt,KS,--3-----,RQ,9307,,3749N 09526W, +,US,HUF,Terre Haute,Terre Haute,IN,-234----,AI,0001,,3928N 08725W, +,US,HUG,Hugo,Hugo,OK,--3-----,RL,0001,,3401N 09531W, +!,US,HUJ,Hurt,Hurt,VA,--3-----,RQ,9307,,3706N 07918W, +,US,HUK,Hustonville,Hustonville,KY,--3-----,RQ,9008,,3728N 08449W, +,US,HUM,Houma,Houma,LA,---4----,AI,9601,,2936N 09043W, +,US,HUN,Huntington,Huntington,IN,--3-----,RQ,9307,,4053N 08530W, +,US,HUO,Hudson,Hudson,OH,--3-----,RQ,9307,,4114N 08126W, +,US,HUP,Hoopeston,Hoopeston,IL,--3-----,RQ,9307,,4028N 08740W, +,US,HUQ,Housatonic,Housatonic,MA,--3-----,RQ,9307,,4215N 07322W, +,US,HUR,Hurst,Hurst,TX,--3-----,RQ,9307,,3249N 09710W, +,US,HUS,Hughes,Hughes,AK,---4----,AI,0001,,6603N 15414W, +!,US,HUT,Hutchinson,Hutchinson,AR,--3-----,RQ,9307,,3539N 09140W, +,US,HUU,Hunt,Hunt,TX,--3-----,RQ,0901,,3004N 09920W, +,US,HUV,Hudsonville,Hudsonville,MI,--3-----,RQ,9307,,4252N 08552W, +,US,HVA,Hoover,Hoover,AL,--3-----,RL,9811,,3321N 08651W, +,US,HVD,Hunt Valley,Hunt Valley,MD,--3-----,RQ,9307,,3930N 07640W, +,US,HVE,Hanksville,Hanksville,UT,---4----,AI,0001,,3822N 11042W, +,US,HVG,Highland Village,Highland Village,TX,1----6--,RL,1107,,3306N 09703W, +,US,HVI,Hartville,Hartville,OH,--3-----,RQ,9307,,4058N 08120W, +,US,HVM,Hanover,Hanover,MD,--3-----,RQ,9307,,3912N 07643W, +,US,HVN,New Haven,New Haven,CT,1--4----,AI,0001,,4118N 07256W, +,US,HVP,Harleysville,Harleysville,PA,--3-----,RQ,9307,,4017N 07523W, +,US,HVQ,Hanover,Hanover,MA,--3-----,RQ,9307,,4207N 07049W, +,US,HVR,Havre,Havre,MT,--34----,AI,9601,,4833N 10941W, +,US,HVS,Hartsville,Hartsville,SC,--34----,RQ,9008,,3422N 08004W, +,US,HVT,Haverstraw,Haverstraw,NY,--3-----,RQ,9307,,4113N 07359W, +,US,HVV,Havana,Havana,IL,--3-----,RQ,9307,,4018N 09004W, +,US,HVW,Harrisville,Harrisville,WV,--3-----,RQ,9307,,3913N 08103W, +,US,HWE,Howey In The Hills,Howey In The Hills,FL,--3-----,RQ,9307,,2843N 08146W, +,US,HWI,Hawk Inlet,Hawk Inlet,AK,---4----,AI,0001,,5808N 13445W, +,US,HWK,Hardwick,Hardwick,MA,--3-----,RQ,9307,,4221N 07212W, +,US,HWL,Howell,Howell,MI,--3-----,RQ,9307,,4239N 08359W, +,US,HWM,Hayward,Hayward,MO,--3-----,RQ,9307,,3624N 08940W, +,US,HWP,Hummelstown,Hummelstown,PA,--3-----,RQ,9307,,4016N 07642W, +,US,HWR,Howard,Howard,SD,--3-----,RQ,9307,,4401N 09732W, +,US,HWW,Hollywood,Hollywood,AL,--3-----,RQ,9307,,3443N 08558W, +,US,HWY,Hemingway,Hemingway,SC,--3-----,RQ,9307,,3345N 07927W, +,US,HWZ,Hawkins,Hawkins,WI,--3-----,RQ,9307,,4529N 09043W, +,US,HXB,Hammond,Hammond,OR,--3-----,RQ,9307,,4612N 12357W, +,US,HXG,Hardinsburg,Hardinsburg,KY,1----6--,RQ,0901,,3747N 08628W, +,US,HXM,Hope Mills,Hope Mills,NC,--3-----,RQ,9307,,3458N 07857W, +,US,HXN,Henderson,Henderson,TX,--3-----,RQ,9307,,3209N 09448W, +,US,HXO,Huxford,Huxford,AL,--3-----,RQ,9307,,3113N 08728W, +,US,HXP,Hampton Falls,Hampton Falls,NH,--3-----,RQ,9307,,4256N 07053W, +,US,HXR,Henderson,Henderson,NE,--3-----,RQ,9307,,4047N 09749W, +,US,HXS,Hixson,Hixson,TN,--3-----,RQ,9307,,3509N 08513W, +,US,HXV,Hamburg,Hamburg,MI,--3-----,RQ,9307,,4228N 08351W, +,US,HYA,Hyannis,Hyannis,MA,---4----,AI,9601,,4139N 07017W, +,US,HYC,Holston,Holston,TN,--3-----,RQ,9307,,3629N 08224W, +,US,HYD,Hyde,Hyde,PA,--3-----,RQ,9307,,4100N 07828W, +,US,HYE,Hyde Park,Hyde Park,MA,--3-----,RQ,9307,,4215N 07107W, +,US,HYG,Hydaburg,Hydaburg,AK,--3-----,AI,9601,,5512N 13250W, +,US,HYI,Harlan,Harlan,IA,--3-----,RQ,9307,,4139N 09519W, +,US,HYK,Holyoke,Holyoke,CO,--3-----,RQ,9307,,4035N 10218W, +,US,HYL,Hollis,Hollis,AK,---4----,AI,0001,,5529N 13238W, +,US,HYO,Henryetta,Henryetta,OK,--3-----,RQ,9307,,3526N 09559W, +,US,HYP,Hypoluxo,Hypoluxo,FL,--3-----,RQ,9307,,2634N 08003W, +,US,HYQ,Harmon,Harmon,ND,--3-----,RQ,9307,,4657N 10057W, +,US,HYR,Hayward,Hayward,WI,---4----,AI,0001,,4601N 09129W, +,US,HYS,Hays,Hays,KS,--34----,RQ,9008,,3853N 09920W, +,US,HYY,Henry,Henry,IL,--3-----,RQ,9307,,4107N 08921W, +,US,HYZ,Harriman,Harriman,TN,--3-----,RQ,9307,,3556N 08433W, +,US,HZB,Hepzibah,Hepzibah,WV,--3-----,RQ,9307,,3920N 08020W, +,US,HZJ,Hopelawn,Hopelawn,NJ,--3-----,RQ,9307,,4032N 07418W, +,US,HZL,Hazleton,Hazleton,PA,---4----,AI,9601,,4058N 07559W, +,US,HZO,Halsey,Halsey,OR,--3-----,RQ,9307,,4423N 12307W, +,US,HZR,Hales Corners,Hales Corners,WI,--3-----,RQ,9307,,4256N 08803W, +,US,HZT,Hazelton,Hazelton,ID,--3-----,RQ,9307,,4236N 11408W, +,US,HZU,Hazlehurst,Hazlehurst,MS,--3-----,RQ,9307,,3152N 09024W, +,US,HZW,Hazelwood,Hazelwood,MO,--3-----,RQ,9307,,3847N 09022W, +,US,IAD,Dulles Int Apt/Washington,Dulles Int Apt/Washington,VA,---4----,AI,0201,,3857N 07727W, +,US,IAG,Niagara Falls,Niagara Falls,NY,--34----,AI,9601,,4305N 07904W, +,US,IAN,Kiana,Kiana,AK,---4----,AI,0001,,6658N 16026W, +,US,IBA,Itta Bena,Itta Bena,MS,--3-----,RQ,9307,,3330N 09019W, +,US,IBE,Iberia,Iberia,OH,--3-----,RQ,9307,,4040N 08251W, +,US,ICL,Clarinda,Clarinda,IA,---4----,AI,9601,,4044N 09502W, +,US,ICT,Wichita,Wichita,KS,---4----,AI,9601,,3742N 09720W, +,US,IDA,Idaho Falls,Idaho Falls,ID,---4----,AI,9601,,4329N 11202W, +,US,IDC,Independence,Independence,VA,--3-----,RQ,9307,,3637N 08109W, +,US,IDE,Independence,Independence,OR,--3-----,RQ,9307,,4451N 12311W, +,US,IDG,Ida Grove,Ida Grove,IA,---4----,AI,9601,,4221N 09528W, +,US,IDH,Idaho Springs,Idaho Springs,CO,--3-----,RQ,9307,,3945N 10531W, +,US,IDI,Indiana,Indiana,PA,---4----,AI,9601,,4037N 07909W, +,US,IDL,Indianola,Indianola,WA,--3-----,RQ,9307,,4745N 12231W, +,US,IDN,Indianola,Indianola,MS,--3-----,RQ,9307,,3327N 09039W, +,US,IDP,Independence,Independence,KS,--34----,AI,9601,,3713N 09542W, +,US,IDT,Indiantown,Indiantown,FL,--3-----,RQ,9307,,2702N 08029W, +,US,IFA,Iowa Falls,Iowa Falls,IA,---4----,AI,9601,,4231N 09316W, +,US,IFP,Bullhead City,Bullhead City,AZ,---4----,AI,0001,,3509N 11434W, +,US,IGG,Igiugig,Igiugig,AK,---4----,AI,0001,,5920N 15554W, +,US,IGM,Kingman,Kingman,AZ,--34----,AI,9601,,3511N 11403W, +,US,IJX,Jacksonville,Jacksonville,IL,---4----,AI,9601,,3944N 09014W, +,US,IKB,Wilkesboro,Wilkesboro,NC,--34----,AI,9601,,3610N 08109W, +,US,IKK,Kankakee,Kankakee,IL,--34----,AI,9601,,4107N 08752W, +,US,IKL,Kirklin,Kirklin,IN,--3-----,RQ,0901,,4012N 08622W, +,US,IKO,Nikolski,Nikolski,AK,---4----,AI,0001,,5259N 16845W, +,US,ILA,Imlay City,Imlay City,MI,--3-----,RQ,9307,,4301N 08305W, +,US,ILC,Charleston,Charleston,IL,--3-----,RQ,0607,,3930N 08811W, +,US,ILD,Midland,Midland,MI,--34----,AI,0201,,4337N 08415W,cf US MBS Apt +,US,ILE,Killeen,Killeen,TX,---4----,AI,9601,,3107N 09744W, +,US,ILG,Wilmington,Wilmington,DE,1--4----,AI,9601,,3945N 07533W, +,US,ILI,Iliamna,Iliamna,AK,---4----,AI,0001,,5945N 15449W, +,US,ILL,Willmar,Willmar,MN,---4----,AI,9601,,4507N 09503W, +,US,ILN,Wilmington,Wilmington,OH,--34----,AI,1401,,3927N 08350W, +,US,ILP,Illiopolis,Illiopolis,IL,--3-----,RQ,9307,,3951N 08915W, +,US,IML,Imperial,Imperial,NE,---4----,AI,9601,,4031N 10139W, +,US,IMM,Immokalee,Immokalee,FL,---4----,AI,9601,,2626N 08126W, +,US,IMP,Imperial,Imperial,PA,--3-----,RQ,9307,,4027N 08015W, +,US,IMT,Iron Mountain,Iron Mountain,MI,--34----,AI,9601,,4549N 08804W, +,US,INA,Institute,Institute,WV,--3-----,RQ,9307,,3823N 08146W, +,US,INF,Winfield,Winfield,TX,--34----,AI,9401,,3310N 09507W, +,US,ING,Inglewood,Inglewood,CA,--3-----,RQ,9008,,3357N 11821W, +,US,INI,Indianola,Indianola,FL,--3-----,RQ,9307,,2824N 08043W, +,US,INJ,Iselin,Iselin,NJ,--3-----,RQ,9307,,4034N 07419W, +,US,INK,Wink,Wink,TX,---4----,AI,0001,,3145N 10309W, +,US,INL,International Falls,International Falls,MN,1--4----,AI,9601,,4836N 09325W, +,US,INM,Inman,Inman,SC,--3-----,RQ,9307,,3503N 08205W, +,US,INO,Inwood,Inwood,NY,--3-----,RQ,9307,,4052N 07355W, +,US,INS,Indian Springs,Indian Springs,NV,---4----,AI,0001,,3635N 11540W, +,US,INT,Winston Salem,Winston Salem,NC,---4----,AI,0001,,3606N 08015W, +,US,INU,Industry,Industry,PA,--3-----,RQ,9307,,4039N 08025W, +,US,INW,Winslow,Winslow,AZ,---4----,AI,0001,,3501N 11042W, +,US,IOL,Iola,Iola,KS,--3-----,RQ,9307,,3755N 09524W, +,US,IPA,Irwin,Irwin,PA,--3-----,RQ,9307,,4020N 07943W, +,US,IPK,Iowa Park,Iowa Park,TX,--3-----,RQ,9307,,3357N 09840W, +,US,IPM,Independence,Independence,MO,--3-----,RQ,9008,,3906N 09425W, +,US,IPT,Williamsport,Williamsport,PA,--34----,AI,9601,,4115N 07700W, +,US,IPW,Ipswich,Ipswich,MA,--3-----,RQ,9307,,4241N 07050W, +,US,IQH,Issaquah,Issaquah,WA,--3-----,RQ,9307,,4732N 12203W, +,US,IRB,Iraan,Iraan,TX,---4----,AI,0001,,3055N 10154W, +,US,IRC,Circle,Circle,AK,---4----,AI,0001,,6548N 14410W, +,US,IRD,Irwindale,Irwindale,CA,--3-----,RQ,9307,,3406N 11756W, +,US,IRG,Irvington,Irvington,CA,--3-----,RQ,9307,,3731N 12158W, +,US,IRJ,Irvington,Irvington,NJ,--3-----,RQ,9307,,4044N 07414W, +,US,IRK,Kirksville,Kirksville,MO,--34----,AI,9601,,4012N 09235W, +,US,IRM,Irmo,Irmo,SC,--3-----,RQ,9307,,3405N 08111W, +,US,IRN,Ironton,Ironton,OH,--3-----,RQ,9008,,3832N 08241W, +,US,IRS,Sturgis,Sturgis,MI,---4----,AI,9601,,4147N 08529W, +,US,IRT,Irving,Irving,TX,--3-----,RQ,9307,,3250N 09657W, +,US,IRV,Irving,Irving,PA,--3-----,RQ,9307,,4032N 07626W, +,US,IRY,Iron City,Iron City,TN,--3-----,RQ,9307,,3501N 08735W, +,US,IRZ,Irvington,Irvington,AL,--3-----,RQ,9307,,3030N 08814W, +,US,ISA,Isola,Isola,MS,--3-----,RQ,9307,,3316N 09036W, +,US,ISB,Ishpeming,Ishpeming,MI,--3-----,RQ,9307,,4637N 08741W, +,US,ISM,Kissimmee,Kissimmee,FL,---4----,AI,9601,,2818N 08124W, +,US,ISN,Williston,Williston,ND,---4----,AI,0001,,4809N 10337W, +,US,ISP,Islip,Islip,NY,---4----,AI,9601,,4044N 07313W, +,US,ISQ,Manistique,Manistique,MI,---4----,AI,0001,,4606N 08611W, +,US,ISS,Wiscasset,Wiscasset,ME,--34----,AI,9506,,4400N 06940W, +,US,ISW,Wisconsin Rapids,Wisconsin Rapids,WI,---4----,AI,9601,,4424N 08949W, +,US,ITH,Ithaca,Ithaca,NY,---4----,AI,9601,,4226N 07633W, +,US,ITO,Hilo,Hilo,HI,1--4----,AI,0001,,1942N 15505W, +,US,ITR,Indian Trail,Indian Trail,NC,--3-----,RQ,9307,,3505N 08040W, +,US,IVF,Ivorydale,Ivorydale,OH,--3-----,RQ,9307,,3911N 08430W, +,US,IVO,Ivanhoe,Ivanhoe,CA,--3-----,RQ,9307,,3623N 11913W, +,US,IVR,Inverness,Inverness,MS,--3-----,RQ,9307,,3321N 09036W, +,US,IVT,Irvington,Irvington,NY,--3-----,RQ,9307,,4102N 07352W, +,US,IVV,Inver Grove Heights,Inver Grove Heights,MN,--3-----,RQ,9307,,4451N 09303W, +,US,IWD,Ironwood,Ironwood,MI,---4----,AI,0001,,4635N 09011W, +,US,IWH,Millstone,Millstone,NJ,--3-----,RQ,0901,,4030N 07435W,2 places in NJ +,US,IWV,Inwood,Inwood,WV,--3-----,RQ,9307,,3921N 07802W, +,US,IXL,Silver Lake,Silver Lake,WI,-23-----,RQ,0901,,4233N 08810W,2 places in WI +,US,IYK,Inyokern,Inyokern,CA,---4----,AI,0001,,3539N 11749W, +,US,IYN,Ivoryton,Ivoryton,CT,--3-----,RL,0005,,4121N 07226W, +,US,IYS,Cabot,Cabot,PA,-----6--,RL,1107,,4046N 07946W, +,US,JAA,Jackson,Jackson,MO,--3-----,RQ,9307,,3723N 08940W, +,US,JAC,Jackson,Jackson,WY,---4----,AI,9601,,4329N 11046W, +,US,JAN,Jackson,Jackson,MS,--34----,AI,9601,,3218N 09011W, +,US,JAO,Jacksonville,Jacksonville,AL,--3-----,RL,9805,,3349N 08546W, +,US,JAP,Jasper,Jasper,IN,--3-----,RQ,9307,,3823N 08656W, +,US,JAR,Arcadia,Arcadia,CA,--34----,AI,9601,,3408N 11802W, +,US,JAS,Jasper,Jasper,TX,---4----,AI,9601,,3055N 09360W, +,US,JAW,Jackson,Jackson,WI,--3-----,RQ,9307,,4319N 08810W, +,US,JAX,Jacksonville,Jacksonville,FL,1--4----,AI,0001,,3020N 08139W, +,US,JBK,Berkeley,Berkeley,CA,1--4----,AI,0001,,3752N 12216W, +,US,JBR,Jonesboro,Jonesboro,AR,--34----,RQ,9008,,3550N 09042W, +!,US,JCC,Junction City,Junction City,KS,--3-----,RQ,9307,,3902N 09650W, +,US,JCK,Jack,Jack,AL,--3-----,RQ,9307,,3134N 08600W, +,US,JCN,Jefferson City,Jefferson City,TN,--3-----,RQ,9307,,3607N 08330W, +,US,JCR,Jackson Center,Jackson Center,OH,--3-----,RQ,9307,,4026N 08402W, +,US,JCT,Junction,Junction,TX,---4----,AI,9601,,3029N 09946W, +,US,JDA,John Day,John Day,OR,---4----,AI,0001,,4425N 11857W, +,US,JDN,Jordan,Jordan,MT,---4----,AI,0001,,4719N 10655W, +,US,JDY,Downey,Downey,CA,--34----,AI,1307,,3356N 11808W, +,US,JEA,Jeannette,Jeannette,PA,--3-----,RQ,9307,,4020N 07937W, +,US,JEC,Jersey City,Jersey City,NJ,1-3-----,RN,0105,,4043N 07403W, +,US,JED,Jefferson Island,Jefferson Island,LA,--3-----,RQ,9307,,2959N 09159W, +,US,JEE,Jeffersonville,Jeffersonville,PA,--3-----,RL,9811,,4008N 07522W, +,US,JEF,Jefferson City,Jefferson City,MO,---4----,AI,9601,,3835N 09210W, +,US,JEM,Emeryville,Emeryville,CA,---4----,AI,9601,,3750N 12217W, +,US,JEN,Jennings,Jennings,LA,--3-----,RQ,9307,,3013N 09239W, +,US,JEP,Jessup,Jessup,PA,--3-----,RQ,9307,,4128N 07534W, +,US,JER,Jerome,Jerome,ID,--3-----,RQ,9307,,4243N 11431W, +,US,JES,Jesup,Jesup,GA,--3-----,RQ,9307,,3136N 08153W, +,US,JET,Jeffersontown,Jeffersontown,KY,--3-----,RQ,9307,,3812N 08534W, +,US,JEV,Jeffersonville,Jeffersonville,GA,--3-----,RQ,9307,,3241N 08321W, +,US,JFE,Jefferson,Jefferson,IN,--3-----,RQ,9307,,4017N 08635W, +,US,JFF,Jefferson,Jefferson,LA,--3-----,RQ,9307,,2958N 09009W, +,US,JFJ,Jefferson Junction,Jefferson Junction,WI,--3-----,RQ,9307,,4157N 07533W, +,US,JFL,Jefferson,Jefferson,MS,--3-----,RQ,9307,,3338N 08954W, +,US,JFN,Jefferson,Jefferson,OH,---4----,AI,9601,,4144N 08046W, +,US,JFS,Jefferson,Jefferson,WI,--3-----,RQ,9307,,4300N 08848W, +,US,JFV,Jeffersonville,Jeffersonville,IN,--3-----,RQ,9008,,3817N 08544W, +,US,JGX,Glendale,Glendale,CA,---4----,AI,9601,,3409N 11815W, +,US,JGZ,Burlington,Burlington,OK,--3-----,RL,1107,,3654N 09825W, +,US,JHB,Johnsonburg,Johnsonburg,PA,--3-----,RQ,9307,,4129N 07841W, +,US,JHC,Garden City,Garden City,NY,---4----,AI,9601,,4044N 07338W, +,US,JHM,Kapalua,Kapalua,HI,---4----,AI,0001,,2100N 15640W, +,US,JHV,Johnsonville,Johnsonville,SC,--3-----,RQ,9307,,3349N 07927W, +,US,JHW,Jamestown,Jamestown,NY,--34----,AI,9601,,4206N 07914W, +,US,JHY,Cambridge,Cambridge,MA,--34----,AI,9601,,4222N 07106W, +,US,JID,City of Industry,City of Industry,CA,--3-----,RQ,9307,,3401N 11758W, +,US,JIL,McNeil,McNeil,TX,--3-----,RQ,0901,,2943N 09735W,2 places in TX +,US,JIS,Johns Island,Johns Island,SC,--3-----,RQ,9307,,3248N 08006W, +,US,JKB,Jacksonboro,Jacksonboro,SC,--3-----,RQ,9307,,3246N 08027W, +,US,JKG,Jackson,Jackson,GA,--3-----,RQ,9307,,3318N 08358W, +,US,JKS,Jackson,Jackson,AL,--3-----,RQ,9307,,3131N 08754W, +,US,JKT,Jenkintown,Jenkintown,PA,--3-----,RQ,9307,,4006N 07508W, +,US,JKV,Jacksonville,Jacksonville,TX,---4----,AI,9601,,3158N 09516W, +,US,JLH,Arlington Heights,Arlington Heights,IL,--34----,AI,9601,,4205N 08759W, +,US,JLN,Joplin,Joplin,MO,--34----,AI,9601,,3705N 09431W, +!,US,JLX,Jonesville,Jonesville,LA,--3-----,RQ,9307,,3138N 09149W, +,US,JMC,Sausalito,Sausalito,CA,1-34----,AI,1701,,3752N 12229W, +,US,JMH,Schaumburg,Schaumburg,IL,--34----,AI,9601,,4202N 08805W, +,US,JMS,Jamestown,Jamestown,ND,---4----,AI,9601,,4655N 09843W, +,US,JMT,Jamestown,Jamestown,KY,--3-----,RQ,9307,,3659N 08504W, +,US,JMW,Jamestown,Jamestown,CA,--3-----,RQ,9307,,3758N 12024W, +,US,JNT,Jonestown,Jonestown,PA,--3-----,RL,0212,,4108N 07618W, +,US,JNU,Juneau,Juneau,AK,1--4----,AI,0001,,5818N 13425W, +,US,JNY,Johnson,Johnson,NY,--3-----,RQ,9307,,4122N 07430W, +,US,JOC,Johnson City,Johnson City,OR,--3-----,RQ,9307,,4524N 12235W, +,US,JOE,Jonesville,Jonesville,MI,--3-----,RQ,9307,,4159N 08440W, +,US,JOL,Jonesville,Jonesville,SC,--3-----,RQ,0407,,3450N 08141W, +,US,JOO,Jonesboro,Jonesboro,TN,--3-----,RQ,9307,,3550N 09042W, +,US,JOP,Joppa,Joppa,MD,--3-----,RQ,9307,,3926N 07621W, +,US,JOS,Johnston,Johnston,RI,--3-----,RQ,9307,,4150N 07132W, +,US,JOT,Joliet,Joliet,IL,--34----,AI,9601,,4132N 08805W, +!,US,JPT,Jupiter,Jupiter,FL,--3-----,RQ,9307,,2656N 08006W, +,US,JRI,Jericho,Jericho,NY,--3-----,RQ,9307,,4048N 07332W, +,US,JRM,Jerome,Jerome,IN,--3-----,RQ,9307,,4027N 08556W, +,US,JSD,Stratford,Stratford,CT,--34----,AI,9601,,4111N 07308W, +!,US,JSL,Joslin,Joslin,IL,--3-----,RQ,9307,,4133N 09013W, +,US,JST,Johnstown,Johnstown,PA,--34----,AI,9601,,4020N 07855W, +,US,JTO,Thousand Oaks,Thousand Oaks,CA,---4----,AI,9601,,3410N 11850W, +,US,JTT,Jewett,Jewett,TX,--3-----,RQ,9307,,3122N 09609W, +,US,JTW,Johnstown,Johnstown,NY,--3-----,RQ,9307,,4300N 07422W, +,US,JVI,Manville,Manville,NJ,---4----,AI,0001,,4032N 07435W, +,US,JWT,Jewett City,Jewett City,CT,--3-----,RQ,9307,,4136N 07159W, +,US,JXN,Jackson,Jackson,MI,--34----,AI,9601,,4215N 08424W, +,US,JYR,Argyle,Argyle,NY,1----6--,RQ,1001,,4314N 07330W, +,US,KAE,Kake,Kake,AK,--3-----,RQ,9506,,5658N 13356W, +,US,KAL,Kaltag,Kaltag,AK,---4----,AI,0001,,6419N 15845W, +,US,KAM,Kalama,Kalama,WA,--3-----,RN,0105,,4601N 12251W, +,US,KAN,Kane,Kane,PA,--3-----,RQ,9307,,4140N 07849W, +,US,KAT,Katonah,Katonah,NY,--3-----,RQ,9501,,4116N 07341W, +,US,KAU,Kaukauna,Kaukauna,WI,--3-----,RQ,9307,,4417N 08816W, +,US,KAV,Kaneville,Kaneville,IL,--3-----,RQ,9307,,4150N 08831W, +,US,KBC,Birch Creek,Birch Creek,AK,---4----,AI,0001,,6616N 14551W, +,US,KBE,Bell Island,Bell Island,AK,---4----,AI,0001,,6126N 15031W, +,US,KBG,Kingsburg,Kingsburg,CA,--3-----,RQ,9307,,3631N 11933W, +,US,KBJ,Kings Beach,Kings Beach,CA,--3-----,RQ,9307,,3914N 12001W, +,US,KBL,Kimberly,Kimberly,WI,--3-----,RQ,9307,,4416N 08820W, +,US,KBN,Kennebunk,Kennebunk,ME,--3-----,RQ,9307,,4323N 07033W, +,US,KBS,Key Biscayne,Key Biscayne,FL,--3-----,RQ,9307,,2542N 08010W, +,US,KCC,Coffman Cove,Coffman Cove,AK,---4----,AI,0001,,5601N 13250W, +,US,KCK,Kansas City,Kansas City,KS,1--4----,RL,1207,MCI,3907N 09438W, +,US,KCL,Chignik,Chignik,AK,---4----,AI,9601,,5618N 15824W, +,US,KCS,Kings Creek,Kings Creek,SC,--3-----,RQ,9008,,3328N 07908W, +,US,KCY,King City,King City,OR,--3-----,RQ,9307,,4524N 12248W, +,US,KCZ,Karns City,Karns City,PA,--3-----,RQ,9307,,4060N 07944W, +,US,KDL,Kendall,Kendall,LA,--3-----,RQ,9307,,2540N 08021W, +,US,KDR,Kendrick,Kendrick,ID,--3-----,RQ,9307,,4637N 11639W, +,US,KDV,Kendallville,Kendallville,IN,--3-----,RQ,9307,,4126N 08516W, +,US,KDY,Kenedy,Kenedy,TX,--3-----,RQ,9307,,2849N 09751W, +,US,KEA,Keasbey,Keasbey,NJ,--3-----,RQ,9008,,4031N 07418W, +,US,KEB,English Bay,English Bay,AK,---4----,AI,0001,,5921N 15155W, +,US,KED,Kennedale,Kennedale,TX,--3-----,RQ,0002,,3239N 09714W, +,US,KEG,Kenbridge,Kenbridge,VA,--3-----,RQ,9307,,3658N 07808W, +,US,KEH,Kenmore Air Harbor,Kenmore Air Harbor,WA,---4----,AI,0001,,4745N 12216W, +,US,KEK,Ekwok,Ekwok,AK,---4----,AI,0001,,5921N 15729W, +,US,KEL,Kendall,Kendall,FL,--3-----,RQ,9307,,2541N 08019W, +,US,KEN,Kensington,Kensington,GA,--3-----,RQ,9307,,3354N 08401W, +,US,KES,Kenner,Kenner,LA,--3-----,RQ,9307,,2960N 09015W, +,US,KET,Kent,Kent,WA,--3-----,RQ,9008,,4723N 12214W, +,US,KEW,Kewanee,Kewanee,IL,--3-----,RQ,9307,,4115N 08955W, +,US,KEX,Keller,Keller,TX,--3-----,RQ,9307,,3256N 09714W, +,US,KEY,Keyport,Keyport,NJ,--3-----,RQ,9307,,4026N 07412W, +,US,KFO,Kasilof,Kasilof,AK,--3-----,RQ,9307,,6020N 15114W, +,US,KFP,False Pass,False Pass,AK,---4----,AI,0001,,5451N 16324W, +,US,KGD,Kingwood,Kingwood,WV,--3-----,RQ,9307,,3928N 07941W, +,US,KGI,Kellogg,Kellogg,ID,--3-----,RQ,9307,,4732N 11607W, +,US,KGN,Kingston,Kingston,MA,--3-----,RQ,9307,,4160N 07043W, +,US,KGS,Kingstree,Kingstree,SC,--3-----,RQ,9307,,3340N 07950W, +,US,KGT,Kingston,Kingston,NY,--3-----,RQ,9307,,4156N 07400W, +,US,KGX,Grayling,Grayling,AK,---4----,AI,0001,,6254N 16004W, +,US,KGZ,Glacier Creek,Glacier Creek,AK,---4----,AI,0001,,4708N 12219W, +,US,KHE,Kaneohe,Kaneohe,HI,--3-----,RL,0106,,2125N 15748W, +,US,KHX,Karthaus,Karthaus,PA,--3-----,RQ,9307,,4109N 07806W, +,US,KIB,Ivanof Bay,Ivanof Bay,AK,---4----,AI,0001,,5556N 15930W, +,US,KIC,King City,King City,CA,---4----,AI,9601,,3613N 12108W, +,US,KID,Kidron,Kidron,OH,--3-----,RQ,9307,,4044N 08145W, +,US,KIG,King,King,NC,--3-----,RQ,9307,,3617N 08022W, +,US,KIK,Killbuck,Killbuck,OH,--3-----,RQ,9307,,4030N 08159W, +,US,KIL,Killingly,Killingly,CT,--3-----,RQ,9307,,4151N 07153W, +,US,KIM,Kimberton,Kimberton,PA,--3-----,RQ,9307,,4008N 07534W, +,US,KIN,Kings Mountain,Kings Mountain,NC,--3-----,RQ,9307,,3515N 08120W, +,US,KIO,Kinwood,Kinwood,TX,--3-----,RQ,9307,,2955N 09518W, +,US,KIP,Tokio,Tokio,TX,--3-----,RQ,0901,,3146N 09709W,2 places in TX +,US,KIU,Kiln,Kiln,MS,--3-----,RQ,9307,,3025N 08926W, +,US,KIY,Kimberly,Kimberly,ID,--3-----,RQ,9307,,4232N 11422W, +,US,KKA,Koyuk,Koyuk,AK,---4----,AI,0001,,6456N 16110W, +,US,KKH,Kongiganak,Kongiganak,AK,---4----,AI,0001,,5958N 16253W, +,US,KKI,Akiachak,Akiachak,AK,---4----,AI,0001,,6055N 16127W, +,US,KKK,Kalakaket,Kalakaket,AK,---4----,AI,0001,,6425N 15650W, +,US,KKT,Kentland,Kentland,IN,---4----,AI,9601,,4046N 08727W, +,US,KLD,Kalida,Kalida,OH,--3-----,RQ,9307,,4059N 08412W, +,US,KLG,Kalskag,Kalskag,AK,---4----,AI,0001,,6132N 16019W, +,US,KLL,Levelock,Levelock,AK,---4----,AI,0001,,5904N 15655W, +,US,KLN,Larsen Bay,Larsen Bay,AK,---4----,AI,9307,,5733N 15401W, +,US,KLO,Kellogg,Kellogg,OR,--3-----,RQ,9307,,4333N 12333W, +,US,KLS,Kelso,Kelso,WA,1--4----,AI,0001,,4609N 12254W, +,US,KLW,Klawock,Klawock,AK,--34----,AI,9506,,5533N 13306W, +,US,KMO,Manokotak,Manokotak,AK,---4----,AI,0001,,5860N 15900W, +,US,KMQ,Kerman,Kerman,CA,--3-----,RQ,9307,,3643N 12004W, +,US,KNA,Keenan,Keenan,TX,--3-----,RQ,9307,,3019N 09539W, +,US,KNB,Kanab,Kanab,UT,---4----,AI,0001,,3703N 11232W, +,US,KNG,Kingman,Kingman,IN,--3-----,RQ,9008,,3958N 08717W, +,US,KNJ,Kingston,Kingston,NJ,--3-----,RQ,9307,,4022N 07436W, +,US,KNN,Kennett Square,Kennett Square,PA,--3-----,RQ,9307,,3951N 07543W, +,US,KNO,Kenton,Kenton,OH,--3-----,RQ,9307,,4039N 08337W, +,US,KNP,Kannapolis,Kannapolis,NC,--3-----,RQ,9307,,3529N 08037W, +,US,KNQ,Kenton,Kenton,TN,--3-----,RQ,9307,,3612N 08901W, +,US,KNS,Kingston,Kingston,PA,--3-----,RQ,9307,,4116N 07554W, +,US,KNT,Kennett,Kennett,MO,--34----,AI,9601,,3614N 09003W, +,US,KNU,Kentwood,Kentwood,LA,--3-----,RQ,9008,,3056N 09031W, +,US,KNV,Kenansville,Kenansville,NC,--3-----,RQ,9307,,3458N 07758W, +,US,KNW,New Stuyahok,New Stuyahok,AK,---4----,AI,0001,,5929N 15716W, +,US,KNX,Knox,Knox,IN,--3-----,RQ,9307,,4118N 08637W, +,US,KOR,Kohler,Kohler,WI,--3-----,RQ,9307,,4344N 08747W, +,US,KOT,Kotlik,Kotlik,AK,---4----,AI,0001,,6302N 16333W, +,US,KOZ,Ouzinkie,Ouzinkie,AK,---4----,AI,0001,,5755N 15230W, +,US,KPB,Point Baker,Point Baker,AK,---4----,AI,0001,,5621N 13337W, +,US,KPC,Port Clarence,Port Clarence,AK,---4----,AI,1101,,6516N 16651W, +,US,KPK,Parks,Parks,AK,---4----,AI,0001,,6148N 15721W, +,US,KPL,Kaplan,Kaplan,LA,--3-----,RQ,9307,,3000N 09217W, +,US,KPN,Kipnuk,Kipnuk,AK,---4----,AI,0001,,5956N 16401W, +,US,KPT,Jackpot,Jackpot,NV,---4----,AI,0001,,4159N 11440W, +,US,KPV,Perryville,Perryville,AK,---4----,AI,0001,,5556N 15908W, +,US,KPY,Port Bailey,Port Bailey,AK,---4----,AI,1101,,5756N 15302W, +,US,KQO,Kailua (Oahu),Kailua (Oahu),HI,--3-----,RQ,9307,,1939N 15560W, +,US,KRP,Kreamer,Kreamer,PA,--3-----,RQ,9307,,4048N 07658W, +,US,KRW,Kershaw,Kershaw,SC,--3-----,RQ,9307,,3433N 08035W, +,US,KSM,Saint Marys,Saint Marys,AK,---4----,AI,1101,,3912N 09604W, +,US,KSO,Kingston,Kingston,RI,--3-----,RQ,9307,,4129N 07131W, +,US,KSR,Sandy River,Sandy River,AK,---4----,AI,0001,,3643N 07939W, +,US,KST,Kosse,Kosse,TX,--3-----,RQ,9307,,3118N 09638W, +,US,KSW,Kennesaw,Kennesaw,GA,--3-----,RQ,9307,,3401N 08437W, +,US,KTB,Thorne Bay,Thorne Bay,AK,---4----,AI,0001,,5539N 13231W, +,US,KTG,Kittanning,Kittanning,PA,--3-----,RQ,9307,,4049N 07931W, +,US,KTH,Tikchik,Tikchik,AK,---4----,AI,0001,,6002N 15841W, +,US,KTN,Ketchikan,Ketchikan,AK,1--4----,AI,0001,,5521N 13139W, +,US,KTO,Kent,Kent,OH,--3-----,RQ,9307,,4109N 08121W, +,US,KTP,Kensington,Kensington,PA,--3-----,RQ,9307,,3959N 07508W, +,US,KTQ,Kingston,Kingston,TN,--3-----,RQ,9704,,3552N 08431W, +,US,KTR,Kettering,Kettering,OH,--3-----,RQ,9307,,3941N 08410W, +,US,KTX,Katy,Katy,TX,--3-----,RQ,9307,,2947N 09549W, +,US,KUA,Kaunakakai (Molokai),Kaunakakai (Molokai),HI,--3-----,RQ,9307,,2105N 15701W, +,US,KUI,Kailua (Maui),Kailua (Maui),HI,--3-----,RQ,9307,,1939N 15560W, +,US,KUK,Kasigluk,Kasigluk,AK,---4----,AI,0001,,6052N 16231W, +,US,KUP,Kulpsville,Kulpsville,PA,--3-----,RQ,9307,,4015N 07520W, +,US,KUY,Uyak,Uyak,AK,---4----,AI,9601,,5738N 15400W, +,US,KVC,King Cove,King Cove,AK,---4----,AI,9601,,5504N 16219W, +,US,KVL,Kivalina,Kivalina,AK,---4----,AI,0001,,6744N 16431W, +,US,KWC,Kennewick,Kennewick,WA,--3-----,RQ,9307,,4613N 11907W, +,US,KWD,Kentwood,Kentwood,MI,--3-----,RQ,9307,,4252N 08539W, +,US,KWF,Waterfall,Waterfall,AK,---4----,AI,0001,,5518N 13315W, +,US,KWI,Kewaskum,Kewaskum,WI,--3-----,RQ,9307,,4331N 08814W, +,US,KWK,Kwigillingok,Kwigillingok,AK,---4----,AI,0001,,5953N 16309W, +,US,KWN,Quinhagak,Quinhagak,AK,---4----,AI,0001,,5945N 16154W, +,US,KWO,Kenilworth,Kenilworth,NJ,--3-----,RQ,9008,,4041N 07417W, +,US,KWP,West Point,West Point,AK,---4----,AI,0001,,3336N 08839W, +,US,KWT,Kwethluk,Kwethluk,AK,---4----,AI,0001,,6048N 16125W, +,US,KXA,Kasaan,Kasaan,AK,---4----,AI,0001,,5533N 13225W, +,US,KYB,Blaze,Blaze,KY,-----6--,RQ,1001,,3801N 08320W, +,US,KYE,Kearney,Kearney,MO,--3-----,RQ,9307,,3922N 09422W, +,US,KYK,Karluk,Karluk,AK,---4----,AI,0001,,5736N 15418W, +,US,KYL,Key Largo,Key Largo,FL,---4----,AI,0001,,2510N 08022W, +,US,KYN,Kenyon,Kenyon,RI,--3-----,RQ,9307,,4127N 07138W, +!,US,KYO,Kenton,Kenton,OR,--3-----,RQ,9307,,4535N 12242W, +,US,KYU,Koyukuk,Koyukuk,AK,---4----,AI,0001,,6454N 15742W, +,US,LAA,Lamar,Lamar,CO,---4----,AI,9601,,3805N 10237W, +,US,LAC,Lancaster,Lancaster,NY,--3-----,RQ,9008,,4254N 07840W, +,US,LAD,Lauderhill,Lauderhill,FL,--3-----,RQ,9307,,2609N 08014W, +,US,LAF,Lafayette,Lafayette,IN,---4----,AI,9601,,4026N 08654W, +,US,LAG,Lansing,Lansing,NC,--3-----,RQ,9307,,3630N 08131W, +,US,LAH,Los Altos Hills,Los Altos Hills,CA,--3-----,RQ,9307,,3723N 12208W, +,US,LAI,La Grange,La Grange,IL,--3-----,RQ,9307,,4148N 08752W, +,US,LAJ,L'Anse,L'Anse,MI,--3-----,RQ,9307,,4645N 08827W, +,US,LAK,Lady Lake,Lady Lake,FL,--3-----,RQ,0002,,2855N 08155W, +,US,LAL,Lakeland,Lakeland,FL,--34----,AI,9601,,2802N 08157W, +,US,LAN,Lansing,Lansing,MI,--34----,AI,9601,,4244N 08433W, +,US,LAO,La Porte,La Porte,IN,--3-----,RQ,9307,,4137N 08643W, +,US,LAP,La Plata,La Plata,MD,--3-----,RQ,9307,,3832N 07659W, +,US,LAQ,Lawrenceburg,Lawrenceburg,KY,--3-----,RQ,9008,,3802N 08454W, +,US,LAV,Lawrenceville,Lawrenceville,KY,--3-----,RQ,9307,,3834N 08439W, +,US,LAW,Lawton,Lawton,OK,--34----,AI,9601,,3437N 09823W, +,US,LAX,Los Angeles,Los Angeles,CA,1--45---,AI,0001,,3403N 11815W, +,US,LAY,Lacey,Lacey,WA,--3-----,RQ,9307,,4702N 12248W, +,US,LBB,Lubbock,Lubbock,TX,---4----,AI,0001,,3335N 10151W, +,US,LBC,Lake Bluff,Lake Bluff,IL,--3-----,RQ,9307,,4217N 08750W, +,US,LBD,Lebanon,Lebanon,IN,--3-----,RQ,9307,,4003N 08628W, +,US,LBE,Latrobe,Latrobe,PA,---4----,AI,0001,,4019N 07923W, +,US,LBF,North Platte,North Platte,NE,--34----,AI,9601,,4107N 10046W, +,US,LBG,Lewisburg,Lewisburg,TN,--3-----,RQ,9307,,3527N 08647W, +,US,LBI,Liberty,Liberty,NC,--3-----,RQ,9307,,3551N 07934W, +,US,LBL,Liberal,Liberal,KS,--34----,AI,9601,,3703N 10055W, +,US,LBM,Lebanon,Lebanon,MO,--3-----,RQ,9307,,3741N 09240W, +,US,LBN,Lebanon,Lebanon,TN,--3-----,RQ,9307,,3612N 08617W, +,US,LBO,Lebanon,Lebanon,CT,--3-----,RQ,9307,,4138N 07213W, +,US,LBP,Lebanon,Lebanon,PA,--3-----,RQ,9307,,4021N 07625W, +,US,LBS,Lumberton,Lumberton,MS,--3-----,RQ,9307,,3100N 08927W, +,US,LBT,Lumberton,Lumberton,NC,--34----,AI,9601,,3437N 07900W, +,US,LBU,Lewisburg,Lewisburg,OH,--3-----,RQ,9307,,3951N 08432W, +,US,LBV,Libertyville,Libertyville,IL,--3-----,RQ,9307,,4217N 08757W, +,US,LBW,Lake Buena Vista,Lake Buena Vista,FL,--3-----,RQ,0101,,2823N 08132W, +,US,LBX,Liberty,Liberty,TX,--3-----,RQ,9307,,3004N 09448W, +,US,LBY,Liberty,Liberty,SC,--3-----,RQ,9307,,3447N 08242W, +,US,LBZ,Libby,Libby,MT,--3-----,RQ,9307,,4823N 11533W, +,US,LCD,Little Canada,Little Canada,MN,--3-----,RQ,9307,,4502N 09305W, +,US,LCE,Lincoln Center,Lincoln Center,ME,--3-----,RQ,9307,,4523N 06828W, +,US,LCH,Lake Charles,Lake Charles,LA,1--4----,AI,0001,,3014N 09313W, +,US,LCI,Laconia,Laconia,NH,---4----,AI,0001,,4332N 07128W, +,US,LCK,Lockbourne,Lockbourne,OH,--3-----,RL,0002,,3949N 08258W, +,US,LCL,Lincoln,Lincoln,IL,--3-----,RQ,9307,,4009N 08922W, +,US,LCM,Leicester,Leicester,MA,--3-----,RQ,9307,,4215N 07154W, +,US,LCN,Lincoln,Lincoln,RI,--3-----,RQ,9008,,4157N 07128W, +,US,LCP,Lecompte,Lecompte,LA,--3-----,RQ,9307,,3106N 09224W, +,US,LCR,La Crescenta,La Crescenta,CA,--3-----,RQ,9307,,3414N 11814W, +,US,LCT,Lincolnton,Lincolnton,NC,--3-----,RQ,9008,,3528N 08115W, +,US,LCW,Lincolnwood,Lincolnwood,IL,--3-----,RQ,9307,,4200N 08744W, +,US,LDB,Lindsborg,Lindsborg,KS,--3-----,RQ,9307,,3834N 09740W, +,US,LDD,Ladd,Ladd,IL,--3-----,RQ,9307,,4123N 08913W, +,US,LDE,Linden,Linden,TN,--3-----,RQ,9307,,3537N 08750W, +,US,LDF,Lamar,Lamar,MO,--3-----,RQ,9307,,3730N 09417W, +,US,LDH,Lindenhurst,Lindenhurst,NY,--3-----,RQ,9307,,4041N 07322W, +,US,LDI,Lodi,Lodi,CA,--3-----,RQ,9307,,3808N 12116W, +,US,LDJ,Linden,Linden,NJ,--34----,AI,9601,,4037N 07415W, +,US,LDL,Lindale,Lindale,GA,--3-----,RQ,9307,,3412N 08511W, +,US,LDM,Ludington,Ludington,MI,1--4----,AI,0207,,4357N 08627W, +,US,LDN,London,London,OH,--3-----,RQ,9307,,3953N 08327W, +,US,LDO,Langdon,Langdon,ND,--3-----,RQ,0101,,4846N 09822W, +,US,LDR,Landover,Landover,MD,--3-----,RQ,9307,,3856N 07654W, +,US,LDS,Leeds,Leeds,AL,--3-----,RQ,9307,,3333N 08633W, +,US,LDV,Landisville,Landisville,NJ,--3-----,RQ,9008,,3931N 07456W, +,US,LDX,Ladonia,Ladonia,TX,--3-----,RQ,9307,,3326N 09557W, +,US,LDZ,Ladson,Ladson,SC,--3-----,RQ,9307,,3259N 08007W, +,US,LEA,Leander,Leander,TX,--3-----,RQ,9307,,3034N 09751W, +,US,LEB,White River-Hanover-Lebanon Apt,White River-Hanover-Lebanon Apt,VT,---4----,AI,0001,,4338N 07218W, +,US,LEC,Leechburg,Leechburg,PA,--3-----,RQ,9307,,4038N 07936W, +,US,LED,Leeds,Leeds,SC,--3-----,RQ,9307,,3438N 08124W, +,US,LEE,Leesburg,Leesburg,FL,---4----,AI,9601,,2849N 08153W, +,US,LEH,Lee,Lee,MA,--3-----,RQ,9307,,4218N 07315W, +,US,LEI,Lehi,Lehi,UT,--3-----,RQ,9307,,4023N 11151W, +,US,LEL,Lexington,Lexington,TN,--3-----,RQ,9307,,3539N 08824W, +,US,LEN,Lena,Lena,IL,--3-----,RQ,9307,,4223N 08949W, +,US,LEP,Leesport,Leesport,PA,--3-----,RQ,9307,,4027N 07558W, +,US,LER,Lenoir,Lenoir,NC,--3-----,RQ,9307,,3555N 08132W, +,US,LES,Leesburg,Leesburg,GA,--3-----,RQ,9307,,3144N 08410W, +,US,LET,Lexington,Lexington,SC,--3-----,RQ,9307,,3359N 08114W, +,US,LEW,Lewiston-Auburn Apt,Lewiston-Auburn Apt,ME,--34----,AI,9601,,4403N 07017W, +,US,LEX,Lexington,Lexington,KY,--34----,RQ,9008,,3803N 08430W, +,US,LEZ,Lester,Lester,PA,--3-----,RQ,9307,,3952N 07517W, +,US,LFA,Lebanon,Lebanon,KY,--3-----,RQ,9307,,3734N 08515W, +,US,LFD,Landis,Landis,NC,--3-----,RQ,9307,,3533N 08037W, +,US,LFG,Lafayette,Lafayette,GA,--3-----,RQ,9307,,3442N 08517W, +,US,LFJ,Little Falls,Little Falls,NJ,--3-----,RQ,9307,,4052N 07412W, +,US,LFK,Lufkin,Lufkin,TX,--34----,AI,9601,,3120N 09444W, +,US,LFL,La Belle,La Belle,FL,--3-----,RQ,9307,,4007N 09155W, +,US,LFN,Louisburg,Louisburg,NC,---4----,AI,9601,,3606N 07818W, +,US,LFO,La Follette,La Follette,TN,--3-----,RQ,9307,,3623N 08407W, +,US,LFP,Laflin,Laflin,PA,--3-----,RQ,9307,,4117N 07548W, +,US,LFQ,Lewisburg,Lewisburg,PA,--3-----,RQ,9307,,4058N 07653W, +,US,LFR,Lake Forest,Lake Forest,IL,--3-----,RQ,9307,,4216N 08750W, +,US,LFT,Lafayette,Lafayette,LA,---4----,AI,9601,,3014N 09201W, +,US,LFW,Lafayette,Lafayette,NJ,--3-----,RQ,9307,,4018N 07418W, +,US,LFX,La Feria,La Feria,TX,--3-----,RQ,9307,,2610N 09749W, +,US,LGD,La Grande,La Grande,OR,--34----,AI,1801,,4519N 11805W, +,US,LGG,Long Grove,Long Grove,IL,--3-----,RQ,9307,,4211N 08760W, +,US,LGH,Laughlin,Laughlin,NV,--3-----,RQ,0101,,3510N 11434W, +,US,LGI,Ligonier,Ligonier,IN,--3-----,RQ,9307,,4128N 08535W, +,US,LGJ,Long Valley,Long Valley,NJ,--3-----,RQ,9307,,4047N 07446W, +,US,LGL,Langley,Langley,WA,--3-----,RQ,9307,,4802N 12225W, +,US,LGN,Lagrange,Lagrange,IN,--3-----,RQ,9307,,4139N 08525W, +,US,LGP,Logansport,Logansport,IN,--3-----,RQ,9307,,4045N 08621W, +,US,LGT,Leighton,Leighton,AL,--3-----,RQ,9307,,3442N 08732W, +,US,LGU,Logan,Logan,UT,--34----,AI,9601,,4144N 11150W, +,US,LGW,Longwood,Longwood,FL,--3-----,RQ,9307,,2842N 08121W, +,US,LGX,La Grange,La Grange,TX,--3-----,RQ,9307,,2954N 09652W, +,US,LGY,Langley,Langley,SC,--3-----,RQ,9307,,3331N 08151W, +,US,LHF,Litchfield,Litchfield,MN,--3-----,RQ,9307,,4508N 09432W, +,US,LHH,Langeloth,Langeloth,PA,--3-----,RQ,9307,,4022N 08025W, +,US,LHM,Lake Hamilton,Lake Hamilton,FL,--3-----,RQ,9307,,2803N 08138W, +,US,LHN,Lahaina,Lahaina,HI,--3-----,RQ,9307,,2052N 15641W, +,US,LHO,Lehigh Valley,Lehigh Valley,PA,--3-----,RQ,9008,,4040N 07527W, +,US,LHS,Lithia Springs,Lithia Springs,GA,--3-----,RQ,9008,,3348N 08440W, +,US,LHV,Lock Haven,Lock Haven,PA,--34----,AI,9601,,4108N 07727W, +,US,LIA,Lima,Lima,OH,--34----,AI,9601,,4045N 08407W, +,US,LIC,Limon,Limon,CO,---4----,AI,9601,,3916N 10342W, +,US,LID,Lindale,Lindale,TX,--3-----,RQ,9307,,3231N 09525W, +,US,LIF,Littlefield,Littlefield,TX,--3-----,RQ,9307,,3355N 10220W, +,US,LIG,Ligonier,Ligonier,PA,--3-----,RQ,9307,,4015N 07914W, +,US,LIJ,Long Island,Long Island,AK,---4----,AI,0001,,5425N 16249W, +,US,LIL,Lakeville,Lakeville,MA,--3-----,RQ,9307,,4151N 07057W, +,US,LIN,Lionville,Lionville,PA,--3-----,RQ,9307,,4003N 07539W, +,US,LIO,Lithonia,Lithonia,GA,--3-----,RQ,9307,,3343N 08406W, +,US,LIP,Lincoln Park,Lincoln Park,MI,--3-----,RQ,9307,,4215N 08311W, +,US,LIS,Listerhill,Listerhill,AL,--3-----,RQ,9307,,3445N 08735W, +,US,LIT,Little Rock,Little Rock,AR,---4----,AI,0001,,3445N 09217W, +,US,LIV,Livengood,Livengood,AK,---4----,AI,0001,,6531N 14833W, +,US,LIW,Linwood,Linwood,PA,--3-----,RQ,9307,,3950N 07526W, +,US,LIX,Livingston,Livingston,TX,--3-----,RQ,9307,,3043N 09456W, +,US,LIY,Hinesville,Hinesville,GA,---4----,AI,0001,,3151N 08136W, +,US,LJB,Lisbon,Lisbon,NH,--3-----,RQ,9307,,4413N 07155W, +,US,LJH,La Junta,La Junta,CO,--3-----,RQ,9307,,3759N 10333W, +,US,LJK,Lakewood,Lakewood,CO,--3-----,RQ,9307,,3943N 10505W, +,US,LJN,Lake Jackson,Lake Jackson,TX,---4----,AI,0001,,2902N 09526W, +,US,LJV,Lewisville,Lewisville,TX,--3-----,RQ,9307,,3303N 09660W, +,US,LJW,Lowell,Lowell,WI,--3-----,RQ,9307,,4319N 08848W, +,US,LKA,Lake Alfred,Lake Alfred,FL,--3-----,RQ,9307,,2806N 08143W, +,US,LKB,Lake City,Lake City,FL,--3-----,RQ,9307,,3011N 08238W, +,US,LKC,Lake City,Lake City,SC,--3-----,RQ,9307,,3352N 07945W, +,US,LKH,Lake Harbor,Lake Harbor,FL,--3-----,RQ,9307,,2642N 08049W, +,US,LKL,Lockland,Lockland,OH,--3-----,RQ,9307,,3914N 08427W, +,US,LKM,Lake Mary,Lake Mary,FL,--3-----,RQ,9008,,2845N 08119W, +,US,LKN,Lumpkin,Lumpkin,GA,--3-----,RQ,9307,,3203N 08448W, +,US,LKP,Lake Placid,Lake Placid,NY,---4----,AI,0001,,4417N 07359W, +,US,LKS,Lakeside,Lakeside,TX,---4----,AI,0001,,3249N 09730W, +,US,LKV,Lakeview,Lakeview,OR,---4----,AI,0001,,4211N 12021W, +,US,LKW,Lakewood,Lakewood,NJ,--3-----,RQ,9008,,4006N 07413W, +,US,LKX,Lakeview,Lakeview,GA,--3-----,RQ,9307,,3458N 08515W, +,US,LKY,Lakewood,Lakewood,NY,--3-----,RQ,9307,,4206N 07920W, +,US,LKZ,Lake Zurich,Lake Zurich,IL,--3-----,RQ,9307,,4212N 08806W, +,US,LLA,Leola,Leola,PA,--3-----,RQ,9307,,4005N 07611W, +,US,LLD,Leland,Leland,MS,--3-----,RQ,9307,,3324N 09054W, +,US,LLE,Long Lake,Long Lake,MN,--3-----,RQ,9307,,4459N 09334W, +,US,LLG,Lilburn,Lilburn,GA,--3-----,RQ,9008,,3353N 08409W, +,US,LLK,Liberty Lake,Liberty Lake,WA,--3-----,RQ,9307,,4740N 11706W, +,US,LLL,Lillington,Lillington,NC,-23-----,RQ,9709,,3524N 07849W, +,US,LLN,Lincoln,Lincoln,CA,--3-----,RQ,9307,,3853N 12118W, +,US,LLO,Lordstown,Lordstown,OH,--3-----,RQ,9307,,4110N 08051W, +,US,LLP,Long Prairie,Long Prairie,MN,--3-----,RQ,9307,,4558N 09452W, +,US,LLQ,Lowland,Lowland,TN,--3-----,RQ,9307,,3609N 08312W, +,US,LLS,Land O' Lakes,Land O' Lakes,WI,--3-----,RQ,9307,,4610N 08913W, +,US,LLT,Los Altos,Los Altos,CA,--3-----,RQ,9307,,3723N 12207W, +,US,LLW,Ludlow,Ludlow,KY,--3-----,RQ,9307,,3906N 08433W, +,US,LLX,Lyndonville,Lyndonville,VT,---4----,AI,0001,,4432N 07200W, +,US,LLZ,Levelland,Levelland,TX,--3-----,RQ,9307,,3335N 10223W, +,US,LMA,Lake Minchumina,Lake Minchumina,AK,---4----,AI,0001,,6349N 15223W, +,US,LMB,Lumberton,Lumberton,TX,--3-----,RQ,9307,,3016N 09412W, +,US,LME,Lanham,Lanham,MD,--3-----,RQ,9307,,3858N 07651W, +,US,LMI,La Mirada,La Mirada,CA,--3-----,RQ,9307,,3354N 11801W, +,US,LMJ,Lemont,Lemont,IL,--3-----,RQ,9307,,4140N 08800W, +,US,LMR,Leominster,Leominster,MA,--3-----,RN,0105,,4232N 07146W, +,US,LMS,Louisville,Louisville,MS,---4----,AI,9601,,3307N 08903W, +,US,LMT,Klamath Falls,Klamath Falls,OR,--34----,AI,9601,,4213N 12147W, +,US,LMV,Lambertville,Lambertville,NJ,--3-----,RQ,9307,,4022N 07457W, +!,US,LNA,Linden,Linden,AL,--3-----,RQ,9307,,3218N 08748W, +,US,LNB,Lebanon,Lebanon,OH,--3-----,RQ,9307,,3926N 08412W, +,US,LNC,Lancaster,Lancaster,OH,--3-----,RQ,9307,,3943N 08236W, +,US,LNE,Los Nietos,Los Nietos,CA,--3-----,RQ,9307,,3358N 11804W, +,US,LNG,Longmont,Longmont,CO,--3-----,RQ,9008,,4010N 10506W, +,US,LNI,Lonely,Lonely,AK,---4----,AI,0001,,4033N 07842W, +,US,LNJ,Linn,Linn,MO,--3-----,RQ,9307,,3829N 09151W, +,US,LNK,Lincoln,Lincoln,NE,--34----,AI,9601,,4049N 09642W, +,US,LNM,Linthicum,Linthicum,MD,--3-----,RQ,9506,,3912N 07640W, +,US,LNN,Willoughby,Willoughby,OH,---4----,AI,9601,,4138N 08124W, +,US,LNO,Lando,Lando,SC,--3-----,RQ,9307,,3447N 08101W, +,US,LNP,Wise,Wise,VA,---4----,AI,0001,,3659N 08235W, +,US,LNR,Lone Rock,Lone Rock,WI,---4----,AI,0001,,4311N 09012W, +,US,LNS,Lancaster,Lancaster,PA,--34----,AI,9601,,4002N 07618W, +,US,LNT,Lantana,Lantana,FL,--3-----,RQ,9307,,2635N 08003W, +,US,LNU,Laona,Laona,WI,--3-----,RQ,9307,,4533N 08842W, +,US,LNV,Lineville,Lineville,AL,--3-----,RQ,9307,,3319N 08545W, +,US,LNW,Lancaster,Lancaster,SC,--3-----,RQ,9307,,3443N 08046W, +,US,LNX,Lenox,Lenox,MA,--3-----,RQ,9307,,4221N 07317W, +,US,LNY,Lanai City,Lanai City,HI,---4----,AI,0001,,2050N 15655W, +,US,LNZ,Linwood,Linwood,NC,--3-----,RQ,9307,,3545N 08019W, +,US,LOA,Lomita,Lomita,CA,--3-----,RQ,9307,,3348N 11819W, +,US,LOD,Londonderry,Londonderry,NH,--3-----,RQ,9008,,4252N 07122W, +,US,LOE,Lowell,Lowell,MA,--3-----,RQ,9307,,4238N 07119W, +,US,LOF,Lugoff,Lugoff,SC,--3-----,RQ,9307,,3413N 08042W, +,US,LOG,Longview,Longview,WA,1--4----,AI,9601,,4608N 12256W, +,US,LOH,Lyoth,Lyoth,CA,--3-----,RQ,9506,,3743N 12123W, +,US,LOI,Lodi,Lodi,NJ,--3-----,RQ,9307,,4053N 07405W, +,US,LOJ,Lovington,Lovington,NM,--3-----,RQ,9307,,3257N 10321W, +,US,LOK,Lonoke,Lonoke,AR,--3-----,RQ,9307,,3447N 09154W, +,US,LOL,Lovelock,Lovelock,NV,---4----,AI,0001,,4011N 11828W, +,US,LOM,Lombard,Lombard,IL,--3-----,RQ,9008,,4153N 08801W, +,US,LON,Lebanon,Lebanon,OR,--3-----,RQ,9307,,4432N 12254W, +,US,LOO,Lake Oswego,Lake Oswego,OR,--3-----,RQ,9307,,4525N 12240W, +,US,LOP,Lockport,Lockport,NY,--3-----,RQ,9307,,4310N 07842W, +,US,LOQ,Live Oak,Live Oak,FL,--3-----,RQ,9307,,3018N 08259W, +,US,LOR,Lorain,Lorain,OH,1-3-----,RN,0105,,4128N 08211W, +,US,LOS,Louisville,Louisville,TN,--3-----,RQ,9307,,3549N 08403W, +,US,LOT,Lockport,Lockport,IL,---4----,AI,9601,,4135N 08803W, +!,US,LOU,Louise,Louise,TX,--3-----,RQ,9307,,2907N 09625W, +,US,LOV,Loveland,Loveland,CO,--3-----,RQ,9307,,4023N 10503W, +,US,LOW,Louisa,Louisa,VA,---4----,AI,9601,,3802N 07800W, +,US,LOX,Lennox,Lennox,CA,--3-----,RQ,9307,,3356N 11821W, +,US,LOZ,London,London,KY,---4----,AI,0001,,3708N 08405W, +,US,LPB,Lowell,Lowell,MI,--3-----,RQ,9307,,4253N 08522W, +,US,LPC,Lompoc,Lompoc,CA,---4----,AI,9601,,3438N 12027W, +,US,LPF,Lake Placid,Lake Placid,FL,--3-----,RQ,9307,,2718N 08122W, +,US,LPI,Lapoint,Lapoint,UT,--3-----,RL,9901,,4024N 10948W, +,US,LPJ,Lincoln Park,Lincoln Park,NJ,--3-----,RQ,9307,,4055N 07418W, +,US,LPK,Lake Forest Park,Lake Forest Park,WA,--3-----,RQ,9307,,4745N 12217W, +,US,LPL,La Place,La Place,LA,--3-----,RQ,9307,,3223N 08552W, +,US,LPO,Laporte,Laporte,IN,---4----,AI,0001,,4135N 08644W, +,US,LPR,Lakeport,Lakeport,CA,--3-----,RQ,9307,,3903N 12255W, +,US,LPS,Lopez Island,Lopez Island,WA,---4----,AI,0001,,4830N 12254W, +,US,LPT,Lockport,Lockport,LA,--3-----,RQ,9307,,2939N 09032W, +,US,LPV,Lorton,Lorton,VA,--3-----,RQ,9307,,3842N 07713W, +,US,LPX,Liverpool,Liverpool,NY,--3-----,RQ,9008,,4306N 07613W, +,US,LQJ,Lafayette,Lafayette,TN,--3-----,RQ,9307,,3631N 08602W, +,US,LQK,Pickens,Pickens,SC,--34----,AI,9601,,3453N 08242W, +,US,LQO,Lake Odessa,Lake Odessa,MI,--3-----,RQ,9307,,4247N 08508W, +,US,LQQ,Lakewood,Lakewood,CA,--3-----,RQ,9307,,3351N 11807W, +,US,LQV,Lakeville,Lakeville,CT,--3-----,RQ,9307,,4158N 07326W, +,US,LQW,Lakeview,Lakeview,CA,--3-----,RQ,9307,,3350N 11707W, +,US,LQY,Lockney,Lockney,TX,--3-----,RQ,9307,,3407N 10126W, +,US,LRA,Luray,Luray,VA,--3-----,RQ,9307,,3840N 07828W, +,US,LRB,Laurinburg,Laurinburg,NC,--3-----,RQ,9307,,3446N 07928W, +,US,LRF,Jacksonville,Jacksonville,AR,---4----,AI,9601,,3452N 09207W, +,US,LRI,Clarion,Clarion,IA,--3-----,RQ,0101,,4244N 09344W, +,US,LRM,Laurel,Laurel,MD,--3-----,RQ,9008,,3906N 07651W, +,US,LRO,Lathrop,Lathrop,CA,--34----,AI,1401,,3749N 12117W, +,US,LRS,Larose,Larose,LA,--3-----,RL,9805,,2934N 09023W, +,US,LRU,Las Cruces,Las Cruces,NM,--34----,AI,9601,,3219N 10647W, +,US,LRV,Lawrenceville,Lawrenceville,NJ,--3-----,RQ,9307,,4018N 07444W, +,US,LRW,Lawrenceville,Lawrenceville,GA,--3-----,RQ,9307,,3357N 08359W, +,US,LRX,Laurens,Laurens,IA,--3-----,RQ,9307,,4251N 09451W, +,US,LSA,Lisle,Lisle,IL,--3-----,RQ,9307,,4148N 08804W, +,US,LSB,Lordsburg,Lordsburg,NM,---4----,AI,0001,,3221N 10843W, +,US,LSC,Laurens,Laurens,SC,--3-----,RQ,9307,,3430N 08201W, +,US,LSE,La Crosse,La Crosse,WI,---4----,AI,9601,,4349N 09115W, +,US,LSF,Fort Benning,Fort Benning,GA,---4----,AI,0001,,3232N 08445W, +,US,LSG,Lansing,Lansing,KS,--3-----,RQ,9307,,3915N 09454W, +,US,LSI,Lansing,Lansing,IL,--3-----,RQ,9307,,4134N 08732W, +,US,LSJ,Leipsic,Leipsic,OH,--3-----,RL,9805,,4106N 08359W, +,US,LSK,Lusk,Lusk,WY,---4----,AI,0001,,4246N 10427W, +,US,LSL,Leetsdale,Leetsdale,PA,--3-----,RQ,9307,,4034N 08013W, +,US,LSM,Lee's Summit,Lee's Summit,MO,--3-----,RQ,9307,,3855N 09423W, +,US,LSN,Los Banos,Los Banos,CA,---4----,AI,9601,,3704N 12051W, +,US,LSO,Leesburg,Leesburg,OH,--3-----,RQ,9307,,3921N 08333W, +,US,LSR,Lost River,Lost River,AK,---4----,AI,0001,,4341N 11338W, +,US,LSS,Lake Success,Lake Success,NY,--3-----,RQ,9506,,4046N 07343W, +,US,LST,Logansport,Logansport,LA,--3-----,RQ,9307,,3159N 09360W, +,US,LSU,Lees Summit,Lees Summit,MO,--3-----,RQ,9008,,4045N 09638W, +!,US,LSV,Leesville,Leesville,LA,--3-----,RQ,9307,,3109N 09316W, +,US,LSX,Lone Star,Lone Star,TX,--3-----,RQ,9307,,3256N 09443W, +,US,LSY,Lindsay,Lindsay,CA,--3-----,RQ,9307,,3612N 11905W, +,US,LTA,Lometa,Lometa,TX,--3-----,RQ,9307,,3113N 09824W, +,US,LTC,Little Chute,Little Chute,WI,--3-----,RQ,9307,,4417N 08819W, +,US,LTD,Litchfield,Litchfield,MI,--3-----,RQ,9307,,4202N 08448W, +,US,LTF,Little Ferry,Little Ferry,NJ,--3-----,RQ,9307,,4051N 07403W, +,US,LTH,Lathrop Wells,Lathrop Wells,NV,---4----,AI,0001,,3639N 11624W, +,US,LTL,Littleton,Littleton,NH,--3-----,RL,9901,,4418N 07146W, +,US,LTN,Littleton,Littleton,MA,--3-----,RQ,9008,,4232N 07131W, +,US,LTO,Littleton,Littleton,CO,--3-----,RQ,9307,,3937N 10501W, +,US,LTS,Altus,Altus,OK,--34----,AI,9601,,3438N 09920W, +,US,LTT,Levittown,Levittown,PA,--3-----,RQ,9307,,4009N 07450W, +,US,LTU,Linthicum Heights,Linthicum Heights,MD,--3-----,RQ,9307,,3912N 07640W, +,US,LTX,Lancaster,Lancaster,TX,--3-----,RQ,9307,,3236N 09645W, +,US,LU2,Luckey,Luckey,OH,--3-----,RL,1107,,4127N 08329W, +,US,LUA,Louisiana,Louisiana,MO,--3-----,RQ,9307,,3927N 09103W, +,US,LUB,Lumber Bridge,Lumber Bridge,NC,--3-----,RQ,9307,,3453N 07904W, +,US,LUC,Luck,Luck,WI,--3-----,RQ,9307,,4537N 09228W, +,US,LUE,Louisville,Louisville,CO,--3-----,RQ,9307,,3959N 10508W, +,US,LUG,Lunenburg,Lunenburg,MA,--3-----,RQ,9307,,4236N 07143W, +!,US,LUK,Luke,Luke,MD,--3-----,RQ,9307,,3929N 07903W, +,US,LUL,Laurel,Laurel,MS,---4----,AI,9601,,3142N 08908W, +,US,LUN,Luana,Luana,IA,--3-----,RQ,9307,,4304N 09127W, +,US,LUP,Kalaupapa,Kalaupapa,HI,---4----,AI,0001,,2111N 15659W, +,US,LUR,Cape Lisburne,Cape Lisburne,AK,---4----,AI,0001,,6853N 16613W, +,US,LUS,Laurens,Laurens,NY,--3-----,RN,0105,,4232N 07505W, +,US,LUT,Lewiston,Lewiston,NY,--3-----,RQ,9307,,4310N 07902W, +,US,LUV,Louisville,Louisville,OH,--3-----,RQ,9307,,4050N 08116W, +,US,LUW,Ludlow,Ludlow,MA,--3-----,RQ,9008,,4210N 07229W, +,US,LUY,Louisville,Louisville,GA,--3-----,RQ,9307,,3300N 08225W, +,US,LVA,Lakeville,Lakeville,MN,--3-----,RQ,9307,,4439N 09315W, +,US,LVD,Lime Village,Lime Village,AK,---4----,AI,0001,,6121N 15526W, +,US,LVE,Lakeview,Lakeview,IA,--3-----,RQ,9307,,4138N 09210W, +,US,LVG,Livingston,Livingston,NJ,--3-----,RQ,9307,,4048N 07419W, +,US,LVI,Livonia,Livonia,MI,--3-----,RQ,9307,,4222N 08321W, +,US,LVJ,Lovejoy,Lovejoy,GA,--3-----,RQ,9307,,3326N 08419W, +,US,LVK,Livermore,Livermore,CA,---4----,AI,9601,,3741N 12146W, +,US,LVL,Lawrenceville,Lawrenceville,VA,---4----,AI,0001,,3645N 07751W, +,US,LVM,Livingston,Livingston,MT,---4----,AI,0001,,4540N 11034W, +,US,LVN,Leavenworth,Leavenworth,WA,--3-----,RQ,9307,,4736N 12040W, +,US,LVO,Livingston,Livingston,LA,--3-----,RQ,9307,,3030N 09045W, +,US,LVP,Liverpool,Liverpool,PA,--3-----,RQ,9307,,4035N 07659W, +,US,LVR,La Puente,La Puente,CA,--3-----,RQ,9307,,3402N 11757W, +,US,LVS,Las Vegas,Las Vegas,NM,---4----,AI,0001,,3536N 10513W, +,US,LVT,Livingston,Livingston,AL,--3-----,RQ,9008,,3235N 08811W, +,US,LVU,Lawrenceburg,Lawrenceburg,IN,1-3-----,RN,0105,,3907N 08453W, +,US,LVW,Lakeview,Lakeview,MI,--3-----,RQ,9307,,4327N 08517W, +,US,LVX,Leavittsburg,Leavittsburg,OH,--3-----,RQ,9307,,4115N 08053W, +,US,LVY,Livingston,Livingston,NY,--3-----,RQ,9307,,4209N 07347W, +,US,LWA,Lake Wales,Lake Wales,FL,--3-----,RQ,9307,,2754N 08135W, +,US,LWB,Lewisburg,Lewisburg,WV,--34----,AI,9601,,3748N 08027W, +,US,LWC,Lawrence,Lawrence,KS,---4----,AI,9601,,3858N 09514W, +,US,LWF,Lowville,Lowville,NY,--3-----,RQ,9307,,4347N 07530W, +,US,LWG,Lakewood,Lakewood,GA,--3-----,RQ,9307,,3357N 08321W, +,US,LWH,Lake Worth,Lake Worth,FL,--3-----,RQ,9307,,2637N 08003W, +,US,LWI,Lewisville,Lewisville,AR,--3-----,RQ,9307,,3322N 09335W, +,US,LWJ,Lawndale,Lawndale,CA,--3-----,RQ,9307,,3353N 11821W, +,US,LWK,Leawood,Leawood,KS,--3-----,RQ,9307,,3858N 09437W, +,US,LWL,Wells,Wells,NV,---4----,AI,0001,,4107N 11458W, +,US,LWM,Lawrence,Lawrence,MA,1-34----,AI,0001,,4242N 07110W, +,US,LWN,Lawrence,Lawrence,PA,--3-----,RQ,9307,,4018N 08007W, +,US,LWO,Ledgewood,Ledgewood,NJ,--3-----,RQ,9307,,4053N 07439W, +,US,LWP,Lewes,Lewes,DE,--3-----,RQ,9307,,3846N 07508W, +,US,LWR,Lawrence,Lawrence,MI,--3-----,RQ,9307,,4213N 08603W, +,US,LWS,Lewiston,Lewiston,ID,--34----,AI,9601,,4625N 11701W, +,US,LWT,Lewistown,Lewistown,MT,---4----,AI,0001,,4704N 10926W, +,US,LWU,Lakeview,Lakeview,FL,--3-----,RQ,9307,,2618N 08010W, +,US,LWV,Lawrenceville,Lawrenceville,IL,---4----,AI,0001,,3844N 08741W, +,US,LWX,Lena,Lena,WI,--3-----,RQ,9307,,4457N 08803W, +,US,LXA,Lenexa,Lenexa,KS,--3-----,RQ,9307,,3858N 09447W, +,US,LXG,Lexington,Lexington,NC,--3-----,RQ,9307,,3549N 08015W, +,US,LXH,Lexington,Lexington,VA,--3-----,RQ,9307,,3747N 07927W, +,US,LXI,Lexington,Lexington,MA,--3-----,RQ,9307,,4227N 07113W, +,US,LXJ,Lake Winola,Lake Winola,PA,--3-----,RQ,9307,,4130N 07551W, +,US,LXK,Lenox,Lenox,IL,--3-----,RQ,9307,,4131N 08758W, +,US,LXM,Lexington,Lexington,MI,--3-----,RQ,9307,,4318N 08235W, +,US,LXN,Lexington,Lexington,NE,---4----,AI,9601,,4047N 09944W, +,US,LXT,Lexington,Lexington,IL,--3-----,RQ,9307,,4038N 08847W, +,US,LXV,Leadville,Leadville,CO,---4----,AI,9601,,3915N 10618W, +,US,LXX,Los Gatos,Los Gatos,CA,--3-----,RQ,9307,,3714N 12158W, +,US,LXY,Loxley,Loxley,AL,--3-----,RQ,9307,,3037N 08745W, +,US,LYA,Lynn,Lynn,AL,--3-----,RQ,9307,,3403N 08733W, +,US,LYB,Lynbrook,Lynbrook,NY,--3-----,RQ,9307,,4039N 07340W, +,US,LYD,Linden,Linden,CA,--3-----,RQ,9307,,3801N 12106W, +,US,LYE,Lyme,Lyme,CT,--3-----,RQ,9307,,4119N 07220W, +,US,LYG,Luling,Luling,LA,--3-----,RQ,9307,,2956N 09022W, +,US,LYH,Lynchburg,Lynchburg,VA,--34----,AI,9506,,3725N 07909W, +,US,LYI,Lynn,Lynn,IN,--3-----,RQ,9307,,4003N 08456W, +,US,LYO,Lyons,Lyons,KS,---4----,AI,9601,,3821N 09812W, +,US,LYP,Lemoyne,Lemoyne,PA,--3-----,RQ,9307,,4014N 07654W, +,US,LYS,Lyons,Lyons,IL,--3-----,RQ,9307,,4149N 08749W, +,US,LYT,Lytton,Lytton,IA,--3-----,RQ,9307,,4225N 09452W, +,US,LYU,Ely,Ely,MN,--34----,RL,9203,,4754N 09151W, +,US,LYV,Livingston,Livingston,TN,--3-----,RQ,9307,,3623N 08519W, +,US,LYX,Lynchburg,Lynchburg,TN,--3-----,RQ,9307,,3517N 08622W, +,US,LYY,Lyons,Lyons,NY,--3-----,RQ,9008,,4304N 07659W, +,US,LYZ,Lutts,Lutts,TN,--3-----,RQ,9307,,3509N 08756W, +,US,LZG,Leesburg,Leesburg,AL,--3-----,RQ,9307,,3411N 08546W, +,US,LZI,Lisbon,Lisbon,OH,--3-----,RQ,9307,,4046N 08046W, +,US,LZK,Lindsay,Lindsay,NE,--3-----,RQ,9307,,4142N 09742W, +,US,LZN,Lynn,Lynn,MA,--3-----,RL,0003,,4228N 07057W, +,US,LZP,Lansford,Lansford,PA,--3-----,RQ,9307,,4050N 07553W, +,US,LZW,Luverne,Luverne,AL,--3-----,RQ,9307,,3143N 08616W, +,US,LZX,Lafayette,Lafayette,CA,--3-----,RQ,9307,,3753N 12207W, +,US,LZZ,Lenoir City,Lenoir City,TN,--3-----,RQ,9307,,3548N 08415W, +,US,MAA,Mayo,Mayo,FL,--3-----,RQ,9307,,3003N 08310W, +,US,MAB,Mandeville,Mandeville,LA,--3-----,RQ,9601,,3021N 09004W, +!,US,MAC,Macon,Macon,MO,--3-----,RQ,9307,,3945N 09228W, +,US,MAE,Madera,Madera,CA,---4----,AI,9601,,3658N 12004W, +,US,MAG,Magnolia,Magnolia,MA,--3-----,RQ,9307,,4234N 07043W, +,US,MAI,Maida,Maida,ND,--3-----,RN,0105,,4860N 09822W, +,US,MAJ,Mahopac,Mahopac,NY,--3-----,RQ,9307,,4122N 07344W, +,US,MAK,Marina,Marina,CA,--3-----,RQ,9307,,3641N 12148W, +,US,MAL,Malibu,Malibu,CA,--3-----,RQ,9307,,3402N 11841W, +,US,MAM,Miamiville,Miamiville,OH,--3-----,RL,0004,,3913N 08418W, +,US,MAN,Martin,Martin,MI,--3-----,RQ,9506,,4232N 08539W, +,US,MAO,Madison,Madison,TN,--3-----,RQ,9307,,3615N 08643W, +,US,MAP,Maple Heights,Maple Heights,OH,--3-----,RQ,9307,,4125N 08134W, +,US,MAQ,Manor,Manor,TX,--3-----,RQ,9307,,3021N 09733W, +,US,MAS,Mansfield,Mansfield,PA,--3-----,RL,0001,,4148N 07705W, +,US,MAU,Mauldin,Mauldin,SC,--3-----,RQ,9307,,3447N 08219W, +,US,MAV,Manvel,Manvel,TX,--3-----,RQ,9307,,2928N 09521W, +,US,MAW,Malden,Malden,MO,---4----,AI,9912,,3633N 08958W, +,US,MAX,Mexia,Mexia,TX,--3-----,RQ,9307,,3141N 09629W, +,US,MAY,Mayfield,Mayfield,KY,--3-----,RQ,9307,,3644N 08838W, +,US,MAZ,Madison,Madison,AL,--3-----,RQ,9307,,3442N 08645W, +,US,MBA,Millbrae,Millbrae,CA,--3-----,RQ,9307,,3736N 12224W, +,US,MBC,Montoursville,Montoursville,PA,--3-----,RQ,9307,,4115N 07655W, +,US,MBD,Millsboro,Millsboro,DE,--3-----,RQ,9307,,3835N 07517W, +,US,MBE,Melbourne Beach,Melbourne Beach,FL,--3-----,RQ,9307,,2804N 08034W, +,US,MBF,Merritt Island,Merritt Island,FL,--3-----,RQ,9307,,2821N 08042W, +,US,MBG,Mobridge,Mobridge,SD,--3-----,RL,0001,,4532N 10026W, +,US,MBI,McBride,McBride,MO,--3-----,RQ,9307,,3750N 08950W, +,US,MBJ,Millbrook,Millbrook,AL,--3-----,RQ,9307,,3229N 08622W, +,US,MBK,Milbank,Milbank,SD,--3-----,RQ,9307,,4513N 09638W, +,US,MBL,Manistee,Manistee,MI,---4----,AI,9601,,4415N 08619W, +,US,MBM,Montville,Montville,CT,--3-----,RQ,9307,,4128N 07209W, +,US,MBN,Mebane,Mebane,NC,--3-----,RQ,9307,,3606N 07916W, +,US,MBQ,Manhattan Beach,Manhattan Beach,CA,--3-----,RQ,9307,,3353N 11824W, +,US,MBR,Middlesboro,Middlesboro,KY,--3-----,RL,9901,,3637N 08343W, +,US,MBS,Saginaw-Midland-Bay City Apt,Saginaw-Midland-Bay City Apt,MI,--34----,AI,0201,,4332N 08405W,"cf US BZO, US SGP, US ILD" +,US,MBT,Millbury,Millbury,MA,--3-----,RQ,9307,,4211N 07146W, +,US,MBU,Middlebury,Middlebury,VT,--3-----,RQ,9307,,4401N 07310W, +,US,MBW,Moore,Moore,SC,--3-----,RQ,9307,,3450N 08160W, +,US,MBX,Maben,Maben,MS,--3-----,RQ,9307,,3333N 08905W, +,US,MBY,Moberly,Moberly,MO,---4----,AI,9601,,3925N 09226W, +,US,MCA,McAdoo,McAdoo,PA,--3-----,RQ,9307,,4054N 07560W, +,US,MCC,McCrory,McCrory,AR,--3-----,RN,0105,,3515N 09112W, +,US,MCD,Mackinac Island,Mackinac Island,MI,1--4----,AI,0001,,4551N 08437W, +,US,MCE,Merced,Merced,CA,---4----,AI,9601,,3718N 12029W, +!,US,MCF,McFarland,McFarland,CA,--3-----,RQ,9307,,3541N 11914W, +,US,MCG,McGrath,McGrath,AK,---4----,AI,0001,,6256N 15534W, +,US,MCH,McDonough,McDonough,GA,--3-----,RQ,9307,,3327N 08409W, +,US,MCJ,Mishawaka,Mishawaka,IN,--3-----,RQ,9307,,4140N 08611W, +,US,MCK,McCook,McCook,NE,---4----,AI,0001,,4012N 10038W, +,US,MCM,McMurray,McMurray,PA,--3-----,RN,0105,,4017N 08005W, +,US,MCN,Macon,Macon,GA,--34----,AI,9601,,3250N 08338W, +,US,MCO,McCook,McCook,IL,--3-----,RQ,9307,,4148N 08751W, +,US,MCP,Moncure,Moncure,NC,--3-----,RQ,9008,,3537N 07905W, +,US,MCQ,McIntyre,McIntyre,GA,--3-----,RN,0105,,3251N 08311W, +,US,MCS,Mancos,Mancos,CO,--3-----,RQ,9307,,3721N 10818W, +,US,MCT,McKinney,McKinney,TX,--3-----,RQ,9307,,3312N 09637W, +,US,MCU,McArthur,McArthur,OH,--3-----,RN,0105,,3915N 08229W, +,US,MCV,McAdenville,McAdenville,NC,--3-----,RQ,9307,,3516N 08105W, +,US,MCW,Mason City,Mason City,IA,--34----,AI,9601,,4309N 09312W, +,US,MCY,Minden City,Minden City,MI,--3-----,RQ,9307,,4340N 08247W, +,US,MCZ,Monticello,Monticello,MS,--3-----,RQ,9307,,3133N 09006W, +!,US,MDA,Madelia,Madelia,MN,--3-----,RQ,9307,,4403N 09425W, +,US,MDB,Montville,Montville,NJ,--3-----,RQ,9307,,4055N 07423W, +,US,MDC,Medfield,Medfield,MA,--3-----,RQ,9307,,4211N 07118W, +,US,MDE,Medford,Medford,NY,--3-----,RQ,9307,,4049N 07300W, +,US,MDF,Medford,Medford,WI,---4----,AI,9601,,4510N 09023W, +,US,MDH,Carbondale,Carbondale,IL,--34----,AI,9901,,3744N 08913W, +,US,MDI,Madison,Madison,NC,--3-----,RQ,9307,,3623N 07958W, +,US,MDK,Medina,Medina,NY,--3-----,RQ,9307,,4313N 07823W, +,US,MDL,Midland Park,Midland Park,NJ,--3-----,RQ,9501,,4059N 07408W, +,US,MDN,Madison,Madison,IN,---4----,AI,9601,,3844N 08523W, +,US,MDO,Middleton Island,Middleton Island,AK,---4----,AI,0001,,5926N 14620W, +,US,MDP,McDonald,McDonald,PA,--3-----,RQ,9307,,4022N 08014W, +,US,MDQ,Medina,Medina,OH,--3-----,RQ,9307,,4108N 08152W, +,US,MDR,Medfra,Medfra,AK,---4----,AI,0001,,6306N 15442W, +,US,MDS,Madison,Madison,GA,--3-----,RQ,9307,,3336N 08328W, +,US,MDT,McDermott,McDermott,OH,--3-----,RQ,9307,,3850N 08304W, +,US,MDU,Middlebury,Middlebury,IN,--3-----,RQ,9307,,4141N 08542W, +,US,MDV,Middle River,Middle River,MD,--3-----,RQ,9307,,3921N 07626W, +!,US,MDW,Middleton,Middleton,WI,--3-----,RQ,9307,,4306N 08931W, +,US,MDY,Medley,Medley,FL,--3-----,RQ,9307,,2550N 08020W, +,US,MEA,Mentor,Mentor,OH,--3-----,RQ,9307,,4140N 08120W, +,US,MEB,Monument,Monument,CO,--3-----,RQ,9307,,3905N 10452W, +,US,MEC,Mechanicsville,Mechanicsville,VA,--3-----,RQ,9307,,3738N 07721W, +,US,MEE,Manatee,Manatee,FL,--3-----,RQ,9307,,2730N 08232W, +,US,MEG,Mechanicsburg,Mechanicsburg,PA,--3-----,RQ,9008,,4013N 07700W, +,US,MEH,Mehoopany,Mehoopany,PA,--3-----,RQ,9008,,4134N 07604W, +,US,MEI,Meridian,Meridian,MS,--34----,AI,9601,,3222N 08842W, +,US,MEJ,Meadville,Meadville,PA,---4----,AI,9601,,4138N 08009W, +,US,MEL,Merrillville,Merrillville,IN,--3-----,RQ,9506,,4129N 08720W, +,US,MEM,Memphis,Memphis,TN,1-34----,AI,0207,,3509N 09003W, +,US,MEN,Mendota,Mendota,IL,--3-----,RQ,9307,,4135N 08907W, +,US,MEO,Manteo,Manteo,NC,---4----,AI,0001,,3554N 07541W, +,US,MEP,Maple Park,Maple Park,IL,--3-----,RQ,9307,,4154N 08836W, +,US,MEQ,Milford,Milford,DE,--3-----,RQ,9307,,3855N 07526W, +!,US,MER,Merrick,Merrick,NY,--3-----,RQ,9506,,4040N 07333W, +,US,MES,Minneapolis,Minneapolis,MN,1234----,RL,0207,MSP,4459N 09316W, +,US,MET,Metropolis,Metropolis,IL,--3-----,RL,9901,,3709N 08844W, +,US,MEU,Metuchen,Metuchen,NJ,--3-----,RQ,9008,,4033N 07422W, +,US,MEV,Minden,Minden,NV,---4----,AI,0001,,3857N 11946W, +,US,MEX,Mecca,Mecca,CA,--3-----,RQ,9307,,3334N 11604W, +,US,MEY,Modena,Modena,PA,--3-----,RQ,9307,,3958N 07548W, +,US,MEZ,Menasha,Menasha,WI,--3-----,RQ,9307,,4412N 08827W, +,US,MFA,Marble Falls,Marble Falls,TX,--3-----,RQ,9307,,3035N 09817W, +,US,MFB,Marshfield,Marshfield,MA,--3-----,RQ,9307,,4206N 07042W, +,US,MFD,Mansfield,Mansfield,OH,---4----,AI,9601,,4046N 08231W, +,US,MFF,Milford,Milford,IL,--3-----,RQ,9307,,4038N 08742W, +,US,MFG,Myrtle Point,Myrtle Point,OR,--3-----,RQ,9307,,4304N 12408W, +,US,MFH,Mesquite,Mesquite,NV,--3-----,RQ,9307,,3648N 11404W, +,US,MFI,Marshfield,Marshfield,WI,---4----,AI,9601,,4440N 09010W, +,US,MFJ,Milford,Milford,IA,--3-----,RQ,9307,,4319N 09509W, +,US,MFK,Milford,Milford,MA,--3-----,RQ,9307,,4209N 07131W, +,US,MFL,Mansfield,Mansfield,TX,--3-----,RQ,9307,,3234N 09707W, +,US,MFM,Mountain City,Mountain City,TN,--3-----,RQ,9307,,3628N 08148W, +,US,MFN,Mifflinville,Mifflinville,PA,--3-----,RQ,9307,,4102N 07618W, +,US,MFO,Milford,Milford,ME,--3-----,RQ,9307,,4457N 06839W, +,US,MFP,Mayfield,Mayfield,PA,--3-----,RQ,9307,,4132N 07532W, +,US,MFQ,Milford,Milford,PA,--3-----,RQ,9307,,4119N 07448W, +,US,MFR,Medford,Medford,OR,--34----,AI,9601,,4220N 12252W, +,US,MFT,Milford,Milford,NJ,--3-----,RQ,9307,,4034N 07506W, +,US,MFV,Melfa,Melfa,VA,---4----,AI,0001,,3739N 07544W, +,US,MFW,Milford,Milford,NH,--3-----,RQ,9307,,4250N 07139W, +,US,MFX,Milford,Milford,CT,--3-----,RQ,9008,,4113N 07303W, +,US,MFY,Martins Ferry,Martins Ferry,OH,--3-----,RQ,9307,,4006N 08043W, +,US,MFZ,Moundsville,Moundsville,WV,--3-----,RQ,9307,,3955N 08045W, +,US,MGA,Malaga,Malaga,NJ,--3-----,RQ,9307,,3934N 07503W, +,US,MGC,Michigan City,Michigan City,IN,---4-6--,AI,1601,,4142N 08654W, +,US,MGD,Mogadore,Mogadore,OH,--3-----,RQ,9307,,4103N 08124W, +,US,MGE,Marietta,Marietta,GA,--34----,AI,9601,,3357N 08433W, +,US,MGG,Morgantown,Morgantown,KY,--3-----,RQ,9307,,3714N 08641W, +,US,MGH,Montgomery,Montgomery,MN,--3-----,RQ,9307,,4426N 09335W, +,US,MGI,Matagorda Island,Matagorda Island,TX,---4----,AI,0001,,2814N 09638W, +,US,MGJ,Montgomery,Montgomery,NY,---4----,AI,9601,,4132N 07414W, +,US,MGK,Mount Sterling,Mount Sterling,KY,--3-----,RQ,1101,,3803N 08357W, +,US,MGL,Middle Granville,Middle Granville,NY,--3-----,RQ,9307,,4326N 07317W, +,US,MGM,Montgomery,Montgomery,AL,---4----,AI,9601,,3222N 08618W, +,US,MGN,Morgan City,Morgan City,AL,--3-----,RQ,9307,,3428N 08634W, +,US,MGO,Marengo,Marengo,IA,--3-----,RQ,9008,,4148N 09204W, +,US,MGP,Morgantown,Morgantown,PA,--3-----,RQ,9307,,4009N 07553W, +,US,MGR,Moultrie,Moultrie,GA,---4----,AI,9601,,3111N 08347W, +,US,MGS,Munising,Munising,MI,--3-----,RQ,9307,,4622N 08631W, +,US,MGT,Margate,Margate,FL,--3-----,RQ,9307,,2615N 08012W, +,US,MGV,Morton Grove,Morton Grove,IL,--3-----,RQ,9307,,4202N 08747W, +,US,MGW,Morgantown,Morgantown,WV,---4----,AI,9601,,3938N 07957W, +,US,MGY,Millington,Millington,NJ,--3-----,RQ,9307,,4041N 07431W, +,US,MGZ,Maple Grove,Maple Grove,OH,--3-----,RQ,9307,,4113N 08314W, +,US,MHA,Minnehaha,Minnehaha,WA,--3-----,RQ,9307,,4539N 12237W, +,US,MHB,McHenry,McHenry,IL,--3-----,RQ,9307,,4221N 08816W, +,US,MHC,Mitchell,Mitchell,IN,--3-----,RQ,9307,,3844N 08628W, +,US,MHD,Marshville,Marshville,NC,--3-----,RQ,9307,,3459N 08022W, +,US,MHE,Mitchell,Mitchell,SD,--34----,AI,9601,,4343N 09802W, +,US,MHF,Manheim,Manheim,PA,--3-----,RQ,9307,,4005N 07618W, +,US,MHG,Marshall,Marshall,MI,--3-----,RQ,9307,,4216N 08458W, +,US,MHH,Marathon,Marathon,WI,--3-----,RQ,9307,,4455N 08949W, +,US,MHI,Manchester,Manchester,GA,--3-----,RQ,9307,,3252N 08437W, +,US,MHJ,Mullica Hill,Mullica Hill,NJ,--3-----,RQ,9307,,3944N 07514W, +,US,MHK,Manhattan,Manhattan,KS,---4----,AI,9601,,3911N 09634W, +,US,MHL,Marshall,Marshall,MO,---4----,AI,9601,,3907N 09312W, +,US,MHM,Minchumina,Minchumina,AK,---4----,AI,0001,,6349N 15223W, +,US,MHN,Mullen,Mullen,NE,---4----,AI,0001,,4203N 10103W, +,US,MHP,Mill Hall,Mill Hall,PA,--3-----,RQ,9307,,4106N 07729W, +,US,MHR,Morehead,Morehead,KY,--3-----,RQ,9307,,3811N 08326W, +,US,MHS,Mount Shasta,Mount Shasta,CA,---4----,AI,1101,,4119N 12219W, +,US,MHT,Manchester,Manchester,NH,---4----,AI,9601,,4260N 07127W, +,US,MHU,Mountain Home,Mountain Home,NC,--3-----,RQ,9307,,3522N 08230W, +!,US,MHV,Mechanicville,Mechanicville,NY,--3-----,RQ,9307,,4254N 07341W, +,US,MHW,Mahwah,Mahwah,NJ,--3-----,RQ,9008,,4105N 07409W, +,US,MHX,Mount Holly,Mount Holly,NC,--3-----,RQ,1101,,3518N 08101W, +,US,MHY,Maryland Heights,Maryland Heights,MO,--3-----,RQ,9008,,3843N 09026W, +,US,MIA,Miami,Miami,FL,1--45---,AI,0001,,2546N 08012W, +!,US,MIB,Midlothian,Midlothian,TX,--3-----,RQ,9307,,3229N 09660W, +,US,MIC,Milton,Milton,PA,--3-----,RQ,9307,,4101N 07651W, +,US,MID,Middleboro,Middleboro,MA,--3-----,RQ,9307,,4154N 07055W, +,US,MIE,Muncie,Muncie,IN,---4----,AI,9601,,4012N 08523W, +,US,MIF,Monahans,Monahans,TX,---4----,AI,0001,,3135N 10253W, +,US,MIG,Mingo,Mingo,KS,--3-----,RQ,9307,,3917N 10058W, +,US,MIH,Mitchell,Mitchell,NE,--3-----,RQ,9307,,4156N 10349W, +,US,MII,Milford,Milford,IN,--3-----,RQ,9307,,4125N 08551W, +,US,MIJ,Middletown,Middletown,NJ,--3-----,RQ,9307,,3916N 07445W, +,US,MIK,Mira Loma,Mira Loma,CA,--3-----,RQ,9307,,3359N 11731W, +,US,MIL,Madill,Madill,OK,--3-----,RQ,9307,,3405N 09646W, +,US,MIM,Maple Island,Maple Island,MN,--3-----,RQ,9307,,4443N 09316W, +,US,MIN,Marion,Marion,NC,--3-----,RQ,9307,,3541N 08201W, +,US,MIO,Miami,Miami,OK,---4----,AI,0001,,3652N 09453W, +,US,MIP,Middleport,Middleport,OH,--3-----,RQ,9307,,3900N 08203W, +!,US,MIQ,Milan,Milan,IL,--3-----,RQ,9307,,4127N 09034W, +,US,MIR,Marietta,Marietta,OK,--3-----,RQ,9307,,3551N 09439W, +,US,MIS,Middlesex,Middlesex,NJ,--3-----,RQ,9307,,4034N 07430W, +,US,MIT,Shafter,Shafter,CA,---4----,AI,9601,,3530N 11916W, +,US,MIU,Middletown,Middletown,DE,--3-----,RQ,9307,,3927N 07543W, +,US,MIW,Marshalltown,Marshalltown,IA,---4----,AI,9601,,4203N 09255W, +,US,MIX,Mineola,Mineola,TX,--3-----,RQ,9307,,3240N 09529W, +,US,MIY,Middletown,Middletown,NY,--3-----,RQ,9307,,4050N 07350W, +,US,MIZ,Miami Springs,Miami Springs,FL,--3-----,RQ,9307,,2549N 08018W, +,US,MJA,Meridian,Meridian,ID,--3-----,RQ,9307,,4337N 11624W, +,US,MJC,Morral,Morral,OH,--3-----,RQ,9307,,4041N 08313W, +,US,MJD,Midland,Midland,GA,--3-----,RQ,9307,,3234N 08450W, +,US,MJE,Morrison,Morrison,CO,--3-----,RQ,9307,,3939N 10511W, +,US,MJF,Morrison,Morrison,TN,--3-----,RQ,9307,,3536N 08555W, +,US,MJG,Morristown,Morristown,IN,--3-----,RQ,9307,,3940N 08542W, +,US,MJH,Mission Hills,Mission Hills,CA,--3-----,RQ,9307,,3441N 12026W, +,US,MJK,Morro Bay,Morro Bay,CA,--3-----,RQ,9307,,3522N 12051W, +,US,MJL,Moscow,Moscow,ID,--3-----,RQ,9307,,4644N 11700W, +,US,MJM,Mora,Mora,MN,--3-----,RQ,9307,,4553N 09318W, +,US,MJN,Moss,Moss,TN,--3-----,RQ,9307,,3635N 08537W, +,US,MJO,Mounds View,Mounds View,MN,--3-----,RQ,9307,,4506N 09312W, +,US,MJP,Middleton,Middleton,TN,--3-----,RQ,9307,,3504N 08853W, +,US,MJQ,Jackson,Jackson,MN,---4----,AI,0001,,4337N 09459W, +,US,MJR,Mount Berry,Mount Berry,GA,--3-----,RQ,1101,,3417N 08511W, +,US,MJS,Morattico,Morattico,VA,--3-----,RQ,9307,,3747N 07638W, +,US,MJT,Marlton,Marlton,NJ,--3-----,RQ,9307,,3954N 07456W, +,US,MJU,Monmouth Junction,Monmouth Junction,NJ,--3-----,RQ,9307,,4023N 07433W, +,US,MJV,Morgan Hill,Morgan Hill,CA,--3-----,RQ,9307,,3708N 12139W, +,US,MJW,Mathews,Mathews,LA,--3-----,RQ,9307,,2941N 09033W, +,US,MJX,Toms River,Toms River,NJ,--34----,AI,9601,,3957N 07412W, +,US,MJY,Mount Joy,Mount Joy,PA,--3-----,RQ,1101,,4007N 07630W, +,US,MJZ,Morgantown,Morgantown,NC,--3-----,RQ,9307,,3607N 07926W, +,US,MKA,Minnetonka,Minnetonka,MN,--3-----,RQ,9501,,4456N 09328W, +,US,MKB,Melba,Melba,ID,--3-----,RQ,9307,,4322N 11632W, +,US,MKD,Macdoel,Macdoel,CA,--3-----,RQ,9307,,4150N 12200W, +,US,MKE,Milwaukee,Milwaukee,WI,1--4----,AI,0207,,4302N 08755W, +,US,MKK,Hoolehua,Hoolehua,HI,---4----,AI,0001,,2110N 15706W, +,US,MKL,Jackson,Jackson,TN,--34----,AI,9601,,3537N 08849W, +,US,MKM,Markham,Markham,IL,--3-----,RQ,9307,,4136N 08742W, +,US,MKO,Muskogee,Muskogee,OK,--34----,AI,2101,,3545N 09522W, +,US,MKQ,Markesan,Markesan,WI,--3-----,RQ,9307,,4342N 08859W, +,US,MKR,McKeesport,McKeesport,PA,--3-----,RQ,9008,,4021N 07952W, +,US,MKS,Mount Kisco,Mount Kisco,NY,--3-----,RQ,1101,,4112N 07344W, +,US,MKT,Mankato,Mankato,MN,---4----,AI,9601,,4410N 09360W, +,US,MKU,Menlo Park,Menlo Park,CA,--3-----,RQ,9307,,3727N 12211W, +,US,MKV,Mocksville,Mocksville,NC,--3-----,RQ,9307,,3554N 08034W, +,US,MKY,Mount Airy,Mount Airy,NC,--3-----,RQ,1101,,3630N 08036W, +,US,MLA,McKinley Park,McKinley Park,AK,--3-----,RN,0105,,4150N 08740W, +,US,MLB,Melbourne,Melbourne,FL,---4----,AI,9601,,2806N 08038W, +,US,MLC,McAlester,McAlester,OK,--34----,AI,9601,,3456N 09546W, +,US,MLD,Malad City,Malad City,ID,---4----,AI,0001,,4211N 11215W, +,US,MLE,Maumelle,Maumelle,AR,--3-----,RQ,9307,,3451N 09224W, +,US,MLF,Milford,Milford,UT,--34----,AI,0001,,3824N 11301W, +,US,MLG,Moss Landing,Moss Landing,CA,--3-----,RN,0105,,3648N 12147W, +,US,MLH,Midlothian,Midlothian,IL,--3-----,RQ,9307,,4138N 08743W, +,US,MLI,Moline,Moline,IL,--34----,RQ,9008,,4130N 09031W, +,US,MLJ,Milledgeville,Milledgeville,GA,---4----,AI,9601,,3305N 08314W, +,US,MLK,Malta,Malta,MT,---4----,AI,0001,,4822N 10752W, +,US,MLM,Mira Mesa,Mira Mesa,CA,--3-----,RQ,9307,,3255N 11709W, +,US,MLN,Malin,Malin,OR,--3-----,RQ,9307,,4201N 12125W, +,US,MLO,Melrose,Melrose,MA,--3-----,RQ,9307,,4227N 07104W, +,US,MLP,Magnolia Park,Magnolia Park,CA,--3-----,RQ,9307,,3450N 08218W, +,US,MLQ,Milbridge,Milbridge,ME,--3-----,RQ,9307,,4432N 06753W, +,US,MLR,Montclair,Montclair,NJ,--3-----,RQ,9506,,4049N 07413W, +,US,MLS,Miles City,Miles City,MT,---4----,AI,0001,,4625N 10550W, +,US,MLT,Millinocket,Millinocket,ME,---4----,AI,9601,,4539N 06843W, +,US,MLU,Monroe,Monroe,LA,--34----,AI,0001,,3231N 09206W, +,US,MLV,Millersburg,Millersburg,OH,--3-----,RQ,9601,,4033N 08155W, +,US,MLW,Milton,Milton,DE,--3-----,RQ,9307,,3847N 07519W, +,US,MLX,Malta,Malta,NY,--3-----,RQ,9806,,4258N 07348W, +,US,MLY,Manley Hot Springs,Manley Hot Springs,AK,---4----,RQ,9806,,6500N 15038W, +,US,MLZ,Meridianville,Meridianville,AL,--3-----,RQ,9307,,3452N 08634W, +,US,MMC,McMinnville,McMinnville,OR,--3-----,RN,0105,,4513N 12312W, +,US,MMD,Merrill,Merrill,MI,--3-----,RQ,9307,,4325N 08420W, +,US,MME,Momence,Momence,IL,--3-----,RQ,9307,,4110N 08740W, +,US,MMG,Murtaugh,Murtaugh,ID,--3-----,RQ,9307,,4230N 11410W, +,US,MMH,Mammoth Lakes,Mammoth Lakes,CA,---4----,AI,0001,,3739N 11858W, +,US,MMI,Athens,Athens,TN,--34----,AI,9601,,3527N 08436W, +,US,MMJ,Milltown,Milltown,NJ,--3-----,RQ,9307,,4034N 07441W, +,US,MMK,Miami Lakes,Miami Lakes,FL,--3-----,RQ,9307,,2555N 08019W, +,US,MML,Marshall,Marshall,MN,---4----,AI,9601,,4427N 09547W, +,US,MMN,Stow,Stow,MA,--34----,RQ,9704,,4226N 07130W, +,US,MMO,Monett,Monett,MO,--3-----,RQ,9307,,3656N 09356W, +,US,MMP,Montpelier,Montpelier,OH,--3-----,RQ,9307,,4135N 08436W, +,US,MMQ,Morrison,Morrison,IL,--3-----,RQ,9307,,4149N 08958W, +,US,MMR,Miramar,Miramar,FL,--3-----,RQ,9307,,2559N 08014W, +,US,MMS,Marks,Marks,MS,---4----,AI,0001,,3415N 09016W, +!,US,MMT,Martin,Martin,TN,--3-----,RQ,9307,,3621N 08851W, +,US,MMU,Morristown,Morristown,NJ,---4----,AI,9601,,4048N 07429W, +,US,MMW,McMillin,McMillin,WA,--3-----,RN,0105,,4708N 12214W, +,US,MMY,Maumee,Maumee,OH,--3-----,RQ,9307,,4134N 08339W, +,US,MMZ,Melrose,Melrose,MN,--3-----,RQ,9307,,4540N 09448W, +,US,MNA,Mineola,Mineola,NY,--3-----,RQ,9307,,4045N 07338W, +,US,MNB,McConnellsburg,McConnellsburg,PA,--3-----,RN,0105,,3956N 07760W, +,US,MNC,Michigan Center,Michigan Center,MI,--3-----,RQ,9806,,4214N 08420W, +,US,MND,Mendocino,Mendocino,CA,--3-----,RQ,9307,,3919N 12350W, +,US,MNE,Manchester,Manchester,CT,--3-----,RQ,9307,,4147N 07231W, +,US,MNF,Marianna,Marianna,FL,--3-----,RQ,9307,,3046N 08514W, +,US,MNG,Manning,Manning,SC,--3-----,RQ,9008,,3342N 08013W, +,US,MNI,Monmouth,Monmouth,IL,--3-----,RQ,9307,,4055N 09039W, +,US,MNJ,Manchester Center,Manchester Center,VT,--3-----,RQ,9307,,4311N 07303W, +,US,MNK,Moncks Corner,Moncks Corner,SC,--3-----,RQ,9307,,3312N 08001W, +,US,MNL,Menlo,Menlo,GA,--3-----,RQ,9307,,3429N 08529W, +,US,MNN,Marion,Marion,OH,--34----,AI,9601,,4035N 08308W, +,US,MNO,Mount Olive,Mount Olive,NC,--3-----,RQ,1101,,3512N 07804W, +,US,MNP,Monaca,Monaca,PA,--3-----,RQ,9008,,4041N 08016W, +,US,MNQ,Morton,Morton,MS,--3-----,RQ,9307,,3221N 08939W, +,US,MNR,Monroe,Monroe,NC,--3-----,RQ,9008,,3459N 08033W, +,US,MNS,Mansfield,Mansfield,MA,--3-----,RQ,9307,,4202N 07113W, +,US,MNT,Minto,Minto,AK,---4----,AI,0001,,6507N 14931W, +,US,MNU,Mermentau,Mermentau,LA,--3-----,RQ,9307,,3011N 09235W, +,US,MNV,Minerva,Minerva,OH,--3-----,RQ,9307,,4044N 08106W, +,US,MNX,Manchester,Manchester,IA,--3-----,RQ,9307,,4229N 09127W, +,US,MNY,Manchester,Manchester,MO,--3-----,RQ,9307,,3836N 09031W, +,US,MNZ,Manassas,Manassas,VA,---4----,AI,9601,,3845N 07729W, +,US,MOA,Moundville,Moundville,AL,--3-----,RQ,9307,,3260N 08738W, +,US,MOB,Mobile,Mobile,AL,1--4----,AI,0001,,3041N 08803W, +,US,MOC,Monticello,Monticello,KY,--3-----,RL,9901,,3650N 08451W, +,US,MOD,Modesto,Modesto,CA,---4----,AI,9601,,3738N 12060W, +,US,MOE,Monroe,Monroe,GA,--3-----,RQ,9307,,3348N 08343W, +,US,MOF,Motley,Motley,MN,--3-----,RQ,9307,,4620N 09439W, +,US,MOG,Moss Point,Moss Point,MS,--3-----,RQ,9307,,3025N 08832W, +,US,MOH,Monmouth,Monmouth,ME,--3-----,RQ,9307,,4414N 07002W, +,US,MOI,Monroe,Monroe,MI,--3-----,RQ,9008,,4155N 08324W, +,US,MOK,Morrill,Morrill,NE,--3-----,RQ,9307,,4158N 10356W, +,US,MOL,Molalla,Molalla,OR,--3-----,RQ,9307,,4509N 12235W, +,US,MON,Manson,Manson,IA,--3-----,RQ,9307,,4232N 09432W, +,US,MOP,Mount Pleasant,Mount Pleasant,MI,---4----,AI,1101,,4336N 08446W, +,US,MOQ,Monticello,Monticello,AR,--3-----,RQ,9307,,3338N 09147W, +,US,MOR,Morristown,Morristown,TN,---4----,AI,9601,,3613N 08318W, +,US,MOS,Moses Point,Moses Point,AK,---4----,AI,0001,,6442N 16202W, +,US,MOT,Minot,Minot,ND,--34----,AI,9601,,4814N 10118W, +,US,MOU,Mountain Village,Mountain Village,AK,---4----,AI,0001,,6206N 16343W, +,US,MOV,Marceline,Marceline,MO,--3-----,RQ,9307,,3943N 09257W, +,US,MOW,Monroe,Monroe,WA,--3-----,RQ,9506,,4751N 12158W, +,US,MOX,Morris,Morris,MN,---4----,AI,0001,,4535N 09555W, +,US,MOY,Marinette,Marinette,WI,--3-----,RN,0105,,4506N 08738W, +,US,MOZ,Montezuma,Montezuma,GA,--3-----,RQ,9307,,3218N 08402W, +,US,MPB,Maspeth,Maspeth,NY,--3-----,RQ,9307,,4043N 07355W, +,US,MPD,Marietta,Marietta,PA,--3-----,RQ,9307,,4003N 07633W, +,US,MPE,Madison,Madison,CT,--34----,AI,0001,,4117N 07236W, +,US,MPF,Moorlands,Moorlands,WA,--3-----,RQ,9307,,4745N 12215W, +,US,MPH,Mount Pleasant,Mount Pleasant,SC,--3-----,RQ,1101,,3248N 07952W, +,US,MPJ,Morrilton,Morrilton,AR,---4----,AI,9601,,3509N 09245W, +,US,MPK,Mount Pulaski,Mount Pulaski,IL,--3-----,RQ,1101,,4001N 08917W, +,US,MPL,Mount Pleasant,Mount Pleasant,TN,--3-----,RQ,1101,,3532N 08712W, +,US,MPM,Mapleton,Mapleton,ME,--3-----,RQ,9307,,4641N 06810W, +,US,MPO,Mount Pocono,Mount Pocono,PA,---4----,AI,1101,,4107N 07522W, +,US,MPQ,Monroe Park,Monroe Park,NC,--3-----,RQ,9307,,3946N 07536W, +,US,MPR,McPherson,McPherson,KS,---4----,AI,9601,,3822N 09740W, +,US,MPT,Milpitas,Milpitas,CA,--3-----,RQ,9307,,3726N 12154W, +,US,MPW,Maplewood,Maplewood,NJ,--3-----,RQ,9307,,4044N 07416W, +,US,MPX,Mapleville,Mapleville,RI,--3-----,RQ,9008,,4157N 07139W, +,US,MPY,Mount Pleasant,Mount Pleasant,FL,--3-----,RQ,1101,,3008N 08423W, +,US,MPZ,Mount Pleasant,Mount Pleasant,IA,--34----,AI,1101,,4058N 09133W, +,US,MQA,Mesa,Mesa,AR,--3-----,RQ,9307,,3447N 09130W, +,US,MQB,Macomb,Macomb,IL,---4----,AI,9601,,4028N 09040W, +,US,MQC,Monticello,Monticello,GA,--3-----,RQ,9307,,3318N 08341W, +,US,MQD,Monticello,Monticello,IL,--3-----,RQ,9307,,4002N 08834W, +,US,MQE,Moores Mill,Moores Mill,NY,--3-----,RQ,9307,,4142N 07345W, +,US,MQH,Marlette,Marlette,MI,--3-----,RQ,9307,,4323N 08303W, +,US,MQI,Quincy,Quincy,MA,--34----,AI,0001,,4215N 07100W, +,US,MQK,Moorpark,Moorpark,CA,--3-----,RQ,9307,,3417N 11853W, +,US,MQL,Markle,Markle,IN,--3-----,RQ,9307,,4050N 08520W, +,US,MQM,Marion,Marion,AR,--3-----,RL,9901,,3513N 09012W, +,US,MQO,Maquoketa,Maquoketa,IA,--3-----,RQ,9307,,4204N 09040W, +,US,MQP,Martins Creek,Martins Creek,PA,--3-----,RQ,9307,,4047N 07511W, +,US,MQS,Mesquite,Mesquite,NM,--3-----,RQ,9307,,3210N 10642W, +,US,MQT,Marquette,Marquette,MI,---4----,AI,0001,,4633N 08724W, +,US,MQU,Mequon,Mequon,WI,--3-----,RQ,9307,,4313N 08759W, +,US,MQV,Mount Olive,Mount Olive,NJ,--3-----,RQ,1101,,4051N 07445W, +,US,MQW,McRae,McRae,GA,---4----,AI,9601,,3212N 08236W, +,US,MQX,Mercer,Mercer,PA,--3-----,RQ,9307,,4114N 08014W, +,US,MQY,Smyrna,Smyrna,TN,---4----,AI,9601,,3559N 08631W, +,US,MQZ,Mercer Island,Mercer Island,WA,--3-----,RQ,9307,,4735N 12214W, +,US,MRB,Martinsburg,Martinsburg,WV,--34----,AI,9601,,3927N 07758W, +,US,MRC,Columbia,Columbia,TN,--34----,AI,1001,,3537N 08702W, +,US,MRE,Moraine,Moraine,OH,--3-----,RQ,9307,,3942N 08413W, +,US,MRF,Marfa,Marfa,TX,---4----,AI,0001,,3019N 10401W, +,US,MRH,Morehead City,Morehead City,NC,1-3-----,RN,0105,,3443N 07644W, +!,US,MRI,Mariemont,Mariemont,OH,--3-----,RQ,9307,,3909N 08422W, +,US,MRJ,Moorestown,Moorestown,NJ,--3-----,RQ,9307,,3958N 07457W, +,US,MRK,Marco Island,Marco Island,FL,---4----,AI,0001,,2556N 08143W, +,US,MRL,Maryville,Maryville,TN,--3-----,RQ,9008,,3545N 08358W, +,US,MRM,Merrimack,Merrimack,NH,--3-----,RQ,9307,,4252N 07130W, +,US,MRN,Morganton,Morganton,NC,--34----,AI,9601,,3545N 08141W, +,US,MRP,Melrose Park,Melrose Park,IL,--3-----,RQ,9008,,4154N 08751W, +,US,MRR,Murray Hill,Murray Hill,NJ,--3-----,RQ,9307,,4042N 07424W, +,US,MRS,Mercedes,Mercedes,TX,--3-----,RQ,9307,,2609N 09755W, +,US,MRT,Morristown,Morristown,NY,1-------,RN,0105,,4435N 07539W, +,US,MRV,Marysville,Marysville,OH,--3-----,RQ,9008,,4014N 08322W, +,US,MRW,Morrow,Morrow,GA,--3-----,RQ,9008,,3335N 08420W, +,US,MRX,McNary,McNary,OR,--3-----,RN,0105,,4555N 11917W, +,US,MRY,Monterey-Carmel Apt,Monterey-Carmel Apt,CA,--34----,AI,0001,,3635N 12151W, +,US,MRZ,Martinez,Martinez,CA,--3-----,RN,0105,,3801N 12208W, +,US,MSA,Masaryktown,Masaryktown,FL,--3-----,RQ,9307,,2827N 08228W, +,US,MSB,Madison,Madison,NE,--3-----,RQ,9307,,4150N 09727W, +,US,MSC,Mesa,Mesa,AZ,--34----,AI,9601,,3325N 11150W, +,US,MSD,Mount Pleasant,Mount Pleasant,UT,---4----,AI,1101,,3933N 11127W, +,US,MSE,Monsey,Monsey,NY,--3-----,RQ,9307,,4107N 07404W, +,US,MSF,Mansfield,Mansfield,GA,--3-----,RQ,9307,,3331N 08344W, +,US,MSG,Marsing,Marsing,ID,--3-----,RQ,9307,,4333N 11649W, +,US,MSH,Madison Heights,Madison Heights,MI,--3-----,RQ,9506,,4229N 08306W, +,US,MSJ,Mountainside,Mountainside,NJ,--3-----,RQ,9307,,4040N 07421W, +,US,MSM,Madison,Madison,MS,--3-----,RQ,9307,,3228N 09007W, +,US,MSN,Madison,Madison,WI,---4----,AI,9601,,4304N 08923W, +,US,MSO,Missoula,Missoula,MT,---4----,AI,9601,,4652N 11360W, +,US,MSQ,Mesquite,Mesquite,TX,--3-----,RQ,9307,,3246N 09636W, +,US,MSR,Marion,Marion,SC,--3-----,RQ,9307,,3411N 07924W, +,US,MSS,Massena,Massena,NY,--34----,AI,0001,,4456N 07454W, +,US,MSU,Masury,Masury,OH,--3-----,RQ,9307,,4112N 08032W, +,US,MSV,Monticello,Monticello,NY,---4----,AI,0001,,4139N 07441W, +,US,MSW,Morris,Morris,IL,--3-----,RQ,9307,,4121N 08825W, +,US,MSX,Mesilla Park,Mesilla Park,NM,--3-----,RQ,9307,,3217N 10646W, +,US,MSY,New Orleans,New Orleans,LA,12345---,AI,9811,,2959N 09005W, +,US,MSZ,Moose Pass,Moose Pass,AK,--3-----,RQ,9307,,6030N 14925W, +,US,MTA,Manteca,Manteca,CA,--3-----,RQ,9307,,3749N 12113W, +,US,MTB,Montebello,Montebello,CA,--3-----,RQ,9307,,3401N 11807W, +,US,MTC,Mount Clemens,Mount Clemens,MI,---4----,AI,1101,,4236N 08253W, +,US,MTD,Mattydale,Mattydale,NY,--3-----,RQ,9806,,4306N 07609W, +,US,MTH,Marathon,Marathon,FL,---4----,AI,0001,,2443N 08105W, +,US,MTI,Morton,Morton,IL,--3-----,RQ,9307,,4037N 08928W, +,US,MTJ,Montrose,Montrose,CO,--34----,AI,1307,,3829N 10753W, +,US,MTL,Millington,Millington,MD,--3-----,RQ,9307,,3915N 07550W, +,US,MTM,Metlakatla,Metlakatla,AK,1--4----,AI,9506,,5508N 13135W, +,US,MTN,Martin Mariet/Baltimore,Martin Mariet/Baltimore,MD,---4----,AI,0001,,3920N 07625W, +,US,MTO,Mattoon,Mattoon,IL,--34----,AI,9601,,3929N 08823W, +,US,MTP,Montauk,Montauk,NY,---4----,AI,0001,,4102N 07157W, +,US,MTQ,Mattapoisett,Mattapoisett,MA,--3-----,RQ,9307,,4140N 07049W, +,US,MTR,Manteno,Manteno,IL,--3-----,RQ,9307,,4115N 08750W, +,US,MTS,Mountain Pass,Mountain Pass,CA,--3-----,RQ,9307,,3528N 11533W, +,US,MTU,Matanuska,Matanuska,AK,--3-----,RQ,9307,,6133N 14914W, +,US,MTV,Martinsville,Martinsville,VA,--3-----,RQ,9008,,3641N 07952W, +,US,MTW,Manitowoc,Manitowoc,WI,1--4----,AI,0207,,4405N 08739W, +!,US,MTX,Memphis,Memphis,TX,--3-----,RQ,9307,,3444N 10032W, +,US,MTY,Metzger,Metzger,OR,--3-----,RQ,9307,,4527N 12246W, +,US,MTZ,Mantee,Mantee,MS,--3-----,RQ,9307,,3344N 08903W, +,US,MUA,Matthews,Matthews,NC,--3-----,RQ,9008,,3507N 08043W, +,US,MUB,Muncie,Muncie,IL,--3-----,RQ,9307,,4007N 08751W, +,US,MUC,Murfreesboro,Murfreesboro,NC,--3-----,RQ,9307,,3627N 07706W, +,US,MUD,Mount Dora,Mount Dora,FL,--3-----,RQ,1101,,2848N 08139W, +,US,MUE,Kamuela,Kamuela,HI,---4----,AI,0001,,2000N 15539W, +,US,MUF,Mulberry,Mulberry,FL,--3-----,RQ,9307,,2754N 08158W, +,US,MUH,Muleshoe,Muleshoe,TX,--3-----,RQ,9307,,3414N 10244W, +,US,MUI,Fort Indiantown,Fort Indiantown,PA,---4----,AI,0001,,4026N 07636W, +,US,MUJ,Mundelein,Mundelein,IL,--3-----,RQ,9307,,4216N 08800W, +,US,MUK,Mountain View,Mountain View,GA,--3-----,RQ,9307,,3416N 08354W, +!,US,MUL,Mountain View,Mountain View,AL,--3-----,RQ,9307,,3418N 08618W, +,US,MUM,Mountain Home,Mountain Home,TN,--3-----,RQ,9307,,4308N 11541W, +,US,MUN,Muncy,Muncy,PA,--3-----,RQ,9307,,4112N 07647W, +,US,MUO,Mountain Home,Mountain Home,ID,---4----,AI,9601,,4308N 11541W, +,US,MUP,Mount Prospect,Mount Prospect,IL,--3-----,RQ,1101,,4204N 08756W, +,US,MUQ,Munster,Munster,IN,--3-----,RQ,9307,,4134N 08731W, +,US,MUS,Murchison,Murchison,TX,--3-----,RQ,9307,,3217N 09545W, +,US,MUT,Muscatine,Muscatine,IA,---4----,AI,9601,,4125N 09103W, +,US,MUU,Mount Union,Mount Union,PA,---4----,AI,1101,,4023N 07753W, +!,US,MUV,Mountain Top,Mountain Top,PA,--3-----,RQ,9307,,4107N 07558W, +,US,MUW,Moulton,Moulton,AL,--3-----,RQ,9307,,3429N 08718W, +,US,MUX,Mamou,Mamou,LA,--3-----,RQ,9307,,3038N 09225W, +,US,MUY,Murray,Murray,UT,--3-----,RQ,9307,,4040N 11153W, +,US,MUZ,Muscoda,Muscoda,WI,--3-----,RQ,9307,,4311N 09027W, +,US,MVA,Mar Vista,Mar Vista,CA,--3-----,RQ,9307,,3400N 11826W, +,US,MVB,Millersville,Millersville,MD,--3-----,RQ,9307,,3904N 07639W, +,US,MVC,Monroeville,Monroeville,AL,---4----,AI,9601,,3132N 08719W, +,US,MVD,Maryville,Maryville,MO,--3-----,RQ,9307,,4021N 09452W, +,US,MVE,Montevideo,Montevideo,MN,---4----,AI,0001,,4457N 09543W, +,US,MVG,Middle Village,Middle Village,NY,--3-----,RQ,9307,,4043N 07353W, +,US,MVH,Mount Vernon,Mount Vernon,NY,--3-----,RQ,1101,,4055N 07350W, +,US,MVI,Millville,Millville,RI,--3-----,RN,0105,,4134N 07141W, +,US,MVJ,Mossville,Mossville,IL,--3-----,RQ,9307,,4049N 08934W, +,US,MVK,Middleville,Middleville,MI,--3-----,RQ,9307,,4243N 08528W, +,US,MVL,Stowe,Stowe,VT,---4----,AI,0001,,4428N 07241W, +,US,MVM,Kayenta,Kayenta,AZ,---4----,AI,0001,,3643N 11015W, +,US,MVO,Montevallo,Montevallo,AL,--3-----,RQ,9307,,3306N 08652W, +,US,MVP,Minersville,Minersville,PA,--3-----,RQ,9307,,4041N 07616W, +,US,MVQ,Madisonville,Madisonville,KY,--3-----,RQ,9307,,3720N 08730W, +,US,MVR,Malvern,Malvern,OH,--3-----,RQ,0101,,4042N 08111W, +,US,MVT,McVeytown,McVeytown,PA,--3-----,RN,0105,,4030N 07744W, +,US,MVU,Maysville,Maysville,KY,--3-----,RQ,9307,,3838N 08345W, +,US,MVV,Marysville,Marysville,MI,--3-----,RQ,9307,,4255N 08229W, +,US,MVY,Martha's Vineyard,Martha's Vineyard,MA,---4----,AI,0001,,4124N 07037W, +,US,MWA,Marion,Marion,IL,---4----,AI,9601,,3744N 08856W, +!,US,MWC,Midway City,Midway City,CA,--3-----,RQ,9307,,3345N 11759W, +,US,MWD,Meadow Lands,Meadow Lands,PA,--3-----,RQ,9307,,4013N 08013W, +,US,MWF,Mount Wolf,Mount Wolf,PA,--3-----,RQ,1101,,4004N 07642W, +,US,MWG,Morgantown,Morgantown,TN,--3-----,RQ,9307,,3530N 08502W, +,US,MWH,Moses Lake,Moses Lake,WA,---4----,AI,9601,,4708N 11917W, +,US,MWI,Monroe,Monroe,WI,--3-----,RQ,9307,,4237N 08935W, +,US,MWJ,Mason,Mason,MI,--3-----,RQ,9307,,4235N 08427W, +,US,MWL,Mineral Wells,Mineral Wells,TX,---4----,AI,9601,,3249N 09807W, +,US,MWM,Windom,Windom,MN,---4----,AI,9601,,4352N 09507W, +,US,MWN,Malvern,Malvern,PA,--3-----,RQ,9307,,4002N 07531W, +,US,MWO,Middletown,Middletown,OH,---4----,AI,9601,,3931N 08424W, +,US,MWS,Mount Wilson,Mount Wilson,CA,---4----,AI,1101,,3414N 11804W, +,US,MWT,Mount Vernon,Mount Vernon,OH,--3-----,RN,1101,,4024N 08229W,Stark +,US,MWV,Middletown,Middletown,VA,--3-----,RQ,9307,,3902N 07817W, +,US,MWW,Manawa,Manawa,WI,--3-----,RQ,9307,,4428N 08855W, +,US,MWX,Milwaukie,Milwaukie,OR,--3-----,RQ,9307,,4527N 12238W, +,US,MWY,Midway,Midway,TN,--3-----,RQ,9307,,3617N 08226W, +,US,MXA,Manila,Manila,AR,---4----,AI,0001,,3553N 09010W, +,US,MXB,Marion,Marion,NY,--3-----,RQ,9307,,4309N 07711W, +,US,MXC,Monticello,Monticello,UT,---4----,AI,0001,,3753N 10920W, +,US,MXD,Milner,Milner,ID,--3-----,RQ,9307,,4231N 11401W, +,US,MXE,Maxton,Maxton,NC,--3-----,RQ,9307,,3444N 07921W, +,US,MXF,Mount Vernon,Mount Vernon,IA,--3-----,RQ,1101,,4155N 09125W, +,US,MXI,Mexico,Mexico,MO,--3-----,RQ,9307,,3910N 09153W, +,US,MXJ,Monona,Monona,IA,--3-----,RQ,9501,,4303N 09123W, +,US,MXK,Minatare,Minatare,NE,--3-----,RQ,9307,,4149N 10330W, +,US,MXL,Milton,Milton,MA,--3-----,RQ,9307,,4215N 07104W, +,US,MXM,Max Meadows,Max Meadows,VA,--3-----,RQ,9307,,3658N 08057W, +,US,MXN,Milan,Milan,TN,--3-----,RQ,9307,,3555N 08846W, +,US,MXO,Monticello,Monticello,IA,---4----,AI,9601,,4214N 09111W, +,US,MXQ,Mount Orab,Mount Orab,OH,--3-----,RQ,1101,,3902N 08355W, +,US,MXR,Mount Morris,Mount Morris,IL,--3-----,RQ,1101,,4203N 08926W, +,US,MXS,Martinsville,Martinsville,IN,--3-----,RQ,9008,,3926N 08626W, +,US,MXT,Mount Bethel,Mount Bethel,PA,--3-----,RQ,1101,,4054N 07507W, +,US,MXU,Mullins,Mullins,SC,--3-----,RQ,9307,,3412N 07915W, +,US,MXV,Mount Vernon,Mount Vernon,KY,--3-----,RQ,1101,,3721N 08420W, +,US,MXW,Milton,Milton,IA,--3-----,RQ,9307,,4040N 09210W, +,US,MXX,Monongahela,Monongahela,PA,--3-----,RQ,9307,,4012N 07955W, +,US,MXY,McCarthy,McCarthy,AK,---4----,AI,0001,,6128N 14245W, +,US,MXZ,Monte Alto,Monte Alto,TX,--3-----,RQ,9307,,2622N 09758W, +,US,MYA,Maywood,Maywood,CA,--3-----,RQ,9307,,3359N 11811W, +,US,MYE,Marysville,Marysville,KS,--3-----,RQ,9307,,3951N 09639W, +!,US,MYF,Midway,Midway,FL,--3-----,RQ,9307,,3030N 08427W, +,US,MYG,Myrtle Grove,Myrtle Grove,LA,1-3-----,RN,0105,,2938N 08957W, +,US,MYH,Marble Canyon,Marble Canyon,AZ,---4----,AI,0001,,3649N 11138W, +,US,MYI,Mayville,Mayville,WI,--3-----,RQ,9307,,4330N 08833W, +,US,MYJ,Mays Landing,Mays Landing,NJ,--3-----,RQ,9307,,3927N 07443W, +,US,MYK,May Creek,May Creek,AK,---4----,AI,0001,,6121N 14242W, +,US,MYL,McCall,McCall,ID,---4----,AI,0001,,4455N 11606W, +,US,MYM,Mount Airy,Mount Airy,MD,--3-----,RQ,1101,,3923N 07709W, +,US,MYN,Middleton,Middleton,MA,--3-----,RL,0004,,4236N 07101W, +,US,MYO,Mayodan,Mayodan,NC,--3-----,RQ,9307,,3625N 07958W, +,US,MYP,Marysville,Marysville,PA,--3-----,RQ,9307,,4020N 07656W, +,US,MYQ,Maybrook,Maybrook,NY,--3-----,RQ,9307,,4129N 07413W, +,US,MYR,Myrtle Beach,Myrtle Beach,SC,--34----,AI,9506,,3342N 07853W, +,US,MYS,Marysville,Marysville,WA,--3-----,RQ,9307,,4803N 12211W, +,US,MYU,Mekoryuk,Mekoryuk,AK,---4----,AI,0001,,6023N 16611W, +,US,MYV,Marysville,Marysville,CA,--34----,RQ,9008,,3909N 12135W, +,US,MYW,Maywood,Maywood,NJ,--3-----,RQ,9307,,4054N 07404W, +,US,MYX,Minden,Minden,LA,--3-----,RQ,9307,,3237N 09317W, +,US,MYY,Madison,Madison,ME,--3-----,RQ,9307,,4448N 06953W, +,US,MYZ,Mooresville,Mooresville,IN,--3-----,RQ,9307,,3937N 08622W, +,US,MZA,Meridian,Meridian,CA,--3-----,RQ,9307,,3506N 11855W, +,US,MZB,Meta,Meta,MO,--3-----,RQ,9307,,3819N 09210W, +,US,MZC,Midvale,Midvale,UT,--3-----,RQ,9307,,4037N 11155W, +,US,MZD,Millington,Millington,TN,--3-----,RQ,9307,,3520N 08954W, +,US,MZE,Milroy,Milroy,PA,--3-----,RQ,9307,,4043N 07735W, +,US,MZG,Milton,Milton,NY,--3-----,RQ,9307,,4302N 07351W, +,US,MZH,Milton-Freewater,Milton-Freewater,OR,--3-----,RQ,9307,,4556N 11823W, +,US,MZI,McIntosh,McIntosh,AL,--3-----,RN,0105,,3116N 08802W, +,US,MZJ,Marana,Marana,AZ,---4----,AI,0001,,3227N 11113W, +,US,MZK,Maywood Park,Maywood Park,OR,--3-----,RQ,9307,,4533N 12234W, +,US,MZL,Morrisville,Morrisville,NY,--3-----,RQ,9307,,4254N 07538W, +,US,MZM,Montezuma,Montezuma,IN,--3-----,RQ,9307,,3948N 08722W, +,US,MZN,Methuen,Methuen,MA,--3-----,RQ,9307,,4244N 07111W, +,US,MZO,Minster,Minster,OH,--3-----,RQ,9307,,4024N 08423W, +,US,MZP,Mertztown,Mertztown,PA,--3-----,RQ,9307,,4030N 07540W, +,US,MZQ,Mentone,Mentone,CA,--3-----,RQ,9307,,3404N 11708W, +,US,MZS,Monson,Monson,MA,--3-----,RQ,9307,,4206N 07219W, +,US,MZT,Montclair,Montclair,CA,--3-----,RQ,9307,,3405N 11741W, +,US,MZU,Monterey Park,Monterey Park,CA,--3-----,RL,9307,,3403N 11808W, +,US,MZW,Montesano,Montesano,WA,--3-----,RQ,9307,,4659N 12336W, +,US,MZX,Madison,Madison,IL,--3-----,RQ,9307,,3843N 09011W, +,US,MZY,Monterey,Monterey,TN,--3-----,RQ,9307,,3609N 08516W, +,US,MZZ,Marion,Marion,IN,--34----,AI,0001,,4034N 08540W, +,US,NAL,Napoleon,Napoleon,OH,--3-----,RQ,9307,,4124N 08408W, +,US,NAM,New Albany,New Albany,MS,--3-----,RQ,9307,,3430N 08900W, +,US,NAN,Newnan,Newnan,GA,--3-----,RQ,9008,,3323N 08448W, +,US,NAQ,Norwalk,Norwalk,CA,--3-----,RQ,9307,,3355N 11805W, +,US,NAT,Natural Bridge,Natural Bridge,NY,--3-----,RQ,9307,,4404N 07530W, +,US,NAX,Barbers Point (Oahu),Barbers Point (Oahu),HI,--34----,AI,9601,,2117N 15806W, +,US,NAZ,Nazareth,Nazareth,PA,--3-----,RQ,9307,,4045N 07519W, +,US,NBA,North Billerica,North Billerica,MA,--3-----,RQ,9307,,4235N 07117W, +,US,NBB,New Berlin,New Berlin,WI,--3-----,RQ,9307,,4259N 08807W, +,US,NBC,North Branford,North Branford,CT,--3-----,RQ,9307,,4120N 07246W, +,US,NBE,Newbern,Newbern,TN,--3-----,RQ,9307,,3607N 08916W, +,US,NBF,Newberry,Newberry,FL,--3-----,RQ,9307,,2939N 08236W, +,US,NBI,New Brighton,New Brighton,MN,--3-----,RQ,9806,,4504N 09312W, +,US,NBJ,New Brunswick,New Brunswick,NJ,--3-----,RQ,9008,,4029N 07427W, +,US,NBM,North Berwick,North Berwick,ME,--3-----,RQ,9307,,4318N 07044W, +,US,NBN,North Bergen,North Bergen,NJ,--3-----,RQ,9307,,4048N 07401W, +,US,NBS,North Brunswick,North Brunswick,NJ,--3-----,RQ,9307,,4027N 07429W, +,US,NBT,New Baltimore,New Baltimore,MI,--3-----,RQ,9307,,4241N 08244W, +,US,NBU,Glenview,Glenview,IL,--34----,AI,9506,,4204N 08749W, +,US,NBX,New Boston,New Boston,TX,--3-----,RQ,9307,,3328N 09425W, +,US,NBY,North Babylon,North Babylon,NY,--3-----,RQ,9307,,4043N 07319W, +,US,NBZ,Newberry,Newberry,SC,--3-----,RQ,9307,,3417N 08137W, +,US,NCH,North Charlotte,North Charlotte,NC,--3-----,RQ,9307,,3515N 08048W, +,US,NCI,National City,National City,IL,--3-----,RQ,9307,,3839N 09010W, +,US,NCK,Nicholasville,Nicholasville,KY,--3-----,RQ,9307,,3753N 08434W, +,US,NCL,Nichols,Nichols,SC,--3-----,RQ,9307,,3414N 07909W, +,US,NCM,Norco,Norco,LA,1-3-----,RN,0105,,2960N 09025W, +,US,NCP,New Castle,New Castle,PA,--3-----,RQ,9008,,4060N 08021W, +!,US,NCQ,Nice,Nice,CA,--3-----,RQ,9307,,3907N 12250W, +,US,NCR,North Clarendon,North Clarendon,VT,--3-----,RQ,9601,,4334N 07258W, +,US,NCT,North Scituate,North Scituate,MA,--3-----,RQ,9307,,4213N 07047W, +,US,NCV,North Cove,North Cove,NC,--3-----,RQ,9307,,3550N 08159W, +,US,NDC,North Highlands,North Highlands,CA,--3-----,RQ,9307,,3841N 12122W, +,US,NDD,Nederland,Nederland,CO,--3-----,RQ,9307,,3958N 10531W, +,US,NDG,North Dighton,North Dighton,MA,--3-----,RQ,9307,,4152N 07107W, +,US,NDI,New Baden,New Baden,IL,--3-----,RQ,9307,,3832N 08942W, +,US,NDJ,Danville,Danville,AL,-----6--,RQ,0901,,3425N 08705W, +,US,NDQ,Norden,Norden,CA,--3-----,RQ,9307,,3919N 12021W, +,US,NDV,Anacostia,Anacostia,DC,---4----,AI,0001,,3852N 07659W, +,US,NDW,Newald,Newald,WI,--3-----,RQ,9307,,4544N 08842W, +,US,NDX,Nederland,Nederland,TX,--3-----,RQ,9307,,2958N 09360W, +,US,NDY,Norwood,Norwood,OH,--3-----,RQ,9307,,3909N 08428W, +,US,NEA,Glynco,Glynco,GA,---4----,AI,0001,,3113N 08131W, +,US,NEK,Newark,Newark,OH,--3-----,RQ,9307,,4003N 08224W, +,US,NEL,Lakehurst,Lakehurst,NJ,---4----,AI,9601,,4001N 07419W, +,US,NEM,New Milford,New Milford,CT,--3-----,RQ,9307,,4135N 07325W, +,US,NEN,Whitehouse,Whitehouse,FL,---4----,AI,0001,,3019N 08151W, +,US,NEO,Newton,Newton,GA,--3-----,RQ,9307,,3119N 08420W, +,US,NEQ,Netcong,Netcong,NJ,--3-----,RQ,9307,,4054N 07442W, +!,US,NES,Nesconset,Nesconset,NY,--3-----,RQ,9501,,4051N 07309W, +,US,NET,New Brighton,New Brighton,PA,--3-----,RQ,9307,,4044N 08019W, +,US,NEW,Destrehan,Destrehan,LA,1-3-----,RN,9501,,2958N 09022W, +,US,NEY,Newbury,Newbury,OH,--3-----,RQ,9307,,4128N 08115W, +,US,NFA,Norphlet,Norphlet,AR,--3-----,RQ,9307,,3319N 09240W, +,US,NFC,Nevada City,Nevada City,CA,--3-----,RQ,9307,,3916N 12101W, +,US,NFL,Fallon,Fallon,NV,---4----,AI,0001,,3928N 11847W, +,US,NFM,Newton Upper Falls,Newton Upper Falls,MA,--3-----,RQ,9307,,4219N 07113W, +,US,NFY,Newfoundland,Newfoundland,NJ,--3-----,RQ,9307,,4103N 07426W, +,US,NGK,Naugatuck,Naugatuck,CT,--3-----,RQ,9008,,4129N 07303W, +,US,NGL,Northglenn,Northglenn,CO,--3-----,RQ,9307,,3955N 10459W, +!,US,NGP,New Egypt,New Egypt,NJ,--3-----,RQ,9307,,4004N 07431W, +,US,NGR,North Grafton,North Grafton,MA,--3-----,RQ,9307,,4214N 07142W, +,US,NGU,Narragansett,Narragansett,RI,--3-----,RQ,9307,,4127N 07127W, +!,US,NGW,Niagara,Niagara,WI,--3-----,RQ,9307,,4546N 08760W, +,US,NGZ,Alameda,Alameda,CA,1--4----,AI,0001,,3746N 12214W, +,US,NHA,Naheola,Naheola,AL,--3-----,RQ,9307,,3214N 08802W, +,US,NHD,North Hollywood,North Hollywood,CA,--3-----,RQ,9307,,3410N 11822W, +,US,NHG,Nottingham,Nottingham,PA,--3-----,RQ,9307,,3945N 07601W, +,US,NHI,New Hope,New Hope,PA,--3-----,RQ,9307,,4022N 07457W, +,US,NHO,New Hope,New Hope,MN,--3-----,RQ,9307,,4502N 09323W, +,US,NHT,New Hartford,New Hartford,CT,--3-----,RQ,9307,,4153N 07259W, +,US,NHU,North Huntingdon,North Huntingdon,PA,--3-----,RQ,9307,,4020N 07945W, +,US,NHX,Foley,Foley,AL,---4----,AI,0001,,3024N 08741W, +,US,NHY,New Hyde Park,New Hyde Park,NY,--3-----,RQ,9307,,4044N 07341W, +,US,NHZ,Brunswick,Brunswick,ME,--34----,AI,9601,,4355N 06958W, +,US,NIB,Nikolai,Nikolai,AK,---4----,AI,0001,,6300N 15423W, +,US,NIE,Niblack,Niblack,AK,---4----,AI,0001,,5504N 13209W, +,US,NIF,Nashville,Nashville,KS,--3-----,RQ,0901,,3727N 09825W, +,US,NIL,Niles,Niles,IL,--3-----,RQ,9008,,4202N 08749W, +,US,NIM,New Hampton,New Hampton,IA,--3-----,RQ,9307,,4304N 09219W, +,US,NIN,Ninilchik,Ninilchik,AK,---4----,AI,9601,,6005N 15122W, +,US,NIO,Nipomo,Nipomo,CA,--3-----,RQ,9307,,3502N 12030W, +,US,NIR,Beeville,Beeville,TX,--34----,RQ,9008,,2824N 09745W, +,US,NIT,Nitro,Nitro,WV,--3-----,RQ,9307,,3825N 08151W, +,US,NIV,Niceville,Niceville,FL,--3-----,RL,0001,,3031N 08629W, +,US,NIZ,Niles,Niles,CA,--3-----,RQ,9307,,3735N 12159W, +,US,NJR,North Ridgeville,North Ridgeville,OH,--3-----,RQ,9307,,4123N 08201W, +,US,NJT,North Arlington,North Arlington,NJ,--3-----,RQ,9307,,4047N 07408W, +,US,NKE,North Kingsville,North Kingsville,OH,--3-----,RQ,9307,,4154N 08041W, +,US,NKP,New Kensington,New Kensington,PA,--3-----,RQ,9307,,4034N 07946W, +,US,NKQ,Newark,Newark,CA,--3-----,RQ,9307,,3732N 12202W, +,US,NKV,Nichen Cove,Nichen Cove,AK,---4----,AI,0001,,5551N 13314W, +!,US,NKX,New Knoxville,New Knoxville,OH,--3-----,RQ,9307,,4030N 08419W, +,US,NKY,North Kansas City,North Kansas City,MO,--3-----,RQ,9307,,3909N 09434W, +,US,NLC,Lemoore,Lemoore,CA,---4----,AI,0001,,3618N 11947W, +,US,NLD,New London,New London,WI,--3-----,RQ,9307,,4424N 08844W, +,US,NLE,Niles,Niles,MI,---4----,AI,9601,,4151N 08617W, +,US,NLG,Nelson Lagoon,Nelson Lagoon,AK,---4----,AI,0001,,5550N 16139W, +,US,NLN,National City,National City,CA,--3-----,RQ,9307,,3241N 11706W, +,US,NLQ,North Loup,North Loup,NE,--3-----,RQ,9307,,4130N 09846W, +,US,NLS,Niles,Niles,OH,--3-----,RQ,9307,,4111N 08046W, +,US,NLW,North Little Rock,North Little Rock,AR,--3-----,RQ,9307,,3446N 09216W, +,US,NLY,North Lawrence,North Lawrence,NY,--3-----,RQ,9307,,4448N 07440W, +,US,NMD,New Milford,New Milford,PA,--3-----,RQ,0101,,4153N 07544W, +,US,NME,Nightmute,Nightmute,AK,---4----,AI,0001,,6030N 16449W, +,US,NMF,New Milford,New Milford,NJ,--3-----,RQ,9501,,4056N 07401W, +,US,NMK,Newmarket,Newmarket,NH,--3-----,RQ,9307,,4305N 07056W, +,US,NMO,Neelys,Neelys,MO,--3-----,RQ,9307,,3730N 08930W, +,US,NMQ,Newton,Newton,IL,--3-----,RQ,9307,,3859N 08810W, +,US,NMT,New Market,New Market,AL,--3-----,RL,0207,,3454N 08625W, +,US,NMW,Newman,Newman,CA,--3-----,RQ,9307,,3719N 12101W, +,US,NNK,Naknek,Naknek,AK,---4----,AI,9601,,5847N 15654W, +,US,NNL,Nondalton,Nondalton,AK,---4----,AI,0001,,5958N 15451W, +,US,NNM,Norton,Norton,MA,--3-----,RQ,9307,,4158N 07111W, +,US,NNV,Nelsonville,Nelsonville,OH,--3-----,RQ,9307,,3928N 08214W, +,US,NNW,North Newton,North Newton,KS,--3-----,RQ,9307,,3804N 09721W, +,US,NOC,Norwich,Norwich,CT,--3-----,RQ,9307,,4131N 07205W, +,US,NOD,North Olmsted,North Olmsted,OH,--3-----,RL,9811,,4125N 08155W, +,US,NOE,Noel,Noel,MO,--3-----,RQ,9307,,3632N 09429W, +!,US,NOH,North Haven,North Haven,CT,--3-----,RQ,9008,,4123N 07252W, +,US,NOI,North Richland Hills,North Richland Hills,TX,--3-----,RQ,9307,,3250N 09714W, +,US,NOM,Normal,Normal,IL,--3-----,RQ,9307,,4031N 08859W, +,US,NON,Nelson,Nelson,GA,--3-----,RQ,9307,,3423N 08422W, +,US,NOT,Novato,Novato,CA,---4----,AI,9601,,3806N 12234W, +,US,NOV,Novi,Novi,MI,--3-----,RQ,9307,,4229N 08329W, +!,US,NPA,Nampa,Nampa,ID,--3-----,RQ,9307,,4334N 11634W, +,US,NPD,Newport,Newport,DE,--3-----,RQ,9307,,3943N 07537W, +,US,NPF,Newport,Newport,IN,--3-----,RQ,9307,,3953N 08725W, +,US,NPH,Nephi,Nephi,UT,---4----,AI,0001,,3943N 11150W, +,US,NPK,Naples,Naples,NY,--3-----,RQ,9307,,4237N 07724W, +,US,NPM,Newport,Newport,MN,--3-----,RQ,9307,,4452N 09300W, +,US,NPN,Newport,Newport,AR,--3-----,RQ,9307,,3537N 09116W, +,US,NPP,New Philadelphia,New Philadelphia,PA,--3-----,RQ,9307,,4043N 07607W, +,US,NPR,Newport,Newport,TN,--3-----,RQ,9307,,3558N 08311W, +,US,NPT,Newport,Newport,RI,1--4----,AI,0001,,4129N 07119W, +,US,NPY,North Plains,North Plains,OR,--3-----,RQ,9307,,4536N 12260W, +,US,NQG,Newington,Newington,VA,--3-----,RQ,9307,,3844N 07712W, +,US,NQI,Kingsville,Kingsville,TX,---4----,AI,9601,,2731N 09751W, +,US,NQK,Nikishka,Nikishka,AK,--3-----,RL,9307,,6042N 15124W, +,US,NQL,Nicollet,Nicollet,MN,--3-----,RQ,9307,,4417N 09411W, +,US,NQM,Nokomis,Nokomis,FL,--3-----,RQ,9307,,2707N 08226W, +,US,NQO,Norco,Norco,CA,--3-----,RQ,9307,,3356N 11733W, +,US,NQS,New Castle,New Castle,IN,--3-----,RQ,9307,,3956N 08522W, +,US,NRB,Mayport,Mayport,FL,---4----,AI,0001,,3023N 08124W, +,US,NRC,Crows Landing,Crows Landing,CA,---4----,AI,9601,,3724N 12104W, +,US,NRD,Norwood,Norwood,NJ,--3-----,RQ,9307,,4060N 07358W, +,US,NRE,Northfield,Northfield,MN,--3-----,RQ,9307,,4427N 09310W, +,US,NRG,North Reading,North Reading,MA,--3-----,RQ,9307,,4235N 07105W, +,US,NRH,New Port Richey,New Port Richey,FL,--3-----,RL,0005,,2815N 08243W, +,US,NRI,Shangri-la,Shangri-la,OK,---4----,AI,0001,,3703N 07934W, +,US,NRJ,Northridge,Northridge,CA,--3-----,RQ,9307,,3414N 11832W, +,US,NRL,Norlina,Norlina,NC,--3-----,RQ,9307,,3627N 07812W, +,US,NRM,Natrium,Natrium,WV,--3-----,RQ,9307,,3945N 08051W, +,US,NRO,Monroe,Monroe,OH,--3-----,RQ,9008,,3927N 08422W, +,US,NRR,North,North,NY,--3-----,RQ,9307,,3337N 08106W, +,US,NRS,Imperial Beach,Imperial Beach,CA,---4----,AI,9601,,3235N 11707W, +,US,NSE,Milton,Milton,FL,---4----,AI,9601,,3038N 08702W, +,US,NSH,Nashville,Nashville,GA,--3-----,RQ,9307,,3112N 08315W, +,US,NSI,North Syracuse,North Syracuse,NY,--3-----,RQ,9307,,4308N 07608W, +,US,NSL,North Salt Lake,North Salt Lake,UT,--3-----,RQ,9307,,4051N 11154W, +,US,NSM,North Smithfield,North Smithfield,RI,--3-----,RQ,9307,,4158N 07133W, +,US,NSN,Neshanic Station,Neshanic Station,NJ,--3-----,RQ,9307,,4030N 07444W, +,US,NSQ,Nesquehoning,Nesquehoning,PA,--3-----,RQ,9307,,4052N 07549W, +,US,NST,New Stanton,New Stanton,PA,--3-----,RQ,9307,,4013N 07937W, +,US,NTA,North Chicago,North Chicago,IL,--3-----,RQ,9307,,4220N 08750W, +,US,NTE,North East,North East,PA,--3-----,RQ,9307,,4213N 07950W, +,US,NTI,Northlake,Northlake,IL,--3-----,RQ,9008,,4155N 08754W, +,US,NTJ,Manti,Manti,UT,---4----,AI,0001,,3916N 11138W, +,US,NTK,Nowata,Nowata,OK,--3-----,RQ,9307,,3642N 09538W, +,US,NTL,National Gardens,National Gardens,FL,--3-----,RQ,9307,,2920N 08108W, +,US,NTN,Newton,Newton,MA,--3-----,RQ,9307,,4220N 07113W, +,US,NTP,North Pole,North Pole,AK,--3-----,RQ,9307,,6445N 14721W, +,US,NTQ,Newtown Square,Newtown Square,PA,--3-----,RQ,9307,,3959N 07524W, +,US,NTS,North Charleston,North Charleston,SC,1-3-----,RL,1801,,3251N 07958W, +,US,NTT,North Attleboro,North Attleboro,MA,--3-----,RQ,9307,,4159N 07120W, +,US,NTU,Oceana,Oceana,VA,---4----,AI,0001,,3649N 07559W, +,US,NTW,Newtown,Newtown,PA,--3-----,RQ,9501,,4039N 07621W, +,US,NTX,Nocona,Nocona,TX,--3-----,RQ,9307,,3347N 09744W, +,US,NUC,Newcastle,Newcastle,CA,--3-----,RQ,9307,,3852N 12108W, +,US,NUG,Newberg,Newberg,OR,--3-----,RQ,9307,,4518N 12258W, +,US,NUI,Nuiqsut,Nuiqsut,AK,---4----,AI,0001,,7013N 15060W, +,US,NUL,Nulato,Nulato,AK,---4----,AI,0001,,6442N 15816W, +,US,NUM,Northumberland,Northumberland,PA,--3-----,RQ,9307,,4054N 07648W, +,US,NUP,Nunapitchuk,Nunapitchuk,AK,---4----,AI,0001,,6053N 16228W, +,US,NUQ,Mountain View,Mountain View,CA,---4----,AI,9601,,3723N 12205W, +,US,NUT,Nutley,Nutley,NJ,--3-----,RQ,9307,,4049N 07410W, +,US,NUU,Blue Diamond,Blue Diamond,NV,--3-----,RQ,0607,,3603N 11524W, +,US,NUV,Newark Valley,Newark Valley,NY,--3-----,RQ,9307,,4213N 07611W, +,US,NUW,Whidbey Island,Whidbey Island,WA,---4----,AI,0001,,4809N 12236W, +,US,NUY,New Berlin,New Berlin,PA,--3-----,RQ,9307,,4053N 07659W, +,US,NVB,Noblesville,Noblesville,IN,--3-----,RQ,9307,,4003N 08601W, +,US,NVD,Nevada,Nevada,MO,---4----,AI,9601,,3750N 09422W, +,US,NVE,Needville,Needville,TX,--3-----,RQ,9307,,2924N 09550W, +,US,NVG,Newell,Newell,WV,--3-----,RQ,9307,,4037N 08036W, +,US,NVH,New Vienna,New Vienna,OH,--3-----,RQ,9307,,3919N 08341W, +,US,NVI,Neville Island,Neville Island,PA,--3-----,RQ,9307,,4030N 08007W, +,US,NVK,Newbury Park,Newbury Park,CA,--3-----,RQ,9307,,3411N 11855W, +,US,NVL,Northvale,Northvale,NJ,--3-----,RQ,9008,,4100N 07357W, +,US,NVP,New Centerville,New Centerville,PA,--3-----,RQ,9307,,3957N 07911W, +,US,NVR,Northville (Riverhead),Northville (Riverhead),NY,--3-----,RQ,9506,,4058N 07237W, +,US,NVW,Napoleonville,Napoleonville,LA,--3-----,RQ,9307,,2956N 09101W, +,US,NVY,North Vernon,North Vernon,IN,--3-----,RQ,9307,,3900N 08537W, +,US,NWA,New Albany,New Albany,IN,--3-----,RQ,9307,,3817N 08549W, +,US,NWB,North Wilkesboro,North Wilkesboro,NC,--3-----,RQ,9307,,3610N 08109W, +,US,NWD,New Cumberland,New Cumberland,PA,--3-----,RQ,9307,,4014N 07652W, +,US,NWE,New Holstein,New Holstein,WI,--3-----,RQ,9307,,4357N 08805W, +,US,NWF,Newfield,Newfield,NJ,--3-----,RQ,9307,,3933N 07501W, +,US,NWG,Newington,Newington,CT,--3-----,RQ,9307,,4142N 07243W, +,US,NWH,Newport,Newport,NH,---4----,AI,9601,,4322N 07210W, +,US,NWI,New Windsor,New Windsor,NY,--3-----,RQ,9506,,4129N 07401W, +,US,NWJ,New Johnsonville,New Johnsonville,TN,--3-----,RQ,9307,,3601N 08758W, +,US,NWK,Newark,Newark,DE,--3-----,RQ,9008,,3941N 07545W, +,US,NWM,New Windsor,New Windsor,MD,--3-----,RQ,9307,,3933N 07706W, +,US,NWN,Newton,Newton,NJ,--3-----,RQ,9307,,4103N 07445W, +,US,NWP,New Prague,New Prague,MN,--3-----,RQ,9307,,4433N 09335W, +,US,NWR,Newburg,Newburg,OH,--3-----,RQ,0002,,3923N 07951W, +,US,NWT,New Britain,New Britain,CT,--3-----,RQ,9307,,4140N 07247W, +,US,NWV,New Waverly,New Waverly,TX,--3-----,RQ,9307,,3032N 09529W, +,US,NWW,New Tazewell,New Tazewell,TN,--3-----,RQ,9307,,3627N 08336W, +,US,NWX,Newtown,Newtown,OH,--3-----,RQ,9307,,3907N 08422W, +,US,NWY,North Weymouth,North Weymouth,MA,--3-----,RQ,9506,,4215N 07056W, +,US,NXD,New Deal,New Deal,TX,--3-----,RQ,9307,,3344N 10150W, +,US,NXF,New Oxford,New Oxford,PA,--3-----,RQ,9307,,3952N 07703W, +,US,NXG,New Eagle,New Eagle,PA,--3-----,RQ,9307,,4012N 07957W, +,US,NXI,Nixa,Nixa,MO,--3-----,RQ,9307,,3703N 09319W, +,US,NXO,Norwood,Norwood,NC,--3-----,RQ,9307,,3513N 08007W, +,US,NXQ,Newcomerstown,Newcomerstown,OH,--3-----,RQ,9307,,4016N 08136W, +,US,NXV,Nashville,Nashville,IL,--3-----,RQ,9307,,3821N 08923W, +,US,NXX,Willow Grove,Willow Grove,PA,---4----,AI,9601,,4009N 07507W, +,US,NXY,North City,North City,WA,--3-----,RQ,9307,,4745N 12219W, +,US,NYG,Quantico,Quantico,VA,---4----,AI,0001,,3831N 07717W, +,US,NYQ,New York Mills,New York Mills,MN,--3-----,RQ,9307,,4631N 09523W, +,US,NYS,Newberry Springs,Newberry Springs,CA,--3-----,RQ,9307,,3450N 11641W, +,US,NZ9,Nunica,Nunica,MI,-----6--,RQ,1007,,4305N 08604W, +,US,NZW,South Weymouth,South Weymouth,MA,---4----,AI,0001,,4211N 07057W, +,US,OAA,Onalaska,Onalaska,WA,--3-----,RQ,9307,,4635N 12243W, +,US,OAJ,Jacksonville,Jacksonville,NC,--34----,AI,9601,,3445N 07725W, +,US,OAK,Oakland,Oakland,CA,1--45---,AI,0001,,3748N 12216W, +,US,OAN,Olympia Fields,Olympia Fields,IL,--3-----,RQ,9307,,4131N 08742W, +,US,OAS,Oaks,Oaks,PA,--3-----,RQ,9307,,4008N 07528W, +!,US,OBE,Obetz,Obetz,OH,--3-----,RQ,9307,,3953N 08257W, +,US,OBG,Orangeburg,Orangeburg,NY,--3-----,RQ,9307,,4103N 07357W, +,US,OBT,Oakland,Oakland,MD,-234----,AI,0001,,3925N 07924W, +,US,OBU,Kobuk,Kobuk,AK,---4----,AI,0001,,6654N 15653W, +,US,OBV,Bernville,Bernville,PA,--3-----,RQ,0607,,4026N 07607W, +,US,OCA,Ocean Reef,Ocean Reef,FL,---4----,AI,0001,,3441N 07657W, +,US,OCC,Orange Cove,Orange Cove,CA,--3-----,RQ,9307,,3637N 11919W, +,US,OCE,Ocean City,Ocean City,MD,---4----,AI,0001,,3820N 07505W, +,US,OCF,Ocala,Ocala,FL,---4----,AI,9601,,2911N 08208W, +,US,OCG,Ochlocknee,Ochlocknee,GA,--3-----,RQ,9307,,3058N 08403W, +,US,OCH,Nacogdoches,Nacogdoches,TX,---4----,AI,9601,,3136N 09439W, +,US,OCI,Oceanic,Oceanic,AK,---4----,AI,0001,,4023N 07401W, +,US,OCJ,Orchards,Orchards,WA,--3-----,RQ,9307,,4541N 12232W, +,US,OCN,Oceanside,Oceanside,CA,---4----,AI,9601,,3312N 11723W, +,US,OCO,Oconomowoc,Oconomowoc,WI,--3-----,RQ,9307,,4307N 08830W, +,US,OCW,Washington,Washington,NC,--34----,AI,9601,,3533N 07703W, +,US,OCY,Ocean,Ocean,NJ,--3-----,RQ,9307,,3443N 07659W, +,US,ODA,Oakdale,Oakdale,LA,--3-----,RQ,9307,,3049N 09239W, +,US,ODB,Ormond Beach,Ormond Beach,FL,--3-----,RQ,9307,,2917N 08103W, +,US,ODC,Oildale,Oildale,CA,--3-----,RN,0105,,3526N 11901W, +,US,ODE,Odell,Odell,OR,--3-----,RQ,9307,,4538N 12134W, +,US,ODF,Odessa,Odessa,FL,--3-----,RQ,9008,,2811N 08233W, +,US,ODL,Owendale,Owendale,MI,--3-----,RQ,9307,,4344N 08316W, +,US,ODN,Odenton,Odenton,MD,--3-----,RQ,9307,,3905N 07642W, +,US,ODO,O'donnell,O'donnell,TX,--3-----,RQ,9307,,3258N 10150W, +,US,ODR,Old Bridge,Old Bridge,NJ,--3-----,RQ,9307,,4023N 07420W, +,US,ODZ,Concord,Concord,TX,--3-----,RQ,0901,,3107N 09415W,More than one place with this name +,US,OEA,Vincennes,Vincennes,IN,---4----,AI,9601,,3841N 08732W, +,US,OEO,Osceola,Osceola,WI,---4----,AI,0001,,4520N 09237W, +,US,OEU,Orem,Orem,UT,--3-----,RQ,9307,,4018N 11142W, +,US,OEY,Olney,Olney,MD,--3-----,RQ,9307,,3909N 07704W, +,US,OFD,Oxford,Oxford,FL,--3-----,RQ,0002,,2856N 08202W, +,US,OFK,Norfolk,Norfolk,NE,--34----,AI,9601,,4202N 09725W, +,US,OFO,Old Fort,Old Fort,OH,--3-----,RQ,9307,,4114N 08309W, +,US,OFR,Oak Forest,Oak Forest,IL,--3-----,RQ,9307,,4136N 08745W, +,US,OFT,Old Fort,Old Fort,NC,--3-----,RQ,9307,,3538N 08211W, +,US,OFY,Oriskany Falls,Oriskany Falls,NY,--3-----,RQ,9307,,4256N 07528W, +,US,OGA,Ogallala,Ogallala,NE,---4----,AI,0001,,4107N 10143W, +,US,OGB,Orangeburg,Orangeburg,SC,--34----,AI,9601,,3330N 08051W, +,US,OGD,Ogden,Ogden,UT,--3-----,AI,9601,,4113N 11158W, +,US,OGE,Orange,Orange,VA,--3-----,RQ,9601,,3815N 07807W, +,US,OGI,Oregon,Oregon,IL,--3-----,RQ,9307,,4201N 08920W, +,US,OGK,Oak Grove,Oak Grove,LA,--3-----,RQ,9307,,3252N 09123W, +,US,OGN,Logan,Logan,OH,--3-----,RL,0001,,3932N 08225W, +,US,OGQ,Onondaga,Onondaga,NY,--3-----,RQ,9307,,4259N 07613W, +,US,OGR,Oak Grove,Oak Grove,OR,--3-----,RQ,9307,,4525N 12238W, +,US,OGS,Ogdensburg,Ogdensburg,NY,1--4----,AI,0001,,4442N 07529W, +,US,OGV,Orangeville,Orangeville,UT,--3-----,RQ,9307,,3914N 11103W, +,US,OHI,Old Hickory,Old Hickory,AR,--3-----,RQ,9008,,3520N 09248W, +,US,OHO,Oak Harbor,Oak Harbor,OH,--3-----,RQ,9307,,4131N 08309W, +,US,OHP,Okahumpka,Okahumpka,FL,--3-----,RQ,9307,,2845N 08154W, +,US,OHQ,Oglethorpe,Oglethorpe,GA,--3-----,RQ,9307,,3218N 08404W, +,US,OIC,Norwich,Norwich,NY,---4----,AI,9601,,4232N 07531W, +,US,OIJ,Louin,Louin,MS,--3-----,RQ,0901,,3204N 08916W, +,US,OIL,Oil City,Oil City,PA,--34----,RQ,9008,,4126N 07942W, +,US,OIN,O'brien,O'brien,FL,--3-----,RQ,9307,,3002N 08256W, +,US,OIV,Olivia,Olivia,MN,--3-----,RQ,9307,,4447N 09459W, +,US,OKA,Okolona,Okolona,MS,--3-----,RQ,9307,,3400N 08845W, +,US,OKC,Oklahoma City,Oklahoma City,OK,--34----,AI,0001,,3528N 09731W, +,US,OKD,Oakland,Oakland,ME,--3-----,RQ,9307,,4432N 06943W, +,US,OKE,Oakdale,Oakdale,MN,--3-----,RQ,9307,,4459N 09258W, +,US,OKF,Oakfield,Oakfield,WI,--3-----,RQ,9307,,4341N 08833W, +,US,OKH,Oakhurst,Oakhurst,NJ,--3-----,RQ,9307,,4016N 07402W, +,US,OKI,Oak Island,Oak Island,NJ,--3-----,RQ,9307,,3935N 07426W, +,US,OKK,Kokomo,Kokomo,IN,---4----,AI,9601,,4029N 08608W, +,US,OKM,Okmulgee,Okmulgee,OK,---4----,AI,0001,,3537N 09558W, +,US,OKN,Okeene,Okeene,OK,--3-----,RQ,9307,,3607N 09819W, +,US,OKP,Oak,Oak,PA,--3-----,RQ,9307,,4014N 09754W, +,US,OKQ,Oakdale,Oakdale,CA,--3-----,RQ,9307,,3745N 12048W, +,US,OKR,Oak Ridge,Oak Ridge,TN,--3-----,RQ,9307,,3601N 08416W, +,US,OKS,Oshkosh,Oshkosh,NE,---4----,AI,0001,,4124N 10221W, +,US,OKW,Oakwood,Oakwood,GA,--3-----,RQ,9008,,3414N 08353W, +,US,OKY,Oriskany,Oriskany,NY,--3-----,RQ,9307,,4309N 07520W, +,US,OLA,Ocilla,Ocilla,GA,--3-----,RQ,9307,,3136N 08315W, +,US,OLD,Old Town,Old Town,ME,--34----,AI,9601,,4456N 06839W, +,US,OLE,Olean,Olean,NY,---4----,AI,9601,,4205N 07826W, +,US,OLF,Wolf Point,Wolf Point,MT,---4----,AI,0001,,4805N 10538W, +,US,OLH,Old Harbor,Old Harbor,AK,---4----,AI,0001,,5712N 15318W, +,US,OLI,Oakland,Oakland,IA,--3-----,RQ,9307,,4119N 09524W, +,US,OLM,Olympia,Olympia,WA,1--4----,AI,9601,,4703N 12254W, +,US,OLQ,Tolleson,Tolleson,AZ,--3-----,RL,9909,,3327N 11216W, +,US,OLS,Nogales,Nogales,AZ,1--4----,AI,9601,,3120N 11056W, +,US,OLT,Okeelanta,Okeelanta,FL,--3-----,RQ,9307,,2637N 08043W, +,US,OLU,Columbus,Columbus,NE,--34----,AI,9601,,4126N 09721W, +,US,OLV,Olive Branch,Olive Branch,MS,---4----,AI,9601,,3458N 08950W, +,US,OLW,Oelwein,Oelwein,IA,--3-----,RQ,9307,,4241N 09155W, +,US,OLY,Olney,Olney,IL,---4----,AI,9601,,3844N 08805W, +,US,OMA,Omaha,Omaha,NE,1--4----,AI,0207,,4116N 09556W, +,US,OME,Nome,Nome,AK,1--4----,AI,9601,,6430N 16524W, +,US,OMK,Omak,Omak,WA,---4----,AI,9601,,4825N 11932W, +,US,OND,Oneida,Oneida,NY,--3-----,RQ,9307,,4306N 07539W, +,US,ONE,Oneco,Oneco,FL,--3-----,RQ,9307,,2727N 08233W, +,US,ONH,Oneonta,Oneonta,NY,---4----,AI,9601,,4227N 07504W, +,US,ONI,Oneida,Oneida,WI,--3-----,RQ,9307,,4429N 08815W, +,US,ONK,Onekama,Onekama,MI,--3-----,RQ,9307,,4423N 08613W, +,US,ONL,O'Neill,O'Neill,NE,---4----,AI,0001,,4227N 09839W, +,US,ONM,Socorro,Socorro,NM,--34----,AI,9601,,3403N 10654W, +,US,ONO,Ontario,Ontario,OR,---4----,AI,9601,,4402N 11658W, +!,US,ONP,Ono,Ono,PA,--3-----,RQ,9307,,4024N 07632W, +,US,ONS,Onset,Onset,MA,--3-----,RQ,9307,,4144N 07039W, +,US,ONT,Ontario,Ontario,CA,---4----,AI,9601,,3404N 11739W, +,US,ONW,Oceanway,Oceanway,FL,--3-----,RQ,9307,,3028N 08138W, +,US,ONY,Olney,Olney,TX,---4----,AI,9601,,3322N 09845W, +,US,OOA,Oskaloosa,Oskaloosa,IA,---4----,AI,9601,,4118N 09239W, +,US,OOK,Toksook Bay,Toksook Bay,AK,---4----,AI,0001,,6030N 16507W, +,US,OOW,Otis Orchards,Otis Orchards,WA,--3-----,RQ,9307,,4742N 11707W, +,US,OPA,Opp,Opp,AL,--3-----,RQ,9307,,3117N 08615W, +,US,OPI,Opelika,Opelika,AL,--3-----,RQ,9008,,3239N 08523W, +,US,OPK,Opa Locka,Opa Locka,FL,--3-----,RQ,9307,,2554N 08015W, +,US,OPL,Opelousas,Opelousas,LA,---4----,AI,9601,,3032N 09205W, +,US,OPY,Orchard Park,Orchard Park,NY,--3-----,RQ,9307,,4246N 07845W, +,US,OQH,Oak Hill,Oak Hill,FL,--3-----,RQ,9307,,2852N 08051W, +,US,OQN,Logan,Logan,WV,--3-----,RQ,0901,,3751N 08160W, +,US,OQR,Oakridge,Oakridge,OR,--3-----,RQ,9307,,4345N 12228W, +,US,OQY,Oakley,Oakley,CA,--3-----,RQ,9307,,3760N 12143W, +,US,ORB,Orange,Orange,CT,--3-----,RQ,9307,,4117N 07302W, +,US,ORC,Oregon City,Oregon City,OR,--3-----,RQ,9307,,4521N 12236W, +,US,ORE,Oak Ridge,Oak Ridge,NJ,--3-----,RQ,9307,,4103N 07429W, +,US,ORF,Norfolk,Norfolk,VA,1234----,AI,9601,,3651N 07617W, +,US,ORG,Orange,Orange,TX,--3-----,RN,0105,,3006N 09344W, +,US,ORH,Worcester,Worcester,MA,1--4----,AI,9601,,4216N 07148W, +,US,ORI,Port Lions,Port Lions,AK,---4----,AI,1101,,5752N 15252W, +,US,ORJ,Orleans,Orleans,VT,--3-----,RQ,9307,,4449N 07212W, +,US,ORP,Orange Park,Orange Park,FL,--3-----,RQ,9307,,3010N 08142W, +,US,ORQ,Norwalk,Norwalk,CT,--34----,AI,9601,,4107N 07324W, +,US,ORR,Orrville,Orrville,OH,--3-----,RQ,9307,,4051N 08146W, +,US,ORT,Northway,Northway,AK,---4----,AI,0001,,6257N 14151W, +,US,ORU,Orestes,Orestes,IN,--3-----,RQ,9307,,4016N 08544W, +,US,ORV,Noorvik,Noorvik,AK,---4----,AI,0001,,6650N 16102W, +,US,ORW,Orwell,Orwell,VT,--3-----,RQ,9307,,4348N 07318W, +,US,ORY,Ordbend,Ordbend,CA,--3-----,RQ,9307,,3938N 12200W, +,US,ORZ,Orleans,Orleans,IN,--3-----,RQ,9307,,3840N 08627W, +,US,OSA,Osceola,Osceola,AR,--3-----,RQ,9307,,3542N 08958W, +,US,OSB,Osage Beach,Osage Beach,MO,---4----,AI,0001,,3808N 09240W, +,US,OSC,Oscoda,Oscoda,MI,---4----,AI,9601,,4428N 08333W, +,US,OSD,Odessa,Odessa,TX,--3-----,RQ,9307,,3151N 10222W, +,US,OSG,Oswego,Oswego,IL,--3-----,RQ,0101,,4141N 08821W, +,US,OSH,Oshkosh,Oshkosh,WI,--34----,RQ,9008,,4401N 08832W, +,US,OSL,Oslo,Oslo,MN,--3-----,RQ,9307,,4812N 09708W, +,US,OSS,Ossining,Ossining,NY,--3-----,RQ,9307,,4110N 07352W, +,US,OST,Ostrica,Ostrica,LA,--3-----,RQ,9506,,2922N 08932W, +,US,OSX,Kosciusko,Kosciusko,MS,---4----,AI,9601,,3303N 08935W, +,US,OSY,Old Saybrook,Old Saybrook,CT,--3-----,RQ,9307,,4118N 07223W, +,US,OTG,Worthington,Worthington,MN,---4----,AI,9601,,4337N 09536W, +,US,OTH,North Bend,North Bend,OR,1-34----,AI,0001,,4324N 12413W, +,US,OTM,Ottumwa,Ottumwa,IA,1-34----,AI,0001,,4101N 09225W, +,US,OTN,Oaktown,Oaktown,IN,---4----,AI,0001,,3852N 08726W, +,US,OTO,Otto,Otto,NM,---4----,AI,0001,,4221N 07850W, +,US,OTP,Orrtanna,Orrtanna,PA,--3-----,RQ,9307,,3951N 07721W, +,US,OTQ,Ottawa,Ottawa,OH,--3-----,RQ,9307,,4101N 08403W, +,US,OTR,Ottawa,Ottawa,KS,--3-----,RQ,9307,,3837N 09516W, +,US,OTS,Anacortes,Anacortes,WA,--34----,AI,9601,,4831N 12237W, +,US,OTW,Ottawa,Ottawa,IL,--3-----,RQ,9307,,4121N 08851W, +,US,OTZ,Kotzebue,Kotzebue,AK,---4----,AI,0001,,6654N 16236W, +,US,OUN,Norman,Norman,OK,---4----,AI,9601,,3513N 09726W, +,US,OUR,Ouray,Ouray,CO,--3-----,RQ,9307,,3801N 10740W, +,US,OV5,Oakland,Oakland,PA,-----6--,RQ,1007,,4026N 07957W, +,US,OVE,Oroville,Oroville,CA,---4----,AI,0001,,3931N 12133W, +,US,OVL,Overland Park,Overland Park,KS,--3-----,RQ,9008,,3858N 09441W, +,US,OVR,Overpeck,Overpeck,OH,--3-----,RQ,9307,,3927N 08431W, +,US,OVW,Oroville,Oroville,WA,--3-----,RQ,9307,,4856N 11926W, +,US,OVZ,Otwell,Otwell,AR,--3-----,RQ,9307,,3544N 09050W, +,US,OWA,Owatonna,Owatonna,MN,---4----,AI,9601,,4405N 09314W, +,US,OWB,Owensboro,Owensboro,KY,1-34----,AI,0207,,3746N 08707W, +,US,OWD,Norwood,Norwood,MA,---4----,AI,9601,,4212N 07112W, +,US,OWI,Owings Mills,Owings Mills,MD,--3-----,RQ,9307,,3925N 07648W, +,US,OWK,Norridgewock,Norridgewock,ME,---4----,AI,0001,,4443N 06947W, +,US,OWO,Owosso,Owosso,MI,--3-----,RQ,9307,,4260N 08414W, +,US,OWP,Orwigsburg,Orwigsburg,PA,--3-----,RQ,9307,,4039N 07606W, +,US,OWV,Owensville,Owensville,MO,--3-----,RQ,9307,,3821N 09130W, +,US,OXA,Oxford,Oxford,IA,--3-----,RQ,9307,,4143N 09147W, +,US,OXB,Oxford,Oxford,MA,--3-----,RQ,9307,,4207N 07152W, +,US,OXC,Oxford,Oxford,CT,---4----,AI,9601,,4126N 07307W, +,US,OXD,Oxford,Oxford,OH,---4----,AI,9601,,3931N 08445W, +,US,OXF,Oxford,Oxford,NC,--3-----,RQ,9307,,3619N 07835W, +,US,OXG,Oxford,Oxford,GA,--3-----,RQ,9307,,3337N 08352W, +,US,OXO,Oxford,Oxford,AL,--3-----,RQ,9307,,3337N 08550W, +,US,OXP,Newton,Newton,NC,--3-----,RQ,9008,,3540N 08113W, +,US,OXR,Ventura-Oxnard Apt,Ventura-Oxnard Apt,CA,1-34----,AI,9506,,3412N 11912W, +,US,OXX,Oasis,Oasis,CA,--3-----,RQ,9307,,3328N 11606W, +,US,OYB,Oyster Bay,Oyster Bay,NY,--3-----,RQ,9008,,4046N 07330W, +,US,OYI,Oneida,Oneida,TN,--3-----,RQ,9307,,3630N 08431W, +,US,OYO,Moro,Moro,AR,--3-----,RQ,0901,,3448N 09059W, +,US,OYS,Yosemite Ntl Park,Yosemite Ntl Park,CA,---4----,AI,0001,,3745N 11932W, +,US,OZA,Ozona,Ozona,TX,---4----,AI,0001,,3043N 10112W, +,US,OZI,Old Monroe,Old Monroe,MO,--3-----,RQ,9307,,3856N 09045W, +,US,OZK,Ozark,Ozark,AR,--3-----,RQ,9307,,3529N 09350W, +,US,OZR,Ozark,Ozark,AL,---4----,AI,9601,,3128N 08538W, +,US,OZZ,Osseo,Osseo,WI,--3-----,RQ,9307,,4435N 09113W, +,US,PAB,Palm Beach,Palm Beach,FL,--3-----,RN,0105,,2642N 08002W, +,US,PAD,Paulding,Paulding,OH,--3-----,RQ,9307,,4108N 08435W, +,US,PAE,Everett,Everett,WA,1-34----,AI,1601,,4759N 12213W, +,US,PAF,Plainfield,Plainfield,IN,--3-----,RQ,9307,,3942N 08624W, +,US,PAG,Pisgah,Pisgah,AL,--3-----,RQ,9307,,3441N 08551W, +,US,PAI,Paintsville,Paintsville,KY,--3-----,RQ,0101,,3749N 08248W, +,US,PAK,Hanapepe,Hanapepe,HI,---4----,AI,0001,,2155N 15935W, +,US,PAN,Patterson,Patterson,NY,--3-----,RQ,9307,,4131N 07336W, +,US,PAO,Palo Alto,Palo Alto,CA,---4----,AI,9601,,3727N 12210W, +,US,PAQ,Palmer,Palmer,AK,---4----,AI,9601,,6136N 14907W, +,US,PAR,Parlier,Parlier,CA,--3-----,RQ,9307,,3637N 11932W, +,US,PAU,Paulsboro,Paulsboro,NJ,--3-----,RN,0105,,3950N 07514W, +,US,PAV,Pearl River,Pearl River,NY,--3-----,RQ,9501,,4104N 07401W, +,US,PAW,Pawtucket,Pawtucket,RI,--3-----,RQ,9307,,4153N 07123W, +,US,PAX,Paxson,Paxson,AK,--3-----,RQ,9307,,6301N 14545W, +,US,PAY,Perth Amboy,Perth Amboy,NJ,1-3-----,RN,0105,,4031N 07416W, +,US,PAZ,Paul,Paul,ID,--3-----,RQ,9307,,4236N 11347W, +,US,PBC,Port of Palm Beach,Port of Palm Beach,FL,--3-----,RL,1101,,2646N 08003W, +,US,PBD,Pembroke,Pembroke,FL,--3-----,RQ,9307,,2747N 08148W, +,US,PBF,Pine Bluff,Pine Bluff,AR,--34----,RQ,9008,,3413N 09201W, +,US,PBG,Pittsburg,Pittsburg,CA,--3-----,RN,0105,,3801N 12153W, +,US,PBH,Parma,Parma,OH,--3-----,RQ,9307,,4123N 08144W, +,US,PBI,West Palm Beach,West Palm Beach,FL,1--4----,AI,9401,,2643N 08003W, +,US,PBJ,Palmyra,Palmyra,NJ,--3-----,RQ,9307,,4000N 07502W, +,US,PBQ,Pittsboro,Pittsboro,IN,--3-----,RL,0101,,3952N 08628W, +,US,PBR,Pitsburg,Pitsburg,OH,--3-----,RN,0105,,3959N 08429W, +,US,PBT,Pabst,Pabst,GA,--3-----,RQ,9307,,3226N 08338W, +,US,PBU,Petersburg,Petersburg,PA,--3-----,RQ,9307,,4034N 07803W, +,US,PBV,Preston,Preston,MD,--3-----,RQ,9307,,3843N 07555W, +,US,PBW,Port Bienville,Port Bienville,MS,--3-----,RQ,1101,,3014N 08934W, +,US,PBY,Palm Bay,Palm Bay,FL,--3-----,RQ,9008,,2760N 08038W, +,US,PCA,Portage Creek,Portage Creek,AK,---4----,AI,0001,,5854N 15741W, +,US,PCD,Prairie du Chien,Prairie du Chien,WI,---4----,AI,9601,,4303N 09108W, +,US,PCE,Painter Creek,Painter Creek,AK,---4----,AI,0001,,4002N 08428W, +,US,PCG,Peach Glen,Peach Glen,PA,--3-----,RQ,9307,,4001N 07714W, +,US,PCH,Port Charlotte,Port Charlotte,FL,--3-----,RL,1101,,2659N 08206W, +,US,PCI,Plant City,Plant City,FL,--3-----,RQ,9307,,2801N 08207W, +,US,PCJ,Princeton,Princeton,IN,--3-----,RQ,9307,,3821N 08734W, +,US,PCM,Pass Christian,Pass Christian,MS,--3-----,RQ,9307,,3019N 08915W, +,US,PCN,Port Clinton,Port Clinton,OH,--3-----,RQ,1101,,4131N 08256W, +,US,PCQ,Patterson,Patterson,CA,--3-----,RQ,9307,,3728N 12108W, +,US,PCR,Point Comfort,Point Comfort,TX,--3-----,RN,0105,,2841N 09634W, +,US,PCT,Princeton,Princeton,NJ,---4----,AI,9601,,4021N 07440W, +,US,PCU,Picayune,Picayune,MS,---4----,AI,9601,,3032N 08941W, +,US,PCX,Port Costa,Port Costa,CA,--3-----,RQ,1101,,3803N 12211W, +,US,PCY,Paden City,Paden City,WV,--3-----,RQ,9307,,3936N 08056W, +,US,PCZ,Pace,Pace,FL,--3-----,RQ,9008,,3036N 08710W, +,US,PDA,Peace Dale,Peace Dale,RI,--3-----,RQ,9307,,4127N 07130W, +,US,PDB,Pedro Bay,Pedro Bay,AK,---4----,AI,0001,,5947N 15406W, +,US,PDE,Palisade,Palisade,NJ,--3-----,RQ,9307,,4643N 09329W, +,US,PDL,Port Lions,Port Lions,AL,--3-----,RQ,1101,,5752N 15252W, +,US,PDN,Pendleton,Pendleton,IN,--3-----,RQ,0002,,4000N 08545W, +,US,PDS,Powder Springs,Powder Springs,GA,--3-----,RQ,9307,,3352N 08441W, +,US,PDT,Pendleton,Pendleton,OR,---4----,AI,0001,,4540N 11847W, +,US,PDW,Port Edwards,Port Edwards,WI,--3-----,RQ,1101,,4421N 08952W, +,US,PDX,Portland,Portland,OR,1--4----,AI,9601,,4531N 12240W, +,US,PDY,Pittsford,Pittsford,NY,--3-----,RQ,9307,,4305N 07731W, +,US,PEA,Pearl Harbor,Pearl Harbor,HI,1-3-----,RN,0105,,2121N 15757W, +,US,PED,Peabody,Peabody,MA,--3-----,RQ,9307,,4232N 07056W, +,US,PEE,Peterman,Peterman,AL,--3-----,RQ,9307,,3135N 08716W, +,US,PEH,Pelham,Pelham,GA,--3-----,RQ,9307,,3108N 08409W, +,US,PEI,Peoria,Peoria,AZ,--3-----,RQ,9307,,3335N 11214W, +,US,PEJ,Pearson,Pearson,GA,--3-----,RQ,9307,,3118N 08251W, +,US,PEL,Pella,Pella,IA,--3-----,RQ,9307,,4124N 09255W, +,US,PEM,Pemberville,Pemberville,OH,--3-----,RQ,9307,,4125N 08328W, +,US,PEN,Penndel,Penndel,PA,--3-----,RQ,9307,,4009N 07455W, +,US,PEO,Petrolia,Petrolia,PA,--3-----,RQ,9307,,4101N 07943W, +,US,PEP,Pepperell,Pepperell,MA,--3-----,RQ,9307,,4240N 07135W, +,US,PER,Perris,Perris,CA,--3-----,RQ,9307,,3347N 11714W, +,US,PES,Pearl,Pearl,MS,--3-----,RQ,9307,,3216N 09008W, +,US,PET,Petoskey,Petoskey,MI,--3-----,RQ,9307,,4522N 08457W, +,US,PEV,Pipersville,Pipersville,PA,--3-----,RQ,9307,,4026N 07508W, +,US,PEW,Pewaukee,Pewaukee,WI,--3-----,RQ,9307,,4305N 08813W, +,US,PEX,Pelham Manor,Pelham Manor,NY,--3-----,RQ,9307,,4054N 07348W, +,US,PEZ,Pearl City,Pearl City,IL,--3-----,RQ,9307,,4216N 08950W, +,US,PFC,Pacific City,Pacific City,OR,---4----,AI,0001,,4512N 12358W, +,US,PFE,Plainfield,Plainfield,CT,--3-----,RQ,9307,,4141N 07155W, +,US,PFG,Providence Forge,Providence Forge,VA,--3-----,RQ,9307,,3727N 07703W, +,US,PFH,Pleasant Hill,Pleasant Hill,CA,--3-----,RQ,9307,,3757N 12204W, +,US,PFI,Post Falls,Post Falls,ID,--3-----,RQ,9307,,4743N 11657W, +,US,PFJ,Pennsville,Pennsville,NJ,--3-----,RQ,9307,,3939N 07531W, +,US,PFL,Poinciana,Poinciana,FL,--3-----,RQ,9307,,2810N 08130W, +,US,PFN,Panama City,Panama City,FL,1--4----,AI,0001,,3010N 08540W, +,US,PFO,Park Forest,Park Forest,IL,--3-----,RQ,9307,,4129N 08741W, +,US,PFP,Palmetto,Palmetto,GA,--3-----,RQ,9307,,3331N 08440W, +,US,PFQ,Pacifica,Pacifica,CA,--3-----,RQ,9307,,3736N 12230W, +,US,PFR,Pomfret,Pomfret,CT,--3-----,RQ,9307,,4154N 07158W, +,US,PFX,Pharr,Pharr,TX,--3-----,RQ,9307,,2612N 09811W, +,US,PGA,Page,Page,AZ,---4----,AI,0001,,3655N 11127W, +,US,PGB,Port Gibson,Port Gibson,MS,--3-----,RQ,1101,,3158N 09059W, +,US,PGC,Petersburg,Petersburg,WV,---4----,AI,0001,,3860N 07907W, +,US,PGD,Punta Gorda,Punta Gorda,FL,---4----,AI,9601,,2656N 08203W, +,US,PGF,Pisgah Forest,Pisgah Forest,NC,--3-----,RQ,9307,,3516N 08242W, +,US,PGG,Pendergrass,Pendergrass,GA,--3-----,RQ,9307,,3410N 08341W, +,US,PGL,Pascagoula,Pascagoula,MS,1--4----,AI,0001,,3022N 08834W, +,US,PGM,Port Graham,Port Graham,AK,---4----,AI,1101,,5920N 15151W, +,US,PGO,Pagosa Springs,Pagosa Springs,CO,---4----,AI,0001,,3716N 10701W, +,US,PGR,Paragould,Paragould,AR,--34----,AI,2007,,3604N 09030W, +,US,PGS,Peach Springs,Peach Springs,AZ,---4----,AI,0001,,3532N 11326W, +,US,PGT,Pennington,Pennington,AR,--3-----,RQ,9307,,3535N 09104W, +,US,PGV,Greenville,Greenville,NC,--34----,RQ,9008,,3537N 07722W, +,US,PGW,Parkwood,Parkwood,PA,--3-----,RQ,9307,,4037N 07918W, +,US,PHA,Phenix City,Phenix City,AL,--3-----,RQ,9008,,3228N 08500W, +,US,PHD,New Philadelphia,New Philadelphia,OH,---4----,AI,9601,,4029N 08127W, +,US,PHE,Pelahatchie,Pelahatchie,MS,--3-----,RQ,9307,,3219N 08948W, +,US,PHF,Williamsburg-Newport News-Hampton Apt,Williamsburg-Newport News-Hampton Apt,VA,---4----,AI,0201,,3708N 07630W,"cf US HNV, US WLG, US NNS" +,US,PHG,Pittsburg,Pittsburg,TX,--3-----,RQ,9307,,3260N 09458W, +,US,PHI,Phillipsburg,Phillipsburg,NJ,--3-----,RQ,9307,,4041N 07512W, +,US,PHK,Pahokee,Pahokee,FL,---4----,AI,9601,,2649N 08040W, +,US,PHL,Philadelphia,Philadelphia,PA,1--45---,AI,0001,,3957N 07510W, +,US,PHM,Prospect Harbor,Prospect Harbor,ME,--3-----,RQ,9008,,4425N 06802W, +,US,PHO,Point Hope,Point Hope,AK,---4----,AI,0001,,6821N 16644W, +,US,PHP,Philip,Philip,SD,---4----,AI,0001,,4402N 10140W, +,US,PHQ,Panorama City,Panorama City,CA,--3-----,RQ,9307,,3413N 11827W, +,US,PHS,Pinehurst,Pinehurst,MA,--3-----,RQ,9307,,4145N 07043W, +,US,PHT,Paris,Paris,TN,---4----,AI,9601,,3618N 08820W, +,US,PHV,Port Hudson,Port Hudson,LA,--3-----,RQ,1101,,3041N 09116W, +,US,PHW,Pelham,Pelham,NY,--3-----,RQ,9307,,4055N 07348W, +,US,PHX,Phoenix,Phoenix,AZ,--34----,AI,0001,,3327N 11204W, +,US,PHZ,Pinehurst,Pinehurst,NC,--3-----,RQ,9307,,3512N 07928W, +,US,PIA,Peoria,Peoria,IL,---4----,AI,0001,,4042N 08935W, +!,US,PIB,Pontiac,Pontiac,SC,--3-----,RQ,9307,,3408N 08051W, +,US,PIC,Picacho,Picacho,AZ,--3-----,RL,9909,,3243N 11130W, +,US,PID,Pine Hill,Pine Hill,AL,--3-----,RQ,9307,,3159N 08735W, +,US,PIF,Pierson,Pierson,FL,--3-----,RQ,9307,,2914N 08128W, +,US,PIG,Pigeon,Pigeon,MI,--3-----,RQ,9008,,4350N 08316W, +,US,PIH,Pocatello,Pocatello,ID,--34----,AI,9601,,4252N 11227W, +,US,PIJ,Piedmont,Piedmont,SC,--3-----,RQ,9307,,3443N 08227W, +,US,PIK,Pikeville,Pikeville,TN,--3-----,RQ,9307,,3536N 08511W, +,US,PIL,Piscataway,Piscataway,NJ,--3-----,RQ,9008,,4033N 07428W, +,US,PIM,Pine Mountain,Pine Mountain,GA,---4----,AI,0001,,3252N 08451W, +,US,PIP,Pilot Point,Pilot Point,AK,---4----,AI,0001,,5736N 15743W, +,US,PIR,Pierre,Pierre,SD,--34----,AI,9601,,4422N 10021W, +,US,PIS,Port Isabel,Port Isabel,TX,1-3-----,RL,0104,,2604N 09713W,cf US BRO +,US,PIT,Pittsburgh,Pittsburgh,PA,1--4----,AI,0207,,4027N 07959W, +,US,PIV,Pineville,Pineville,AL,--3-----,RQ,9307,,3145N 08711W, +,US,PIX,Piedmont,Piedmont,KS,--3-----,RQ,9307,,3737N 09622W, +,US,PIZ,Point Lay,Point Lay,AK,---4----,AI,0001,,6945N 16300W, +,US,PJD,Portland,Portland,IN,--3-----,RQ,9307,,4026N 08459W, +,US,PJH,Point Judith,Point Judith,RI,--3-----,RQ,9307,,4122N 07129W, +,US,PJK,Pierce,Pierce,ID,--3-----,RQ,9307,,4629N 11548W, +,US,PJR,Pine River,Pine River,MN,--3-----,RQ,9307,,4643N 09424W, +,US,PJS,Port San Juan,Port San Juan,AK,---4----,AI,1101,,6003N 14804W, +,US,PKA,Napaskiak,Napaskiak,AK,---4----,AI,0001,,6042N 16146W, +,US,PKC,Park City,Park City,IL,--3-----,RQ,9307,,4221N 08753W, +,US,PKD,Park Rapids,Park Rapids,MN,---4----,AI,9601,,4655N 09504W, +,US,PKE,Prior Lake,Prior Lake,MN,--3-----,RQ,9307,,4443N 09325W, +,US,PKF,Park Falls,Park Falls,WI,---4----,AI,0001,,4556N 09027W, +,US,PKI,Pekin,Pekin,IL,--3-----,RQ,9307,,4034N 08939W, +,US,PKJ,Park Junction,Park Junction,PA,--3-----,RQ,9307,,3959N 07511W, +,US,PKK,Pikeville,Pikeville,KY,--3-----,RQ,9008,,3729N 08231W, +,US,PKL,Pulaski,Pulaski,TN,--3-----,RQ,9008,,3512N 08702W, +,US,PKM,Pocomoke City,Pocomoke City,MD,--3-----,RQ,9307,,3805N 07534W, +,US,PKN,Pedricktown,Pedricktown,NJ,--3-----,RQ,9307,,3946N 07525W, +,US,PKO,Pandora,Pandora,OH,--3-----,RQ,9307,,4057N 08356W, +,US,PKP,Parkesburg,Parkesburg,PA,--3-----,RQ,9307,,3958N 07555W, +,US,PKW,Parker,Parker,WA,--3-----,RQ,9307,,4630N 12028W, +,US,PKX,Pekin,Pekin,IN,--3-----,RL,0002,,3830N 08601W, +,US,PKY,Parksley,Parksley,VA,--3-----,RQ,9307,,3747N 07539W, +,US,PKZ,Parkrose,Parkrose,OR,--3-----,RQ,9307,,4533N 12233W, +,US,PLA,Palmerton,Palmerton,PA,--3-----,RQ,9307,,4048N 07537W, +,US,PLB,Plattsburgh,Plattsburgh,NY,---4----,AI,9601,,4442N 07327W, +,US,PLC,Pearl City (Oahu),Pearl City (Oahu),HI,--3-----,RQ,9307,,2124N 15758W, +,US,PLD,Poland Spring,Poland Spring,ME,--3-----,RQ,9307,,4405N 07025W, +,US,PLE,Palatine,Palatine,IL,--3-----,RQ,9307,,4207N 08802W, +,US,PLF,Plainfield,Plainfield,NJ,--3-----,RQ,9008,,4038N 07424W, +,US,PLH,Plymouth,Plymouth,OH,--3-----,RQ,9307,,4060N 08240W, +,US,PLK,Branson,Branson,MO,---4----,AI,0001,,3639N 09313W, +,US,PLM,Palm Coast,Palm Coast,FL,--3-----,RQ,9307,,2933N 08113W, +,US,PLN,Pineland,Pineland,FL,--3-----,RQ,0002,,2640N 08209W, +,US,PLO,Platteville,Platteville,CO,--3-----,RQ,9307,,4013N 10449W, +,US,PLQ,Plaquemine,Plaquemine,LA,--3-----,RQ,9307,,3017N 09114W, +,US,PLR,Pell City,Pell City,AL,---4----,AI,0001,,3335N 08617W, +,US,PLS,Plains,Plains,GA,--3-----,RQ,9307,,3202N 08424W, +,US,PLT,Palatka,Palatka,FL,--3-----,RQ,9307,,2939N 08138W, +,US,PLW,Plover,Plover,WI,--3-----,RQ,9307,,4425N 08933W, +,US,PLY,Plymouth,Plymouth,IN,---4----,AI,9601,,4121N 08619W, +,US,PLZ,Plano,Plano,TX,--3-----,RQ,9307,,3301N 09642W, +,US,PMA,Pomona,Pomona,NY,--3-----,RQ,9307,,4111N 07403W, +,US,PMC,Pineville,Pineville,WV,--3-----,RQ,9307,,3735N 08132W, +,US,PMF,Plymouth,Plymouth,FL,--3-----,RQ,9307,,2842N 08133W, +,US,PMH,Portsmouth,Portsmouth,OH,---4----,AI,9601,,3844N 08260W, +,US,PMJ,Pompton Plains,Pompton Plains,NJ,--3-----,RQ,9307,,4058N 07418W, +,US,PMK,Potomac,Potomac,MD,--3-----,RL,0101,,3901N 07713W, +,US,PML,Port Moller,Port Moller,AK,---4----,AI,1101,,5559N 16035W, +,US,PMM,Plymouth Meeting,Plymouth Meeting,PA,--3-----,RQ,9307,,4006N 07516W, +,US,PMQ,Paramount,Paramount,CA,--3-----,RQ,9307,,3354N 11810W, +,US,PMT,Palmetto,Palmetto,FL,--3-----,RQ,9307,,2731N 08234W, +,US,PMU,Paimiut,Paimiut,AK,---4----,AI,0001,,6158N 16005W, +,US,PMW,Plymouth,Plymouth,WI,--3-----,RQ,9307,,4345N 08759W, +,US,PMX,Palmer,Palmer,MA,---4----,AI,9601,,4209N 07220W, +,US,PMY,Plymouth,Plymouth,PA,--3-----,RQ,9307,,4114N 07557W, +,US,PNC,Ponca City,Ponca City,OK,--34----,AI,9601,,3642N 09705W, +,US,PND,Pearland,Pearland,TX,--3-----,RQ,9307,,2934N 09517W, +,US,PNE,Philadelphia North East Apt,Philadelphia North East Apt,PA,---4----,AI,8103,,4005N 07501W, +,US,PNH,Pine Hall,Pine Hall,NC,--3-----,RQ,9307,,3619N 08003W, +,US,PNI,Pine Island,Pine Island,NY,--3-----,RQ,9506,,4130N 07336W, +,US,PNL,Pinedale,Pinedale,CA,--3-----,RQ,9008,,3651N 11947W, +,US,PNN,Princeton,Princeton,ME,---4----,AI,0001,,4513N 06735W, +,US,PNO,Plano,Plano,IL,--3-----,RL,0001,,4140N 08832W, +,US,PNQ,Patterson,Patterson,NC,--3-----,RQ,9307,,3560N 08134W, +,US,PNR,Penn Run,Penn Run,PA,--3-----,RQ,9307,,4037N 07901W, +,US,PNS,Pensacola,Pensacola,FL,1--4----,AI,0001,,3025N 08713W, +,US,PNT,Piedmont,Piedmont,WV,--3-----,RQ,0101,,3929N 07903W, +,US,PNU,Panguitch,Panguitch,UT,---4----,AI,0001,,3749N 11226W, +,US,PNV,Pineville,Pineville,NC,--3-----,RQ,9008,,3505N 08053W, +,US,PNW,Plainwell,Plainwell,MI,--3-----,RQ,9307,,4227N 08539W, +,US,POC,La Verne,La Verne,CA,---4----,AI,9601,,3406N 11746W, +,US,POF,Poplar Bluff,Poplar Bluff,MO,--34----,AI,9601,,3645N 09024W, +,US,POG,Pottersburg,Pottersburg,OH,--3-----,RQ,9506,,4016N 08330W, +,US,POH,Pocahontas,Pocahontas,IA,---4----,AI,0001,,4244N 09440W, +,US,POI,Pontiac,Pontiac,IL,--3-----,RQ,9307,,4053N 08838W, +,US,POK,Pontotoc,Pontotoc,MS,--3-----,RQ,9307,,3415N 08860W, +,US,POL,Portland,Portland,MD,--3-----,RQ,9307,,3848N 07638W, +,US,POO,Polo,Polo,IL,--3-----,RQ,9307,,4159N 08935W, +,US,POP,Prospect,Prospect,KY,--3-----,RQ,9307,,3821N 08536W, +,US,POQ,Polk Inlet,Polk Inlet,AK,---4----,AI,0001,,5522N 13231W, +,US,POR,Pocono Manor,Pocono Manor,PA,--3-----,RQ,9307,,4106N 07522W, +,US,POT,Port Tampa,Port Tampa,FL,--3-----,RQ,1101,,2752N 08232W, +,US,POU,Poughkeepsie,Poughkeepsie,NY,---4----,AI,9601,,4142N 07356W, +,US,POV,Poynette,Poynette,WI,--3-----,RQ,9307,,4323N 08924W, +,US,POZ,Pooler,Pooler,GA,--3-----,RQ,9307,,3207N 08115W, +,US,PPA,Pampa,Pampa,TX,---4----,AI,9601,,3532N 10058W, +,US,PPE,Pipestone,Pipestone,MN,--3-----,RQ,9307,,4400N 09619W, +,US,PPF,Parsons,Parsons,KS,---4----,AI,9601,,3720N 09516W, +,US,PPH,Pacific Palisades,Pacific Palisades,CA,--3-----,RQ,9307,,3403N 11832W, +,US,PPI,Philippi,Philippi,WV,--3-----,RQ,9307,,3909N 08002W, +,US,PPR,Port Providence,Port Providence,PA,--3-----,RQ,1101,,4008N 07530W, +,US,PPT,Potsdam,Potsdam,NY,--3-----,RQ,9307,,4440N 07459W, +,US,PPV,Port Protection,Port Protection,AK,---4----,AI,1101,,5620N 13335W, +,US,PPW,Paw Paw,Paw Paw,MI,--3-----,RQ,9307,,4213N 08553W, +,US,PPZ,Point Pleasant,Point Pleasant,WV,--3-----,RQ,9307,,3851N 08208W, +,US,PQA,Piqua,Piqua,OH,--3-----,RQ,9307,,4009N 08415W, +,US,PQC,Pomona,Pomona,CA,--3-----,RQ,9307,,3403N 11745W, +,US,PQD,Portland,Portland,TN,--3-----,RQ,9307,,3635N 08631W, +,US,PQH,Peachtree City,Peachtree City,GA,--3-----,RQ,9008,,3324N 08435W, +,US,PQI,Presque Isle,Presque Isle,ME,--34----,AI,9601,,4641N 06801W, +,US,PQL,Pelican,Pelican,LA,--3-----,RQ,9307,,3153N 09335W, +,US,PQS,Pilot Station,Pilot Station,AK,---4----,AI,0001,,6156N 16253W, +,US,PQU,Pico Rivera,Pico Rivera,CA,--3-----,RQ,9307,,3359N 11806W, +,US,PQV,Pahrump,Pahrump,NV,--3-----,RQ,9307,,3613N 11559W, +,US,PQW,Prescott,Prescott,WA,--3-----,RQ,9307,,4618N 11819W, +,US,PQY,Perry,Perry,OH,--3-----,RQ,9307,,4146N 08108W, +,US,PRA,Prairieville,Prairieville,LA,--3-----,RQ,9307,,3019N 09057W, +,US,PRB,Paso Robles,Paso Robles,CA,---4----,AI,9601,,3538N 12041W, +,US,PRC,Prescott,Prescott,AZ,--34----,AI,9601,,3432N 11228W, +,US,PRD,Port Reading,Port Reading,NJ,--3-----,RQ,1101,,4034N 07416W, +,US,PRF,Port Johnson,Port Johnson,AK,---4----,AI,1101,,4039N 07407W, +,US,PRH,Preston,Preston,WA,--3-----,RQ,9307,,4731N 12156W, +,US,PRI,Perrine,Perrine,FL,--3-----,RQ,9501,,2536N 08021W, +,US,PRK,Parkridge,Parkridge,NJ,--3-----,RQ,9307,,3035N 09108W, +,US,PRM,Paramus,Paramus,NJ,--3-----,RQ,9008,,4057N 07404W, +,US,PRO,Perry,Perry,IA,---4----,AI,0001,,4150N 09406W, +,US,PRP,Paris,Paris,IL,--3-----,RQ,9008,,3937N 08742W, +,US,PRQ,Powell,Powell,WY,--3-----,AI,0201,,4445N 10846W,cf Apt US POY +,US,PRR,Perry,Perry,OK,--3-----,RQ,9307,,3617N 09717W, +,US,PRV,Prattville,Prattville,AL,--3-----,RQ,9307,,3228N 08629W, +,US,PRW,Prentice,Prentice,WI,--34----,AI,2107,,4532N 09022W, +,US,PRX,Paris,Paris,TX,---4----,AI,9601,,3340N 09533W, +,US,PRZ,Prineville,Prineville,OR,---4----,AI,9601,,4418N 12050W, +,US,PSA,Palisades Park,Palisades Park,NJ,--3-----,RQ,9307,,4051N 07360W, +,US,PSC,Pasco,Pasco,WA,---4----,AI,9601,,4614N 11906W, +,US,PSD,Pasadena,Pasadena,CA,--34----,AI,0001,,3409N 11809W, +,US,PSE,Passaic,Passaic,NJ,--3-----,RQ,9008,,4051N 07408W, +,US,PSF,Pittsfield,Pittsfield,MA,---4----,AI,9601,,4227N 07315W, +,US,PSG,Petersburg,Petersburg,AK,---4----,AI,9601,,5649N 13257W, +,US,PSH,Peshtigo,Peshtigo,WI,--3-----,RQ,9307,,4503N 08745W, +,US,PSI,Potosi,Potosi,MO,--3-----,RQ,9307,,3756N 09047W, +,US,PSK,Dublin,Dublin,VA,---4----,AI,9601,,3706N 08041W, +,US,PSM,Portsmouth,Portsmouth,NH,1--4----,AI,9506,,4304N 07045W, +,US,PSN,Palestine,Palestine,TX,--34----,AI,9601,,3146N 09538W, +,US,PSO,Preston,Preston,GA,--3-----,RQ,9307,,3204N 08432W, +,US,PSP,Palm Springs,Palm Springs,CA,---4----,AI,9601,,3346N 11630W, +,US,PST,Peosta,Peosta,IA,--3-----,RQ,9307,,4227N 09051W, +,US,PSV,Pottsville,Pottsville,PA,--3-----,RQ,9008,,4041N 07612W, +,US,PSX,Palacios,Palacios,TX,---4----,AI,0001,,2842N 09613W, +,US,PTA,Port Alsworth,Port Alsworth,AK,---4----,AI,1101,,6012N 15419W, +,US,PTB,Petersburg,Petersburg,VA,--34----,AI,9601,,3714N 07724W, +,US,PTC,Port Alice,Port Alice,AK,---4----,AI,1101,,5550N 13336W, +,US,PTD,Port Alexander,Port Alexander,AK,---4----,AI,1101,,5615N 13439W, +,US,PTE,Portage,Portage,MI,--3-----,RQ,0101,,4212N 08535W, +,US,PTG,Port Allegany,Port Allegany,PA,--3-----,RQ,1101,,4149N 07817W, +,US,PTH,Port Heiden,Port Heiden,AK,---4----,AI,1101,,5657N 15836W, +,US,PTK,Pontiac,Pontiac,MI,---4----,AI,9601,,4238N 08317W, +,US,PTL,Port Armstrong,Port Armstrong,AK,---4----,AI,1101,,5618N 13440W, +,US,PTM,Portsmouth,Portsmouth,VA,1-3-----,RN,0105,,3650N 07618W, +,US,PTO,Pittston,Pittston,PA,--3-----,RQ,9307,,4120N 07547W, +,US,PTQ,Portland,Portland,CT,--3-----,RQ,9307,,4134N 07238W, +,US,PTS,Pittsburg,Pittsburg,KS,---4----,AI,9601,,3725N 09442W, +,US,PTT,Pratt,Pratt,KS,---4----,AI,0001,,3739N 09844W, +,US,PTU,Platinum,Platinum,AK,---4----,AI,0001,,5859N 16143W, +,US,PTV,Porterville,Porterville,CA,---4----,AI,9601,,3604N 11901W, +,US,PTW,Pottstown,Pottstown,PA,---4----,AI,9601,,4015N 07539W, +,US,PTY,Port Washington,Port Washington,NJ,--3-----,RQ,1101,,4050N 07342W, +,US,PTZ,Pittsfield,Pittsfield,PA,--3-----,RQ,9307,,4150N 07923W, +,US,PUA,Pulaski,Pulaski,NY,--3-----,RQ,9008,,4334N 07608W, +,US,PUB,Pueblo,Pueblo,CO,--34----,AI,9601,,3815N 10437W, +,US,PUC,Price,Price,UT,---4----,AI,0001,,3936N 11049W, +,US,PUE,Pauline,Pauline,KS,--3-----,RQ,9307,,3858N 09541W, +,US,PUJ,Parlin,Parlin,NJ,--3-----,RQ,9307,,4028N 07419W, +,US,PUL,Poulsbo,Poulsbo,WA,---4----,AI,0001,,4744N 12238W, +,US,PUM,Petaluma,Petaluma,CA,--3-----,RQ,9307,,3818N 12237W, +,US,PUN,Putnam,Putnam,CT,--3-----,RL,9901,,4155N 07155W, +,US,PUQ,Pacoima,Pacoima,CA,--3-----,RQ,9307,,3416N 11826W, +,US,PUT,Putney,Putney,VT,--3-----,RQ,9307,,4259N 07231W, +,US,PUW,Pullman,Pullman,WA,---4----,AI,9601,,4644N 11710W, +,US,PUY,Puyallup,Puyallup,WA,--3-----,RQ,9307,,4711N 12218W, +,US,PVA,Pine Valley,Pine Valley,CA,--3-----,RQ,9307,,3249N 11632W, +,US,PVC,Provincetown,Provincetown,MA,1--4----,AI,9601,,4203N 07011W, +,US,PVD,Providence,Providence,RI,1--4----,AI,0001,,4149N 07125W, +,US,PVE,Pineville,Pineville,LA,--3-----,RQ,9307,,3119N 09226W, +,US,PVF,Placerville,Placerville,CA,---4----,AI,9601,,3844N 12048W, +,US,PVG,Plainville,Plainville,GA,--3-----,RQ,9307,,3424N 08502W, +,US,PVH,Plymouth,Plymouth,NH,--3-----,RQ,9307,,4345N 07141W, +,US,PVI,Plainville,Plainville,CT,--3-----,RQ,9307,,4140N 07252W, +,US,PVJ,Pauls Valley,Pauls Valley,OK,--3-----,RQ,9307,,3444N 09713W, +,US,PVK,Piedmont,Piedmont,CA,--3-----,RQ,9307,,3749N 12214W, +,US,PVL,Pineville,Pineville,AR,--3-----,RQ,9008,,3610N 09206W, +,US,PVN,Plainview,Plainview,MN,--3-----,RQ,9307,,4410N 09210W, +,US,PVR,Purvis,Purvis,MS,--3-----,RQ,9307,,3109N 08924W, +,US,PVT,Port Trevorton,Port Trevorton,PA,--3-----,RQ,1101,,4041N 07653W, +,US,PVU,Provo,Provo,UT,--34----,AI,9506,,4014N 11140W, +,US,PVV,Proctorville,Proctorville,OH,--3-----,RQ,9307,,3826N 08223W, +,US,PVW,Plainview,Plainview,TX,---4----,AI,9601,,3411N 10142W, +,US,PVX,Plainview,Plainview,NY,--3-----,RQ,9307,,4047N 07328W, +,US,PVZ,Painesville,Painesville,OH,---4----,AI,9601,,4143N 08115W, +,US,PWA,Port Washington,Port Washington,WI,--3-----,RQ,1101,,4323N 08752W, +,US,PWD,Plentywood,Plentywood,MT,---4----,AI,0001,,4846N 10434W, +,US,PWE,Pawnee,Pawnee,IL,--3-----,RQ,9307,,3936N 08935W, +,US,PWF,Port Wakefield,Port Wakefield,AK,--3-----,RQ,1101,,5803N 15303W, +,US,PWI,Port Williams,Port Williams,AK,--3-----,RQ,1101,KPR,4806N 12303W, +,US,PWL,Pawling,Pawling,NY,--3-----,RQ,9501,,4134N 07336W, +,US,PWM,Portland,Portland,ME,1--4----,AI,9601,,4339N 07016W, +,US,PWN,Port Wentworth,Port Wentworth,GA,--3-----,RQ,1101,,3209N 08110W, +,US,PWO,Porter,Porter,IN,--3-----,RQ,9307,,4137N 08704W, +,US,PWP,Pawcatuck,Pawcatuck,CT,--3-----,RQ,9307,,4123N 07151W, +,US,PWQ,Portland,Portland,MI,1-------,RQ,0901,,4255N 08454W, +,US,PWR,Port Walter,Port Walter,AK,---4----,AI,1101,,5624N 13439W, +,US,PWS,Prosser,Prosser,WA,--3-----,RQ,9307,,4612N 11946W, +,US,PWT,Bremerton,Bremerton,WA,1--4----,AI,9601,,4734N 12237W, +,US,PWV,Parsons,Parsons,WV,--3-----,RQ,9307,,3906N 07941W, +,US,PWY,Painted Post,Painted Post,NY,--3-----,RQ,9307,,4210N 07706W, +,US,PXG,Pleasant Grove,Pleasant Grove,UT,--3-----,RQ,9307,,4022N 11144W, +,US,PXL,Polacca,Polacca,AZ,---4----,AI,0001,,3550N 11023W, +,US,PXM,Portales,Portales,NM,--3-----,RQ,9307,,3411N 10320W, +,US,PXO,Port Orchard,Port Orchard,WA,--3-----,RQ,1101,,4732N 12238W, +,US,PXS,Paxinos,Paxinos,PA,--3-----,RQ,9307,,4051N 07635W, +,US,PXV,Phoenixville,Phoenixville,PA,--3-----,RQ,9307,,4008N 07531W, +,US,PXX,Philadelphia,Philadelphia,MS,--3-----,RL,0002,,3246N 08907W, +,US,PXY,Pixley,Pixley,CA,--3-----,RQ,9307,,3559N 11918W, +,US,PXZ,Pikesville,Pikesville,MD,--3-----,RQ,9307,,3922N 07643W, +,US,PYA,Palmyra,Palmyra,IN,--3-----,RQ,9307,,3824N 08607W, +,US,PYC,Prichard,Prichard,AL,--3-----,RQ,9307,,3044N 08805W, +,US,PYE,Payette,Payette,ID,--3-----,RQ,9307,,4405N 11656W, +,US,PYG,Perry,Perry,GA,--3-----,RQ,9307,,3228N 08344W, +,US,PYH,Pioneer,Pioneer,OH,--3-----,RQ,9307,,4141N 08433W, +,US,PYL,Perry Island,Perry Island,AK,---4----,AI,0001,,6042N 14754W, +,US,PYM,Plymouth,Plymouth,MA,--34----,AI,0001,,4158N 07040W, +,US,PYN,Pinson,Pinson,AL,--3-----,RQ,9307,,3341N 08641W, +,US,PYO,Plymouth,Plymouth,MN,--3-----,RQ,9008,,4500N 09328W, +,US,PYP,Piney Point,Piney Point,MD,--3-----,RQ,9506,,3809N 07630W, +,US,PYR,Pryor,Pryor,OK,--3-----,RQ,9008,,3619N 09519W, +,US,PYT,Plymouth,Plymouth,CA,--3-----,RQ,9307,,3829N 12051W, +,US,PYU,Payson,Payson,UT,--3-----,RQ,9307,,4003N 11144W, +,US,PYV,Perrysville,Perrysville,OH,--3-----,RQ,9307,,4039N 08219W, +,US,PYW,Paynesville,Paynesville,MN,--3-----,RQ,9307,,4522N 09441W, +,US,PYX,Perryville,Perryville,MO,--3-----,RQ,9307,,3744N 08952W, +,US,PYZ,Poseyville,Poseyville,IN,--3-----,RQ,9307,,3810N 08747W, +,US,PZE,Pewamo,Pewamo,MI,--3-----,RQ,9307,,4300N 08451W, +,US,PZJ,Pejepscot,Pejepscot,ME,--3-----,RQ,9307,,4358N 07001W, +,US,PZL,Port Saint Lucie,Port Saint Lucie,FL,--3-----,RQ,1101,,2718N 08021W, +,US,PZS,Post,Post,TX,--3-----,RQ,9307,,3311N 10123W, +,US,PZT,Paris,Paris,KY,--3-----,RQ,9307,,3813N 08415W, +,US,PZX,Plaistow,Plaistow,NH,--3-----,RQ,9307,,4250N 07106W, +,US,PZY,Piggott,Piggott,AR,--3-----,RQ,9307,,3623N 09011W, +,US,QBY,Queensbury,Queensbury,NY,--3-----,RQ,0101,,4322N 07340W, +,US,QCE,Copper Mountain,Copper Mountain,CO,---4----,AI,0001,,3930N 10609W, +,US,QCL,Richland,Richland,NY,--3-----,RQ,9008,,4334N 07603W, +,US,QCW,Wilton,Wilton,CT,---4----,AI,9601,,4112N 07326W, +,US,QCY,Quincy,Quincy,FL,--3-----,RQ,9008,,3035N 08435W, +,US,QFW,Fort Washington,Fort Washington,PA,---4----,AI,9601,,4008N 07513W, +,US,QHO,Oak Brook,Oak Brook,IL,--3-----,AI,9506,,4150N 08756W, +,US,QKT,Quakertown,Quakertown,NJ,--3-----,RQ,9307,,4034N 07456W, +,US,QMN,Quitman,Quitman,MS,--3-----,RQ,9307,,3202N 08844W, +,US,QMV,Montvale,Montvale,NJ,---4----,AI,9601,,4103N 07401W, +,US,QNC,Quincy,Quincy,WA,--3-----,RQ,9307,,4714N 11951W, +,US,QNT,Quanah,Quanah,TX,--3-----,RQ,9307,,3418N 09945W, +,US,QPZ,South Fallsburg,South Fallsburg,NY,1-------,RL,1107,,4142N 07438W, +,US,QRD,Radcliff,Radcliff,KY,--3-----,RQ,9008,,3750N 08557W, +,US,QRE,Regal,Regal,NC,--3-----,RQ,9008,,3507N 08400W, +,US,QTA,Catalina,Catalina,AZ,--3--6--,QQ,0607,,3340N 11225W, +,US,QTM,Quitman,Quitman,GA,--3-----,RQ,9307,,3047N 08334W, +,US,QTS,Englewood,Englewood,CO,---4----,AI,9601,,3939N 10459W, +,US,QUE,Queenstown,Queenstown,MD,--3-----,RQ,9307,,3859N 07609W, +,US,QUO,Quogue,Quogue,NY,--3-----,RQ,9501,,4049N 07237W, +,US,QUY,Quincy,Quincy,MI,--3-----,RQ,9307,,4709N 08836W, +,US,QVW,Bridgeview,Bridgeview,IL,--3-----,RQ,9008,,4145N 08748W, +,US,QWI,Fountain Hills,Fountain Hills,AZ,1-------,RQ,0901,,3337N 11143W, +,US,RAB,Arab,Arab,AL,--3-----,RQ,9705,,3419N 08630W, +,US,RAC,Racine,Racine,WI,1-34----,AI,0001,,4244N 08747W, +,US,RAG,Raleigh,Raleigh,NC,--3-----,RN,0201,,3547N 07838W,cf Apt RDU +,US,RAH,Rahway,Rahway,NJ,--3-----,RQ,9307,,4036N 07417W, +,US,RAI,Rainier,Rainier,OR,1-3-----,RN,0105,,4605N 12256W, +,US,RAM,Raymore,Raymore,MO,--3-----,RQ,9307,,3849N 09428W, +,US,RAN,Raton,Raton,NM,--3-----,RL,9901,,3654N 10426W, +,US,RAP,Rapid City,Rapid City,SD,---4----,AI,9601,,4405N 10314W, +,US,RAR,Radnor,Radnor,PA,--3-----,RQ,9806,,4002N 07522W, +,US,RAS,Ranson,Ranson,WV,--3-----,RQ,9307,,3918N 07752W, +,US,RAT,Raritan,Raritan,NJ,--3-----,RQ,9307,,4034N 07438W, +,US,RAV,Ransomville,Ransomville,NY,--3-----,RQ,9307,,4314N 07855W, +,US,RAY,Rahway,Rahway,OH,-23-----,RQ,0207,,4036N 07417W, +,US,RAZ,Rancho Palos Verdes,Rancho Palos Verdes,CA,--3-----,RQ,9307,,3345N 11822W, +,US,RBB,Robbinsville,Robbinsville,NC,--3-----,RQ,9601,,3519N 08348W, +,US,RBC,Riviera Beach,Riviera Beach,FL,--3-----,RQ,9307,,2647N 08004W, +,US,RBD,Redondo Beach,Redondo Beach,CA,--3-----,RQ,9307,,3351N 11823W, +,US,RBE,Robesonia,Robesonia,PA,--3-----,RQ,9307,,4021N 07608W, +,US,RBG,Roseburg,Roseburg,OR,---4----,AI,9601,,4313N 12321W, +,US,RBI,Rexburg,Rexburg,ID,--3-----,RQ,9307,,4349N 11147W, +,US,RBL,Red Bluff,Red Bluff,CA,---4----,AI,9601,,4011N 12214W, +,US,RBN,Fort Jefferson,Fort Jefferson,FL,---4----,AI,0001,,2438N 08252W, +,US,RBQ,Rancho Belago,Rancho Belago,CA,-----6--,RL,1107,,3356N 11711W, +,US,RBR,Ranburne,Ranburne,AL,--3-----,RQ,9307,,3331N 08521W, +,US,RBS,Robbins,Robbins,NC,--3-----,RQ,9008,,3526N 07935W, +,US,RBV,Robbinsville,Robbinsville,NJ,--3-----,RQ,9008,,4013N 07437W, +,US,RBW,Walterboro,Walterboro,SC,--34----,AI,9601,,3254N 08040W, +,US,RBY,Ruby,Ruby,AK,---4----,AI,0001,,6444N 15529W, +,US,RCA,Rockland,Rockland,MA,--3-----,RQ,9307,,4208N 07055W, +,US,RCE,Roche Harbor,Roche Harbor,WA,---4----,AI,0001,,4837N 12309W, +,US,RCF,Rockford,Rockford,MI,--3-----,RQ,9307,,4307N 08534W, +,US,RCG,Riceboro,Riceboro,GA,--3-----,RQ,9008,,3144N 08126W, +,US,RCH,Richmond,Richmond,CA,1-3-----,RN,0105,,3756N 12221W, +,US,RCI,Richlands,Richlands,NC,--3-----,RQ,9307,,3454N 07733W, +,US,RCK,Rockdale,Rockdale,TX,---4----,AI,0001,,3039N 09700W, +,US,RCM,Richfield,Richfield,MN,--3-----,RQ,9307,,4453N 09317W, +,US,RCP,Rocky Point,Rocky Point,NC,--3-----,RQ,9307,,3426N 07753W, +,US,RCR,Rochester,Rochester,IN,---4----,AI,0001,,4104N 08613W, +,US,RCT,Reed City,Reed City,MI,---4----,AI,9601,,4353N 08531W, +,US,RCW,Rochester,Rochester,WA,--3-----,RQ,9307,,4650N 12304W, +,US,RCX,Rochelle,Rochelle,IL,--3-----,RQ,9307,,4155N 08904W, +,US,RCY,Rogers City,Rogers City,MI,1-3-----,RN,0105,,4525N 08349W, +,US,RCZ,Rochester,Rochester,MI,--3-----,RQ,9307,,4240N 08309W, +,US,RDA,Rosedale,Rosedale,AR,--3-----,RQ,9307,,3523N 11909W, +,US,RDB,Red Dog,Red Dog,AK,---4----,AI,0001,,6804N 16252W, +,US,RDC,Reedley,Reedley,CA,--3-----,RQ,9307,,3636N 11927W, +,US,RDD,Redding,Redding,CA,--34----,AI,9601,,4035N 12224W, +,US,RDE,Ridgeland,Ridgeland,MS,--3-----,RQ,9307,,3226N 09008W, +,US,RDF,Redford,Redford,MI,--3-----,RQ,9307,,4224N 08318W, +,US,RDG,Reading,Reading,PA,--34----,RQ,9008,,4020N 07556W, +,US,RDH,Randolph,Randolph,MA,--3-----,RQ,9307,,4210N 07103W, +,US,RDI,Reading,Reading,MA,--3-----,RQ,9008,,4232N 07106W, +,US,RDL,Riverdale,Riverdale,NJ,--3-----,RQ,9501,,4060N 07418W, +,US,RDO,Rancho Dominguez,Rancho Dominguez,CA,--3-----,RQ,0212,,3354N 11816W,"Near Carson, Zip code 90220" +,US,RDR,Red River,Red River,ND,---4----,AI,0001,,4449N 08842W, +,US,RDU,Raleigh-Durham Apt,Raleigh-Durham Apt,NC,---4----,AI,0001,,3552N 07848W,"cf US DUR, US RAG" +,US,RDV,Red Devil,Red Devil,AK,---4----,AI,0001,,6147N 15721W, +,US,RDW,Red Wing,Red Wing,MN,--3-----,RQ,9307,,4434N 09232W, +,US,RDY,Red Bay,Red Bay,AL,--3-----,RQ,9307,,3426N 08809W, +,US,REA,Readville,Readville,MA,--3-----,RQ,9307,,4214N 07108W, +,US,REB,Reddick,Reddick,FL,--3-----,RQ,9307,,2922N 08212W, +,US,REH,Rehoboth Beach,Rehoboth Beach,DE,---4----,AI,0001,,3843N 07505W, +,US,REN,Red Bank,Red Bank,NJ,--3-----,RQ,9008,,4021N 07404W, +,US,REO,Rome,Rome,OR,---4----,AI,0001,,4250N 11738W, +,US,REQ,Richfield,Richfield,OH,--3-----,RQ,9307,,4114N 08138W, +,US,RER,Rensselaer,Rensselaer,NY,--3-----,RQ,9307,,4239N 07345W, +,US,REW,Red Hook,Red Hook,NY,--3-----,RQ,9307,,4041N 07401W, +,US,REX,Rex,Rex,GA,--3-----,RQ,0002,,3336N 08416W, +,US,REY,Reynolds,Reynolds,GA,--3-----,RQ,9307,,3234N 08406W, +,US,REZ,Revere,Revere,MA,--3-----,RQ,9307,,4225N 07101W, +,US,RFD,Rockford,Rockford,IL,--34----,AI,9601,,4216N 08906W, +,US,RFG,Refugio,Refugio,TX,---4----,AI,0001,,2818N 09716W, +,US,RFH,Rohnert Park,Rohnert Park,CA,--3-----,RQ,9307,,3820N 12242W, +,US,RFK,Anguilla,Anguilla,MS,---4----,AI,0001,,3258N 09049W, +,US,RFL,River Falls,River Falls,AL,--3-----,RQ,9501,,3121N 08632W, +,US,RFM,Rumford,Rumford,ME,--3-----,RQ,9307,,4433N 07033W, +,US,RFN,Raeford,Raeford,NC,--3-----,RQ,9008,,3459N 07913W, +,US,RFO,Rockford,Rockford,OH,--3-----,RQ,9307,,4042N 08439W, +,US,RFP,Ridgefield Park,Ridgefield Park,NJ,--3-----,RQ,9307,,4051N 07401W, +,US,RFQ,Redfield,Redfield,IA,--3-----,RQ,9307,,4135N 09412W, +,US,RFS,Rosemead,Rosemead,CA,--3-----,RQ,9307,,3404N 11805W, +,US,RFW,River Falls,River Falls,WI,--3-----,RQ,9307,,4452N 09238W, +,US,RFY,Rolling Fork,Rolling Fork,MS,--3-----,RQ,9307,,3254N 09053W, +,US,RGD,Ringgold,Ringgold,GA,--3-----,RQ,9307,,3455N 08507W, +,US,RGG,Rabun Gap,Rabun Gap,GA,--3-----,RQ,9307,,3457N 08323W, +,US,RGM,Rockingham,Rockingham,NC,--3-----,RQ,9008,,3456N 07946W, +,US,RGO,Ridgewood,Ridgewood,NY,--3-----,RQ,9307,,4042N 07355W, +,US,RGR,Ranger,Ranger,TX,---4----,AI,0001,,3228N 09841W, +,US,RGT,Register,Register,GA,--3-----,RQ,9307,,3222N 08153W, +,US,RHC,Rock Hill,Rock Hill,NC,--3-----,RQ,9307,,3455N 08102W, +,US,RHD,Riverhead,Riverhead,NY,--3-----,RQ,9307,,4055N 07240W, +,US,RHI,Rhinelander,Rhinelander,WI,---4----,AI,9601,,4538N 08925W, +,US,RHL,Richmondville,Richmondville,NY,--3-----,RQ,9008,,4238N 07434W, +,US,RHM,Richmond,Richmond,KY,--3-----,RQ,9008,,3745N 08418W, +,US,RHR,Rochester,Rochester,PA,--3-----,RQ,9307,,4042N 08017W, +,US,RHW,Rowland Heights,Rowland Heights,CA,--3-----,RQ,9307,,3359N 11754W, +,US,RHX,Red Hill,Red Hill,AR,--3-----,RQ,9307,,3504N 09232W, +,US,RID,Richmond,Richmond,IN,--34----,AI,9601,,3950N 08453W, +,US,RIE,Rice Lake,Rice Lake,WI,---4----,AI,9601,,4530N 09144W, +,US,RIF,Richfield,Richfield,UT,---4----,AI,0001,,3846N 11205W, +,US,RIH,Ririe,Ririe,ID,--3-----,RQ,9307,,4338N 11146W, +,US,RIK,Rincon,Rincon,GA,--3-----,RQ,9307,,3218N 08114W, +,US,RIL,Rifle,Rifle,CO,---4----,AI,9601,,3932N 10747W, +,US,RIN,Richardson,Richardson,TX,--3-----,RQ,9307,,3257N 09644W, +,US,RIO,Ringwood,Ringwood,IL,--3-----,RQ,9307,,4224N 08818W, +,US,RIP,Ripon,Ripon,CA,--3-----,RQ,9307,,3744N 12107W, +!,US,RIR,Riddle,Riddle,OR,--3-----,RQ,9307,,4257N 12322W, +,US,RIS,Ridgeville,Ridgeville,SC,--3-----,RQ,9008,,3306N 08019W, +,US,RIT,Ridgeway,Ridgeway,WI,--3-----,RQ,9307,,4260N 08960W, +,US,RIV,Reidsville,Reidsville,NC,--3-----,RN,0105,,3621N 07940W, +,US,RIW,Riverton,Riverton,WY,--34----,AI,9601,,4301N 10823W, +,US,RJE,Riverton,Riverton,KS,--3-----,RL,0607,,3705N 09442W, +,US,RJH,Richmond Highlands,Richmond Highlands,WA,--3-----,RQ,9307,,4746N 12221W, +,US,RJJ,Richmond Beach,Richmond Beach,WA,--3-----,RQ,9307,,4746N 12223W, +,US,RJK,Richmond Hill,Richmond Hill,GA,--3-----,RQ,9307,,3156N 08118W, +,US,RJL,Richland,Richland,MS,--3-----,RQ,9307,,3214N 09010W, +,US,RJM,Rogers,Rogers,MN,--3-----,RQ,9307,,4511N 09333W, +,US,RJN,Rotterdam Junction,Rotterdam Junction,NY,--3-----,RQ,9307,,4252N 07403W, +,US,RJO,Ringgold,Ringgold,PA,--3-----,RQ,9307,,4041N 07560W, +,US,RJW,Ridgway,Ridgway,IL,--3-----,RQ,9307,,3748N 08816W, +,US,RKB,Red Bank,Red Bank,TN,--3-----,RQ,0901,,4021N 07404W,2 places in NJ +,US,RKC,Yreka,Yreka,CA,---4----,AI,0001,,4144N 12238W, +,US,RKD,Rockland,Rockland,ME,1-34----,AI,9601,,4406N 06907W, +,US,RKE,Rockledge,Rockledge,FL,--3-----,RL,9307,,2820N 08044W, +,US,RKF,Rocky Ford,Rocky Ford,CO,--3-----,RQ,9307,,3803N 10343W, +,US,RKH,Rock Hill,Rock Hill,SC,--34----,AI,1601,,3455N 08102W, +,US,RKI,Rock Island,Rock Island,IL,--3-----,RQ,9012,,4131N 09035W, +,US,RKJ,Rockaway,Rockaway,NJ,--3-----,RQ,9307,,4054N 07431W, +,US,RKL,Rocklin,Rocklin,CA,--3-----,RQ,9307,,3847N 12114W, +,US,RKN,Ruskin,Ruskin,FL,--3-----,RQ,9307,,2742N 08225W, +,US,RKO,Rockport,Rockport,NJ,--3-----,RQ,9307,,4049N 07453W, +,US,RKP,Rockport,Rockport,TX,---4----,AI,9601,,2801N 09703W, +,US,RKR,Poteau,Poteau,OK,--34----,AI,9601,,3503N 09437W, +,US,RKS,Rock Springs,Rock Springs,WY,--34----,RQ,9008,,4135N 10913W, +,US,RKT,Rockton,Rockton,IL,--3-----,RQ,9307,,4227N 08904W, +,US,RKV,Rockville,Rockville,MD,--3-----,RQ,9307,,3905N 07709W, +,US,RKW,Rockwood,Rockwood,TN,--34----,AI,9601,,3552N 08441W, +,US,RLA,Rolla,Rolla,MO,--34----,AI,9601,,3757N 09146W, +,US,RLB,Roseland,Roseland,NJ,--3-----,RQ,9307,,4049N 07418W, +,US,RLC,Richland Center,Richland Center,WI,--3-----,RL,0001,,4320N 09023W, +,US,RLD,Richland,Richland,WA,---4----,AI,9601,,4617N 11917W, +,US,RLE,Roselle,Roselle,NJ,--3-----,RQ,9307,,4039N 07415W, +!,US,RLI,Rio Linda,Rio Linda,CA,--3-----,RQ,9307,,3841N 12128W, +,US,RLL,Roselle,Roselle,IL,--3-----,RQ,9307,,4159N 08805W, +,US,RLM,Rolling Meadows,Rolling Meadows,IL,--3-----,RQ,9307,,4205N 08801W, +,US,RLN,Red Lion,Red Lion,PA,--3-----,RQ,9307,,3954N 07636W, +,US,RLO,Rialto,Rialto,CA,--3-----,RQ,9307,,3406N 11722W, +,US,RLP,Randolph,Randolph,MS,--3-----,RQ,9307,,3411N 08910W, +,US,RLS,Redlands,Redlands,CA,--3-----,RQ,9307,,3403N 11711W, +,US,RLU,Bornite,Bornite,AK,---4----,AI,0001,,6704N 15656W, +,US,RLW,Relay,Relay,MD,--3-----,RQ,9307,,3914N 07642W, +,US,RMD,Redmond,Redmond,OR,--34----,AI,0201,,4416N 12110W,cf US RDM Apt +,US,RME,Rome,Rome,NY,---4----,AI,9601,,4313N 07527W, +,US,RMG,Rome,Rome,GA,--34----,RQ,9008,,3415N 08510W, +,US,RMI,Reese,Reese,MI,--3-----,RQ,9307,,4327N 08342W, +,US,RMJ,Ramsey,Ramsey,NJ,--3-----,RQ,9307,,4103N 07408W, +,US,RMM,Rosemount,Rosemount,MN,--3-----,RQ,9307,,4444N 09308W, +,US,RMO,Romeo,Romeo,MI,--3-----,RQ,9307,,4248N 08301W, +,US,RMP,Rampart,Rampart,AK,---4----,AI,0001,,6525N 14959W, +,US,RMV,Raymondville,Raymondville,TX,--3-----,RQ,9307,,2629N 09747W, +,US,RNC,McMinnville,McMinnville,TN,---4----,AI,0001,,3541N 08546W, +,US,RNG,Rangely,Rangely,CO,---4----,AI,0001,,4005N 10848W, +,US,RNH,New Richmond,New Richmond,WI,---4----,AI,9601,,4507N 09232W, +,US,RNJ,Randleman,Randleman,NC,--3-----,RQ,9307,,3549N 07948W, +,US,RNL,Rantoul,Rantoul,IL,--3-----,RQ,9307,,4019N 08809W, +,US,RNO,Reno,Reno,NV,--34----,AI,0001,,3932N 11949W, +,US,RNP,Randolph,Randolph,WI,--3-----,RQ,9307,,4335N 08906W, +,US,RNQ,Reno,Reno,TX,--3-----,RQ,0407,,3257N 09735W, +,US,RNT,Renton,Renton,WA,---4----,AI,9601,,4729N 12212W, +,US,RNW,Ronan,Ronan,MT,--3-----,RQ,9307,,4732N 11406W, +,US,RNX,Ramona,Ramona,CA,--3-----,RQ,9307,,3303N 11652W, +,US,RNZ,Rensselaer,Rensselaer,IN,---4----,AI,0001,,4056N 08709W, +,US,ROA,Roanoke,Roanoke,VA,--34----,RQ,9008,,3716N 07956W, +,US,ROB,Robinson,Robinson,IL,--3-----,RQ,9307,,3900N 08744W, +,US,ROC,Rochester,Rochester,NY,1--4----,AI,9601,,4309N 07737W, +,US,ROD,Rosendale,Rosendale,WI,--3-----,RQ,9307,,4348N 08840W, +,US,ROE,Rockdale,Rockdale,IL,--3-----,RQ,9307,,4130N 08807W, +,US,ROG,Rogers,Rogers,AR,---4----,AI,9601,,3620N 09407W, +,US,ROH,Rochester,Rochester,IL,--3-----,RQ,9307,,3945N 08932W, +,US,ROI,Romeoville,Romeoville,IL,--3-----,RL,0201,,4139N 08805W, +,US,ROK,Rocky Hill,Rocky Hill,CT,--3-----,RQ,9307,,4140N 07238W, +,US,ROL,Roosevelt,Roosevelt,UT,---4----,AI,0001,,4018N 10959W, +,US,ROM,Round Mountain,Round Mountain,NV,--3-----,RL,9901,,3842N 11710W, +,US,RON,Rosenhayn,Rosenhayn,NJ,--3-----,RQ,9307,,3929N 07508W, +,US,ROP,Rosemont,Rosemont,PA,--3-----,RQ,9307,,4002N 07519W, +,US,ROR,Rochester,Rochester,NH,--3-----,RL,0001,,4318N 07059W, +,US,ROS,Roseville,Roseville,OH,--3-----,RQ,9307,,3948N 08204W, +,US,ROU,Romulus,Romulus,MI,--3-----,RQ,9008,,4213N 08324W, +,US,ROV,Rocky Mount,Rocky Mount,VA,--3-----,RQ,9307,,3660N 07953W, +,US,ROW,Roswell,Roswell,NM,--34----,AI,9601,,3324N 10431W, +,US,ROY,Royston,Royston,GA,--3-----,RQ,9307,,3417N 08307W, +,US,RPG,Red Springs,Red Springs,NC,--3-----,RQ,9307,,3449N 07911W, +,US,RPK,Ridley Park,Ridley Park,PA,--3-----,RQ,0002,,3953N 07519W, +,US,RPL,Ripley,Ripley,TN,--3-----,RQ,9307,,3545N 08932W, +,US,RPM,Ripley,Ripley,MS,--3-----,RQ,9307,,3444N 08857W, +,US,RPN,Ripon,Ripon,WI,--3-----,RQ,9307,,4351N 08850W, +,US,RPQ,Rancho Park,Rancho Park,CA,--3-----,RQ,9307,,3402N 11826W, +,US,RPR,Rockport,Rockport,WA,--3-----,RQ,9307,,4829N 12136W, +,US,RPV,Roopville,Roopville,GA,--3-----,RQ,9307,,3327N 08508W, +,US,RPX,Roundup,Roundup,MT,---4----,AI,0001,,4627N 10833W, +,US,RPY,Fair Play,Fair Play,CO,--3-----,RQ,0901,,3738N 09334W, +,US,RQB,Roebuck,Roebuck,SC,--3-----,RQ,9307,,3453N 08158W, +,US,RQG,Resaca,Resaca,GA,--3-----,RQ,9307,,3435N 08457W, +,US,RQH,Rural Hall,Rural Hall,NC,--3-----,RQ,9307,,3614N 08018W, +,US,RQJ,Roebling,Roebling,NJ,--3-----,RQ,9307,,4007N 07447W, +,US,RQO,Rockwood,Rockwood,OR,--3-----,RQ,9307,,4531N 12228W, +,US,RQP,Rockport,Rockport,IN,--3-----,RQ,9307,,3753N 08703W, +,US,RQX,Roanoke,Roanoke,IL,--3-----,RL,0607,,4048N 08912W, +,US,RQY,Rush,Rush,KY,--3-----,RQ,9307,,3820N 08247W, +,US,RRC,Rio Rancho,Rio Rancho,NM,--3-----,RQ,9307,,3516N 10638W, +,US,RRD,Riverdale,Riverdale,IL,--3-----,RQ,9307,,4138N 08738W, +,US,RRE,Rural Retreat,Rural Retreat,VA,--3-----,RL,9911,,3654N 08117W, +,US,RRJ,River Rouge,River Rouge,MI,--3-----,RQ,9307,,4216N 08308W, +,US,RRL,Merrill,Merrill,WI,---4----,AI,9601,,4511N 08941W, +,US,RRQ,Rio Rico,Rio Rico,AZ,--3-----,RQ,9307,,3128N 11059W, +,US,RRT,Warroad,Warroad,MN,1--4----,AI,9601,,4854N 09519W, +,US,RRX,Round Rock,Round Rock,TX,--3-----,RQ,9307,,3031N 09741W, +,US,RSD,Riverside,Riverside,NJ,--3-----,RQ,9501,,4002N 07457W, +,US,RSE,Reseda,Reseda,CA,--3-----,RQ,9307,,3412N 11832W, +,US,RSF,Reserve,Reserve,LA,--3-----,RQ,9307,,3005N 09034W, +,US,RSH,Russian Mission,Russian Mission,AK,---4----,AI,0001,,6147N 16121W, +,US,RSI,Rosemont,Rosemont,IL,--3-----,RQ,9008,,4160N 08753W, +,US,RSJ,Rosario,Rosario,WA,---4----,AI,0001,,4839N 12253W, +,US,RSL,Russell,Russell,KS,---4----,AI,0001,,3854N 09852W, +,US,RSN,Ruston,Ruston,LA,--34----,AI,0001,,3232N 09238W, +,US,RSO,Rossford,Rossford,OH,--3-----,RQ,9307,,4137N 08334W, +,US,RSQ,Roscoe,Roscoe,IL,--3-----,RQ,9307,,4225N 08901W, +,US,RSR,Ramseur,Ramseur,NC,--3-----,RQ,9307,,3544N 07939W, +,US,RSS,Rossville,Rossville,GA,--3-----,RQ,9307,,3459N 08517W, +,US,RST,Rochester,Rochester,MN,---4----,AI,9601,,4401N 09228W, +,US,RSV,Roseville,Roseville,MI,--3-----,RQ,9307,,4230N 08256W, +,US,RTD,Rotunda,Rotunda,FL,---4----,AI,0001,,3920N 07638W, +,US,RTH,Rutherford,Rutherford,CA,-23-----,RQ,9705,,3828N 12225W, +,US,RTL,Spirit Lake,Spirit Lake,IA,--34----,AI,9901,,4325N 09506W, +!,US,RTN,Rittman,Rittman,OH,--3-----,RQ,9307,,4058N 08147W, +,US,RTS,Rothschild,Rothschild,WI,--3-----,RQ,9307,,4453N 08937W, +,US,RTV,Reston,Reston,VA,--3-----,RQ,9307,,3857N 07721W, +,US,RTX,Rotan,Rotan,TX,--3-----,RQ,9307,,3251N 10028W, +,US,RUA,Rutledge,Rutledge,GA,--3-----,RQ,9307,,3338N 08337W, +,US,RUB,Rubonia,Rubonia,FL,--3-----,RQ,0002,,2735N 08233W, +,US,RUC,Round Lake,Round Lake,IL,--3-----,RQ,9307,,4221N 08806W, +,US,RUE,Russellville,Russellville,TN,--3-----,RQ,9008,,3616N 08312W, +,US,RUI,Ruidoso,Ruidoso,NM,---4----,AI,9601,,3320N 10540W, +,US,RUL,Rule,Rule,TX,--3-----,RQ,9307,,3311N 09954W, +,US,RUN,Rising Sun,Rising Sun,MD,--3-----,RQ,0001,,3942N 07604W, +,US,RUQ,Remus,Remus,MI,--3-----,RQ,9307,,4336N 08509W, +,US,RUR,Rutherfordton,Rutherfordton,NC,--3-----,RQ,9307,,3522N 08157W, +,US,RUS,Russellville,Russellville,AR,--3-----,RQ,9008,,3517N 09308W, +,US,RUV,Russellville,Russellville,AL,--3-----,RQ,9307,,3430N 08744W, +,US,RUZ,Romulus,Romulus,NY,--3-----,RQ,9307,,4245N 07650W, +,US,RV9,Roseville,Roseville,NC,1-------,RL,1107,,3621N 07903W, +,US,RVA,Rio Vista,Rio Vista,CA,--3-----,RQ,9307,,3809N 12141W, +,US,RVC,Roseville,Roseville,CA,--3-----,RQ,9307,,3845N 12117W, +,US,RVD,Ravenna,Ravenna,NE,--3-----,RQ,9307,,4102N 09855W, +,US,RVE,Roseville,Roseville,MN,--3-----,RQ,9307,,4500N 09309W, +,US,RVI,Ruleville,Ruleville,MS,--3-----,RQ,9307,,3344N 09033W, +,US,RVJ,Riverton,Riverton,NJ,--3-----,RQ,9307,,4001N 07501W, +,US,RVL,Riverdale,Riverdale,MD,--3-----,RQ,9307,,3858N 07656W, +,US,RVM,Riverside,Riverside,MI,--3-----,RQ,9307,,4234N 08238W, +,US,RVP,Ropesville,Ropesville,TX,--3-----,RQ,9307,,3325N 10209W, +,US,RVR,Green River,Green River,UT,---4----,AI,0001,,3860N 11010W, +,US,RVW,Riverview,Riverview,MI,--3-----,RQ,9307,,4210N 08311W, +,US,RVY,Rayville,Rayville,LA,--3-----,RQ,9307,,3228N 09145W, +,US,RWB,Rowan Bay,Rowan Bay,AK,---4----,AI,0001,,5640N 13416W, +,US,RWC,Redwood City,Redwood City,CA,1-3-----,RN,0105,,3729N 12214W, +,US,RWD,Ridgewood,Ridgewood,NJ,--3-----,RQ,9307,,4059N 07407W, +,US,RWE,Roswell,Roswell,GA,--3-----,RQ,9307,,3401N 08422W, +,US,RWF,Redwood Falls,Redwood Falls,MN,---4----,AI,0001,,4432N 09507W, +,US,RWL,Rawlins,Rawlins,WY,--34----,AI,9601,,4147N 10714W, +,US,RWO,Richwood,Richwood,KY,--3-----,RL,0002,,3855N 08437W, +,US,RWW,Ravenswood,Ravenswood,WV,--3-----,RQ,9008,,3857N 08146W, +,US,RWY,Rowley,Rowley,UT,--3-----,RQ,9307,,4222N 09151W, +,US,RXB,Roxboro,Roxboro,NC,--3-----,RQ,9307,,3624N 07859W, +,US,RXG,Remington,Remington,IN,--3-----,RQ,9307,,4046N 08709W, +,US,RXH,Rockleigh,Rockleigh,NJ,--3-----,RQ,9307,,4100N 07356W, +,US,RXJ,Richburg,Richburg,SC,--3-----,RQ,9307,,3443N 08101W, +,US,RXQ,Roxbury,Roxbury,CT,--3-----,RQ,9307,,4133N 07319W, +,US,RXR,Fruitland,Fruitland,ID,1-------,RQ,0901,,4400N 11655W, +,US,RXT,Rochester,Rochester,TX,--3-----,RQ,9307,,3151N 10227W, +,US,RXV,Ringgold,Ringgold,VA,--3-----,RQ,9307,,3636N 07918W, +,US,RXY,Roxbury,Roxbury,MA,--3-----,RQ,9307,,4217N 07110W, +,US,RYB,Ryde,Ryde,CA,--3-----,RL,0701,,3814N 12134W, +,US,RYC,Royal Center,Royal Center,IN,--3-----,RQ,9307,,4052N 08630W, +,US,RYG,Reynoldsburg,Reynoldsburg,OH,--3-----,RQ,9307,,3957N 08249W, +,US,RYL,Rayne,Rayne,LA,--3-----,RQ,9307,,3014N 09216W, +,US,RYM,Royal Oak,Royal Oak,MI,--3-----,RQ,9008,,4229N 08309W, +,US,RYP,Ramapo,Ramapo,NY,--3-----,RQ,9307,,4108N 07407W, +,US,RYV,Rouseville,Rouseville,PA,--3-----,RQ,9307,,4128N 07941W, +,US,RYW,Roy,Roy,WA,--3-----,RQ,9307,,4700N 12232W, +,US,RYX,Royse City,Royse City,TX,--3-----,RQ,9307,,3259N 09620W, +,US,RZC,Rancho Cordova,Rancho Cordova,CA,--3-----,RQ,9307,,3835N 12118W, +!,US,RZH,Rose Hill,Rose Hill,NC,--3-----,RQ,9307,,3450N 07801W, +,US,RZI,Rienzi,Rienzi,MS,--3-----,RQ,9307,,3446N 08832W, +,US,RZL,Russell,Russell,WA,--3-----,RQ,9307,,4608N 11821W, +,US,SAA,Saratoga,Saratoga,WY,---4----,AI,0001,,4127N 10648W, +,US,SAB,Sabine,Sabine,TX,1-3-----,RN,0105,,2944N 09354W, +,US,SAD,Safford,Safford,AZ,---4----,AI,0001,,3250N 10943W, +,US,SAE,Salem,Salem,OH,--3-----,RQ,9008,,4054N 08051W, +,US,SAF,Santa Fe,Santa Fe,NM,--34----,AI,1807,,3541N 10556W, +,US,SAG,Sagwon,Sagwon,AK,---4----,AI,0001,,6922N 14842W, +,US,SAH,Sasser,Sasser,GA,--3-----,RQ,9601,,3143N 08421W, +,US,SAI,Saginaw,Saginaw,AL,--3-----,RQ,9307,,3313N 08648W, +,US,SAK,San Pablo,San Pablo,CA,--3-----,RQ,9307,,3758N 12221W, +,US,SAL,Saint Paul,Saint Paul,VA,--3-----,RL,1101,,3654N 08219W, +,US,SAR,Sparta,Sparta,IL,---4----,AI,9601,,3807N 08942W, +,US,SAS,Salton City,Salton City,CA,---4----,AI,0001,,3318N 11557W, +,US,SAT,San Antonio,San Antonio,TX,---4----,AI,0001,,2925N 09830W, +,US,SAU,Sauget,Sauget,IL,--3-----,RQ,9307,,3835N 09010W, +,US,SAV,Savannah,Savannah,GA,1--4----,AI,9601,,3205N 08106W, +,US,SAW,Spotswood,Spotswood,NJ,--3-----,RQ,9307,,4024N 07424W, +,US,SAX,Sandston,Sandston,VA,--3-----,RQ,9506,,3731N 07719W, +,US,SAY,Stayton,Stayton,OR,--3-----,RQ,9307,,4448N 12248W, +,US,SAZ,Sophia,Sophia,NC,--3-----,RQ,9307,,3549N 07952W, +,US,SBA,Santa Barbara,Santa Barbara,CA,1-34----,AI,9601,,3425N 11942W, +,US,SBC,South Boston,South Boston,MA,--3-----,RQ,9307,,4220N 07103W, +,US,SBD,Saint Bernard Parish,Saint Bernard Parish,LA,--3-----,RQ,1101,,2947N 08859W, +,US,SBG,Strasburg,Strasburg,OH,--3-----,RQ,9307,,4036N 08132W, +,US,SBH,Streetsboro,Streetsboro,OH,--3-----,RQ,9806,,4114N 08121W, +,US,SBI,Shelby,Shelby,OH,--3-----,RQ,9307,,4053N 08240W, +,US,SBJ,Seabrook,Seabrook,NJ,--3-----,RQ,9307,,3930N 07513W, +,US,SBK,Saddle Brook,Saddle Brook,NJ,--3-----,RQ,9307,,4054N 07406W, +,US,SBL,South Beloit,South Beloit,IL,--3-----,RQ,9307,,4230N 08902W, +,US,SBN,South Bend,South Bend,IN,--34----,AI,9601,,4141N 08615W, +,US,SBO,Salina,Salina,UT,---4----,AI,0001,,3857N 11152W, +,US,SBS,Steamboat Springs,Steamboat Springs,CO,---4----,AI,9601,,4029N 10650W, +,US,SBT,San Bernardino,San Bernardino,CA,---4----,AI,9601,,3406N 11717W, +,US,SBU,Southbury,Southbury,CT,--3-----,RQ,9307,,4129N 07313W, +,US,SBV,Shelbyville,Shelbyville,IL,--3-----,RQ,9307,,3924N 08847W, +,US,SBX,Shelby,Shelby,MT,---4----,AI,9601,,4830N 11151W, +,US,SCB,Scribner,Scribner,NE,---4----,AI,0001,,4140N 09640W, +,US,SCE,State College,State College,PA,---4----,AI,9601,,4048N 07752W, +!,US,SCF,Sanford,Sanford,NC,--3-----,RQ,9008,,3529N 07911W, +,US,SCG,Scarsdale,Scarsdale,NY,--3-----,RQ,9307,,4059N 07348W, +,US,SCH,Schenectady,Schenectady,NY,---4----,AI,9601,,4249N 07356W, +,US,SCI,Sun City,Sun City,AZ,--3-----,RL,9909,,3338N 11217W, +,US,SCL,Saint Clair,Saint Clair,MI,--3-----,RQ,1101,,4249N 08229W, +,US,SCM,Scammon Bay,Scammon Bay,AK,---4----,AI,0001,,6151N 16535W, +,US,SCN,Scottville,Scottville,MI,--3-----,RQ,9307,,4357N 08617W, +,US,SCP,Schenley,Schenley,PA,--3-----,RQ,9307,,4041N 07940W, +,US,SCQ,Scott City,Scott City,MO,--3-----,RQ,9307,,3713N 08932W, +,US,SCS,Saint Clairsville,Saint Clairsville,OH,--3-----,RQ,1101,,4005N 08054W, +,US,SCT,South Charleston,South Charleston,WV,--3-----,RQ,9307,,3822N 08142W, +,US,SCU,Scituate,Scituate,MA,--3-----,RQ,9307,,4212N 07044W, +,US,SCV,Scottsville,Scottsville,KY,--3-----,RN,0105,,3645N 08611W, +,US,SCW,Scobeyville,Scobeyville,NJ,--3-----,RQ,9307,,4018N 07409W, +,US,SCY,Studio City,Studio City,CA,--3-----,RQ,9307,,3409N 11824W, +,US,SCZ,Santa Clara,Santa Clara,CA,---4----,AI,9307,ZSM,3721N 12157W, +,US,SDA,San Dimas,San Dimas,CA,--3-----,RQ,9307,,3406N 11748W, +,US,SDB,Smartt,Smartt,TN,--3-----,RQ,9307,,3538N 08550W, +,US,SDC,Sand City,Sand City,CA,--3-----,RQ,9307,,3637N 12151W, +,US,SDD,Snead,Snead,AL,--3-----,RQ,9307,,3407N 08624W, +,US,SDE,Smithfield,Smithfield,KY,--3-----,RQ,9307,,3823N 08515W, +!,US,SDF,Smiths Creek,Smiths Creek,MI,--3-----,RQ,9307,,4255N 08236W, +,US,SDG,Stroudsburg,Stroudsburg,PA,--3-----,RQ,9307,,4059N 07512W, +,US,SDH,Shenandoah,Shenandoah,IA,--3-----,RQ,9307,,4046N 09522W, +,US,SDI,Sanderson,Sanderson,FL,--3-----,RQ,9307,,3015N 08216W, +,US,SDJ,Stamford,Stamford,NY,--3-----,RQ,9307,,4224N 07437W, +,US,SDK,Smyrna,Smyrna,DE,--3-----,RQ,9307,,3918N 07536W, +!,US,SDM,South El Monte,South El Monte,CA,--3-----,RQ,9307,,3403N 11803W, +,US,SDN,Sidney,Sidney,OH,--3-----,RN,0105,,4017N 08409W, +,US,SDO,South Hill,South Hill,VA,--3-----,RQ,9307,,3644N 07808W, +,US,SDP,Sand Point,Sand Point,AK,---4----,AI,9601,,5519N 16031W, +,US,SDQ,Sand Springs,Sand Springs,OK,--3-----,RQ,9307,,3608N 09607W, +,US,SDS,Swedesboro,Swedesboro,NJ,--3-----,RQ,9307,,3945N 07519W, +,US,SDT,South Lee,South Lee,MA,--3-----,RQ,9307,,4217N 07317W, +,US,SDU,Sudan,Sudan,TX,--3-----,RQ,9307,,3404N 10231W, +,US,SDW,Sandusky,Sandusky,MI,--3-----,RQ,9307,,4325N 08250W, +,US,SDX,Sedona,Sedona,AZ,---4----,AI,9601,,3452N 11149W, +,US,SDY,Sidney,Sidney,MT,---4----,AI,0001,,4743N 10409W, +,US,SDZ,Stratford,Stratford,NJ,--3-----,RQ,9307,,3950N 07501W, +,US,SEA,Seattle,Seattle,WA,1--45---,AI,9601,,4736N 12220W, +,US,SEB,Sebring,Sebring,OH,--3-----,RQ,9307,,4055N 08101W, +,US,SEC,Seiple,Seiple,PA,--3-----,RQ,9307,,4039N 07531W, +,US,SEF,Sebring,Sebring,FL,---4----,AI,9601,,2730N 08126W, +,US,SEH,Sterling Heights,Sterling Heights,MI,--3-----,RQ,9307,,4235N 08302W, +,US,SEI,Sheldon,Sheldon,IA,--3-----,RQ,9008,,4311N 09551W, +,US,SEJ,Seymour,Seymour,MO,--3-----,RQ,9307,,3709N 09246W, +,US,SEK,Sterling,Sterling,PA,--3-----,RQ,9307,,4120N 07523W, +,US,SEM,Salem,Salem,NJ,--3-----,RQ,9307,,3934N 07528W, +,US,SEN,Senatobia,Senatobia,MS,--3-----,RQ,9307,,3437N 08958W, +,US,SEO,Seabrook,Seabrook,TX,--3-----,RQ,9307,,2934N 09501W, +,US,SEP,Stephenville,Stephenville,TX,---4----,AI,9601,,3213N 09813W, +,US,SEQ,Spindale,Spindale,NC,--3-----,RQ,9307,,3522N 08156W, +,US,SER,Seymour,Seymour,IN,---4----,AI,9601,,3858N 08553W, +,US,SES,Selma,Selma,AL,--34----,AI,9601,,3224N 08701W, +,US,SET,Seymour,Seymour,TX,--3-----,RQ,9307,,3336N 09916W, +,US,SEU,Sellersburg,Sellersburg,IN,--3-----,RQ,9307,,3824N 08545W, +,US,SEV,Severn,Severn,MD,--3-----,RQ,9307,,3908N 07642W, +,US,SEX,Sterlington,Sterlington,LA,--3-----,RQ,9307,,3242N 09205W, +,US,SEY,Shelby,Shelby,NC,--3-----,RQ,9307,,3518N 08132W, +,US,SEZ,Seatac,Seatac,WA,--3-----,RL,9912,,4727N 12217W, +,US,SFA,Southgate,Southgate,MI,--3-----,RQ,9307,,4212N 08312W, +,US,SFB,Sanford,Sanford,FL,---4----,AI,9601,,2849N 08116W, +,US,SFC,Stafford Springs,Stafford Springs,CT,--3-----,RQ,9008,,4157N 07218W, +,US,SFD,South Plainfield,South Plainfield,NJ,--3-----,RQ,9307,,4035N 07425W, +,US,SFE,Seaford,Seaford,DE,--3-----,RQ,9307,,3838N 07537W, +,US,SFF,Strafford,Strafford,MO,--3-----,RQ,9307,,3716N 09307W, +,US,SFH,Spring House,Spring House,PA,--3-----,RQ,9307,,4011N 07514W, +,US,SFI,Springfield,Springfield,NJ,--3-----,RQ,9307,,4042N 07419W, +,US,SFJ,Southfield,Southfield,MI,--3-----,RQ,9307,,4228N 08313W, +,US,SFK,Springfield,Springfield,MD,--3-----,RQ,9307,,3846N 07639W, +,US,SFL,Snowflake,Snowflake,AZ,--3-----,RL,9901,,3431N 11005W, +,US,SFM,Sanford,Sanford,ME,---4----,AI,9601,,4326N 07046W, +,US,SFN,Woonsocket,Woonsocket,RI,--3-----,RN,0105,,4200N 07131W, +,US,SFO,San Francisco,San Francisco,CA,1--45---,AI,9601,,3747N 12225W, +,US,SFP,Safety Harbor,Safety Harbor,FL,--3-----,RQ,9307,,2759N 08242W, +,US,SFR,San Fernando,San Fernando,CA,---4----,AI,9601,,3417N 11826W, +,US,SFS,Seneca Falls,Seneca Falls,NY,--3-----,RQ,9307,,4255N 07648W, +,US,SFU,Spanish Fork,Spanish Fork,UT,--3-----,RQ,9307,,4007N 11139W, +,US,SFV,Saint Francisville,Saint Francisville,LA,--3-----,RQ,1101,,3047N 09123W, +,US,SFW,Schofield,Schofield,WI,--3-----,RQ,9307,,4455N 08936W, +,US,SFY,Springfield,Springfield,MA,1-3-----,RN,0105,,4206N 07235W, +,US,SFZ,Smithfield,Smithfield,RI,---4----,AI,9601,,4155N 07133W, +,US,SGA,Saratoga Springs,Saratoga Springs,NY,--3-----,RQ,9307,,4305N 07347W, +,US,SGC,South Gate,South Gate,CA,--3-----,RQ,9307,,3357N 11812W, +,US,SGD,Spring City,Spring City,TN,--3-----,RQ,9307,,3542N 08452W, +,US,SGE,Savage,Savage,MD,--3-----,RQ,9008,,3908N 07649W, +,US,SGF,Springfield,Springfield,MO,--34----,AI,9601,,3712N 09318W, +,US,SGG,San Gabriel,San Gabriel,CA,--3-----,RQ,9307,,3406N 11807W, +,US,SGK,Seagraves,Seagraves,TX,--3-----,RQ,9307,,3257N 10234W, +,US,SGL,Saint Gabriel,Saint Gabriel,LA,--3-----,RQ,1101,,3015N 09106W, +,US,SGO,Surgoinsville,Surgoinsville,TN,--3-----,RQ,9307,,3628N 08251W, +,US,SGS,Saint George,Saint George,SC,--3-----,RQ,1101,,3311N 08035W, +,US,SGT,Stuttgart,Stuttgart,AR,---4----,AI,9601,,3430N 09133W, +,US,SGU,Saint George,Saint George,UT,---4----,AI,1101,,3706N 11335W, +,US,SGV,Sterling,Sterling,VA,--3-----,RQ,9307,,3900N 07724W, +,US,SGX,Sugar Grove,Sugar Grove,PA,--3-----,RQ,9307,,4159N 07920W, +,US,SGY,Skagway,Skagway,AK,1--4----,AI,9506,,5927N 13519W, +,US,SGZ,Suring,Suring,WI,--3-----,RQ,9307,,4460N 08822W, +,US,SHA,Sunshine,Sunshine,AL,--3-----,RQ,9307,,3234N 08733W, +,US,SHC,Shawnee,Shawnee,KS,--3-----,RQ,9307,,3901N 09443W, +,US,SHD,Staunton,Staunton,VA,--34----,AI,9601,,3809N 07904W, +,US,SHE,Saint Helena,Saint Helena,CA,--3-----,RQ,1101,,3830N 12228W, +,US,SHF,Sheffield,Sheffield,AL,--34----,AI,9506,MSL,3446N 08742W, +,US,SHG,Shungnak,Shungnak,AK,---4----,AI,0001,,6653N 15709W, +,US,SHH,Shishmaref,Shishmaref,AK,---4----,AI,0001,,6614N 16608W, +,US,SHI,Spring Hill,Spring Hill,FL,--3-----,RQ,9307,,2829N 08232W, +,US,SHJ,Schuyler,Schuyler,NE,--3-----,RQ,9307,,4127N 09703W, +,US,SHK,Shrub Oak,Shrub Oak,NY,--3-----,RQ,9307,,4120N 07350W, +,US,SHL,Sharon Hill,Sharon Hill,PA,--3-----,RQ,9307,,3954N 07516W, +,US,SHM,Sharon,Sharon,MA,--3-----,RQ,9008,,4207N 07111W, +,US,SHN,Shelton,Shelton,WA,---4----,AI,9601,,4713N 12306W, +,US,SHO,Shannon,Shannon,GA,--3-----,RQ,9307,,3421N 08505W, +,US,SHQ,Sharon,Sharon,PA,--3-----,RQ,9307,,4114N 08030W, +,US,SHR,Sheridan,Sheridan,WY,--34----,AI,9601,,4448N 10657W, +,US,SHS,Sharon Springs,Sharon Springs,NY,--3-----,RQ,9307,,4248N 07437W, +,US,SHT,Stonehurst,Stonehurst,CA,--3-----,RQ,9307,,3415N 11822W, +,US,SHU,Shrewsbury,Shrewsbury,MA,--3-----,RQ,9307,,4218N 07143W, +,US,SHV,Shreveport,Shreveport,LA,--34----,AI,9601,,3231N 09345W, +,US,SHX,Shageluk,Shageluk,AK,---4----,AI,0001,,6240N 15933W, +,US,SIA,Scotia,Scotia,CA,--3-----,RQ,9307,,4029N 12406W, +,US,SIB,Silver Bay,Silver Bay,MN,1-3-----,RN,0105,,4718N 09115W, +,US,SIC,Steilacoom,Steilacoom,WA,--3-----,RQ,9307,,4710N 12236W, +,US,SID,Schiller Park,Schiller Park,IL,--3-----,RQ,9307,,4157N 08752W, +,US,SIE,Silver Springs,Silver Springs,FL,--3-----,RQ,9307,,2913N 08203W, +,US,SIF,Silverdale,Silverdale,WA,--3-----,RQ,9307,,4740N 12241W, +,US,SIG,Sterling,Sterling,AK,--3-----,RQ,9307,,6032N 15048W, +,US,SIH,Showell,Showell,MD,--3-----,RQ,9307,,3824N 07513W, +,US,SII,Signal Hill,Signal Hill,CA,--3-----,RQ,9307,,3348N 11810W, +,US,SIJ,Simpsonville,Simpsonville,KY,--3-----,RQ,9307,,3813N 08521W, +,US,SIK,Sikeston,Sikeston,MO,--34----,AI,9601,,3653N 08935W, +,US,SIL,Suitland,Suitland,MD,--3-----,RL,9909,,3851N 07655W, +,US,SIM,Sierra Madre,Sierra Madre,CA,--3-----,RQ,9307,,3410N 11803W, +,US,SIN,Singer Island,Singer Island,FL,--3-----,RQ,9307,,2647N 08002W, +,US,SIQ,Springhill,Springhill,LA,--3-----,RQ,9307,,3300N 09328W, +,US,SIR,Siler City,Siler City,NC,--3-----,RQ,9307,,3543N 07928W, +,US,SIS,Silver Spring,Silver Spring,MD,--3-----,RQ,9307,,3860N 07702W, +,US,SIT,Sitka,Sitka,AK,---4----,AI,9601,,5703N 13520W, +,US,SIU,Simi Valley,Simi Valley,CA,--3-----,RQ,9307,,3416N 11845W, +,US,SIV,Sullivan,Sullivan,IN,---4----,AI,0001,,3906N 08724W, +,US,SIW,Sheridan,Sheridan,AR,--3-----,RQ,9307,,3419N 09224W, +,US,SIY,Montague,Montague,CA,---4----,AI,0001,,4144N 12232W, +,US,SJA,Saint James,Saint James,MN,--3-----,RQ,1101,,4359N 09438W, +,US,SJB,San Ramon,San Ramon,CA,--3-----,RQ,9307,,3746N 12157W, +,US,SJC,San Jose,San Jose,CA,1--4----,AI,9506,,3720N 12153W, +,US,SJD,Sandy,Sandy,OR,--3-----,RQ,9307,,4524N 12216W, +,US,SJE,Sandy,Sandy,UT,--3-----,RQ,9307,,4034N 11154W, +,US,SJG,Sheridan,Sheridan,OR,--3-----,RQ,9307,,4506N 12324W, +,US,SJJ,Sherman Oaks,Sherman Oaks,CA,--3-----,RQ,9307,,3409N 11827W, +,US,SJK,Sherrard,Sherrard,IL,--3-----,RQ,9307,,4119N 09030W, +,US,SJL,Southampton,Southampton,PA,--3-----,RQ,9307,,4010N 07503W, +,US,SJM,Saint James,Saint James,OH,--3-----,RQ,1101,,4040N 08250W, +,US,SJN,Saint Johns,Saint Johns,AZ,---4----,AI,1101,,3318N 11212W, +,US,SJQ,Saginaw,Saginaw,TX,--3-----,RQ,9307,,3252N 09722W, +,US,SJR,Shirley,Shirley,MA,--3-----,RQ,9307,,4233N 07139W, +,US,SJT,San Angelo,San Angelo,TX,---4----,AI,9601,,3128N 10026W, +,US,SJU,Sherwood,Sherwood,OR,--3-----,RQ,9307,,4521N 12250W, +,US,SJV,Shorewood,Shorewood,OR,--3-----,RQ,9307,,4327N 12413W, +,US,SJW,Saint Marys,Saint Marys,GA,--3-----,RQ,1101,,3227N 08456W, +,US,SJY,Sun City,Sun City,FL,--3-----,RQ,9307,,2741N 08229W, +,US,SJZ,Stevenson,Stevenson,AL,--3-----,RQ,9307,,3452N 08550W, +,US,SKB,Stockbridge,Stockbridge,GA,--3-----,RQ,9307,,3333N 08414W, +,US,SKE,Shakopee,Shakopee,MN,--3-----,RQ,9307,,4448N 09332W, +,US,SKG,Stockbridge,Stockbridge,MI,--3-----,RQ,0101,,4228N 08412W, +,US,SKI,Selkirk,Selkirk,NY,--3-----,RQ,9307,,4232N 07348W, +,US,SKJ,Sitkinak Island,Sitkinak Island,AK,---4----,AI,0001,,5633N 15412W, +,US,SKK,Shaktoolik,Shaktoolik,AK,---4----,AI,0001,,6421N 16111W, +,US,SKL,Schuylkill,Schuylkill,PA,--3-----,RQ,9307,,3957N 07511W, +,US,SKM,Saint Martinville,Saint Martinville,LA,--3-----,RQ,1101,,3008N 09150W, +,US,SKQ,Suncook,Suncook,NH,--3-----,RQ,9307,,4308N 07127W, +,US,SKU,Schuylkill Haven,Schuylkill Haven,PA,--3-----,RQ,9307,,4038N 07610W, +,US,SLA,Sallisaw,Sallisaw,OK,--3-----,RQ,9307,,3528N 09447W, +,US,SLB,Storm Lake,Storm Lake,IA,---4----,AI,9601,,4239N 09512W, +,US,SLC,Salt Lake City,Salt Lake City,UT,---4----,AI,9601,,4046N 11153W, +,US,SLD,Sutherlin,Sutherlin,OR,--3-----,RQ,9307,,4323N 12319W, +,US,SLE,Salem,Salem,OR,--34----,AI,9601,,4456N 12302W, +,US,SLF,Salem,Salem,IN,--3-----,RQ,9307,,3836N 08606W, +,US,SLG,Siloam Springs,Siloam Springs,AR,---4----,AI,9601,,3611N 09432W, +,US,SLK,Saranac Lake,Saranac Lake,NY,--34----,AI,9901,,4420N 07408W, +,US,SLL,Saltillo,Saltillo,MS,--3-----,RQ,9307,,3423N 08841W, +,US,SLM,Salem,Salem,MA,1-3-----,RN,0105,,4231N 07054W, +,US,SLN,Salina,Salina,KS,--34----,AI,9601,,3850N 09737W, +,US,SLP,Sulphur,Sulphur,LA,--3-----,RQ,9307,,3014N 09323W, +,US,SLQ,Sleetmute,Sleetmute,AK,---4----,AI,0001,,6139N 15708W, +,US,SLR,Sulphur Springs,Sulphur Springs,TX,---4----,AI,9601,,3308N 09536W, +,US,SLS,Salisbury,Salisbury,MA,--3-----,RQ,9307,,4251N 07052W, +,US,SLT,Salida,Salida,CO,--34----,AI,9601,,3832N 10559W, +,US,SLU,San Luis,San Luis,CO,--3-----,RQ,9307,,3712N 10525W, +,US,SLV,Slatersville,Slatersville,RI,--3-----,RQ,9307,,4200N 07135W, +,US,SLY,Sealy,Sealy,TX,--3-----,RQ,9307,,2947N 09609W, +,US,SLZ,Saint Louis Park,Saint Louis Park,MN,--3-----,RQ,1101,,4457N 09321W, +,US,SMB,Saint Matthews,Saint Matthews,SC,--3-----,RQ,1101,,3340N 08047W, +,US,SMC,San Marcos,San Marcos,TX,--3-----,RQ,9307,,2953N 09756W, +!,US,SMD,San Marino,San Marino,CA,--3-----,RQ,9307,,3407N 11806W, +,US,SME,Somerset,Somerset,KY,---4----,AI,9601,,3706N 08436W, +!,US,SMF,Smithfield,Smithfield,NC,--3-----,RQ,9307,,3531N 07821W, +,US,SMH,Stratham,Stratham,NH,--3-----,RQ,9307,,4301N 07055W, +,US,SMI,Smithville,Smithville,GA,--3-----,RQ,9307,,3154N 08415W, +,US,SMJ,Strathmore,Strathmore,CA,--3-----,RQ,9307,,3608N 11904W, +,US,SMK,Saint Michael,Saint Michael,AK,---4----,AI,1101,,6329N 16202W, +,US,SMM,Strathmere,Strathmere,NJ,--3-----,RQ,9307,,3912N 07439W, +,US,SMN,Salmon,Salmon,ID,---4----,AI,0001,,4511N 11354W, +,US,SMO,Santa Monica,Santa Monica,CA,---4----,AI,9601,,3401N 11829W, +,US,SMP,Sampit,Sampit,SC,--3-----,RQ,9307,,3322N 07928W, +,US,SMQ,Salem,Salem,MO,--3-----,RQ,9307,,3739N 09132W, +,US,SMR,Saint Marys,Saint Marys,OH,--3-----,RQ,1101,,4033N 08423W, +,US,SMT,Smithfield,Smithfield,VA,--3-----,RQ,9307,,3659N 07638W, +,US,SMU,Sheep Mountain,Sheep Mountain,AK,---4----,AI,0001,,6150N 14731W, +,US,SMV,Somerdale,Somerdale,NJ,--3-----,RL,0002,,3951N 07501W, +,US,SMW,Streamwood,Streamwood,IL,--3-----,RQ,9307,,4202N 08811W, +,US,SMY,Smyrna,Smyrna,GA,--3-----,RQ,9008,,3353N 08431W, +,US,SMZ,Summit,Summit,AL,--3-----,RQ,9307,,3412N 08630W, +,US,SNB,Strang,Strang,TX,-2------,RQ,0207,,3625N 09508W, +,US,SND,Sunland,Sunland,CA,--3-----,RQ,9307,,3416N 11818W, +,US,SNE,Seneca,Seneca,MO,--3-----,RQ,9307,,3650N 09437W, +,US,SNG,Southington,Southington,CT,--3-----,RQ,9307,,4136N 07253W, +,US,SNH,San Leandro,San Leandro,CA,--3-----,RQ,9307,,3743N 12209W, +,US,SNI,Snohomish,Snohomish,WA,--3-----,RQ,0101,,4755N 12206W, +,US,SNK,Snyder,Snyder,TX,---4----,AI,9601,,3243N 10055W, +,US,SNL,Shawnee,Shawnee,OK,--34----,AI,9601,,3520N 09656W, +,US,SNM,San Marcos,San Marcos,CA,--3-----,RQ,9307,,3308N 11710W, +,US,SNN,Sunnyvale,Sunnyvale,CA,--3-----,RQ,9008,,3722N 12202W, +,US,SNO,Swannanoa,Swannanoa,NC,--3-----,RQ,9307,,3536N 08224W, +,US,SNP,Saint Paul Island,Saint Paul Island,AK,---4----,AI,1101,,5711N 17017W, +,US,SNQ,Savanna,Savanna,IL,--3-----,RQ,9307,,4206N 09009W, +,US,SNR,Severna Park,Severna Park,MD,--3-----,RQ,9501,,3904N 07633W, +,US,SNS,Salinas,Salinas,CA,--34----,AI,9601,,3640N 12139W, +,US,SNT,Sioux Center,Sioux Center,IA,--3-----,RL,0001,,4305N 09611W, +,US,SNU,Springville,Springville,UT,--3-----,RQ,0101,,4010N 11137W, +,US,SNV,Sandersville,Sandersville,GA,--3-----,RQ,9008,,3259N 08249W, +,US,SNW,Stanwood,Stanwood,WA,--3-----,RQ,9307,,4815N 12221W, +,US,SNX,Spenard,Spenard,AK,--3-----,RQ,9307,,6111N 14954W, +,US,SNY,Sidney,Sidney,NE,---4----,AI,9601,,4109N 10259W, +,US,SNZ,Spencer,Spencer,WI,--3-----,RQ,9307,,4445N 09018W, +,US,SOA,Scotia,Scotia,NY,--3-----,RQ,9307,,4250N 07358W, +,US,SOB,Sodus,Sodus,MI,--3-----,RQ,9008,,4201N 08622W, +,US,SOC,Saint Cloud,Saint Cloud,FL,--3-----,RQ,1101,,2815N 08117W, +,US,SOD,Sodus Point,Sodus Point,NY,1-3-----,RN,0105,,4316N 07659W, +,US,SOE,Seminole,Seminole,TX,--3-----,RQ,9307,,3243N 10239W, +,US,SOF,South Bay,South Bay,FL,--3-----,RQ,9307,,2640N 08043W, +,US,SOG,South Boston,South Boston,VA,--3-----,RQ,9307,,3642N 07854W, +,US,SOH,South Haven,South Haven,MI,1-3-----,RN,0105,,4224N 08616W, +,US,SOI,South Dayton,South Dayton,NY,--3-----,RQ,9307,,4222N 07903W, +,US,SOJ,Somerset,Somerset,NJ,--3-----,RQ,9008,,4030N 07429W, +,US,SOK,Skokie,Skokie,IL,--3-----,RQ,9307,,4202N 08745W, +,US,SOL,Solomon,Solomon,AK,---4----,AI,0001,,6434N 16426W, +,US,SOM,Somerville,Somerville,NJ,--3-----,RQ,9307,,4034N 07437W, +,US,SON,South Norwalk,South Norwalk,CT,--3-----,RQ,9307,,4106N 07325W, +,US,SOO,Solon,Solon,OH,--3-----,RQ,9307,,4123N 08126W, +,US,SOP,Southern Pines,Southern Pines,NC,---4----,AI,9601,,3510N 07924W, +,US,SOQ,South Grafton,South Grafton,MA,--3-----,RQ,9307,,4214N 07145W, +,US,SOR,Sonora,Sonora,CA,--3-----,RQ,9307,,3759N 12023W, +,US,SOS,Spring Park,Spring Park,MN,--3-----,RQ,9307,,4456N 09338W, +,US,SOT,Souderton,Souderton,PA,--3-----,RQ,9307,,4019N 07520W, +,US,SOU,Stoughton,Stoughton,MA,--3-----,RQ,9307,,4208N 07106W, +,US,SOV,Seldovia,Seldovia,AK,---4----,AI,9601,,5926N 15143W, +,US,SOW,Show Low,Show Low,AZ,--34----,AI,9601,,3415N 11002W, +,US,SOX,South Portland,South Portland,ME,--3-----,RQ,9307,,4338N 07014W, +,US,SOY,Sonoma,Sonoma,CA,--3-----,RQ,9307,,3818N 12227W, +,US,SOZ,Somerset,Somerset,TX,--3-----,RQ,9307,,2914N 09839W, +,US,SPA,Spartanburg,Spartanburg,SC,--34----,AI,9601,,3457N 08156W, +,US,SPC,Spencer,Spencer,NY,--3-----,RQ,9307,,4213N 07630W, +,US,SPD,Springdale,Springdale,PA,--3-----,RQ,9008,,4032N 07947W, +,US,SPE,Sun Prairie,Sun Prairie,WI,--3-----,RQ,9307,,4311N 08913W, +,US,SPF,Spearfish,Spearfish,SD,---4----,AI,0001,,4429N 10352W, +,US,SPG,Springfield,Springfield,VA,--3-----,RQ,9307,,3847N 07711W, +,US,SPH,South Point,South Point,OH,--3-----,RQ,9307,,3825N 08235W, +,US,SPI,Springfield,Springfield,IL,--34----,AI,9601,,3948N 08939W, +,US,SPJ,Scotch Plains,Scotch Plains,NJ,--3-----,RQ,9307,,4039N 07423W, +,US,SPK,Sparks,Sparks,NV,--3-----,RQ,9307,,3932N 11945W, +,US,SPL,Springville,Springville,AL,--3-----,RQ,9307,,3347N 08628W, +,US,SPM,Sparks,Sparks,GA,--3-----,RQ,9307,,3110N 08326W, +,US,SPN,Spring Valley,Spring Valley,IL,--3-----,RQ,9506,,4120N 08912W, +,US,SPO,Spooner,Spooner,WI,--3-----,RQ,9506,,4551N 09149W, +,US,SPP,Spencer,Spencer,OH,--3-----,RQ,9307,,4106N 08207W, +,US,SPQ,San Pedro,San Pedro,CA,1--4----,AI,9601,,3344N 11818W, +,US,SPR,Spencer,Spencer,MA,--3-----,RQ,9008,,4215N 07160W, +,US,SPU,Spruce Pine,Spruce Pine,NC,--3-----,RQ,9506,,3555N 08204W, +,US,SPW,Spencer,Spencer,IA,--34----,AI,9601,,4308N 09509W, +!,US,SPX,Sparta,Sparta,TN,--3-----,RQ,9307,,3556N 08528W, +,US,SPY,Springfield,Springfield,OR,--3-----,RQ,9307,,4403N 12301W, +,US,SPZ,Springdale,Springdale,AR,---4----,AI,9601,,3611N 09408W, +,US,SQA,Santa Ynez,Santa Ynez,CA,---4----,AI,0001,,3437N 12005W, +,US,SQB,Scottsboro,Scottsboro,AL,--3-----,RQ,9307,,3440N 08602W, +,US,SQC,Selma,Selma,NC,--3-----,RQ,9307,,3532N 07817W, +,US,SQD,Selma,Selma,TX,--3-----,RQ,9307,,2935N 09818W, +,US,SQE,Selmer,Selmer,TN,--3-----,RQ,9307,,3510N 08836W, +,US,SQF,Sepulveda,Sepulveda,CA,--3-----,RQ,9307,,3415N 11828W, +,US,SQH,Sparta,Sparta,MI,--3-----,RQ,9307,,4310N 08544W, +,US,SQJ,Succasunna,Succasunna,NJ,--3-----,RQ,9307,,4052N 07438W, +,US,SQK,Sheldon Springs,Sheldon Springs,VT,--3-----,RQ,9307,,4454N 07259W, +,US,SQL,San Carlos,San Carlos,CA,---4----,AI,9601,,3730N 12216W, +,US,SQM,Skillman,Skillman,NJ,--3-----,RQ,9307,,4025N 07443W, +,US,SQO,Springboro,Springboro,OH,--3-----,RQ,9307,,3933N 08414W, +,US,SQP,Sheldon,Sheldon,MO,--3-----,RQ,9307,,3739N 09418W, +,US,SQQ,Soquel,Soquel,CA,--3-----,RQ,9307,,3659N 12157W, +,US,SQR,Shelton,Shelton,CT,--3-----,RQ,9307,,4119N 07306W, +,US,SQS,Saint Peters,Saint Peters,MO,--3-----,RQ,1101,,3847N 09036W, +,US,SQT,Squaw Valley,Squaw Valley,CA,--3-----,RQ,9307,,3642N 11912W, +,US,SQU,Seguin,Seguin,TX,--3-----,RQ,9307,,2934N 09758W, +,US,SQV,Sequim,Sequim,WA,---4----,AI,9601,,4805N 12307W, +,US,SQW,Seneca,Seneca,SC,--3-----,RQ,9307,,3441N 08257W, +,US,SQY,Sneedville,Sneedville,TN,--3-----,RQ,9307,,3632N 08313W, +,US,SQZ,Selma,Selma,CA,--3-----,RQ,9307,,3634N 11937W, +,US,SRA,Sauk Rapids,Sauk Rapids,MN,--3-----,RQ,9307,,4535N 09410W, +,US,SRC,Searcy,Searcy,AR,---4----,AI,9601,,3515N 09144W, +,US,SRF,San Rafael,San Rafael,CA,--34----,AI,9601,,3758N 12232W, +,US,SRG,Springfield,Springfield,TN,--3-----,RQ,9307,,3631N 08653W, +,US,SRH,Shoreham,Shoreham,VT,--3-----,RQ,9307,,4354N 07319W, +,US,SRJ,Sunbury,Sunbury,PA,--3-----,RQ,9307,,4052N 07648W, +,US,SRK,Sanger,Sanger,CA,--3-----,RQ,9307,,3642N 11933W, +,US,SRL,Springdale,Springdale,OH,--3-----,RQ,9307,,3917N 08429W, +,US,SRM,Sparks,Sparks,MD,--3-----,RQ,9806,,3907N 07601W, +,US,SRO,Spring Hope,Spring Hope,NC,--3-----,RQ,9307,,3557N 07807W, +,US,SRP,Searsport,Searsport,ME,1-3-----,RN,0105,,4428N 06855W, +,US,SRQ,Sarasota-Bradenton Apt,Sarasota-Bradenton Apt,FL,--34----,AI,9601,,2724N 08233W, +,US,SRR,Sherburne,Sherburne,NY,--3-----,RQ,9307,,4241N 07530W, +,US,SRS,Strasburg,Strasburg,VA,--3-----,RQ,9008,,3859N 07822W, +,US,SRU,Santa Cruz,Santa Cruz,CA,1--4----,AI,9506,,3658N 12202W, +,US,SRV,Stony River,Stony River,AK,---4----,AI,0001,,6148N 15635W, +,US,SRX,Sturtevant,Sturtevant,WI,--3-----,RQ,9307,,4242N 08754W, +,US,SRY,Simpsonville,Simpsonville,SC,--3-----,RQ,9008,,3444N 08215W, +,US,SRZ,Sunbury,Sunbury,OH,--3-----,RQ,9307,,4015N 08252W, +,US,SSA,South Paris,South Paris,ME,--3-----,RQ,9307,,4413N 07031W, +,US,SSB,Saint Bernard,Saint Bernard,OH,--3-----,RQ,1101,,3910N 08430W, +,US,SSC,Sumter,Sumter,SC,--34----,AI,1801,,3355N 08020W, +,US,SSD,South Pasadena,South Pasadena,CA,--3-----,RQ,9307,,3407N 11809W, +,US,SSE,South River,South River,NJ,--3-----,RQ,9307,,4027N 07423W, +!,US,SSF,Southard,Southard,OK,--3-----,RQ,9307,,3603N 09829W, +,US,SSG,Shippensburg,Shippensburg,PA,--3-----,RQ,9307,,4003N 07731W, +,US,SSH,South Shore,South Shore,KY,--3-----,RQ,9008,,3843N 08258W, +,US,SSI,Brunswick,Brunswick,GA,1--4----,AI,0001,,3109N 08129W, +,US,SSJ,Somis,Somis,CA,--3-----,RQ,9307,,3415N 11860W, +,US,SSK,Southampton,Southampton,NY,--3-----,RQ,9307,,4053N 07223W, +,US,SSL,Saint Charles,Saint Charles,IL,--3-----,RQ,1101,,3847N 09029W, +,US,SSM,Sault Sainte Marie,Sault Sainte Marie,MI,1--4----,AI,1101,,4629N 08425W, +,US,SSN,Snyder,Snyder,NE,--3-----,RQ,9307,,4142N 09647W, +,US,SSO,South Sioux City,South Sioux City,NE,--3-----,RQ,9307,,4228N 09625W, +,US,SSP,South Range,South Range,MI,--3-----,RQ,9307,,4704N 08839W, +,US,SSQ,South Pierce,South Pierce,FL,--3-----,RQ,9307,,2724N 08020W, +,US,SSR,Sardis,Sardis,MS,--3-----,RQ,9307,,3426N 08955W, +,US,SSS,Saint Simons Island,Saint Simons Island,GA,--3-----,RQ,1101,,3113N 08122W, +,US,SST,South River,South River,MO,--3-----,RQ,9307,,3950N 09127W, +,US,SSU,White Sulphur Springs,White Sulphur Springs,WV,---4----,AI,0001,,3748N 08018W, +,US,SSV,Strongsville,Strongsville,OH,--3-----,RQ,9307,,4119N 08150W, +,US,SSW,Stuart Island,Stuart Island,WA,---4----,AI,0001,,4840N 12310W, +,US,SSX,Somersworth,Somersworth,NH,--3-----,RQ,9806,,4316N 07052W, +,US,SSY,Sussex,Sussex,WI,--3-----,RQ,9307,,4308N 08813W, +,US,STB,Stafford,Stafford,VA,--3-----,RQ,9307,,3825N 07725W, +,US,STC,Saint Cloud,Saint Cloud,MN,---4----,AI,1101,,4534N 09410W, +,US,STD,Stafford,Stafford,TX,--3-----,RQ,9307,,2937N 09533W, +,US,STE,Stevens Point,Stevens Point,WI,---4----,AI,9601,,4431N 08934W, +,US,STF,Stamford,Stamford,TX,--3-----,RQ,9307,,3257N 09948W, +,US,STG,Saint George Island,Saint George Island,AK,1--4----,AI,1101,,5634N 16935W, +,US,STH,Saint Helens,Saint Helens,OR,1-3-----,RN,1101,,4552N 12248W, +,US,STK,Sterling,Sterling,CO,---4----,AI,9601,,4038N 10312W, +,US,STM,Stamps,Stamps,AR,--3-----,RQ,9307,,3322N 09330W, +,US,STN,Stanhope,Stanhope,NJ,--3-----,RQ,9307,,4054N 07443W, +,US,STO,Stone,Stone,SC,--3-----,RQ,9307,,4031N 12407W, +,US,STP,Saint Paul,Saint Paul,MN,1-34----,AI,1101,MSP,4457N 09306W, +,US,STR,Streator,Streator,IL,--3-----,RQ,9307,,4107N 08850W, +,US,STS,Santa Rosa,Santa Rosa,CA,--34----,AI,9601,,3826N 12243W, +,US,STT,Stockertown,Stockertown,PA,--3-----,RQ,9307,,4045N 07516W, +,US,STU,Stoneham,Stoneham,MA,--3-----,RQ,9506,,4229N 07106W, +,US,STV,Stoneville,Stoneville,MS,--3-----,RQ,9307,,3325N 09055W, +,US,STW,Strausstown,Strausstown,PA,--3-----,RQ,9307,,4030N 07611W, +,US,STX,Stanton,Stanton,TX,--3-----,RQ,9307,,3208N 10147W, +,US,STY,Smithtown,Smithtown,NY,--3-----,RQ,9307,,4051N 07312W, +,US,SUA,Stuart,Stuart,FL,--34----,AI,9601,,2712N 08015W, +,US,SUC,Sundance,Sundance,WY,---4----,AI,0001,,4424N 10423W, +,US,SUD,Stroud,Stroud,OK,---4----,AI,0001,,3545N 09639W, +,US,SUE,Sturgeon Bay,Sturgeon Bay,WI,---4----,AI,9601,,4450N 08723W, +,US,SUF,Suffolk,Suffolk,VA,--3-----,RQ,9307,,3644N 07635W, +,US,SUG,Sulligent,Sulligent,AL,--3-----,RQ,9008,,3354N 08808W, +,US,SUH,Summerhill,Summerhill,PA,--3-----,RQ,9307,,4023N 07846W, +,US,SUI,South Holland,South Holland,IL,--3-----,RQ,9307,,4136N 08736W, +,US,SUJ,Suffern,Suffern,NY,--3-----,RQ,9307,,4107N 07409W, +,US,SUK,Shattuck,Shattuck,OK,--3-----,RQ,9307,,3616N 09953W, +,US,SUM,Stone Mountain,Stone Mountain,GA,--3-----,RQ,9307,,3348N 08410W, +,US,SUO,Sun River,Sun River,OR,---4----,AI,0001,,4732N 11143W, +,US,SUP,Sutton,Sutton,WV,--3-----,RQ,9307,,3840N 08043W, +,US,SUQ,Success,Success,MO,--3-----,RQ,9307,,3727N 09205W, +,US,SUR,Sudbury,Sudbury,MA,--3-----,RQ,9307,,4223N 07125W, +,US,SUS,Spirit of Saint Louis Apt/Saint Louis,Spirit of Saint Louis Apt/Saint Louis,MO,---4----,AI,1101,,3840N 09039W, +,US,SUU,Fairfield,Fairfield,CA,---4----,AI,9601,,3815N 12202W, +,US,SUV,Saugerties,Saugerties,NY,--3-----,RQ,9506,,4205N 07357W, +,US,SUW,Superior,Superior,WI,1--4----,AI,9601,,4643N 09206W, +,US,SUX,Sioux City,Sioux City,IA,1--4----,AI,0207,,4230N 09624W, +,US,SUY,Sunnyside,Sunnyside,WA,--3-----,RQ,9307,,4619N 12000W, +,US,SUZ,Sublimity,Sublimity,OR,--3-----,RQ,9307,,4450N 12248W, +,US,SVA,Savoonga,Savoonga,AK,---4----,AI,0001,,6342N 17029W, +,US,SVB,Shickshinny,Shickshinny,PA,--3-----,RQ,9307,,4109N 07609W, +,US,SVC,Silver City,Silver City,NM,---4----,AI,0001,,3246N 10817W, +,US,SVD,Sunnyvale,Sunnyvale,TX,--3-----,RQ,9307,,3248N 09634W, +,US,SVE,Susanville,Susanville,CA,---4----,AI,0001,,4025N 12039W, +,US,SVF,Shiremanstown,Shiremanstown,PA,--3-----,RQ,9307,,4013N 07657W, +,US,SVG,Suwanee,Suwanee,GA,--3-----,RQ,9307,,3403N 08404W, +,US,SVH,Statesville,Statesville,NC,--34----,AI,9601,,3547N 08053W, +,US,SVI,Seagoville,Seagoville,TX,--3-----,RQ,9307,,3239N 09633W, +,US,SVJ,Severn,Severn,VA,--3-----,RQ,9307,,3718N 07628W, +,US,SVK,Slate Hill,Slate Hill,NY,--3-----,RQ,9307,,4123N 07429W, +,US,SVL,Schererville,Schererville,IN,--3-----,RQ,0101,,4129N 08727W, +,US,SVM,Slater,Slater,MO,--3-----,RQ,9307,,3913N 09304W, +!,US,SVN,Severn,Severn,NC,--3-----,RQ,9307,,3631N 07711W, +,US,SVO,Summitville,Summitville,OH,--3-----,RQ,9307,,4041N 08053W, +,US,SVP,Slatington,Slatington,PA,--3-----,RQ,9307,,4045N 07537W, +,US,SVR,Silver Springs,Silver Springs,NY,--3-----,RQ,9307,,4240N 07805W, +,US,SVS,Stevens Village,Stevens Village,AK,---4----,AI,0001,,6602N 14907W, +,US,SVT,Slippery Rock,Slippery Rock,PA,--3-----,RQ,9307,,4104N 08003W, +,US,SVU,Sevierville,Sevierville,TN,--3-----,RQ,9307,,3552N 08334W, +,US,SVV,Stevensville,Stevensville,MD,--3-----,RQ,9307,,3859N 07619W, +,US,SVW,Sparrevohn,Sparrevohn,AK,---4----,AI,0001,,6106N 15534W, +,US,SVX,Stoneville,Stoneville,NC,--3-----,RQ,9307,,3627N 07955W, +,US,SVY,Sun Valley,Sun Valley,CA,--3-----,RQ,9307,,3413N 11823W, +,US,SVZ,Shelbyville,Shelbyville,KY,--3-----,RQ,9307,,3813N 08513W, +,US,SWA,Swanton,Swanton,VT,--3-----,RQ,9307,,4455N 07307W, +,US,SWB,Sebewaing,Sebewaing,MI,--3-----,RQ,9307,,4343N 08325W, +,US,SWC,Sandwich,Sandwich,MA,--3-----,RQ,9307,,4145N 07030W, +,US,SWD,Seward,Seward,AK,---4----,AI,9601,,6006N 14926W, +,US,SWF,Newburgh,Newburgh,NY,---4----,AI,9601,,4130N 07401W, +,US,SWH,Sandwich,Sandwich,IL,--3-----,RQ,9012,,4139N 08837W, +,US,SWI,Swissvale,Swissvale,PA,--3-----,RQ,9307,,4025N 07953W, +,US,SWJ,Swainsboro,Swainsboro,GA,--3-----,RQ,9307,,3236N 08220W, +,US,SWK,Seekonk,Seekonk,MA,--3-----,RQ,9307,,4149N 07120W, +,US,SWL,Stonewall,Stonewall,MS,--3-----,RQ,9307,,3208N 08848W, +,US,SWN,Sewaren,Sewaren,NJ,--3-----,RQ,9307,,4033N 07416W, +,US,SWO,Stillwater,Stillwater,OK,--34----,AI,1607,,3607N 09704W, +,US,SWQ,Swanton,Swanton,OH,--3-----,RQ,9307,,4135N 08354W, +,US,SWS,Shawano,Shawano,WI,--3-----,RQ,9307,,4447N 08837W, +,US,SWT,Stow,Stow,OH,--3-----,RQ,9307,,4110N 08126W, +,US,SWU,South Pittsburg,South Pittsburg,TN,--3-----,RQ,9307,,3501N 08542W, +,US,SWV,Summersville,Summersville,WV,--3-----,RQ,9307,,3817N 08051W, +,US,SWW,Sweetwater,Sweetwater,TX,--34----,AI,2101,,3228N 10024W, +,US,SWX,South Windham,South Windham,ME,--3-----,RQ,9307,,4344N 07025W, +,US,SWY,Spanaway,Spanaway,WA,--3-----,RQ,9307,,4705N 12225W, +,US,SWZ,Swepsonville,Swepsonville,NC,--3-----,RQ,9506,,3601N 07922W, +,US,SXA,Salem,Salem,NH,--3-----,RQ,9307,,4247N 07112W, +,US,SXB,San Bruno,San Bruno,CA,--3-----,RQ,9307,,3737N 12225W, +,US,SXD,Santee,Santee,CA,--3-----,RQ,9307,,3250N 11658W, +,US,SXE,Strong,Strong,ME,--3-----,RQ,9307,,4448N 07013W, +,US,SXF,San Mateo,San Mateo,CA,1-3-----,RN,0105,,3734N 12220W, +,US,SXH,Saint Pauls,Saint Pauls,NC,--3-----,RQ,1101,,3448N 07858W, +,US,SXJ,San Martin,San Martin,CA,--3-----,RQ,9307,,3705N 12137W, +,US,SXK,Starkville,Starkville,MS,--3-----,RQ,9307,,3328N 08849W, +,US,SXL,Sauk Village,Sauk Village,IL,--3-----,RQ,9307,,4129N 08734W, +,US,SXN,Samson,Samson,AL,--3-----,RQ,9307,,3107N 08603W, +,US,SXQ,Soldotna,Soldotna,AK,---4----,AI,9601,,6029N 15104W, +,US,SXR,Sevier,Sevier,NC,--3-----,RQ,9307,,3548N 08201W, +,US,SXS,Society Hill,Society Hill,SC,--3-----,RQ,9307,,3431N 07951W, +,US,SXT,Santa Teresa,Santa Teresa,NM,--3-----,RQ,9307,,3152N 10639W, +,US,SXU,Sutton,Sutton,AK,--3-----,RQ,9307,,6143N 14854W, +,US,SXV,Silver Creek,Silver Creek,GA,--3-----,RQ,9307,,3411N 08510W, +,US,SXW,Saint Paul,Saint Paul,AL,--3-----,RQ,1101,,4457N 09306W, +,US,SYA,Shemya,Shemya,AK,---4----,AI,0001,,5243N 17406E, +,US,SYC,Sycamore,Sycamore,IL,--3-----,RQ,9307,,4159N 08841W, +,US,SYD,Sebastopol,Sebastopol,CA,--3-----,RQ,9307,,3823N 12250W, +,US,SYF,South San Francisco,South San Francisco,CA,--3-----,RQ,9307,,3739N 12225W, +,US,SYG,Savoy,Savoy,IL,--3-----,RQ,9307,,4003N 08815W, +,US,SYH,Shelbyville,Shelbyville,IN,--3-----,RQ,9307,,3931N 08547W, +,US,SYI,Shelbyville,Shelbyville,TN,---4----,AI,9601,,3529N 08628W, +,US,SYJ,Stanley,Stanley,VA,--3-----,RQ,9307,,3835N 07830W, +,US,SYK,Saybrook,Saybrook,CT,--3-----,RQ,9307,,4118N 07223W, +,US,SYL,San Miguel,San Miguel,CA,---4----,AI,0001,,3545N 12042W, +,US,SYM,South Hadley,South Hadley,MA,--3-----,RQ,9307,,4216N 07235W, +,US,SYN,Stanton,Stanton,MN,---4----,AI,0001,,4428N 09301W, +,US,SYP,Sandy Point,Sandy Point,ME,1-3-----,RN,0105,,4431N 06849W, +,US,SYQ,Syosset,Syosset,NY,--3-----,RQ,9008,,4050N 07330W, +,US,SYR,Syracuse,Syracuse,NY,1--4----,AI,0001,,4303N 07609W, +,US,SYS,Sayville,Sayville,NY,--3-----,RQ,9307,,4044N 07305W, +,US,SYT,Saint Louis,Saint Louis,MI,--3-----,RQ,1101,,4325N 08436W, +,US,SYU,Sylacauga,Sylacauga,AL,--3-----,RQ,9307,,3310N 08615W, +,US,SYV,Sylvester,Sylvester,GA,--34----,AI,9601,,3132N 08350W, +,US,SYW,Seymour,Seymour,WI,--3-----,RQ,9307,,4431N 08820W, +,US,SYX,Supreme,Supreme,LA,--3-----,RQ,9307,,2952N 09060W, +,US,SYY,Sylmar,Sylmar,CA,--3-----,RQ,9307,,3418N 11827W, +,US,SYZ,Syracuse,Syracuse,IN,--3-----,RQ,9307,,4126N 08545W, +,US,SZA,Sparta,Sparta,NJ,--3-----,RQ,9307,,4102N 07438W, +,US,SZB,Solana Beach,Solana Beach,CA,--3-----,RQ,9307,,3259N 11716W, +,US,SZC,Scholls,Scholls,OR,--3-----,RQ,9307,,4524N 12255W, +,US,SZD,Scottdale,Scottdale,GA,--3-----,RQ,9307,,3347N 08416W, +,US,SZE,Scottdale,Scottdale,PA,--3-----,RQ,9307,,4006N 07935W, +,US,SZF,Scottsville,Scottsville,TX,--3-----,RQ,9307,,3232N 09414W, +,US,SZG,Sebastian,Sebastian,FL,--3-----,RQ,9307,,2749N 08028W, +,US,SZH,Shenandoah,Shenandoah,VA,--3-----,RQ,8607,,3829N 07838W, +,US,SZI,Silver City,Silver City,NC,--3-----,RQ,9307,,3460N 07914W, +,US,SZJ,Shady Dale,Shady Dale,GA,--3-----,RQ,9307,,3324N 08335W, +,US,SZK,Seymour,Seymour,CT,--3-----,RQ,9307,,4124N 07304W, +,US,SZL,Warrensburg,Warrensburg,MO,---4----,AI,9601,,3846N 09344W, +,US,SZM,Sherman,Sherman,MS,--3-----,RQ,9307,,3422N 08850W, +!,US,SZN,Shannon,Shannon,MS,--3-----,RQ,9307,,3407N 08843W, +,US,SZO,Solomon,Solomon,KS,--3-----,RQ,9307,,3855N 09722W, +,US,SZP,Santa Paula,Santa Paula,CA,---4----,AI,9601,,3421N 11904W, +,US,SZR,Somerset,Somerset,PA,--3-----,RQ,9307,,4001N 07905W, +,US,SZT,Stanleytown,Stanleytown,VA,--3-----,RQ,9307,,3645N 07958W, +,US,SZV,Southborough,Southborough,MA,--3-----,RQ,9307,,4218N 07131W, +,US,SZW,Southwick,Southwick,MA,--3-----,RL,0005,,4203N 07246W, +,US,SZX,Scarborough,Scarborough,ME,--3-----,RQ,9307,,4335N 07020W, +,US,SZY,Staley,Staley,NC,--3-----,RQ,9307,,3548N 07933W, +,US,SZZ,Saint Nazianz,Saint Nazianz,WI,--3-----,RQ,1101,,4400N 08755W, +,US,TAC,Tahoe City,Tahoe City,CA,--3-----,RL,0001,,3910N 12009W, +,US,TAD,Trinidad,Trinidad,CO,---4----,AI,0001,,3710N 10430W, +,US,TAH,Tahoka,Tahoka,TX,--3-----,RQ,9506,,3310N 10148W, +,US,TAO,Taylor,Taylor,WI,--3-----,RQ,9307,,4419N 09107W, +,US,TAP,Tappan,Tappan,NY,--3-----,RQ,9307,,4101N 07357W, +,US,TBC,Tuba City,Tuba City,AZ,---4----,AI,0001,,3608N 11114W, +,US,TBD,Taylorville,Taylorville,IL,--3-----,RQ,9307,,3933N 08918W, +,US,TBG,Twinsburg,Twinsburg,OH,--3-----,RQ,9008,,4119N 08126W, +,US,TBL,Trumbull,Trumbull,CT,--3-----,RQ,9307,,4115N 07312W, +,US,TBN,Fort Leonard Wood,Fort Leonard Wood,MO,---4----,AI,0001,,3742N 09210W, +,US,TBP,Tobyhanna,Tobyhanna,PA,--3-----,RQ,9307,,4111N 07525W, +,US,TBR,Statesboro,Statesboro,GA,---4----,AI,9601,,3227N 08147W, +,US,TBV,Trumbauersville,Trumbauersville,PA,--3-----,RQ,9307,,4025N 07523W, +,US,TCC,Tucumcari,Tucumcari,NM,--34----,AI,9601,,3510N 10344W, +,US,TCI,Temple City,Temple City,CA,--3-----,RQ,9307,,3406N 11803W, +,US,TCL,Tuscaloosa,Tuscaloosa,AL,--34----,AI,9601,,3313N 08734W, +,US,TCS,Truth Or Consequences,Truth Or Consequences,NM,--34----,AI,9601,,3308N 10715W, +,US,TCT,Takotna,Takotna,AK,---4----,AI,0001,,6258N 15606W, +,US,TCU,Tecumseh,Tecumseh,KS,--3-----,RQ,9307,,3903N 09535W, +,US,TDO,Toledo,Toledo,WA,---4----,AI,9601,,4626N 12251W, +,US,TEA,Teaneck,Teaneck,NJ,--3-----,RQ,9307,,4053N 07400W, +,US,TEB,Teterboro,Teterboro,NJ,---4----,AI,9601,,4051N 07404W, +,US,TEE,Terrell,Terrell,TN,--3-----,RQ,9307,,3623N 08857W, +,US,TEF,Telford,Telford,PA,--3-----,RQ,9307,,4019N 07520W, +,US,TEH,Tetlin,Tetlin,AK,---4----,AI,0001,,6309N 14231W, +,US,TEK,Tatitlek,Tatitlek,AK,---4----,AI,0001,,6052N 14641W, +,US,TEL,Tell City,Tell City,IN,--3-----,RL,9901,,3757N 08646W, +,US,TEM,Temperanceville,Temperanceville,VA,--3-----,RQ,9307,,3754N 07533W, +,US,TEN,Tennent,Tennent,NJ,--3-----,RQ,9008,,4017N 07420W, +,US,TEO,Theodore,Theodore,AL,--3-----,RN,0105,,3033N 08812W, +,US,TEQ,Trenton,Trenton,IL,--3-----,RQ,9307,,3836N 08941W, +,US,TEU,Tequesta,Tequesta,FL,--3-----,RL,9805,,2658N 08005W, +,US,TEV,Temperance,Temperance,MI,--3-----,RQ,9307,,4147N 08334W, +,US,TEW,Tewksbury,Tewksbury,MA,--3-----,RQ,9307,,4237N 07114W, +,US,TEX,Texarkana,Texarkana,TX,--3-----,RQ,9307,,3327N 09405W, +,US,TFN,Tiffin,Tiffin,OH,--3-----,RQ,9307,,4107N 08311W, +,US,TFY,Taneytown,Taneytown,MD,--3-----,RQ,9307,,3940N 07711W, +,US,TGE,Tuskegee,Tuskegee,AL,---4----,AI,0001,,3225N 08541W, +,US,TGT,Torrington,Torrington,CT,--3-----,RQ,9307,,4148N 07307W, +,US,TGU,Tahlequah,Tahlequah,OK,--3-----,RQ,9307,,3555N 09458W, +,US,THA,Tullahoma,Tullahoma,TN,--34----,AI,9506,,3522N 08613W, +,US,THB,Two Harbors,Two Harbors,MN,--3-----,RQ,9307,,4702N 09140W, +,US,THI,Thibodaux,Thibodaux,LA,--3-----,RQ,9008,,2948N 09049W, +,US,THK,Thacker,Thacker,WV,--3-----,RQ,9307,,3736N 08208W, +,US,THO,Thomaston,Thomaston,CT,--3-----,RQ,9307,,4140N 07304W, +,US,THP,Thermopolis,Thermopolis,WY,---4----,AI,0001,,4339N 10812W, +,US,THS,Thomaston,Thomaston,GA,--3-----,RQ,9307,,3253N 08420W, +,US,THV,York,York,PA,---4----,AI,9601,,3958N 07644W, +,US,TIA,Tulia,Tulia,TX,--3-----,RQ,9307,,3432N 10146W, +,US,TIC,Ticonderoga,Ticonderoga,NY,--3-----,RQ,9307,,4351N 07325W, +,US,TID,Tigard,Tigard,OR,--3-----,RQ,9307,,4526N 12246W, +,US,TII,Tipton,Tipton,IN,--3-----,RQ,9307,,4017N 08602W, +,US,TIN,Tinton Falls,Tinton Falls,NJ,--3-----,RQ,9307,,4017N 07406W, +,US,TIT,Titusville,Titusville,PA,--3-----,RQ,9307,,4137N 07940W, +,US,TIV,Tiverton,Tiverton,RI,--3-----,RQ,9506,,4138N 07110W, +,US,TIW,Tacoma,Tacoma,WA,1--4----,AI,9601,,4715N 12226W, +,US,TIX,Titusville,Titusville,FL,---4----,AI,0001,,2837N 08048W, +,US,TIY,Terminal Island,Terminal Island,CA,--3-----,RQ,9307,,3345N 11816W, +,US,TJN,Tujunga,Tujunga,CA,--3-----,RQ,9307,,3415N 11817W, +,US,TJS,Saint James,Saint James,NY,--3-----,RL,1101,,4053N 07309W, +,US,TKA,Talkeetna,Talkeetna,AK,---4----,AI,9601,,6219N 15007W, +,US,TKE,Tenakee Springs,Tenakee Springs,AK,---4----,AI,0001,,5747N 13513W, +,US,TKF,Truckee,Truckee,CA,---4----,AI,9601,,3920N 12011W, +,US,TKI,Tokeen,Tokeen,AK,---4----,AI,0001,,5556N 13319W, +,US,TKJ,Tok,Tok,AK,---4----,AI,0001,,6320N 14259W, +,US,TKK,Tunkhannock,Tunkhannock,PA,--3-----,RQ,9307,,4132N 07557W, +,US,TKV,Tappahannock,Tappahannock,VA,--3-----,RQ,9307,,3756N 07652W, +,US,TLA,Teller,Teller,AK,---4----,AI,0001,,6515N 16622W, +,US,TLD,Tolland,Tolland,CT,--3-----,RQ,9307,,4152N 07222W, +,US,TLF,Telida,Telida,AK,---4----,AI,0001,,6323N 15317W, +,US,TLH,Tallahassee,Tallahassee,FL,--34----,AI,9601,,3026N 08417W, +,US,TLJ,Tatalina,Tatalina,AK,---4----,AI,0001,,6255N 15601W, +,US,TLK,Turlock,Turlock,CA,--3-----,RQ,9307,,3730N 12051W, +,US,TLL,Tulelake,Tulelake,CA,--3-----,RQ,9307,,4157N 12129W, +,US,TLM,Tillamook,Tillamook,OR,--3-----,RQ,9307,,4527N 12351W, +,US,TLR,Tulare,Tulare,CA,---4----,AI,9601,,3612N 11921W, +,US,TLT,Tuluksak,Tuluksak,AK,---4----,AI,0001,,6106N 16057W, +,US,TMA,Tifton,Tifton,GA,--34----,AI,9601,,3127N 08331W, +!,US,TMB,Timberville,Timberville,VA,--3-----,RQ,9307,,3838N 07846W, +,US,TMC,Temecula,Temecula,CA,--3-----,RQ,9307,,3330N 11709W, +,US,TMG,Tallmadge,Tallmadge,OH,--3-----,RQ,9307,,4106N 08127W, +,US,TML,Temple,Temple,GA,--3-----,RQ,9307,,3344N 08502W, +,US,TMP,Temple,Temple,PA,--3-----,RQ,9307,,4025N 07555W, +,US,TMQ,Tamaqua,Tamaqua,PA,--3-----,RQ,9307,,4048N 07558W, +,US,TMX,Tremont,Tremont,MS,--3-----,RQ,9307,,3414N 08816W, +,US,TNC,Tin City,Tin City,AK,---4----,AI,0001,,6534N 16757W, +,US,TNG,Trion,Trion,GA,--3-----,RQ,9307,,3433N 08519W, +,US,TNK,Tununak,Tununak,AK,---4----,AI,0001,,6034N 16515W, +,US,TNL,Tinley Park,Tinley Park,IL,--3-----,RQ,9307,,4134N 08747W, +,US,TNP,Twentynine Palms,Twentynine Palms,CA,---4----,AI,9601,,3408N 11603W, +,US,TNR,Trenton,Trenton,CA,--3-----,RQ,9307,,3829N 12251W, +,US,TNS,Taunton,Taunton,MA,--3-----,RQ,9307,,4154N 07106W, +,US,TNU,Newton,Newton,IA,---4----,AI,9601,,4142N 09303W, +,US,TNW,Tarrant,Tarrant,AL,--3-----,RQ,9307,,3335N 08646W, +,US,TOA,Torrance,Torrance,CA,---4----,AI,9601,,3350N 11820W, +,US,TOB,Tomball,Tomball,TX,--3-----,RQ,9501,,3006N 09537W, +,US,TOC,Toccoa,Toccoa,GA,---4----,AI,9601,,3435N 08320W, +,US,TOD,Toronto,Toronto,OH,--3-----,RQ,9307,,4028N 08036W, +,US,TOI,Troy,Troy,AL,---4----,AI,9601,,3149N 08558W, +,US,TOL,Toledo,Toledo,OH,1--4----,AI,0207,,4139N 08332W, +,US,TOO,Tooele,Tooele,UT,--3-----,RQ,9307,,4032N 11218W, +,US,TOP,Topeka,Topeka,KS,--34----,RQ,9008,,3903N 09541W, +,US,TOR,Torrington,Torrington,WY,---4----,AI,9601,,4204N 10411W, +,US,TOT,Totowa,Totowa,NJ,--3-----,RQ,9008,,4054N 07413W, +,US,TOW,Towanda,Towanda,PA,--3-----,RQ,9008,,4146N 07627W, +,US,TPA,Tampa,Tampa,FL,1--45---,AI,9601,,2757N 08228W, +,US,TPE,Tempe,Tempe,AZ,--3-----,RL,9909,,3326N 11156W, +,US,TPK,Topeka,Topeka,IN,--3-----,RQ,9307,,4132N 08532W, +,US,TPL,Temple,Temple,TX,--34----,AI,9601,,3106N 09721W, +,US,TPM,Tompkinsville,Tompkinsville,KY,--3-----,RQ,9307,,3642N 08541W, +,US,TPP,Toppenish,Toppenish,WA,--3-----,RQ,9307,,4623N 12019W, +,US,TPT,Tipton,Tipton,CA,--3-----,RQ,9307,,3604N 11919W, +,US,TPV,Tiptonville,Tiptonville,TN,--3-----,RQ,9307,,3623N 08928W, +,US,TQD,Toledo,Toledo,IL,--3-----,RQ,9307,,3916N 08815W, +,US,TQK,Topeka,Topeka,IL,--3-----,RQ,9307,,4020N 08956W, +,US,TQL,Toluca Lake,Toluca Lake,CA,--3-----,RQ,9307,,3409N 11821W, +,US,TQO,Tobaccoville,Tobaccoville,NC,--3-----,RQ,9307,,3614N 08020W, +,US,TRC,Tracy,Tracy,CA,--3-----,RQ,9307,,3744N 12125W, +,US,TRF,Thorofare,Thorofare,NJ,--3-----,RQ,9307,,3951N 07512W, +,US,TRH,Trona,Trona,CA,---4----,AI,0001,,3546N 11722W, +,US,TRJ,Three Rivers,Three Rivers,MA,--3-----,RQ,9307,,4200N 07047W, +,US,TRL,Terrell,Terrell,TX,--34----,AI,1307,,3244N 09617W, +,US,TRM,Thermal,Thermal,CA,---4----,AI,9601,,3338N 11608W, +,US,TRT,Tremonton,Tremonton,UT,---4----,AI,9601,,4143N 11210W, +,US,TRU,Trussville,Trussville,AL,--3-----,RQ,9307,,3337N 08637W, +,US,TRX,Trenton,Trenton,MO,---4----,AI,9601,,4005N 09337W, +,US,TRZ,Troutman,Troutman,NC,--3-----,RQ,9307,,3542N 08053W, +,US,TSD,Townshend,Townshend,VT,--3-----,RQ,9307,,4303N 07240W, +,US,TSG,Tanacross,Tanacross,AK,---4----,AI,0001,,6321N 14329W, +,US,TSJ,Thomson,Thomson,GA,--3-----,RQ,9307,,3328N 08230W, +,US,TSK,Thomaston,Thomaston,ME,--3-----,RQ,9307,,4405N 06911W, +,US,TSP,Tehachapi,Tehachapi,CA,---4----,AI,0001,,3508N 11827W, +,US,TTD,Troutdale,Troutdale,OR,---4----,AI,9601,,4532N 12223W, +,US,TTE,Tate,Tate,GA,--3-----,RQ,9307,,3425N 08423W, +,US,TTM,Tarentum,Tarentum,PA,--3-----,RQ,9307,,4036N 07945W, +,US,TTN,Trenton,Trenton,NJ,--34----,AI,9601,,4013N 07446W, +,US,TTO,Britton,Britton,SD,---4----,AI,0001,,4547N 09745W, +,US,TTW,Tullytown,Tullytown,PA,--3-----,RQ,9307,,4008N 07449W, +,US,TTX,Teutopolis,Teutopolis,IL,--3-----,RQ,9307,,3908N 08828W, +,US,TTY,Troy,Troy,TN,--3-----,RQ,9307,,3620N 08910W, +,US,TUC,Tucker,Tucker,GA,--3-----,RQ,9008,,3351N 08413W, +,US,TUK,Tukwila,Tukwila,WA,--3-----,RQ,9307,,4728N 12215W, +,US,TUL,Tulsa,Tulsa,OK,---4----,AI,9601,,3609N 09560W, +,US,TUP,Tupelo,Tupelo,MS,--34----,RQ,9008,,3415N 08842W, +,US,TUQ,Turkey,Turkey,NC,--3-----,RQ,9307,,3460N 07811W, +,US,TUT,Tutwiler,Tutwiler,MS,--3-----,RQ,9307,,3401N 09026W, +,US,TUW,Tumwater,Tumwater,WA,--3-----,RQ,9307,,4700N 12255W, +,US,TVC,Traverse City,Traverse City,MI,---4----,AI,9601,,4446N 08537W, +,US,TVE,Thomasville,Thomasville,NC,--3-----,RQ,9307,,3553N 08005W, +,US,TVF,Thief River Falls,Thief River Falls,MN,---4----,AI,9601,,4807N 09611W, +,US,TVI,Thomasville,Thomasville,GA,--34----,AI,9601,,3050N 08359W, +,US,TVL,South Lake Tahoe,South Lake Tahoe,CA,---4----,AI,0001,,3856N 11959W, +,US,TVO,Trevor,Trevor,WI,--3-----,RQ,9307,,4231N 08807W, +,US,TVR,Trevorton,Trevorton,PA,--3-----,RQ,9307,,4047N 07640W, +,US,TVS,Trevose,Trevose,PA,--3-----,RQ,9307,,4008N 07459W, +,US,TVY,Traver,Traver,CA,--3-----,RQ,9307,,3627N 11929W, +,US,TWA,Twin Hills,Twin Hills,AK,---4----,AI,0001,,5905N 16017W, +,US,TWB,Townsend,Townsend,MA,--3-----,RQ,9307,,4240N 07142W, +,US,TWC,Tower City,Tower City,PA,--3-----,RQ,9307,,4035N 07633W, +,US,TWD,Port Townsend,Port Townsend,WA,1--4----,AI,1101,,4807N 12246W, +,US,TWE,Taylor,Taylor,AK,---4----,AI,0001,,6541N 16448W, +,US,TWF,Twin Falls,Twin Falls,ID,--34----,RQ,9008,,4234N 11428W, +,US,TWI,Twisp,Twisp,WA,--3-----,RQ,9307,,4822N 12007W, +,US,TWJ,Towaco,Towaco,NJ,--3-----,RQ,9307,,4055N 07421W, +,US,TWL,Tualatin,Tualatin,OR,--3-----,RQ,9307,,4523N 12246W, +,US,TWR,Two Rivers,Two Rivers,WI,--3-----,RQ,9307,,4409N 08734W, +,US,TWS,Towson,Towson,MD,--3-----,RQ,9307,,3924N 07636W, +,US,TWW,Lawton,Lawton,IA,--3-----,RQ,0901,,4229N 09611W, +,US,TXA,Texas,Texas,MD,--3-----,RQ,9307,,3928N 07639W, +,US,TXD,Tuxedo,Tuxedo,MD,--3-----,RQ,9307,,3855N 07655W, +,US,TXK,Texarkana,Texarkana,AR,---4----,AI,9601,,3326N 09403W, +,US,TXL,Bellmead,Bellmead,TX,-----6--,RL,0901,,3136N 09707W, +,US,TXN,Thomson,Thomson,IL,--3-----,RQ,9307,,4158N 09006W, +,US,TXP,Troup,Troup,TX,--3-----,RQ,9307,,3209N 09507W, +,US,TXS,Tolar,Tolar,TX,--3-----,RQ,9307,,3223N 09755W, +,US,TXT,Texas City,Texas City,TX,1-3-----,RN,0105,,2924N 09455W, +,US,TXV,Toano,Toano,VA,--3-----,RQ,9307,,3723N 07648W, +,US,TYA,Ty Ty,Ty Ty,GA,--3-----,RQ,9307,,3128N 08339W, +,US,TYE,Tyonek,Tyonek,AK,--3-----,AI,9506,,6104N 15108W, +,US,TYH,Troy,Troy,OH,--3-----,RQ,9307,,4002N 08412W, +,US,TYI,Troy,Troy,MS,--3-----,RQ,9307,,3407N 08853W, +,US,TYJ,Tyro,Tyro,VA,--3-----,RQ,9307,,3749N 07900W, +,US,TYL,Tyler,Tyler,AL,--3-----,RQ,0001,,3220N 08653W, +,US,TYM,Troy,Troy,MI,--3-----,RQ,9307,,4236N 08309W, +,US,TYN,Taylorsville,Taylorsville,NC,--3-----,RQ,9008,,3555N 08111W, +,US,TYQ,Taylors,Taylors,SC,--3-----,RQ,9307,,3455N 08218W, +,US,TYR,Tyler,Tyler,TX,--34----,AI,9601,,3221N 09518W, +,US,TYS,Knoxville,Knoxville,TN,---4----,AI,0001,,3558N 08355W, +,US,TYT,Taylor,Taylor,TX,--3-----,RQ,9307,,3034N 09725W, +,US,TYU,Troy,Troy,MO,--3-----,RQ,9307,,3859N 09059W, +,US,TYV,Taylorsville,Taylorsville,MS,--3-----,RQ,9307,,3150N 08926W, +,US,TYX,Troy,Troy,NC,--3-----,RQ,9307,,3522N 07954W, +,US,TYZ,Taylor,Taylor,AZ,---4----,AI,0001,,3428N 11005W, +,US,TZR,Tarzana,Tarzana,CA,--3-----,RQ,9307,,3410N 11832W, +,US,TZW,Tazewell,Tazewell,TN,--3-----,RQ,9307,,3627N 08334W, +,US,TZZ,Tecumseh,Tecumseh,MI,--3-----,RQ,9307,,4201N 08359W, +,US,UAA,Unalaska,Unalaska,AK,--3-----,RQ,9307,,5352N 16632W, +,US,UAB,Abbeville,Abbeville,LA,--3-----,RQ,9307,,2958N 09208W, +,US,UAC,Bristol,Bristol,PA,--3-----,RQ,9008,,4007N 07452W, +,US,UAD,Albemarle,Albemarle,NC,--3-----,RQ,9307,,3521N 08012W, +,US,UAE,Aberdeen,Aberdeen,NC,--3-----,RQ,9307,,3508N 07926W, +,US,UAF,Abernathy,Abernathy,TX,--3-----,RQ,9307,,3350N 10151W, +,US,UAH,Acton,Acton,MA,--3-----,RQ,9307,,4229N 07126W, +,US,UAK,Carlstadt,Carlstadt,NJ,--3-----,RQ,9008,,4050N 07405W, +,US,UAM,Adamsville,Adamsville,TN,--3-----,RQ,9307,,3516N 08823W, +,US,UAN,Adams,Adams,MA,--3-----,RQ,9307,,4238N 07307W, +,US,UAO,Adrian,Adrian,OR,--3-----,RQ,9307,,4344N 11704W, +,US,UAP,Addison,Addison,IL,--3-----,RQ,9307,,4156N 08759W, +,US,UAR,Advance,Advance,NC,--3-----,RQ,9307,,3556N 08025W, +,US,UAS,Addyston,Addyston,OH,--3-----,RQ,9307,,3908N 08443W, +,US,UAT,Adams,Adams,OR,--3-----,RQ,9307,,4546N 11834W, +,US,UAX,Agoura,Agoura,CA,--3-----,RQ,9307,,3409N 11846W, +,US,UAY,Algiers,Algiers,LA,--3-----,RQ,9307,,2956N 09002W, +,US,UAZ,Allendale,Allendale,NJ,--3-----,RQ,9307,,4102N 07408W, +,US,UBA,Albany,Albany,OH,--3-----,RQ,9307,,3914N 08212W, +,US,UBB,Alamo,Alamo,CA,--3-----,RQ,9307,,3751N 12202W, +,US,UBC,Alsip,Alsip,IL,--3-----,RQ,9008,,4140N 08744W, +,US,UBD,Altamahaw,Altamahaw,NC,--3-----,RQ,9307,,3611N 07930W, +,US,UBE,Albany,Albany,TX,--3-----,RQ,9307,,3244N 09918W, +,US,UBF,Ambridge,Ambridge,PA,--3-----,RQ,9008,,4035N 08014W, +,US,UBG,Amana,Amana,IA,--3-----,RQ,9307,,4148N 09154W, +,US,UBH,Amite,Amite,LA,--3-----,RQ,9307,,3044N 09031W, +,US,UBI,Amherst,Amherst,NH,--3-----,RQ,9307,,4252N 07138W, +,US,UBJ,Algona,Algona,WA,--3-----,RQ,9307,,4717N 12215W, +,US,UBK,Andersonville,Andersonville,GA,--3-----,RQ,9307,,3212N 08408W, +,US,UBL,Urbandale,Urbandale,IA,--3-----,RQ,9307,,4138N 09344W, +,US,UBM,Anthony,Anthony,TX,--3-----,RQ,9307,,3160N 10636W, +,US,UBN,Antigo,Antigo,WI,--3-----,RQ,9008,,4510N 08906W, +,US,UBO,Andrews,Andrews,TX,--34----,RQ,9008,,3219N 10233W, +,US,UBR,Aspers,Aspers,PA,--3-----,RQ,9008,,3959N 07714W, +,US,UBS,Columbus,Columbus,MS,--34----,AI,9601,,3330N 08826W, +,US,UBT,Brookline,Brookline,NH,--3-----,RQ,9008,,4244N 07139W, +,US,UBU,Belleville,Belleville,NJ,--3-----,RQ,9008,,4048N 07409W, +,US,UBV,Blythewood,Blythewood,SC,--3-----,RQ,9008,,3413N 08059W, +,US,UCA,Utica,Utica,NY,---4----,AI,9601,,4306N 07514W, +,US,UCE,Eunice,Eunice,LA,---4----,AI,0001,,3030N 09225W, +,US,UCG,Union City,Union City,GA,--3-----,RQ,9307,,3335N 08433W, +,US,UCJ,Union City,Union City,NJ,--3-----,RQ,9008,,4047N 07401W, +,US,UDL,Unadilla,Unadilla,GA,--3-----,RL,9901,,3216N 08344W, +,US,UDY,Upper Darby,Upper Darby,PA,--3-----,RQ,9307,,3956N 07516W, +,US,UEI,Usibelli,Usibelli,AK,--3-----,RQ,9307,,6352N 14847W, +,US,UES,Waukesha,Waukesha,WI,---4----,AI,9601,,4301N 08814W, +,US,UFA,Bellwood,Bellwood,IL,--3-----,RQ,9008,,4153N 08753W, +,US,UFC,Chillicothe,Chillicothe,MO,--3-----,RQ,9008,,3948N 09333W, +,US,UFD,Crandon Lakes,Crandon Lakes,NJ,--3-----,RQ,9008,,4108N 07450W, +,US,UFF,Coram,Coram,NY,--3-----,RQ,9008,,4052N 07300W, +,US,UFG,Chesapeake,Chesapeake,VA,1-34----,AI,9601,,3643N 07615W, +,US,UFH,Carrizozo,Carrizozo,NM,--3-----,RQ,9008,,3339N 10553W, +,US,UFI,Carlisle,Carlisle,PA,--3-----,RQ,9008,,4012N 07711W, +,US,UFJ,Cambridge Springs,Cambridge Springs,PA,--3-----,RQ,9008,,4148N 08003W, +,US,UFK,Cartersville,Cartersville,GA,--3-----,RQ,9008,,3410N 08448W, +,US,UFO,Downers Grove,Downers Grove,IL,--3-----,RQ,9008,,4148N 08801W, +,US,UFP,Dillwyn,Dillwyn,VA,--3-----,RQ,9008,,3733N 07827W, +,US,UFR,Elmsford,Elmsford,NY,--3-----,RQ,9008,,4103N 07349W, +,US,UFT,East Greenville,East Greenville,PA,--3-----,RQ,9008,,4024N 07530W, +,US,UFU,East Greenwich,East Greenwich,RI,--3-----,RQ,9008,,4140N 07127W, +,US,UFX,Englishtown,Englishtown,NJ,--3-----,RQ,9008,,4018N 07421W, +,US,UGI,Uganik,Uganik,AK,---4----,AI,9601,,5753N 15322W, +,US,UGR,Union Grove,Union Grove,WI,--3-----,RQ,9307,,4241N 08803W, +,US,UGS,Ugashik,Ugashik,AK,--34----,AI,9506,,5736N 15702W, +,US,UHV,Uhrichsville,Uhrichsville,OH,--3-----,RQ,9307,,4023N 08121W, +,US,UIL,Quillayute,Quillayute,WA,---4----,AI,0001,,4757N 12433W, +,US,UIN,Quincy,Quincy,IL,--34----,AI,9601,,3956N 09125W, +,US,UIZ,Utica,Utica,MI,---4----,AI,9601,,4238N 08302W, +,US,UJA,Franklin,Franklin,TN,--3-----,RQ,9008,,3556N 08652W, +,US,UJB,Flat River,Flat River,MO,--3-----,RQ,9008,,3751N 09031W, +,US,UJD,Folcroft,Folcroft,PA,--3-----,RQ,9008,,3953N 07517W, +,US,UJF,Fort Gillem,Fort Gillem,GA,--3-----,RQ,9008,,3337N 08421W, +,US,UJH,Grenada,Grenada,MS,--3-----,RQ,9008,,3346N 08949W, +,US,UJI,Geneva,Geneva,OH,--3-----,RQ,9008,,4148N 08057W, +,US,UJK,Greensburg,Greensburg,PA,--3-----,RQ,9008,,4018N 07932W, +,US,UJL,Hazard,Hazard,KY,--3-----,RQ,9008,,3715N 08312W, +,US,UJM,Hicksville,Hicksville,NY,--3-----,RQ,9008,,4046N 07331W, +,US,UJN,Hanahan,Hanahan,SC,--3-----,RQ,9008,,3255N 08001W, +,US,UJO,Hillside,Hillside,IL,--3-----,RQ,9008,,4153N 08754W, +,US,UJP,Hanson,Hanson,MA,--3-----,RQ,9008,,4205N 07053W, +,US,UJQ,Holyoke,Holyoke,MA,--3-----,RQ,9008,,4212N 07236W, +,US,UJS,Hampton,Hampton,SC,--3-----,RQ,9008,,3252N 08107W, +,US,UJT,Hightstown,Hightstown,NJ,--3-----,RQ,9008,,4016N 07431W, +,US,UJX,Kinnelon,Kinnelon,NJ,--3-----,RQ,9008,,4100N 07422W, +,US,UJY,La Salle,La Salle,IL,--3-----,RQ,9008,,4120N 08906W, +,US,UJZ,Leesville,Leesville,SC,--3-----,RQ,9008,,3355N 08132W, +,US,UKI,Ukiah,Ukiah,CA,---4----,AI,9601,,3909N 12312W, +,US,UKN,Waukon,Waukon,IA,---4----,AI,0001,,4316N 09129W, +,US,UKT,Quakertown,Quakertown,PA,---4----,AI,9601,,4027N 07520W, +,US,ULM,New Ulm,New Ulm,MN,---4----,AI,9601,,4419N 09428W, +,US,UMA,Umatilla,Umatilla,OR,--3-----,RQ,9307,,4555N 11921W, +,US,UMB,Umnak Island,Umnak Island,AK,---4----,AI,0001,,5312N 16832W, +,US,UML,Umatilla,Umatilla,FL,--3-----,RQ,9307,,2856N 08140W, +,US,UMM,Summit,Summit,AK,---4----,AI,0001,,6320N 14907W, +,US,UMT,Umiat,Umiat,AK,---4----,AI,0001,,6922N 15209W, +,US,UNC,Union City,Union City,CA,--3-----,RQ,9008,,3735N 12201W, +,US,UNI,Union,Union,PA,--3-----,RQ,9307,,3950N 07604W, +,US,UNK,Unalakleet,Unalakleet,AK,---4----,AI,0001,,6352N 16047W, +,US,UNN,Union City,Union City,PA,--3-----,RQ,9307,,4154N 07951W, +,US,UNO,Union City,Union City,IN,--3-----,RQ,9307,,4012N 08449W, +,US,UNU,Juneau,Juneau,WI,---4----,AI,9601,,4324N 08842W, +,US,UNZ,Union,Union,IL,--3-----,RQ,9307,,4214N 08833W, +,US,UON,Union,Union,NJ,--3-----,RQ,9307,,4042N 07416W, +,US,UOS,Sewanee,Sewanee,TN,---4----,AI,9601,,3512N 08555W, +,US,UPE,Upper Sandusky,Upper Sandusky,OH,--3-----,RQ,9307,,4050N 08317W, +,US,UPK,University Park,University Park,IL,--3-----,RQ,9307,,4126N 08741W, +,US,UPM,Upper Marlboro,Upper Marlboro,MD,--3-----,RL,9805,,3849N 07645W, +,US,UPP,Upolu Point,Upolu Point,HI,---4----,AI,0001,,2016N 15551W, +,US,UQA,Le Suer,Le Suer,MN,--3-----,RQ,9008,,4428N 09355W, +,US,UQE,Queen,Queen,AK,---4----,AI,0001,,4016N 07830W, +,US,UQF,La Porte,La Porte,TX,--3-----,RQ,9008,,2940N 09501W, +,US,UQG,Le Roy,Le Roy,NY,--3-----,RQ,9008,,4248N 07760W, +,US,UQH,Lyman,Lyman,SC,--3-----,RQ,9008,,3457N 08207W, +,US,UQJ,Mamaroneck,Mamaroneck,NY,--3-----,RQ,9008,,4057N 07344W, +,US,UQL,Mableton,Mableton,GA,--3-----,RQ,9008,,3349N 08435W, +,US,UQN,Medford,Medford,NJ,--3-----,RQ,9008,,3954N 07449W, +,US,UQO,Maiden,Maiden,NC,--3-----,RQ,9008,,3535N 08113W, +,US,UQS,Mount Holly,Mount Holly,SC,--3-----,RQ,1101,,3302N 08002W, +,US,UQV,Mount Jackson,Mount Jackson,VA,--3-----,RQ,1101,,3845N 07839W, +,US,UQX,McKenzie,McKenzie,TN,--3-----,RQ,9008,,3608N 08831W, +,US,UQY,Milesburg,Milesburg,PA,--3-----,RQ,9008,,4057N 07747W, +,US,UQZ,Milan,Milan,MI,--3-----,RQ,9008,,4202N 08343W, +,US,URB,Urbana,Urbana,IL,--3-----,RQ,9307,,4007N 08812W, +,US,URN,Urania,Urania,LA,--3-----,RQ,9307,,3152N 09218W, +,US,URO,Urbana,Urbana,OH,--3-----,RQ,9307,,4007N 08345W, +,US,USC,Union South Carolina,Union South Carolina,SC,---4----,AI,0001,,3441N 08138W, +,US,USK,Usk,Usk,WA,--3-----,RQ,9307,,4819N 11717W, +,US,USP,Union Springs,Union Springs,AL,--3-----,RQ,9307,,3209N 08543W, +,US,UST,Saint Augustine,Saint Augustine,FL,--34----,AI,1101,,2954N 08119W, +,US,USY,Ulysses,Ulysses,KS,--3-----,RQ,9307,,3735N 10121W, +,US,UTN,Uniontown,Uniontown,PA,--3-----,RQ,9307,,3954N 07943W, +,US,UTQ,Utica,Utica,IL,--3-----,RQ,9307,,4120N 08901W, +,US,UVA,Uvalde,Uvalde,TX,---4----,AI,9601,,2913N 09947W, +,US,UVB,Barnsdall,Barnsdall,OK,--3-----,RQ,9008,,3634N 09610W, +,US,UVC,Universal City,Universal City,CA,--3-----,RQ,9307,,3409N 11822W, +,US,UWA,Ware,Ware,MA,---4----,AI,9601,,4216N 07214W, +,US,UXB,Moosic,Moosic,PA,--3-----,RQ,9008,,4121N 07544W, +,US,UXE,Mason,Mason,OH,--3-----,RQ,9008,,3922N 08419W, +,US,UXG,Montgomeryville,Montgomeryville,PA,--3-----,RQ,9008,,4015N 07515W, +,US,UXI,New Bremen,New Bremen,OH,--3-----,RQ,9008,,4026N 08423W, +,US,UXK,Neenah,Neenah,WI,--3-----,RQ,9008,,4411N 08828W, +,US,UXL,New Holland,New Holland,PA,--3-----,RQ,9008,,4006N 07605W, +,US,UXN,Norcross,Norcross,GA,--3-----,RQ,9008,,3356N 08413W, +,US,UXO,New Rochelle,New Rochelle,NY,--3-----,RQ,9008,,4055N 07347W, +,US,UXQ,Norristown,Norristown,PA,--3-----,RQ,9008,,4007N 07520W, +,US,UXR,Oakdale,Oakdale,PA,--3-----,RQ,9008,,4024N 08011W, +,US,UXS,Oakmont,Oakmont,PA,--3-----,RQ,9008,,4031N 07951W, +,US,UXV,Pleasantville,Pleasantville,NJ,--3-----,RQ,9008,,3923N 07431W, +,US,UXY,Plymouth,Plymouth,MI,--3-----,RQ,9008,,4222N 08328W, +,US,UXZ,Port Chester,Port Chester,NY,1-3-----,RL,1101,,4100N 07340W, +,US,UYB,Pulaski,Pulaski,VA,--3-----,RQ,9008,,3703N 08047W, +,US,UYE,Ridgefield,Ridgefield,NJ,--3-----,RQ,9008,,4050N 07401W, +,US,UYG,Raymond,Raymond,MS,--3-----,RQ,9008,,3216N 09025W, +,US,UYH,Royersford,Royersford,PA,--3-----,RQ,9008,,4011N 07532W, +,US,UYI,Rutherford,Rutherford,NJ,--3-----,RQ,9008,,4050N 07406W, +,US,UYJ,Steubenville,Steubenville,OH,--3-----,RQ,9008,,4022N 08037W, +,US,UYK,Secaucus,Secaucus,NJ,--3-----,RQ,9008,,4047N 07403W, +,US,UYL,Spring City,Spring City,PA,--3-----,RQ,9008,,4011N 07533W, +,US,UYN,Slidell,Slidell,LA,--3-----,RQ,9008,,3017N 08947W, +,US,UYO,Sodus,Sodus,NY,--3-----,RQ,9008,,4316N 07659W, +,US,UYP,Seneca,Seneca,NY,--3-----,RQ,9008,,4250N 07845W, +,US,UYQ,Salem,Salem,VA,--3-----,RQ,9008,,3718N 08003W, +,US,UYR,Santa Fe Springs,Santa Fe Springs,CA,--3-----,RQ,9008,,3357N 11804W, +,US,UYS,Shenandoah,Shenandoah,GA,--3-----,RQ,9008,,3332N 08206W, +,US,UYV,Smithfield,Smithfield,OH,--3-----,RQ,9008,,4016N 08047W, +,US,UYX,Summit,Summit,NJ,--3-----,RQ,9008,,4043N 07422W, +,US,UYY,Straughn,Straughn,IN,--3-----,RQ,9008,,3949N 08517W, +,US,UYZ,Skyland,Skyland,NC,--3-----,RQ,9008,,3529N 08231W, +,US,UZA,Stanley,Stanley,NC,--3-----,RQ,9008,,3522N 08106W, +,US,UZB,Somerville,Somerville,MA,--3-----,RQ,9008,,4223N 07106W, +,US,UZC,Summerville,Summerville,SC,--3-----,RQ,9008,,3301N 08011W, +,US,UZD,Tarboro,Tarboro,NC,--3-----,RQ,9008,,3554N 07732W, +,US,UZE,Tipp City,Tipp City,OH,--3-----,RQ,9008,,3958N 08410W, +,US,UZF,Tonawanda,Tonawanda,NY,--3-----,RQ,9008,,4302N 07852W, +,US,UZG,Troutville,Troutville,VA,--3-----,RQ,9008,,3725N 07952W, +,US,UZJ,Webster,Webster,NY,--3-----,RQ,9008,,4313N 07726W, +,US,UZK,Waterford,Waterford,NY,--3-----,RQ,9008,,4248N 07341W, +,US,UZL,West Nyack,West Nyack,NY,--3-----,RQ,9008,,4106N 07358W, +,US,UZM,Wrens,Wrens,GA,--3-----,RQ,9008,,3312N 08224W, +,US,UZN,Williston,Williston,SC,--3-----,RQ,9008,,3324N 08125W, +,US,UZO,Warwick,Warwick,RI,--3-----,RQ,9008,,4142N 07128W, +,US,UZR,Luzerne,Luzerne,PA,--3-----,RQ,0901,,4117N 07554W, +,US,VAB,Virginia Beach,Virginia Beach,VA,--3-----,RQ,9008,,3651N 07559W, +,US,VAC,Vail,Vail,CO,---4----,AI,9307,EGE,3939N 10623W, +,US,VAI,Vailsgate,Vailsgate,NY,--3-----,RQ,9307,,4127N 07403W, +,US,VAK,Chevak,Chevak,AK,---4----,AI,0001,,6132N 16535W, +,US,VAL,Valdese,Valdese,NC,--3-----,RQ,9307,,3545N 08134W, +,US,VAM,Van Buren,Van Buren,IN,--3-----,RQ,9307,,4037N 08530W, +,US,VAN,Vancouver,Vancouver,WA,1-3-----,RN,0105,,4538N 12240W, +,US,VAS,Vassar,Vassar,MI,--3-----,RQ,9307,,4320N 08331W, +,US,VAT,Valatie,Valatie,NY,--3-----,RQ,0002,,4225N 07340W, +,US,VBU,Van Buren,Van Buren,AR,--3-----,RQ,9307,,3527N 09421W, +,US,VCA,Vernon,Vernon,CA,--3-----,RQ,9307,,3400N 11814W, +,US,VCE,Vance,Vance,AL,--3-----,RL,0006,,3310N 08714W, +,US,VCI,Venice,Venice,CA,--3-----,RQ,9307,,3360N 11828W, +,US,VCJ,Valley Cottage,Valley Cottage,NY,--3-----,RQ,9307,,4107N 07357W, +,US,VCK,Vickery,Vickery,TX,--3-----,RQ,9307,,3252N 09645W, +,US,VCO,Valley City,Valley City,OH,--3-----,RQ,9307,,4114N 08156W, +,US,VCT,Victoria,Victoria,TX,--34----,AI,9601,,2848N 09700W, +,US,VCU,Verdugo City,Verdugo City,CA,--3-----,RQ,9307,,3413N 11814W, +,US,VCV,Victorville,Victorville,CA,---4----,AI,9601,,3432N 11717W, +,US,VCW,Victor,Victor,MT,--3-----,RQ,9307,,4625N 11409W, +,US,VCX,Vacaville,Vacaville,CA,--3-----,RQ,9307,,3821N 12159W, +,US,VDA,Columbus,Columbus,MI,---4----,AI,0001,,4251N 08241W, +,US,VDH,Vandalia,Vandalia,OH,--3-----,RQ,9307,,3953N 08412W, +,US,VDI,Vidalia,Vidalia,GA,---4----,AI,0001,,3213N 08225W, +,US,VDL,Vidalia,Vidalia,LA,--3-----,RQ,9307,,3134N 09126W, +,US,VDW,Vardaman,Vardaman,MS,--3-----,RQ,9307,,3353N 08911W, +,US,VEA,Verona,Verona,MO,--3-----,RQ,9307,,3658N 09348W, +,US,VEE,Venetie,Venetie,AK,---4----,AI,0001,,6701N 14625W, +,US,VEG,Vega,Vega,TX,--3-----,RQ,9307,,3515N 10226W, +,US,VEI,Verdi,Verdi,NV,--3-----,RQ,9307,,3931N 11959W, +,US,VEL,Vernal,Vernal,UT,---4----,AI,0001,,4027N 10932W, +,US,VEO,Verona,Verona,PA,--3-----,RQ,9307,,4030N 07951W, +,US,VER,Verona,Verona,NJ,--3-----,RQ,9307,,4050N 07414W, +,US,VES,Vesper,Vesper,WI,--3-----,RQ,9307,,4429N 08958W, +,US,VEW,Westwood,Westwood,MA,--3-----,RQ,9008,,4213N 07113W, +,US,VEX,Tioga,Tioga,ND,---4----,AI,0001,,4824N 10256W, +,US,VFG,Valley Forge,Valley Forge,PA,--3-----,RQ,9307,,4006N 07528W, +,US,VGL,Galesville,Galesville,MD,--3-----,RQ,0901,,3851N 07633W, +,US,VHF,Vint Hill Farms,Vint Hill Farms,VA,--3-----,RQ,9307,,3845N 07740W, +,US,VHJ,Voorhees,Voorhees,NJ,--3-----,RQ,9307,,3951N 07458W, +,US,VHN,Van Horn,Van Horn,TX,---4----,AI,0001,,3103N 10450W, +,US,VHO,Vienna,Vienna,OH,--3-----,RQ,9307,,4114N 08040W, +,US,VHX,Vauxhall,Vauxhall,NJ,--3-----,RQ,9307,,3508N 08048W, +,US,VIH,Vichy,Vichy,MO,---4----,AI,0001,,3807N 09146W, +,US,VIL,Lake Villa,Lake Villa,IL,--3-----,RQ,9008,,4225N 08804W, +,US,VIN,Vineland,Vineland,NJ,--3-----,RQ,9307,,3929N 07502W, +,US,VIO,Viola,Viola,TX,-23-----,RQ,0207,,2751N 09731W, +,US,VIS,Visalia,Visalia,CA,---4----,AI,9601,,3620N 11918W, +,US,VIV,Vienna,Vienna,VA,--3-----,RQ,9008,,3854N 07716W, +,US,VJM,Morganville,Morganville,NJ,-----6--,RQ,1007,,4023N 07415W, +,US,VKS,Vicksburg,Vicksburg,MS,1--4----,AI,0207,,3221N 09053W, +,US,VKV,Watkinsville,Watkinsville,GA,--3-----,RQ,9008,,3352N 08325W, +,US,VLA,Vandalia,Vandalia,IL,---4----,AI,0001,,3858N 08906W, +,US,VLD,Valdosta,Valdosta,GA,--34----,AI,9601,,3050N 08317W, +,US,VLE,Valle,Valle,AZ,---4----,AI,0001,,3540N 11209W, +,US,VLL,Waller,Waller,TX,--3-----,RQ,9307,,3004N 09556W, +,US,VLO,Vallejo,Vallejo,CA,--34----,AI,0001,,3806N 12215W, +,US,VLR,Villa Rica,Villa Rica,GA,--3-----,RQ,9008,,3344N 08455W, +,US,VLY,Valley,Valley,NE,--3-----,RQ,9307,,4119N 09621W, +,US,VNA,Verona,Verona,MS,--3-----,RQ,9307,,3412N 08843W, +,US,VNC,Venice,Venice,FL,---4----,AI,9601,,2706N 08227W, +,US,VNL,Vandalia,Vandalia,MO,--3-----,RQ,9307,,3919N 09129W, +,US,VNN,Vernon,Vernon,NY,--3-----,RQ,9008,,4305N 07532W, +,US,VNQ,Vale,Vale,NC,--3-----,RQ,9307,,3606N 08157W, +,US,VNW,Van Wert,Van Wert,OH,--3-----,RQ,9307,,4052N 08435W, +,US,VNY,Van Nuys,Van Nuys,CA,--34----,AI,9506,,3411N 11827W, +,US,VOK,Camp Douglas,Camp Douglas,WI,---4----,AI,0001,,4355N 09016W, +,US,VOO,Voorheesville,Voorheesville,NY,--3-----,RQ,9008,,4239N 07356W, +,US,VOY,Vogleyville,Vogleyville,PA,--3-----,RQ,9307,,4051N 07952W, +,US,VPR,Villa Park,Villa Park,IL,--3-----,RQ,9307,,4153N 08759W, +,US,VPS,Valparaiso,Valparaiso,FL,---4----,AI,0001,,3031N 08630W, +,US,VQN,Vonore,Vonore,TN,--3-----,RQ,9307,,3535N 08415W, +,US,VRB,Vero Beach,Vero Beach,FL,--34----,AI,9601,,2738N 08024W, +,US,VRL,Harlan,Harlan,IN,--3-----,RQ,0901,,4112N 08455W, +,US,VRS,Versailles,Versailles,MO,---4----,AI,0001,,3826N 09250W, +,US,VRT,Vernon,Vernon,TX,--3-----,RQ,9307,,3409N 09917W, +,US,VRV,Verona,Verona,VA,--3-----,RQ,9307,,3812N 07900W, +,US,VSF,Springfield,Springfield,VT,---4----,AI,9601,,4318N 07229W, +,US,VSH,Vadnais Heights,Vadnais Heights,MN,--3-----,RL,0002,,4503N 09304W, +,US,VSI,Versailles,Versailles,CT,--3-----,RQ,9307,,4136N 07203W, +,US,VSN,Winston,Winston,GA,--3-----,RL,0002,,3344N 08449W, +,US,VSR,Valley Stream,Valley Stream,NY,--3-----,RQ,9307,,4040N 07342W, +,US,VSS,Versailles,Versailles,KY,--3-----,RQ,9307,,3803N 08444W, +,US,VTA,Volta,Volta,CA,--3-----,RQ,9307,,3706N 12056W, +,US,VTB,Vestaburg,Vestaburg,MI,--3-----,RQ,9307,,4324N 08454W, +,US,VTI,Vista,Vista,CA,--3-----,RQ,9307,,3312N 11715W, +,US,VTL,Waterloo,Waterloo,AL,--3-----,RQ,9307,,3455N 08804W, +,US,VTN,Valentine,Valentine,NE,--34----,AI,9601,,4252N 10033W, +,US,VTO,Washington,Washington,IA,--3-----,RQ,9307,,4118N 09142W, +,US,VTR,Woodson Terrace/St Louis,Woodson Terrace/St Louis,MO,--3-----,RQ,9806,,3844N 09022W, +,US,VTW,Vinton,Vinton,IA,--3-----,RQ,9307,,4210N 09201W, +,US,VVN,Vivian,Vivian,LA,--3-----,RQ,9307,,3252N 09359W, +,US,VVW,Valley View,Valley View,PA,--3-----,RQ,9307,,4039N 07633W, +,US,VWC,Van Wyck,Van Wyck,SC,--3-----,RQ,9008,,3452N 08051W, +,US,VWV,Vienna,Vienna,WV,--3-----,RQ,9307,,3919N 08133W, +,US,VYH,Vineyard Haven,Vineyard Haven,MA,--3-----,RQ,9307,,4127N 07036W, +,US,VYM,Valmy,Valmy,NV,--3-----,RQ,9307,,4048N 11708W, +,US,W2W,Woodworth,Woodworth,LA,--3-----,RQ,0907,,3109N 09230W, +,US,WAA,Wales,Wales,AK,---4----,AI,0001,,6537N 16805W, +,US,WAC,Walnut Creek,Walnut Creek,CA,--3-----,RQ,9307,,3754N 12204W, +,US,WAD,Waddington,Waddington,NY,--3-----,RQ,9506,,4452N 07512W, +,US,WAE,Wardensville,Wardensville,WV,--3-----,RQ,9307,,3905N 07836W, +,US,WAF,Watertown,Watertown,WI,--3-----,RQ,9307,,4312N 08843W, +,US,WAG,Walnut Grove,Walnut Grove,MS,--3-----,RQ,9307,,3235N 08928W, +,US,WAH,Wahpeton,Wahpeton,ND,---4----,AI,0001,,4616N 09637W, +,US,WAI,Waitsfield,Waitsfield,VT,--3-----,RQ,9307,,4412N 07249W, +,US,WAJ,Warren,Warren,RI,--3-----,RQ,9307,,4144N 07117W, +,US,WAK,Wallkill,Wallkill,NY,--3-----,RQ,9307,,4128N 07422W, +,US,WAL,Chincoteague,Chincoteague,VA,---4----,AI,0001,,3756N 07523W, +,US,WAM,Warren,Warren,MI,--3-----,RQ,9307,,4230N 08300W, +,US,WAN,Wanamingo,Wanamingo,MN,--3-----,RQ,9307,,4418N 09247W, +,US,WAO,Wamego,Wamego,KS,--3-----,RQ,9307,,3912N 09618W, +,US,WAP,Warsaw,Warsaw,IN,--3-----,RQ,9008,,4114N 08551W, +,US,WAQ,Wagram,Wagram,NC,--3-----,RQ,9307,,3453N 07922W, +,US,WAS,Washington,Washington,DC,-234----,RL,0103,,3854N 07702W, +,US,WAT,Waterbury,Waterbury,CT,--3-----,RQ,9008,,4133N 07303W, +,US,WAU,Wauna,Wauna,OR,--3-----,RQ,9307,,4609N 12324W, +,US,WAV,Waverly,Waverly,OH,--3-----,RQ,9008,,3908N 08259W, +,US,WAX,Waxahachie,Waxahachie,TX,--3-----,RQ,9307,,3224N 09651W, +,US,WAY,Waynesburg,Waynesburg,PA,---4----,AI,0001,,3954N 08011W, +,US,WAZ,Waynesville,Waynesville,MO,--3-----,RQ,9307,,3749N 09214W, +,US,WBA,Wabasso,Wabasso,MN,--3-----,RQ,9307,,4424N 09515W, +,US,WBB,Stebbins,Stebbins,AK,---4----,AI,0001,,6329N 16214W, +,US,WBC,West Branch,West Branch,MI,--3-----,RL,0001,,4417N 08414W, +,US,WBF,West Bloomfield,West Bloomfield,MI,--3-----,RQ,9307,,4234N 08322W, +,US,WBH,Wabash,Wabash,IN,--3-----,RQ,9307,,4048N 08549W, +,US,WBJ,Woodburn,Woodburn,OR,--3-----,RQ,9307,,4509N 12251W, +,US,WBK,Williamsburg,Williamsburg,KY,--3-----,RQ,9307,,3645N 08410W, +,US,WBL,Walled Lake,Walled Lake,MI,--3-----,RQ,9501,,4232N 08329W, +,US,WBN,Woburn,Woburn,MA,--34----,RQ,9008,,4229N 07109W, +,US,WBP,Wellsboro,Wellsboro,PA,--3-----,RQ,9307,,4145N 07718W, +,US,WBQ,Beaver,Beaver,AK,---4----,AI,0001,,6622N 14724W, +,US,WBR,Big Rapids,Big Rapids,MI,---4----,AI,9601,,4342N 08529W, +,US,WBS,West Berlin,West Berlin,NJ,--3-----,RQ,9506,,3949N 07456W, +,US,WBU,Boulder,Boulder,CO,--34----,AI,2101,,4001N 10516W, +,US,WBV,Waterbury,Waterbury,VT,--3-----,RQ,9307,,4420N 07245W, +!,US,WBW,West Bridgewater,West Bridgewater,MA,--3-----,RQ,9307,,4201N 07100W, +,US,WBX,Woodbridge,Woodbridge,VA,--3-----,RQ,9307,,3838N 07716W, +,US,WBY,Westbury,Westbury,NY,--3-----,RQ,9307,,4045N 07335W, +,US,WCA,West Carrollton,West Carrollton,OH,--3-----,RQ,9307,,3940N 08415W, +,US,WCB,West Columbia,West Columbia,SC,--3-----,RQ,9307,,3360N 08104W, +,US,WCD,Winchendon,Winchendon,MA,--3-----,RQ,9307,,4241N 07203W, +,US,WCE,West Creek,West Creek,NJ,--3-----,RQ,9307,,3938N 07418W, +,US,WCF,West Chesterfield,West Chesterfield,MA,--3-----,RQ,9307,,4224N 07253W, +,US,WCG,Washington Crossing,Washington Crossing,PA,--3-----,RQ,9307,,4018N 07452W, +,US,WCH,Winchester,Winchester,NH,--3-----,RQ,9307,,4247N 07223W, +,US,WCK,West Conshohocken,West Conshohocken,PA,--3-----,RQ,9307,,4004N 07519W, +,US,WCL,West Caldwell,West Caldwell,NJ,--3-----,RQ,9307,,4050N 07418W, +,US,WCQ,Washington Court House,Washington Court House,OH,--3-----,RQ,0101,,3932N 08326W, +,US,WCR,Chandalar,Chandalar,AK,---4----,AI,0001,,6730N 14830W, +,US,WCS,Winchester,Winchester,IN,--3-----,RQ,9307,,4010N 08459W, +,US,WCU,Wright City,Wright City,MO,--3-----,RQ,9307,,3850N 09101W, +,US,WCV,Winchester,Winchester,TN,--3-----,RQ,9307,,3511N 08607W, +,US,WCX,West Coxsackie,West Coxsackie,NY,--3-----,RQ,9307,,4222N 07349W, +,US,WCY,White City,White City,OR,--3-----,RQ,9307,,4226N 12250W, +,US,WDA,Walden,Walden,NY,--3-----,RQ,9307,,4134N 07411W, +,US,WDE,Wendell,Wendell,ID,--3-----,RQ,9307,,4247N 11442W, +,US,WDF,Womelsdorf,Womelsdorf,PA,--3-----,RQ,9307,,4022N 07611W, +,US,WDG,Enid,Enid,OK,--34----,AI,9601,,3624N 09753W, +,US,WDI,Woodlawn,Woodlawn,IL,--3-----,RQ,9307,,3820N 08902W, +,US,WDK,Woodstock,Woodstock,MD,--3-----,RQ,9307,,3911N 07726W, +,US,WDM,Waldron,Waldron,MI,--3-----,RQ,9307,,4144N 08425W, +,US,WDN,Waldron Island,Waldron Island,WA,---4----,AI,0001,,4842N 12302W, +,US,WDP,West Deptford,West Deptford,NJ,--3-----,RQ,9307,,3950N 07511W, +,US,WDQ,Woodland,Woodland,CA,--3-----,RQ,9307,,3841N 12146W, +,US,WDR,Winder,Winder,GA,---4----,AI,9601,,3360N 08343W, +,US,WDS,Woodstock,Woodstock,CT,--3-----,RQ,9008,,4157N 07158W, +,US,WDT,Wadsworth,Wadsworth,TX,--3-----,RQ,9307,,2850N 09556W, +,US,WDV,Woodinville,Woodinville,WA,--3-----,RQ,9307,,4745N 12210W, +,US,WDW,Wendover,Wendover,WY,--3-----,RQ,9307,,4220N 10452W, +,US,WDX,Wendell,Wendell,NC,--3-----,RQ,9307,,3547N 07822W, +!,US,WDY,Woodbury,Woodbury,MN,--3-----,RQ,9307,,4455N 09256W, +,US,WEA,Weatherford,Weatherford,TX,---4----,AI,0001,,3246N 09748W, +,US,WEB,Webster,Webster,MA,--3-----,RQ,9307,,4203N 07153W, +,US,WED,West Hatfield,West Hatfield,MA,--3-----,RQ,9307,,4222N 07238W, +,US,WEF,Wellford,Wellford,SC,--3-----,RQ,9307,,3457N 08206W, +,US,WEG,West Greenwich,West Greenwich,RI,--3-----,RQ,9008,,4137N 07140W, +,US,WEH,Weatherly,Weatherly,PA,--3-----,RQ,9307,,4057N 07550W, +,US,WEL,Wellesley,Wellesley,MA,--3-----,RQ,9506,,4218N 07118W, +,US,WEM,West Des Moines,West Des Moines,IA,--3-----,RL,0004,,4134N 09346W, +,US,WEN,Warren,Warren,IL,--3-----,RQ,0101,,4230N 08959W, +,US,WEO,Weldon,Weldon,NC,--3-----,RQ,9307,,3626N 07736W, +,US,WES,Wellsburg,Wellsburg,WV,--3-----,RQ,9506,,4014N 08035W, +,US,WET,Weirton,Weirton,WV,--3-----,RQ,9008,,4024N 08035W, +,US,WEW,Warden,Warden,WA,--3-----,RQ,9307,,4658N 11902W, +,US,WEY,Weymouth,Weymouth,MA,--3-----,RQ,9307,,4213N 07056W, +,US,WEZ,West Elizabeth,West Elizabeth,PA,--3-----,RQ,9307,,4016N 07954W, +,US,WFD,Wallingford,Wallingford,CT,--3-----,RQ,9008,,4127N 07249W, +,US,WFI,Westfield,Westfield,IN,--3-----,RQ,9307,,4003N 08608W, +,US,WFJ,Waterford Works,Waterford Works,NJ,--3-----,RQ,9307,,3943N 07451W, +,US,WFK,Frenchville,Frenchville,ME,---4----,AI,0001,,4717N 06823W, +,US,WFL,Westfield,Westfield,NC,--3-----,RQ,9307,,3629N 08027W, +,US,WFM,Waldorf,Waldorf,MD,--3-----,RQ,9307,,3838N 07655W, +,US,WFP,Williamsport,Williamsport,MD,--3-----,RQ,9307,,3936N 07749W, +,US,WFR,Westford,Westford,MA,--3-----,RQ,9307,,4235N 07126W, +,US,WFS,Wappingers Falls,Wappingers Falls,NY,--3-----,RQ,9806,,4136N 07355W, +,US,WFT,Warrenton,Warrenton,NC,--3-----,RQ,9307,,3624N 07809W, +,US,WFW,Wheatland,Wheatland,WI,--3-----,RQ,9307,,4235N 08814W, +,US,WFX,Waverly,Waverly,MD,--3-----,RQ,9307,,3920N 07636W, +,US,WFY,Waverly,Waverly,NY,--3-----,RQ,9307,,4439N 07432W, +,US,WFZ,Winchester,Winchester,OH,--3-----,RQ,9307,,3857N 08339W, +,US,WGG,Wiggins,Wiggins,CO,--3-----,RQ,9307,,4014N 10404W, +,US,WGH,Worthington,Worthington,OH,--3-----,RQ,9307,,4006N 08301W, +,US,WGL,Wheatland,Wheatland,PA,--3-----,RQ,9307,,4112N 08030W, +,US,WGN,Wellington,Wellington,OH,--3-----,RQ,9307,,4110N 08213W, +,US,WGO,Winchester,Winchester,VA,--34----,AI,9601,,3911N 07810W, +,US,WGP,Wyomissing,Wyomissing,PA,--3-----,RQ,9307,,4020N 07558W, +,US,WGQ,Weyers Cave,Weyers Cave,VA,--3-----,RQ,9307,,3817N 07855W, +,US,WGR,Walnut Grove,Walnut Grove,MO,--3-----,RQ,9307,,3725N 09333W, +,US,WGS,Waynesboro,Waynesboro,MS,--3-----,RQ,9307,,3140N 08839W, +,US,WGW,Wagontown,Wagontown,PA,--3-----,RQ,9307,,4001N 07551W, +,US,WGZ,Wrightstown,Wrightstown,NJ,--3-----,RQ,9307,,4002N 07437W, +,US,WHA,West Hazleton,West Hazleton,PA,--3-----,RQ,9307,,4058N 07560W, +,US,WHB,White Bluff,White Bluff,TN,--3-----,RQ,9307,,3606N 08713W, +,US,WHC,West Haven,West Haven,CT,--3-----,RQ,9008,,4116N 07257W, +,US,WHD,Hyder,Hyder,AK,---4----,AI,0001,,5555N 13002W, +,US,WHE,Wheeling,Wheeling,IL,--3-----,RQ,9307,,4208N 08756W, +,US,WHF,West Hartford,West Hartford,CT,--3-----,RL,0005,,4146N 07245W, +!,US,WHH,Warrensville Heights,Warrensville Heights,OH,--3-----,RQ,9307,,4126N 08131W, +,US,WHI,Whippany,Whippany,NJ,--3-----,RQ,9307,,4049N 07425W, +,US,WHJ,Walhalla,Walhalla,SC,--3-----,RQ,9307,,3446N 08304W, +,US,WHP,Westhope,Westhope,ND,--3-----,RN,0105,,4855N 10101W, +,US,WHQ,West Helena,West Helena,AR,--3-----,RQ,9307,,3433N 09039W, +,US,WHR,Whittier,Whittier,CA,--3-----,RQ,9307,,3358N 11802W, +,US,WHT,Wharton,Wharton,TX,---4----,AI,9601,,2919N 09606W, +,US,WHW,Whitehall,Whitehall,WI,--3-----,RQ,9307,,4422N 09119W, +,US,WHX,Wheaton,Wheaton,IL,--3-----,RQ,9307,,4152N 08807W, +,US,WHY,Whitehall,Whitehall,PA,--3-----,RQ,9307,,4039N 07530W, +,US,WHZ,Ward Hill,Ward Hill,MA,--3-----,RQ,9307,,4245N 07106W, +,US,WIB,Willow Brook,Willow Brook,IL,--3-----,RQ,9307,,3003N 08956W, +,US,WID,Windber,Windber,PA,--3-----,RQ,9307,,4014N 07850W, +,US,WIE,Winterport,Winterport,ME,--3-----,RQ,9307,,4438N 06851W, +,US,WIF,Winfield,Winfield,AL,--3-----,RQ,9307,,3356N 08749W, +,US,WIG,Winthrop,Winthrop,MN,--3-----,RQ,9307,,4433N 09422W, +,US,WII,Wilder,Wilder,KY,--3-----,RQ,9307,,3903N 08429W, +,US,WIJ,Wilder,Wilder,ID,--3-----,RQ,9307,,4341N 11655W, +,US,WIL,Williston,Williston,VT,--3-----,RQ,9307,,4426N 07304W, +,US,WIN,Winchester,Winchester,KY,--3-----,RQ,9307,,3759N 08411W, +,US,WIQ,Wilson,Wilson,AR,--3-----,RQ,9307,,3534N 09003W, +,US,WIS,Williamson,Williamson,NY,--3-----,RQ,9307,,4313N 07711W, +,US,WIT,Williston,Williston,FL,--3-----,RQ,9307,,2923N 08227W, +,US,WIU,Wimauma,Wimauma,FL,--3-----,RQ,9307,,2743N 08219W, +,US,WIV,Windsor,Windsor,VT,--3-----,RQ,9307,,4329N 07223W, +,US,WIW,Willow Wood,Willow Wood,OH,--3-----,RL,0001,,3834N 08228W, +,US,WIX,Wixom,Wixom,MI,--3-----,RQ,9008,,4231N 08332W, +,US,WIY,Wainscott,Wainscott,NY,--3-----,RQ,9307,,4056N 07215W, +,US,WIZ,Wissahickon,Wissahickon,PA,--3-----,RQ,9307,,4001N 07512W, +,US,WJF,Lancaster,Lancaster,CA,---4----,AI,9601,,3442N 11808W, +,US,WJI,Whitlock,Whitlock,TN,--3-----,RQ,9307,,3622N 08821W, +,US,WJK,Wakefield,Wakefield,NE,--3-----,RQ,9307,,4218N 09651W, +,US,WJL,West Linn,West Linn,OR,--3-----,RQ,9307,,4522N 12237W, +,US,WJN,Winsted,Winsted,MN,--3-----,RQ,9307,,4458N 09403W, +,US,WJO,Westmont,Westmont,IL,--3-----,RQ,9307,,4148N 08759W, +,US,WJP,Walton Hills,Walton Hills,OH,--3-----,RQ,9307,,4122N 08134W, +,US,WJQ,Weehawken,Weehawken,NJ,--3-----,RQ,9307,,4046N 07401W, +,US,WJR,Weimar,Weimar,TX,--3-----,RQ,9307,,2942N 09647W, +,US,WJX,Wilsonville,Wilsonville,OR,--3-----,RQ,9307,,4519N 12246W, +,US,WJY,Warm Springs,Warm Springs,CA,--3-----,RQ,9307,,3407N 11715W, +,US,WJZ,Watts,Watts,CA,--3-----,RQ,9307,,3356N 11815W, +,US,WKA,Waseca,Waseca,MN,--3-----,RQ,9307,,4405N 09330W, +,US,WKE,Waukee,Waukee,IA,--3-----,RL,0105,,4137N 09353W, +,US,WKF,Wakefield,Wakefield,MA,--3-----,RQ,9307,,4230N 07104W, +,US,WKK,Aleknagik,Aleknagik,AK,---4----,AI,0001,,5918N 15841W, +,US,WKL,Waikoloa,Waikoloa,HI,---4----,AI,0001,,1957N 15547W, +,US,WKM,Wilkinsonville,Wilkinsonville,MA,--3-----,RQ,9307,,4211N 07143W, +,US,WKO,Weslaco,Weslaco,TX,--3-----,RQ,9307,,2610N 09759W, +,US,WKS,Weeks,Weeks,LA,--3-----,RQ,9307,,2949N 09148W, +,US,WKV,Wilkesville,Wilkesville,OH,--3-----,RQ,9307,,3904N 08220W, +,US,WKW,Waunakee,Waunakee,WI,--3-----,RQ,9307,,4312N 08927W, +,US,WKX,Weskan,Weskan,KS,--3-----,RQ,9307,,3852N 10158W, +,US,WKY,Wickliffe,Wickliffe,KY,--3-----,RQ,9307,,3658N 08905W, +,US,WKZ,West Covina,West Covina,CA,--3-----,RQ,9307,,3404N 11756W, +,US,WLA,Willard,Willard,OH,--3-----,RQ,9307,,4103N 08244W, +,US,WLB,Labouchere Bay,Labouchere Bay,AK,---4----,AI,0001,,5618N 13337W, +,US,WLC,Windsor Locks,Windsor Locks,CT,--34----,RL,0003,BDL,4156N 07239W, +,US,WLD,Winfield,Winfield,KS,---4----,AI,9601,,3714N 09660W, +,US,WLE,Wallace,Wallace,NC,--3-----,RQ,9307,,3444N 07760W, +,US,WLF,Waldo,Waldo,FL,--3-----,RQ,9008,,2947N 08210W, +,US,WLG,Williamsburg,Williamsburg,VA,--3-----,RL,0201,,3716N 07642W,cf Apt US PHF +,US,WLI,West Lebanon,West Lebanon,IN,--3-----,RQ,9806,,4016N 08723W, +,US,WLK,Selawik,Selawik,AK,---4----,AI,0001,,6636N 16000W, +,US,WLM,Waltham,Waltham,MA,---4----,AI,9601,,4223N 07114W, +,US,WLO,Willingboro,Willingboro,NJ,--3-----,RQ,9307,,4002N 07453W, +,US,WLP,Walpole,Walpole,NH,--3-----,RQ,9307,,4305N 07226W, +,US,WLR,Loring,Loring,AK,---4----,AI,0001,,5536N 13138W, +,US,WLS,Walls,Walls,MS,--3-----,RQ,9307,,3457N 09009W, +,US,WLT,Wallington,Wallington,NJ,--3-----,RQ,9307,,4051N 07407W, +,US,WLU,Walnut,Walnut,CA,--3-----,RQ,9307,,3343N 11748W, +,US,WLV,Wallisville,Wallisville,TX,--3-----,RQ,9307,,2950N 09445W, +,US,WLW,Willows,Willows,CA,---4----,AI,0001,,3931N 12212W, +,US,WLX,Westlake,Westlake,OH,--3-----,RQ,9307,,4127N 08155W, +,US,WLZ,Winamac,Winamac,IN,--3-----,RQ,9307,,4103N 08636W, +,US,WMC,Winnemucca,Winnemucca,NV,---4----,AI,9601,,4058N 11744W, +,US,WMD,Westminster,Westminster,MD,--3-----,RQ,9307,,3935N 07660W, +,US,WME,Westminster,Westminster,CO,--3-----,RQ,9307,,3950N 10502W, +,US,WMF,West Mifflin,West Mifflin,PA,--3-----,RQ,9307,,4022N 07952W, +,US,WMH,Mountain Home,Mountain Home,AR,---4----,AI,9601,,3620N 09223W, +,US,WMI,Westminster,Westminster,MA,--3-----,RQ,9307,,4233N 07155W, +,US,WMK,Meyers Chuck,Meyers Chuck,AK,---4----,AI,0001,,5544N 13215W, +,US,WML,Westmoreland,Westmoreland,PA,--3-----,RQ,9307,,4204N 08009W, +,US,WMM,Wampum,Wampum,PA,--3-----,RQ,9307,,4053N 08020W, +,US,WMN,West Middlesex,West Middlesex,PA,--3-----,RQ,9307,,4110N 08027W, +,US,WMO,White Mountain,White Mountain,AK,---4----,AI,0001,,6441N 16325W, +,US,WMQ,Whitehall,Whitehall,MI,--3-----,RQ,9307,,4325N 08621W, +,US,WMR,Westminster,Westminster,SC,--3-----,RQ,9307,,3440N 08306W, +,US,WMS,Williamstown,Williamstown,MA,--3-----,RQ,9307,,4243N 07313W, +,US,WMW,West Milwaukee,West Milwaukee,WI,--3-----,RQ,0607,,4301N 08758W, +,US,WMX,West Monroe,West Monroe,LA,--3-----,RQ,9307,,3231N 09209W, +,US,WMY,Windermere,Windermere,FL,--3-----,RQ,9307,,2830N 08132W, +,US,WNA,Napakiak,Napakiak,AK,---4----,AI,0001,,6041N 16160W, +,US,WNC,Tuxekan Island,Tuxekan Island,AK,---4----,AI,0001,,5551N 13317W, +,US,WND,Windsor,Windsor,CT,--3-----,RQ,9008,,4151N 07239W, +,US,WNE,Wayne,Wayne,MI,--3-----,RQ,9307,,4217N 08323W, +,US,WNJ,Windsor,Windsor,NJ,--3-----,RQ,9307,,4015N 07435W, +,US,WNP,Wayne,Wayne,PA,--3-----,RQ,9307,,4003N 07523W, +,US,WNQ,Wadena,Wadena,MN,--3-----,RL,0001,,4627N 09508W, +,US,WNR,Weiner,Weiner,AR,--3-----,RQ,9307,,3537N 09054W, +,US,WNT,Winterset,Winterset,IA,--3-----,RQ,0101,,4120N 09401W, +,US,WNW,Wrightwood,Wrightwood,CA,--3-----,RQ,9307,,3422N 11738W, +,US,WNX,Wellman,Wellman,TX,--3-----,RQ,9307,,3303N 10226W, +,US,WNY,West New York,West New York,NJ,--3-----,RQ,9307,,4047N 07401W, +,US,WNZ,West End,West End,NC,--3-----,RQ,9307,,3555N 07905W, +,US,WOH,Woods Hole,Woods Hole,MA,--3-----,RQ,9307,,4131N 07040W, +,US,WOJ,Woodbury,Woodbury,NJ,--3-----,RQ,9307,,3950N 07509W, +,US,WOM,Wilmington,Wilmington,MA,--3-----,RQ,9008,,4233N 07110W, +,US,WON,Woodlawn,Woodlawn,OH,--3-----,RL,0004,,3915N 08428W, +,US,WOQ,Woodridge,Woodridge,IL,--3-----,RL,0002,,4145N 08803W, +,US,WOW,Willow,Willow,AK,---4----,AI,0201,,6145N 15002W, +,US,WOX,Windsor,Windsor,CA,--3-----,RQ,9307,,3833N 12249W, +,US,WOY,Woodstock,Woodstock,GA,--3-----,RQ,9307,,3406N 08431W, +,US,WOZ,Woodstock,Woodstock,IL,--3-----,RQ,9307,,4219N 08827W, +,US,WPA,Warren,Warren,PA,--3-----,RQ,9307,,4151N 07909W, +,US,WPD,Woodland Hills,Woodland Hills,CA,--3-----,RQ,9307,,3410N 11836W, +,US,WPH,Waipahu (Oahu),Waipahu (Oahu),HI,--3-----,RQ,9307,,2123N 15801W, +,US,WPI,White Pigeon,White Pigeon,MI,--3-----,RQ,9307,,4148N 08539W, +,US,WPJ,Westwood Village,Westwood Village,CA,--3-----,RQ,9307,,3404N 11827W, +,US,WPK,Winter Park,Winter Park,FL,--3-----,RQ,9307,,2836N 08121W, +,US,WPL,Walpole,Walpole,MA,--3-----,RQ,9307,,4209N 07115W, +,US,WPM,West Point,West Point,MS,--3-----,RQ,9307,,3336N 08839W, +,US,WPN,West Plains,West Plains,MO,--3-----,RQ,9307,,3644N 09151W, +,US,WPO,Paonia,Paonia,CO,---4----,AI,0001,,3852N 10736W, +,US,WPP,Westport,Westport,PA,--3-----,RQ,9307,,4118N 07750W, +,US,WPQ,West Lebanon,West Lebanon,NH,--3-----,RQ,9307,,4339N 07219W, +,US,WPS,Wabasso,Wabasso,FL,--3-----,RQ,9307,,2745N 08026W, +,US,WPW,Wapato,Wapato,WA,--3-----,RQ,9307,,4627N 12025W, +,US,WPX,Winthrop Harbor,Winthrop Harbor,IL,--3-----,RQ,9307,,4229N 08749W, +,US,WPZ,Westernport,Westernport,MD,--3-----,RQ,9307,,3929N 07903W, +,US,WQF,Whittier,Whittier,AK,--3-----,RQ,9307,,6046N 14841W, +,US,WQG,Wilmington,Wilmington,IL,--3-----,RQ,9307,,4119N 08810W, +,US,WQH,Westchester,Westchester,CA,--3-----,RQ,9307,,3358N 11824W, +,US,WQJ,West Los Angeles,West Los Angeles,CA,--3-----,RQ,9307,,3403N 11826W, +,US,WQL,Westlake,Westlake,LA,--3-----,RQ,9307,,3015N 09315W, +,US,WQN,Wauconda,Wauconda,IL,--3-----,RQ,9307,,4216N 08808W, +,US,WQO,Waconia,Waconia,MN,--3-----,RQ,9307,,4451N 09347W, +,US,WQR,Warren,Warren,AR,--3-----,RQ,9307,,3337N 09204W, +,US,WQS,Wasco,Wasco,CA,--3-----,RQ,9307,,3536N 11920W, +,US,WQW,Winlock,Winlock,WA,--3-----,RQ,9307,,4630N 12256W, +,US,WQX,Williamston,Williamston,NC,--3-----,RQ,9307,,3551N 07703W, +,US,WRA,Warrington,Warrington,PA,--3-----,RQ,9307,,4015N 07508W, +!,US,WRB,Warner Robins,Warner Robins,GA,--3-----,RQ,9307,,3237N 08336W, +,US,WRD,West Redding,West Redding,CT,--3-----,RN,0105,,4120N 07326W, +,US,WRF,Wethersfield,Wethersfield,CT,--3-----,RQ,9307,,4143N 07239W, +,US,WRH,Worth,Worth,IL,--3-----,RQ,9307,,4141N 08748W, +,US,WRI,Fort Dix,Fort Dix,NJ,---4----,AI,0001,,4002N 07437W, +,US,WRL,Worland,Worland,WY,--34----,RQ,9008,,4401N 10757W, +,US,WRM,Warminster,Warminster,PA,--3-----,RQ,9307,,4012N 07506W, +,US,WRN,Warren,Warren,OH,--3-----,RN,0105,,4114N 08049W, +,US,WRO,Westborough,Westborough,MA,--3-----,RQ,9008,,4216N 07137W, +,US,WRQ,Woodridge,Woodridge,DC,--3-----,RQ,9307,,3856N 07658W, +,US,WRR,Warrendale,Warrendale,PA,--3-----,RQ,9307,,4039N 08005W, +,US,WRS,Warners,Warners,NY,--3-----,RQ,9307,,4305N 07620W, +,US,WRT,Warrenton,Warrenton,MO,--3-----,RQ,9307,,3849N 09109W, +,US,WRV,Wood River,Wood River,IL,--3-----,RQ,9307,,3852N 09006W, +,US,WRX,Wortham,Wortham,TX,--3-----,RQ,9307,,3147N 09628W, +,US,WRY,West Roxbury,West Roxbury,MA,--3-----,RQ,9307,,4217N 07109W, +,US,WRZ,Warrick,Warrick,IN,--3-----,RQ,9307,,3755N 08721W, +,US,WSA,West Seneca,West Seneca,NY,--3-----,RQ,9307,,4250N 07845W, +,US,WSB,Steamboat Bay,Steamboat Bay,AK,---4----,AI,0001,,5716N 13331W, +,US,WSC,Weston,Weston,CT,--3-----,RL,0003,,4112N 07323W, +,US,WSD,White Sands,White Sands,NM,---4----,AI,9601,,3223N 10630W, +,US,WSE,Winslow,Winslow,ME,--3-----,RQ,9307,,4433N 06937W, +,US,WSF,Sarichef,Sarichef,AK,---4----,AI,0001,,6614N 16607W, +,US,WSG,Washington,Washington,PA,---4----,AI,9601,,4010N 08015W, +,US,WSH,Shirley,Shirley,NY,---4----,AI,0001,,4048N 07252W, +,US,WSI,Willsboro,Willsboro,NY,--3-----,RQ,9307,,4421N 07324W, +,US,WSJ,San Juan,San Juan,AK,---4----,AI,0001,,1828N 06607W, +,US,WSK,Washington,Washington,MO,--3-----,RQ,9307,,3833N 09101W, +,US,WSL,Washingtonville,Washingtonville,NY,--3-----,RQ,0002,,4126N 07410W, +,US,WSM,West Sacramento,West Sacramento,CA,--3-----,RQ,9307,,3835N 12132W, +,US,WSN,South Naknek,South Naknek,AK,---4----,AI,0001,,5843N 15660W, +,US,WSO,Wilson,Wilson,NC,--3-----,RQ,9008,,3543N 07755W, +,US,WSP,West Springfield,West Springfield,MA,--3-----,RQ,9307,,4206N 07237W, +,US,WSQ,Washington,Washington,IN,--3-----,RQ,9307,,3840N 08710W, +,US,WSR,Windsor,Windsor,CO,--3-----,RQ,9008,,4029N 10454W, +,US,WST,Westerly,Westerly,RI,---4----,AI,9601,,4123N 07150W, +,US,WSU,West Springfield,West Springfield,IL,--3-----,RQ,0212,,4206N 07237W, +,US,WSV,Wellsville,Wellsville,KS,--3-----,RQ,9307,,3843N 09505W, +,US,WSW,Warsaw,Warsaw,NC,--3-----,RQ,9307,,3460N 07805W, +,US,WSX,West Sound,West Sound,WA,---4----,AI,0001,,4838N 12257W, +,US,WSY,Weston,Weston,MO,--3-----,RQ,9307,,3925N 09454W, +,US,WSZ,Westport,Westport,WA,--3-----,RQ,9307,,4653N 12407W, +,US,WTA,Waterman,Waterman,IL,--3-----,RQ,9307,,4146N 08846W, +,US,WTB,Westbrook,Westbrook,ME,--3-----,RQ,9008,,4341N 07022W, +,US,WTC,Watson,Watson,CA,-23-----,RQ,0207,,3349N 11814W, +,US,WTE,White Bear Lake,White Bear Lake,MN,--3-----,RQ,9307,,4505N 09300W, +,US,WTG,Winter Garden,Winter Garden,FL,--3-----,RQ,9307,,2834N 08135W, +,US,WTH,White Springs,White Springs,FL,--3-----,RQ,9307,,3020N 08246W, +,US,WTI,Whiting,Whiting,WI,--3-----,RQ,9307,,4430N 08934W, +,US,WTJ,Wittmann,Wittmann,AZ,--3-----,RQ,9307,,3347N 11232W, +,US,WTK,Noatak,Noatak,AK,---4----,AI,0001,,6734N 16258W, +,US,WTL,Tuntutuliak,Tuntutuliak,AK,---4----,AI,0001,,6022N 16243W, +,US,WTM,Waterford,Waterford,ME,--3-----,RQ,9008,,4411N 07043W, +,US,WTO,Warrenton,Warrenton,OR,--3-----,RN,0105,,4610N 12355W, +,US,WTP,West Point,West Point,PA,--3-----,RQ,9307,,4012N 07518W, +,US,WTQ,Wharton,Wharton,NJ,--3-----,RQ,9307,,4054N 07435W, +,US,WTR,White River,White River,AZ,---4----,AI,0001,,4334N 10045W, +,US,WTS,White Plains,White Plains,NY,--3-----,RQ,9506,,4102N 07346W, +,US,WTT,Watertown,Watertown,CT,--3-----,RQ,9307,,4136N 07307W, +,US,WTV,Watervliet,Watervliet,MI,--3-----,RQ,9008,,4212N 08615W, +,US,WTW,Watertown,Watertown,MA,--3-----,RQ,9307,,4222N 07111W, +,US,WTY,Westerville,Westerville,OH,--3-----,RQ,9307,,4008N 08256W, +,US,WUB,Woodburn,Woodburn,IN,--3-----,RQ,9307,,4108N 08451W, +,US,WUD,Woodstock,Woodstock,TN,--3-----,RQ,9307,,3516N 08959W, +,US,WUF,Woodway,Woodway,WA,--3-----,RQ,9307,,4747N 12223W, +,US,WUG,Whittington,Whittington,IL,--3-----,RQ,9307,,3805N 08854W, +,US,WUI,West Union,West Union,IA,--3-----,RQ,0101,,4258N 09148W, +,US,WUL,Woodlake,Woodlake,CA,--3-----,RQ,9307,,3625N 11906W, +,US,WUN,Wauseon,Wauseon,OH,--3-----,RQ,9307,,4133N 08408W, +,US,WUO,Warrenton,Warrenton,OH,--3-----,RQ,9307,,4012N 08041W, +,US,WUQ,West Union,West Union,OR,--3-----,RQ,9307,,4534N 12254W, +,US,WUT,West Unity,West Unity,OH,--3-----,RQ,9901,,4135N 08426W, +,US,WUV,Wood Village,Wood Village,OR,--3-----,RQ,9307,,4532N 12225W, +,US,WUW,Wallula,Wallula,WA,--3-----,RQ,9307,,4605N 11854W, +,US,WUX,Woodland,Woodland,WA,--3-----,RQ,9307,,4555N 12244W, +,US,WUZ,Williamsburg,Williamsburg,OH,--3-----,RQ,9307,,3903N 08403W, +,US,WVB,Waverly,Waverly,NE,--3-----,RQ,9307,,4055N 09632W, +,US,WVD,Waterford,Waterford,CA,--3-----,RQ,9307,,3738N 12046W, +,US,WVE,Westville,Westville,NJ,--3-----,RQ,9307,,3952N 07508W, +,US,WVJ,Warrenton,Warrenton,VA,--3-----,RQ,9307,,3843N 07748W, +,US,WVL,Waterville,Waterville,ME,--34----,AI,9601,,4433N 06938W, +,US,WVM,Wellsville,Wellsville,MO,--3-----,RQ,9307,,3904N 09134W, +,US,WVQ,Waverly,Waverly,TN,--3-----,RQ,9307,,3605N 08748W, +,US,WVR,West Hanover,West Hanover,MA,--3-----,RQ,9307,,4207N 07053W, +,US,WVS,Waterville,Waterville,MA,--3-----,RQ,9307,,4155N 07050W, +,US,WVV,Weaverville,Weaverville,NC,--3-----,RQ,9307,,3542N 08234W, +,US,WVW,Willowbrook,Willowbrook,CA,--3-----,RQ,9307,,3355N 11815W, +,US,WVY,Waverly,Waverly,IA,--3-----,RQ,9307,,4244N 09228W, +,US,WVZ,West Bath,West Bath,ME,--3-----,RQ,9307,,4355N 06952W, +,US,WWA,Wasilla,Wasilla,AK,---4----,AI,9601,,6135N 14927W, +,US,WWD,Wildwood,Wildwood,NJ,---4----,AI,0001,,3859N 07449W, +,US,WWF,Wildwood,Wildwood,FL,--3-----,RQ,9307,,2852N 08202W, +,US,WWH,West Wareham,West Wareham,MA,--3-----,RQ,9307,,4147N 07046W, +,US,WWJ,West Windsor,West Windsor,NJ,--3-----,RQ,9307,,4018N 07437W, +,US,WWK,Waldwick,Waldwick,NJ,--3-----,RQ,9307,,4101N 07407W, +,US,WWN,West Warren,West Warren,MA,--3-----,RQ,9307,,4213N 07214W, +,US,WWO,Westwego,Westwego,LA,--3-----,RN,0105,,2954N 09009W, +,US,WWP,Whale Pass,Whale Pass,AK,---4----,AI,0001,,5607N 13311W, +,US,WWR,Woodward,Woodward,OK,--34----,AI,9601,,3626N 09923W, +!,US,WWS,Whitehouse,Whitehouse,OH,--3-----,RQ,9307,,4131N 08348W, +,US,WWT,Newtok,Newtok,AK,---4----,AI,0001,,6056N 16438W, +,US,WWU,West Hollywood,West Hollywood,CA,--3-----,RQ,9307,,3406N 11822W, +,US,WWV,Washington,Washington,WV,--3-----,RQ,9307,,3915N 08140W, +,US,WWX,Wautoma,Wautoma,WI,--3-----,RQ,9307,,4405N 08917W, +,US,WWY,Willow Island,Willow Island,WV,--3-----,RQ,9307,,3922N 08118W, +,US,WWZ,Watertown,Watertown,TN,--3-----,RQ,9307,,3606N 08608W, +,US,WXA,Walthourville,Walthourville,GA,--3-----,RQ,9307,,3146N 08138W, +,US,WXD,Wexford,Wexford,PA,--3-----,RN,0105,,4038N 08003W, +,US,WXG,Washougal,Washougal,WA,--3-----,RQ,9307,,4535N 12221W, +,US,WXI,Whitefish,Whitefish,MT,--3-----,RQ,9307,,4825N 11420W, +,US,WXM,Whitinsville,Whitinsville,MA,--3-----,RQ,9307,,4207N 07140W, +,US,WXN,Warren,Warren,MA,--3-----,RQ,9307,,4213N 07212W, +,US,WXO,Westover,Westover,GA,--3-----,RQ,9307,,3324N 08159W, +,US,WXQ,Wayland,Wayland,NY,--3-----,RQ,9307,,4234N 07735W, +,US,WXY,Westfield,Westfield,NY,--3-----,RQ,9307,,4219N 07935W, +,US,WXZ,Winton,Winton,CA,--3-----,RQ,9307,,3723N 12037W, +,US,WYA,Weatherford,Weatherford,OK,--3-----,RQ,9307,,3532N 09842W, +!,US,WYB,Waynesboro,Waynesboro,VA,--3-----,RQ,9307,,3804N 07853W, +,US,WYC,Wyalusing,Wyalusing,PA,--3-----,RQ,9307,,4140N 07616W, +,US,WYD,Wyandotte,Wyandotte,MI,--3-----,RQ,9307,,4212N 08309W, +,US,WYE,Wayne,Wayne,OK,--3-----,RQ,9307,,3455N 09719W, +,US,WYG,Waynesboro,Waynesboro,GA,--3-----,RQ,9307,,3305N 08201W, +,US,WYH,Wylie,Wylie,TX,--3-----,RQ,9307,,3301N 09632W, +,US,WYJ,Wayne,Wayne,IN,--3-----,RQ,9307,,4105N 08508W, +,US,WYL,Winnsboro,Winnsboro,LA,--3-----,RQ,9307,,3210N 09143W, +,US,WYM,Wyoming,Wyoming,MI,--3-----,RQ,9307,,4255N 08542W, +,US,WYN,Wayne,Wayne,NJ,--3-----,RQ,9307,,4057N 07414W, +,US,WYO,Waynesboro,Waynesboro,PA,--3-----,RQ,9307,,3945N 07735W, +,US,WYP,Wyoming,Wyoming,PA,--3-----,RQ,9307,,4119N 07550W, +,US,WYQ,Wynne,Wynne,AR,--3-----,RQ,9307,,3513N 09047W, +,US,WYR,Waymart,Waymart,PA,--3-----,RQ,9307,,4135N 07524W, +,US,WYS,West Yellowstone,West Yellowstone,MT,---4----,AI,0001,,4440N 11106W, +,US,WYT,Wilton,Wilton,ME,--3-----,RQ,9307,,4436N 07014W, +,US,WYU,Waynesboro,Waynesboro,TN,--3-----,RQ,9307,,3519N 08746W, +,US,WYV,Waynesville,Waynesville,NC,--3-----,RQ,9307,,3529N 08259W, +,US,WYW,Wyoming,Wyoming,WI,--3-----,RQ,9307,,4308N 09007W, +,US,WYX,Willis,Willis,TX,--3-----,RQ,9307,,3025N 09529W, +,US,WZA,Wabasha,Wabasha,MN,--3-----,RQ,9307,,4423N 09202W, +,US,WZG,Willow Springs,Willow Springs,IL,--3-----,RQ,9307,,4144N 08752W, +,US,WZI,Willits,Willits,CA,--3-----,RQ,9307,,3925N 12321W, +,US,WZJ,Williamstown,Williamstown,NJ,--3-----,RQ,9307,,3941N 07459W, +,US,WZK,Westbrook,Westbrook,CT,--3-----,RQ,9307,,4117N 07227W, +,US,WZL,Wall,Wall,SD,-23--6--,RL,0701,,4360N 10214W, +,US,WZM,Wells,Wells,ME,--3-----,RQ,9307,,4319N 07035W, +,US,WZP,Williamstown,Williamstown,PA,--3-----,RQ,9307,,4035N 07637W, +,US,WZV,Wailuku (Maui),Wailuku (Maui),HI,--3-----,RQ,9307,,2053N 15631W, +,US,WZW,White Swan,White Swan,WA,--3-----,RQ,9307,,4624N 12043W, +,US,XAU,Apple Grove,Apple Grove,WV,--3-----,RQ,9307,,3726N 08148W, +,US,XAV,Appalachia,Appalachia,VA,--3-----,RQ,9307,,3654N 08247W, +,US,XAX,Appomattox,Appomattox,VA,--3-----,RQ,9307,,3722N 07850W, +,US,XAY,Arcola,Arcola,LA,--3-----,RQ,9307,,3047N 09031W, +,US,XAZ,Archdale,Archdale,NC,--3-----,RQ,9307,,3555N 07958W, +,US,XBA,Aberdeen,Aberdeen,SC,--3-----,RQ,9307,,4659N 12349W, +,US,XBC,Arlington,Arlington,VT,--3-----,RQ,9307,,4305N 07309W, +,US,XBD,Ampthill,Ampthill,VA,--3-----,RQ,9307,,3728N 07727W, +,US,XBE,Allston,Allston,MA,--3-----,RQ,9307,,4222N 07108W, +,US,XBF,Aston,Aston,PA,--3-----,RQ,9307,,3952N 07526W, +,US,XBH,Ashland,Ashland,PA,--3-----,RQ,9307,,4047N 07621W, +,US,XBI,Au Gres,Au Gres,MI,--3-----,RQ,9307,,4403N 08342W, +,US,XBJ,Austin,Austin,IN,--3-----,RQ,9307,,3844N 08549W, +,US,XBK,Avard,Avard,OK,--3-----,RQ,9307,,3642N 09847W, +,US,XBL,Agawam,Agawam,MA,--3-----,RQ,9307,,4204N 07237W, +,US,XBM,Arlington,Arlington,WI,--3-----,RQ,9307,,4320N 08926W, +,US,XBN,Ashland City,Ashland City,TN,--3-----,RQ,9307,,3616N 08704W, +,US,XBO,Alta,Alta,UT,--3-----,RQ,9307,,4035N 11138W, +,US,XBP,Bath,Bath,SC,--3-----,RQ,9307,,3330N 08152W, +,US,XBQ,Baraboo,Baraboo,WI,--3-----,RQ,9307,,4328N 08945W, +,US,XBR,Basin,Basin,WY,--3-----,RQ,9307,,4423N 10802W, +,US,XBS,Balmat,Balmat,NY,--3-----,RQ,9307,,4415N 07524W, +,US,XBT,Berlin,Berlin,NJ,--3-----,RQ,9307,,3947N 07456W, +,US,XBV,Bethel,Bethel,VT,--3-----,RQ,9307,,4350N 07238W, +,US,XBX,Bellevue,Bellevue,OH,--3-----,RQ,9307,,4116N 08250W, +,US,XBY,Bedford,Bedford,VA,--3-----,RQ,9307,,3720N 07931W, +,US,XBZ,Bedford,Bedford,PA,--3-----,RQ,9307,,4001N 07830W, +,US,XCA,Bedford,Bedford,OH,--3-----,RQ,9307,,4124N 08132W, +,US,XCB,Bustleton,Bustleton,PA,--3-----,RQ,9307,,4005N 07502W, +,US,XCC,Belding,Belding,MI,--3-----,RQ,9307,,4306N 08514W, +,US,XCD,Big Island,Big Island,VA,--3-----,RQ,9307,,3716N 07623W, +,US,XCE,Bridesburg,Bridesburg,PA,--3-----,RQ,9307,,4000N 07504W, +,US,XCF,Bingen,Bingen,WA,--3-----,RQ,9307,,4543N 12128W, +,US,XCG,Bird in Hand,Bird in Hand,PA,--3-----,RQ,0212,,4002N 07611W, +,US,XCH,Brookfield,Brookfield,WI,--3-----,RQ,9307,,4303N 08808W, +,US,XCJ,Brillion,Brillion,WI,--3-----,RQ,9307,,4411N 08804W, +,US,XCL,Browns Summit,Browns Summit,NC,--3-----,RQ,9307,,3613N 07943W, +,US,XCM,Broomall,Broomall,PA,--3-----,RQ,9307,,3959N 07521W, +,US,XCN,Blue Mountain,Blue Mountain,MS,--3-----,RQ,9307,,3440N 08902W, +,US,XCO,Brenham,Brenham,TX,--3-----,RQ,9307,,3010N 09624W, +,US,XCP,Boone,Boone,NC,--3-----,RQ,9307,,3613N 08141W, +,US,XCQ,Brown Deer,Brown Deer,WI,--3-----,RQ,9307,,4310N 08758W, +,US,XCR,Bolivar,Bolivar,TN,--3-----,RQ,9307,,3515N 08859W, +,US,XCS,Bridgeport,Bridgeport,PA,--3-----,RQ,9307,,4006N 07521W, +,US,XCT,Bridgeville,Bridgeville,PA,--3-----,RQ,9307,,4021N 08007W, +,US,XCU,Burlington,Burlington,WY,--3-----,RQ,9307,,4427N 10826W, +,US,XCV,Bardstown,Bardstown,KY,--3-----,RQ,9307,,3749N 08528W, +,US,XCX,Brooklyn Center,Brooklyn Center,MN,--3-----,RQ,9307,,4504N 09320W, +,US,XCY,Bertram,Bertram,TX,--3-----,RQ,9307,,3045N 09803W, +,US,XCZ,Belton,Belton,TX,--3-----,RQ,9307,,3103N 09728W, +,US,XDA,Boothwyn,Boothwyn,PA,--3-----,RQ,9307,,3950N 07526W, +,US,XDB,Bluff,Bluff,UT,--3-----,RQ,9307,,3717N 10933W, +,US,XDC,Blue Ash,Blue Ash,OH,--3-----,RQ,9307,,3914N 08423W, +,US,XDD,Burlington,Burlington,NC,--3-----,RQ,9307,,3606N 07926W, +,US,XDE,Bellevue,Bellevue,KY,--3-----,RQ,9307,,3906N 08429W, +,US,XDF,Beverly,Beverly,NJ,--3-----,RQ,9307,,4004N 07455W, +,US,XDG,Butler,Butler,WI,--3-----,RQ,9307,,4306N 08804W, +,US,XDH,Berwick,Berwick,PA,--3-----,RQ,9307,,4104N 07615W, +,US,XDI,Brookshire,Brookshire,TX,--3-----,RQ,9307,,2947N 09557W, +,US,XDJ,Bridgeport,Bridgeport,WV,--3-----,RQ,9307,,3917N 08015W, +,US,XDK,Boyle Heights,Boyle Heights,CA,--3-----,RQ,9307,,3403N 11813W, +,US,XDL,Brandywine,Brandywine,MD,--3-----,RQ,9307,,3842N 07653W, +,US,XDM,Combined Locks,Combined Locks,WI,--3-----,RQ,9307,,4416N 08819W, +,US,XDN,Cicero,Cicero,IL,--3-----,RQ,9307,,4151N 08745W, +,US,XDO,Cedarville,Cedarville,OH,--3-----,RQ,9307,,3945N 08349W, +,US,XDP,Cedar Falls,Cedar Falls,NC,--3-----,RQ,9307,,3545N 07944W, +,US,XDQ,Cedarville,Cedarville,NJ,--3-----,RQ,9307,,3920N 07513W, +,US,XDR,Chesterfield,Chesterfield,VA,--3-----,RQ,9307,,3713N 07959W, +,US,XDT,Chatsworth,Chatsworth,GA,--3-----,RQ,9307,,3446N 08446W, +,US,XDU,Cinnaminson,Cinnaminson,NJ,--3-----,RQ,9307,,3960N 07460W, +,US,XDX,Clewiston,Clewiston,FL,--3-----,RQ,9307,,2645N 08056W, +,US,XDY,Caddo Mills,Caddo Mills,TX,--3-----,RQ,9307,,3304N 09614W, +,US,XDZ,Camp Hill,Camp Hill,PA,--3-----,RQ,9307,,4014N 07655W, +,US,XEB,Connell,Connell,WA,--3-----,RQ,9307,,4640N 11852W, +,US,XEC,Cando,Cando,ND,--3-----,RQ,9307,,4829N 09913W, +,US,XEE,Colrain,Colrain,MA,--3-----,RQ,9307,,4240N 07242W, +,US,XEF,Cohasset,Cohasset,MN,--3-----,RQ,9307,,4716N 09337W, +,US,XEG,Coon Rapids,Coon Rapids,MN,--3-----,RQ,9307,,4510N 09318W, +,US,XEI,Cashmere,Cashmere,WA,--3-----,RQ,9307,,4731N 12028W, +,US,XEJ,Catasauqua,Catasauqua,PA,--3-----,RQ,9307,,4039N 07528W, +,US,XEK,Charlestown,Charlestown,IN,--3-----,RQ,9307,,3827N 08540W, +,US,XEL,Catoosa,Catoosa,OK,--3-----,RQ,9307,,3611N 09545W, +,US,XEM,Corinth,Corinth,TN,--3-----,RQ,9307,,3635N 08626W, +,US,XEN,Caryville,Caryville,TN,--3-----,RQ,9307,,3618N 08413W, +,US,XEO,Clarksville,Clarksville,TX,--3-----,RQ,9307,,3337N 09503W, +,US,XEP,Clover,Clover,ID,--3-----,RQ,9307,,4231N 11441W, +,US,XEQ,Canal Winchester,Canal Winchester,OH,--3-----,RQ,9307,,3951N 08248W, +,US,XER,Cleona,Cleona,PA,--3-----,RQ,9307,,4020N 07629W, +,US,XES,Lake Geneva,Lake Geneva,WI,---4----,AI,9601,,4236N 08826W, +,US,XET,Dayton,Dayton,OR,--3-----,RQ,9307,,4513N 12305W, +,US,XEU,Dodge Center,Dodge Center,MN,--3-----,RQ,9307,,4402N 09251W, +,US,XEV,Dracut,Dracut,MA,--3-----,RQ,9307,,4240N 07118W, +,US,XEX,Decatur,Decatur,MI,--3-----,RQ,9307,,4207N 08556W, +,US,XEY,Donna,Donna,TX,--3-----,RQ,9307,,2610N 09803W, +,US,XEZ,Dover,Dover,DE,--3-----,RQ,9307,,3909N 07531W, +,US,XFA,Deer Park,Deer Park,OH,--3-----,RQ,9307,,3912N 08424W, +,US,XFB,Dexter,Dexter,ME,--3-----,RQ,9307,,4501N 06917W, +,US,XFC,Doyle,Doyle,TN,--3-----,RQ,9307,,3551N 08531W, +,US,XFE,Encinitas,Encinitas,CA,--3-----,RQ,9307,,3302N 11718W, +,US,XFF,Easton,Easton,ME,--3-----,RQ,9307,,4638N 06755W, +,US,XFH,Ellwood City,Ellwood City,PA,--3-----,RQ,9307,,4052N 08017W, +,US,XFI,Fairmont,Fairmont,WV,--3-----,RQ,9307,,3929N 08009W, +,US,XFJ,Feura Bush,Feura Bush,NY,--3-----,RQ,9307,,4235N 07353W, +,US,XFK,Fremont,Fremont,OH,--3-----,RQ,9307,,4121N 08307W, +,US,XFL,Finderne,Finderne,NJ,--3-----,RQ,9307,,4034N 07435W, +,US,XFM,Falls Mills,Falls Mills,VA,--3-----,RQ,9307,,3717N 08119W, +,US,XFN,Falkner,Falkner,MS,--3-----,RQ,9307,,3451N 08856W, +,US,XFP,Fairport,Fairport,NY,--3-----,RQ,9307,,4306N 07727W, +,US,XFQ,Fraser,Fraser,MI,--3-----,RQ,9307,,4232N 08257W, +,US,XFR,Fontana,Fontana,CA,--3-----,RQ,9307,,3406N 11726W, +,US,XFS,Gastonia,Gastonia,NC,--3-----,RQ,9307,,3516N 08111W, +,US,XFT,Gleed,Gleed,WA,--3-----,RQ,9307,,4639N 12037W, +,US,XFU,Gering,Gering,NE,--3-----,RQ,9307,,4149N 10340W, +,US,XFV,Green Island,Green Island,NY,--3-----,RQ,9307,,4245N 07341W, +,US,XFX,Grants Pass,Grants Pass,OR,--3-----,RQ,9307,,4226N 12320W, +,US,XFY,Gridley,Gridley,IL,--3-----,RQ,9307,,4045N 08853W, +,US,XFZ,Garwood,Garwood,NJ,--3-----,RQ,9307,,4039N 07419W, +,US,XGA,Hubbard,Hubbard,OH,--3-----,RQ,9307,,4109N 08034W, +,US,XGB,Hoosick Falls,Hoosick Falls,NY,--3-----,RQ,9307,,4254N 07321W, +,US,XGC,Hager City,Hager City,WI,--3-----,RQ,9307,,4436N 09232W, +,US,XGD,Henderson,Henderson,KY,--3-----,RQ,9307,,3750N 08735W, +,US,XGF,Hahira,Hahira,GA,--3-----,RQ,9307,,3059N 08322W, +,US,XGH,Higbee,Higbee,MO,--3-----,RQ,9307,,3918N 09231W, +,US,XGI,Hinkle,Hinkle,OR,--3-----,RQ,9307,,4548N 11919W, +,US,XGJ,Holland,Holland,NY,--3-----,RQ,9307,,4238N 07833W, +,US,XGK,Hamlin,Hamlin,TX,--3-----,RQ,9307,,3253N 10008W, +,US,XGL,Hammonton,Hammonton,NJ,--3-----,RQ,9307,,3938N 07448W, +,US,XGM,Hamilton,Hamilton,MO,--3-----,RQ,9307,,3945N 09360W, +,US,XGN,Hondo,Hondo,TX,--3-----,RQ,9307,,2921N 09908W, +,US,XGP,Holliston,Holliston,MA,--3-----,RQ,9307,,4212N 07125W, +,US,XGR,Hastings,Hastings,MN,--3-----,RQ,9307,,4445N 09251W, +,US,XGS,Huntersville,Huntersville,NC,--3-----,RQ,9307,,3525N 08051W, +,US,XGT,Heath,Heath,OH,--3-----,RQ,9307,,4001N 08227W, +,US,XGU,Hamtramck,Hamtramck,MI,--3-----,RQ,9307,,4224N 08303W, +,US,XGV,Hudson,Hudson,NC,--3-----,RQ,9307,,3551N 08130W, +,US,XGX,Hawarden,Hawarden,IA,--3-----,RQ,9307,,4260N 09629W, +,US,XGY,Hawley,Hawley,MN,--3-----,RQ,9307,,4653N 09619W, +,US,XGZ,Hyattsville,Hyattsville,MD,--3-----,RQ,9307,,3857N 07656W, +,US,XHA,Haynesville,Haynesville,LA,--3-----,RQ,9307,,3258N 09308W, +,US,XHB,Jessup,Jessup,MD,--3-----,RQ,9307,,3909N 07646W, +,US,XHC,Johnson Creek,Johnson Creek,WI,--3-----,RQ,9307,,4305N 08846W, +,US,XHF,Kirkland,Kirkland,WA,--3-----,RQ,9307,,4741N 12212W, +,US,XHG,Lamesa,Lamesa,TX,--3-----,RQ,9307,,3244N 10157W, +,US,XHH,Lawrenceburg,Lawrenceburg,TN,--3-----,RQ,9307,,3515N 08720W, +,US,XHI,La Conner,La Conner,WA,--3-----,RQ,9307,,4824N 12230W, +,US,XHJ,Lake City,Lake City,PA,--3-----,RQ,9307,,4201N 08021W, +,US,XHK,Leeds,Leeds,MO,--3-----,RQ,9307,,3903N 09430W, +,US,XHL,Lebanon,Lebanon,NJ,--3-----,RQ,9307,,4039N 07450W, +,US,XHM,Lightfoot,Lightfoot,VA,--3-----,RQ,9307,,3720N 07645W, +,US,XHQ,Lake Mills,Lake Mills,WI,--3-----,RQ,9307,,4305N 08855W, +,US,XHR,Lomira,Lomira,WI,--3-----,RQ,9307,,4335N 08829W, +,US,XHS,Langhorne,Langhorne,PA,--3-----,RQ,9307,,4010N 07455W, +,US,XHT,Loveland,Loveland,OH,--3-----,RQ,9307,,3916N 08416W, +,US,XHU,Loudon,Loudon,TN,--3-----,RQ,9307,,3544N 08420W, +,US,XHV,Largo,Largo,FL,--3-----,RQ,9307,,2755N 08247W, +,US,XHX,Livingston,Livingston,MI,--3-----,RQ,9307,,4158N 08633W, +,US,XHY,Locust Summit,Locust Summit,PA,--3-----,RQ,9307,,4046N 07624W, +,US,XHZ,Litchfield,Litchfield,IL,--3-----,RQ,9307,,3911N 08939W, +,US,XIA,Leavenworth,Leavenworth,KS,--3-----,RQ,9307,,3921N 09455W, +,US,XIB,Langsville,Langsville,OH,--3-----,RQ,9307,,3903N 08211W, +,US,XIC,Mabie,Mabie,WV,--3-----,RQ,9307,,3853N 07959W, +,US,XID,Millbury,Millbury,OH,--3-----,RQ,9307,,4134N 08325W, +,US,XIE,McBee,McBee,SC,--3-----,RN,0105,,3428N 08015W, +,US,XIF,Macedonia,Macedonia,OH,--3-----,RQ,9307,,4119N 08131W, +,US,XIG,Macedon,Macedon,NY,--3-----,RQ,9307,,4304N 07718W, +,US,XIH,Moorhead,Moorhead,MN,--3-----,RQ,9307,,4652N 09645W, +,US,XII,Malden,Malden,MA,--3-----,RQ,9307,,4226N 07104W, +,US,XIJ,Media,Media,PA,--3-----,RQ,9307,,3955N 07523W, +,US,XIK,Milford,Milford,TX,--3-----,RQ,9307,,3207N 09657W, +,US,XIL,Montgomery,Montgomery,IL,--3-----,RQ,9307,,4143N 08819W, +,US,XIM,Mingo Junction,Mingo Junction,OH,--3-----,RQ,9307,,4019N 08037W, +,US,XIN,Middletown,Middletown,CT,--3-----,RQ,9307,,4134N 07239W, +,US,XIO,Morrisville,Morrisville,PA,--3-----,RQ,9307,,4013N 07447W, +,US,XIQ,Mickleton,Mickleton,NJ,--3-----,RQ,9307,,3947N 07514W, +,US,XIR,Millburn,Millburn,NJ,--3-----,RQ,9307,,4043N 07418W, +,US,XIS,Mapleton,Mapleton,IL,--3-----,RQ,9307,,4034N 08944W, +,US,XIT,Malott,Malott,WA,--3-----,RQ,9307,,4817N 11942W, +,US,XIU,Magna,Magna,UT,--3-----,RQ,9307,,4042N 11205W, +,US,XIY,Monrovia,Monrovia,CA,--3-----,RQ,9307,,3409N 11800W, +,US,XJA,Maple Shade,Maple Shade,NJ,--3-----,RQ,9307,,3957N 07460W, +,US,XJB,Mars,Mars,PA,--3-----,RQ,9307,,4042N 08001W, +,US,XJC,Marion,Marion,PA,--3-----,RQ,9307,,3951N 07742W, +,US,XJD,Marion,Marion,VA,--3-----,RQ,9307,,3650N 08131W, +,US,XJE,Martel,Martel,OH,--3-----,RQ,9307,,4040N 08255W, +,US,XJF,Massillon,Massillon,OH,--3-----,RQ,9307,,4048N 08131W, +,US,XJI,Mountlake Terrace,Mountlake Terrace,WA,--3-----,RQ,9307,,4747N 12218W, +,US,XJK,Mooresville,Mooresville,NC,--3-----,RQ,9307,,3535N 08049W, +,US,XJL,Myrtle,Myrtle,MS,--3-----,RQ,9307,,3434N 08907W, +,US,XJM,North Andover,North Andover,MA,--3-----,RQ,9307,,4241N 07107W, +,US,XJN,North Branch,North Branch,NJ,--3-----,RQ,9307,,4036N 07441W, +,US,XJO,Northfield,Northfield,IL,--3-----,RQ,9307,,4206N 08747W, +,US,XJP,Nova,Nova,OH,--3-----,RQ,9307,,4102N 08218W, +,US,XJQ,North Tonawanda,North Tonawanda,NY,--3-----,RQ,9307,,4302N 07852W, +,US,XJR,Norwalk,Norwalk,OH,--3-----,RQ,9307,,4115N 08237W, +,US,XJS,New Troy,New Troy,MI,--3-----,RQ,9307,,4153N 08633W, +,US,XJU,Newport,Newport,KY,--3-----,RQ,9307,,3905N 08430W, +,US,XJV,Oconto Falls,Oconto Falls,WI,--3-----,RQ,9307,,4452N 08809W, +,US,XJX,Oceanside,Oceanside,NY,--3-----,RQ,9307,,4038N 07338W, +,US,XJY,Orcas,Orcas,WA,--3-----,RQ,9307,,4839N 12249W, +,US,XJZ,Old Forge,Old Forge,PA,--3-----,RQ,9307,,4122N 07544W, +,US,XKA,Old Hickory,Old Hickory,TN,--3-----,RQ,9307,,3616N 08639W, +,US,XKB,Oakland,Oakland,NJ,--3-----,RQ,9307,,4101N 07415W, +,US,XKC,Orland Park,Orland Park,IL,--3-----,RQ,9307,,4138N 08751W, +,US,XKD,Orefield,Orefield,PA,--3-----,RQ,9307,,4038N 07535W, +,US,XKE,Orting,Orting,WA,--3-----,RQ,9307,,4706N 12212W, +,US,XKF,Othello,Othello,WA,--3-----,RQ,9307,,4650N 11911W, +,US,XKG,Paducah,Paducah,TX,--3-----,RQ,9307,,3401N 10018W, +,US,XKH,Princeton,Princeton,MN,--3-----,RQ,9307,,4534N 09335W, +,US,XKI,Palm Harbor,Palm Harbor,FL,--3-----,RQ,9307,,2805N 08246W, +,US,XKJ,Perham,Perham,MN,--3-----,RQ,9307,,4636N 09534W, +,US,XKK,Pennington Gap,Pennington Gap,VA,--3-----,RQ,9307,,3646N 08302W, +,US,XKL,Parris Island,Parris Island,SC,--3-----,RQ,9307,,3220N 08042W, +,US,XKM,Plainsboro,Plainsboro,NJ,--3-----,RQ,9307,,4020N 07436W, +,US,XKN,Plymouth,Plymouth,NC,--3-----,RQ,9307,,3552N 07645W, +,US,XKO,Pineville,Pineville,SC,--3-----,RQ,9307,,3326N 08002W, +,US,XKP,Prosperity,Prosperity,SC,--3-----,RQ,9307,,3413N 08132W, +,US,XKQ,Perrysburg,Perrysburg,OH,--3-----,RQ,9307,,4133N 08338W, +,US,XKR,Prospect,Prospect,OR,--3-----,RQ,9307,,4245N 12229W, +,US,XKT,Pateros,Pateros,WA,--3-----,RQ,9307,,4803N 11954W, +,US,XKU,Princeton,Princeton,FL,--3-----,RQ,9307,,2532N 08024W, +,US,XKV,Plainville,Plainville,MA,--3-----,RQ,9307,,4200N 07120W, +,US,XKX,Portage,Portage,WI,--3-----,RQ,9307,,4332N 08928W, +,US,XKY,Powers Lake,Powers Lake,WI,--3-----,RQ,9307,,4233N 08818W, +,US,XKZ,Ralls,Ralls,TX,--3-----,RQ,9307,,3341N 10123W, +,US,XLA,Richmond,Richmond,TX,--3-----,RQ,9307,,2935N 09546W, +,US,XLB,Royal City,Royal City,WA,--3-----,RQ,9307,,4654N 11938W, +,US,XLC,Redmond,Redmond,WA,--3-----,RQ,9307,,4740N 12207W, +,US,XLD,Radford,Radford,VA,--3-----,RQ,9307,,3708N 08034W, +,US,XLE,Ridgway,Ridgway,PA,--3-----,RQ,9307,,4125N 07844W, +,US,XLF,Raynham,Raynham,MA,--3-----,RQ,9307,,4157N 07104W, +,US,XLG,Richland Hills,Richland Hills,TX,--3-----,RQ,9307,,3249N 09714W, +,US,XLI,Rockwall,Rockwall,TX,--3-----,RQ,9307,,3256N 09628W, +,US,XLJ,Remington,Remington,VA,--3-----,RQ,9307,,3832N 07749W, +,US,XLK,Rowesville,Rowesville,SC,--3-----,RQ,9307,,3322N 08050W, +,US,XLN,South Brunswick,South Brunswick,NJ,--3-----,RQ,9307,,4023N 07432W, +,US,XLO,Sebastopol,Sebastopol,MS,--3-----,RQ,9307,,3234N 08920W, +,US,XLP,Silsbee,Silsbee,TX,--3-----,RQ,9307,,3021N 09411W, +,US,XLQ,Scofield,Scofield,UT,--3-----,RQ,9307,,3943N 11110W, +,US,XLR,Seadrift,Seadrift,TX,--3-----,RQ,9307,,2825N 09643W, +,US,XLS,Sterling,Sterling,MA,--3-----,RQ,9307,,4226N 07146W, +,US,XLU,Seaside,Seaside,CA,--3-----,RQ,9307,,3638N 12149W, +,US,XLV,Suffield,Suffield,CT,--3-----,RQ,9307,,4159N 07239W, +,US,XLX,Stamford,Stamford,CT,--3-----,RQ,9307,,4103N 07332W, +,US,XLY,Savage,Savage,MN,--3-----,RQ,9307,,4447N 09320W, +,US,XLZ,Shoreham,Shoreham,NY,--3-----,RQ,9307,,4057N 07254W, +,US,XMA,Sharonville,Sharonville,OH,--3-----,RQ,9307,,3916N 08425W, +,US,XMB,Sheldon,Sheldon,TX,--3-----,RQ,9307,,2952N 09508W, +,US,XMC,Shellman,Shellman,GA,--3-----,RQ,9307,,3145N 08437W, +,US,XMD,Madison,Madison,SD,---4----,AI,0001,,4400N 09707W, +,US,XME,Slaton,Slaton,TX,--3-----,RQ,9307,,3326N 10139W, +,US,XMF,South Miami,South Miami,FL,--3-----,RQ,9307,,2542N 08018W, +,US,XMH,Sumner,Sumner,WA,--3-----,RQ,9307,,4712N 12214W, +,US,XMI,Seneca,Seneca,IL,--3-----,RQ,9307,,4119N 08837W, +,US,XMJ,Senecaville,Senecaville,OH,--3-----,RQ,9307,,3956N 08128W, +,US,XMK,Southport,Southport,NC,--3-----,RQ,9307,,3355N 07801W, +,US,XMN,Springville,Springville,TN,--3-----,RQ,9307,,3615N 08809W, +,US,XMP,Sherman,Sherman,CT,--3-----,RQ,9307,,4135N 07330W, +,US,XMQ,Saratoga,Saratoga,CA,--3-----,RQ,9307,,3716N 12201W, +,US,XMR,Southwark,Southwark,PA,--3-----,RQ,9307,,3955N 07508W, +,US,XMS,Strinestown,Strinestown,PA,--3-----,RQ,9307,,4005N 07646W, +,US,XMT,Startex,Startex,SC,--3-----,RQ,9307,,3456N 08206W, +,US,XMU,Starke,Starke,FL,--3-----,RQ,9307,,2957N 08207W, +,US,XMX,Savannah,Savannah,NY,--3-----,RQ,9307,,4304N 07646W, +,US,XMZ,Sylvania,Sylvania,GA,--3-----,RQ,9307,,3245N 08138W, +,US,XNB,Sebastian,Sebastian,TX,--3-----,RQ,9307,,2621N 09747W, +,US,XNC,Tabor,Tabor,IA,--3-----,RQ,9307,,4054N 09540W, +,US,XND,Tuxedo Park,Tuxedo Park,NY,--3-----,RQ,9307,,4112N 07413W, +,US,XNE,Taylor,Taylor,MI,--3-----,RQ,9307,,4214N 08316W, +,US,XNF,Topton,Topton,PA,--3-----,RQ,9307,,4030N 07542W, +,US,XNG,Trenton,Trenton,MI,--3-----,RQ,9307,,4208N 08311W, +,US,XNH,Tuscola,Tuscola,IL,--3-----,RQ,9307,,3948N 08817W, +,US,XNI,Tunnel Hill,Tunnel Hill,GA,--3-----,RQ,9307,,3450N 08503W, +,US,XNJ,Travelers Rest,Travelers Rest,SC,--3-----,RQ,9307,,3458N 08227W, +,US,XNK,Tyrone,Tyrone,PA,--3-----,RQ,9307,,4040N 07814W, +,US,XNL,Venice,Venice,IL,--3-----,RQ,9307,,3840N 09010W, +,US,XNM,Vinton,Vinton,VA,--3-----,RQ,9307,,3717N 07954W, +,US,XNO,Woodbury,Woodbury,CT,--3-----,RQ,9307,,4133N 07313W, +,US,XNP,Westchester,Westchester,MA,--3-----,RQ,9307,,4218N 07150W, +,US,XNR,Waxdale,Waxdale,WI,--3-----,RQ,9307,,4242N 08753W, +,US,XNS,Windsor,Windsor,NY,--3-----,RQ,9307,,4205N 07538W, +,US,XNT,Wildes Corner,Wildes Corner,RI,--3-----,RQ,9307,,4142N 07125W, +,US,XNU,Wagner,Wagner,SD,--3-----,RQ,9307,,4305N 09818W, +,US,XNV,West Jefferson,West Jefferson,NC,--3-----,RQ,9307,,3624N 08130W, +,US,XNX,Walkersville,Walkersville,MD,--3-----,RQ,9307,,3929N 07721W, +,US,XNY,Woods Mill,Woods Mill,NY,--3-----,RQ,9307,,4407N 07535W, +,US,XOA,Westwood,Westwood,KS,--3-----,RQ,9307,,3902N 09437W, +,US,XOB,Weston,Weston,OR,--3-----,RQ,9307,,4549N 11825W, +,US,XOC,Windsor,Windsor,WI,--3-----,RQ,9307,,4313N 08920W, +,US,XOD,Watseka,Watseka,IL,--3-----,RQ,9307,,4047N 08744W, +,US,XOE,Watervliet,Watervliet,NY,--3-----,RQ,9307,,4244N 07342W, +,US,XOF,Waverly,Waverly,TX,--3-----,RQ,9307,,3032N 09529W, +,US,XOG,Wrightsville,Wrightsville,PA,--3-----,RQ,9307,,4002N 07632W, +,US,XOH,Wauwatosa,Wauwatosa,WI,--3-----,RQ,9307,,4303N 08800W, +,US,XOI,Westwood,Westwood,NJ,--3-----,RQ,9307,,4059N 07402W, +,US,XOJ,West Warwick,West Warwick,RI,--3-----,RQ,9307,,4142N 07131W, +,US,XOK,Crockett,Crockett,TX,--3-----,RQ,9307,,3119N 09527W, +,US,XOL,Xenia,Xenia,OH,--3-----,RQ,9307,,3941N 08356W, +,US,XOM,West Sedona,West Sedona,AZ,--3-----,RQ,9008,,3452N 11148W, +,US,XPR,Pine Ridge,Pine Ridge,SD,---4----,AI,0001,,4302N 10233W, +,US,YAD,Yadkinville,Yadkinville,NC,--3-----,RQ,9307,,3608N 08040W, +,US,YAR,Yarmouth,Yarmouth,ME,--3-----,RQ,9506,,4347N 07009W, +,US,YDV,Yardville,Yardville,NJ,--3-----,RQ,9307,,4011N 07441W, +,US,YEE,Beebe,Beebe,AR,--3-----,RL,0901,,3504N 09153W, +,US,YEL,Yellville,Yellville,AR,--3-----,RQ,9307,,3614N 09241W, +,US,YGW,Youngwood,Youngwood,PA,--3-----,RQ,8307,,4014N 07935W, +,US,YHJ,Yamhill,Yamhill,OR,--3-----,RQ,9307,,4520N 12311W, +,US,YKH,Yorktown Heights,Yorktown Heights,NY,--3-----,RQ,9307,,4116N 07347W, +,US,YKM,Yakima,Yakima,WA,--34----,AI,9601,,4636N 12031W, +,US,YKN,Yankton,Yankton,SD,---4----,AI,9601,,4252N 09724W, +,US,YKW,Yorktown,Yorktown,VA,--3-----,RQ,9307,,3714N 07631W, +,US,YNG,Youngstown,Youngstown,OH,---4----,AI,0001,,4106N 08039W, +,US,YNK,Yaphank,Yaphank,NY,--3-----,RQ,9307,,4050N 07255W, +,US,YON,Yonkers,Yonkers,NY,--3-----,RN,0105,,4056N 07354W, +,US,YOR,York,York,SC,--3-----,RQ,9008,,3460N 08115W, +,US,YPQ,Pescadero,Pescadero,CA,--3-----,RL,0701,,3715N 12223W, +,US,YPS,Ypsilanti,Ypsilanti,MI,--3-----,RQ,9307,,4214N 08337W, +,US,YRK,York,York,AL,--3-----,RQ,9307,,3229N 08818W, +,US,YRL,Yorklyn,Yorklyn,DE,--3-----,RQ,9501,,3948N 07541W, +,US,YRN,York,York,NE,--3-----,RQ,9307,,4052N 09736W, +,US,YRT,Yorktown,Yorktown,IN,--3-----,RQ,9307,,4010N 08530W, +,US,YRV,Yorkville,Yorkville,IL,--3-----,RQ,9307,,4138N 08827W, +,US,YTV,Yountville,Yountville,CA,--3-----,RQ,9307,,3824N 12222W, +,US,YUB,Yuba City,Yuba City,CA,--3-----,RQ,9307,,3908N 12137W, +,US,YUC,Yucaipa,Yucaipa,CA,--3-----,RQ,9307,,3402N 11703W, +,US,YUL,Yulee,Yulee,FL,--3-----,RQ,9307,,3038N 08136W, +,US,ZAX,Hidden Valley,Hidden Valley,PA,-----6--,RQ,0901,,4006N 07523W, +,US,ZBL,Zebulon,Zebulon,NC,--3-----,RQ,9307,,3549N 07819W, +,US,ZEL,Zelienople,Zelienople,PA,--3-----,RQ,9307,,4048N 08008W, +,US,ZES,Hazle Township,Hazle Township,PA,--3-----,RQ,0901,,4057N 07603W, +,US,ZFC,Zephyr Cove,Zephyr Cove,NV,--3-----,RQ,9307,,3900N 11957W, +,US,ZFO,Franconia,Franconia,VA,---4----,AI,0001,,3847N 07709W, +,US,ZGL,Zieglerville,Zieglerville,PA,--3-----,RQ,9307,,4027N 07548W, +,US,ZGP,Grosse Ile,Grosse Ile,MI,1-------,RQ,0901,,4208N 08309W, +,US,ZIE,Zimmerman,Zimmerman,MN,--3-----,RQ,9307,,4527N 09335W, +,US,ZIL,Zillah,Zillah,WA,--3-----,RQ,9307,,4624N 12016W, +,US,ZIO,Zion,Zion,IL,--3-----,RQ,9307,,4227N 08750W, +,US,ZLD,Zeeland,Zeeland,MI,--3-----,RQ,9307,,4249N 08557W, +,US,ZLE,Southlake,Southlake,TX,--3-----,RL,9811,,3256N 09708W, +,US,ZLQ,Ulysses,Ulysses,PA,-----6--,RQ,1007,,4154N 07746W, +,US,ZMD,Seminole,Seminole,OK,--3-----,RQ,9307,,3514N 09641W, +,US,ZMV,Melville,Melville,NY,---4----,AI,9601,,4048N 07325W, +,US,ZNC,Nyac,Nyac,AK,---4----,AI,0001,,6100N 15957W, +,US,ZPQ,Montz,Montz,LA,-----6--,RQ,1007,,3001N 09028W, +,US,ZQK,Zachary,Zachary,LA,--3-----,RQ,9307,,3039N 09109W, +,US,ZQV,Panama City Beach,Panama City Beach,FL,-----6--,RL,1107,,3011N 08548W, +,US,ZVL,Seville,Seville,OH,--3-----,RQ,0101,,4101N 08152W, +,US,ZWA,Waterloo,Waterloo,WI,--3-----,RQ,9307,,4311N 08859W, +,US,ZWD,Zellwood,Zellwood,FL,--3-----,RQ,9307,,2844N 08136W, +,US,ZWS,Whitestone,Whitestone,GA,--3-----,RQ,9307,,3433N 08431W, +,US,ZXT,Bolington,Bolington,VA,-----6--,RQ,1001,,3915N 07739W, +,US,ZYV,Zionsville,Zionsville,PA,--3-----,RQ,0201,,4029N 07531W, +,US,ZZV,Zanesville,Zanesville,OH,---4----,AI,9401,,3956N 08200W, +,US,ZZX,Emerald Isle,Emerald Isle,NC,1-------,RQ,0901,,3440N 07702W, +,UY,ATI,Artigas,Artigas,,---4---B,AF,9701,,3024S 05628W, +,UY,CAN,Canelones,Canelones,,0-------,AF,9701,,3431S 05617W, +,UY,CAR,Carmelo,Carmelo,,1-------,AF,9701,,3360S 05817W, +,UY,CDS,Colonia del Sacramento,Colonia del Sacramento,CO,--3-----,RL,9805,,3428S 05751W, +,UY,CHY,Chuy,Chuy,,-------B,AF,9701,,3342S 05327W, +,UY,CYR,Colonia,Colonia,,1--4----,AF,9701,,3428S 05751W, +,UY,DZO,Durazno,Durazno,,1--4----,AF,9701,,3323S 05631W, +,UY,FDA,Florida,Florida,,0-------,AF,9701,,3406S 05613W, +,UY,FZB,Fray Bentos,Fray Bentos,,1-------,AF,9701,,3307S 05819W, +,UY,JIT,Jose Ignacio Terminal,Jose Ignacio Terminal,,1-------,AF,9701,,3451S 05444W, +,UY,LAG,Lagomar,Lagomar,,0-------,AF,9701,,3450S 05559W, +,UY,LAP,La Paloma/Rocha,La Paloma/Rocha,,1-------,AF,9701,,3244S 05535W, +,UY,LPS,Las Piedras,Las Piedras,,0-------,AF,9701,,3444S 05613W, +,UY,LPZ,La Paz,La Paz,,0-------,AF,9701,,3446S 05613W, +,UY,MDO,Maldonado,Maldonado,,0-------,AF,9701,,3455S 05457W, +,UY,MER,Mercedes,Mercedes,,1-------,AF,9701,,3315S 05802W, +,UY,MIN,Minas,Minas,,0-------,AF,9701,,3423S 05514W, +,UY,MLZ,Melo,Melo,,---4----,AF,9701,,3222S 05410W, +,UY,MVD,Montevideo,Montevideo,,1--45---,AF,9701,,3454S 05611W, +,UY,NVP,Nueva Palmira,Nueva Palmira,,1-------,AF,9701,,3352S 05824W, +,UY,PDO,Pando,Pando,,0-------,AF,9701,,3443S 05558W, +,UY,PDP,Punta del Este,Punta del Este,,1--4----,AF,9701,,3458S 05457W, +,UY,PDU,Paysandu,Paysandu,,1--4----,AF,9701,,3219S 05805W, +,UY,RBR,Rio Branco,Rio Branco,,-2------,RQ,1001,,3235S 05323W, +,UY,RCH,Rocha,Rocha,,0-------,AF,9701,,3429S 05420W, +,UY,RVY,Rivera,Rivera,,---4---B,AF,9701,,3054S 05532W, +,UY,SJC,San Jos� de Carrasco,San Jose de Carrasco,,0-------,AF,9701,,3450S 05560W, +,UY,SJS,San Jos�,San Jose,,0-------,AF,9701,,3420S 05643W, +,UY,STY,Salto,Salto,,1--4----,AF,9701,,3123S 05758W, +,UY,SYM,Solymar,Solymar,,0-------,AF,9701,,3449S 05558W, +,UY,TAW,Tacuarembo,Tacuarembo,,---4----,AF,9701,,3143S 05559W, +,UY,TRI,Trinidad,Trinidad,,0-------,AF,9701,,3331S 05654W, +,UY,TYT,Treinta y Tres,Treinta y Tres,,---4----,AF,9701,,3314S 05423W, +,UY,VCH,Vichadero,Vichadero,,---4----,AF,9701,,3147S 05442W, +,UZ,ALK,Almalyk,Almalyk,,--3-----,RQ,9811,,4051N 06936E, +,UZ,AZN,Andizhan,Andizhan,,---4----,AI,0001,,4037N 06814E, +,UZ,BHK,Bukhara,Bukhara,,---4----,AI,9501,,3946N 06425E, +,UZ,FEG,Fergana,Fergana,,---4----,AI,9501,,4023N 07147E, +,UZ,NCU,Nukus,Nukus,,---4----,AI,0001,,4228N 05937E, +,UZ,NMA,Namangan,Namangan,,---4----,AI,0001,,4060N 07140E, +,UZ,SKD,Samarkand,Samarkand,,---4----,AI,9501,,3939N 06659E, +,UZ,TAS,Tashkent,Tashkent,,-2-45---,AI,2007,,4119N 06917E, +,VC,MQS,Mustique Island,Mustique Island,,1--4----,AI,9501,,1252N 06111W, +,VC,SVD,Saint Vincent,Saint Vincent,,1--4----,AI,1101,,1315N 06112W, +,VC,UNI,Union Island,Union Island,,1--4----,AI,9501,,1236N 06126W, +,VE,AAO,Anaco,Anaco,,---4----,AI,9501,,0926N 06428W, +,VE,AGV,Acarigua,Acarigua,,---4----,AI,9501,,0933N 06912W, +,VE,AMY,Amuay,Amuay,,1-------,AI,9501,,1146N 07014W, +,VE,ARA,Araya,Araya,,1-------,AI,9501,,1036N 06412W, +,VE,BAV,Bachaquero/Maracaibo L,Bachaquero/Maracaibo L,,1-------,AI,9501,,0958N 07107W, +,VE,BJV,Bajo Grande/Maracaibo L,Bajo Grande/Maracaibo L,,1-------,AI,9501,,1031N 07138W, +,VE,BLA,Barcelona,Barcelona,,---4----,AI,9501,,1008N 06441W, +,VE,BNS,Barinas,Barinas,,---4----,AI,9501,,0837N 07014W, +,VE,BRM,Barquisimeto,Barquisimeto,,---4----,AI,9501,,1005N 06919W, +,VE,CAJ,Canaima,Canaima,,---4----,AI,9501,,1038N 06311W, +,VE,CBS,Cabimas/Maracaibo L,Cabimas/Maracaibo L,,1--4----,AI,9501,,1024N 07126W, +,VE,CCS,Caracas,Caracas,,---45---,AI,9501,,1030N 06655W, +,VE,CGU,Ciudad Guayana,Ciudad Guayana,,1--4----,AI,9501,,0819N 06241W, +,VE,CHV,Chichiriviche,Chichiriviche,,1-------,AI,9501,,1056N 06817W, +,VE,CLM,Catia La Mar,Catia La Mar,,0-------,RQ,9501,,1036N 06701W, +,VE,CLZ,Calabozo,Calabozo,,---4----,AI,0001,,0855N 06725W, +,VE,CUM,Cumana,Cumana,,1--4----,AI,9501,,1027N 06409W, +,VE,CUP,Carupano,Carupano,,1--4----,AI,9501,,1039N 06315W, +,VE,CUV,Casigua,Casigua,,---4----,AI,0001,,1101N 07101W, +,VE,CXA,Caicara de Orinoco,Caicara de Orinoco,,1--4----,AI,9501,,0738N 06610W, +,VE,CZE,Coro,Coro,,1--4----,AI,9501,,1124N 06940W, +,VE,EGU,El Guamache,El Guamache,,1-------,AI,9501,,1045N 06354W, +,VE,ELP,El Palito,El Palito,,1-------,AI,9501,,1029N 06807W, +,VE,ELX,El Tigre,El Tigre,,---4----,AI,0001,,0853N 06415W, +,VE,EOR,El Dorado,El Dorado,,---4----,AI,0001,,0940N 06313W, +,VE,EOZ,Elorza,Elorza,,---4----,AI,0001,,0704N 06930W, +,VE,ETV,El Tablazo/Maracaibo L,El Tablazo/Maracaibo L,,1-------,AI,9501,,1053N 07135W, +,VE,GDO,Guasdualito,Guasdualito,,---4----,AI,0001,,0714N 07043W, +,VE,GUI,Guiria,Guiria,,1--4----,AI,9501,,1037N 06219W, +,VE,GUQ,Guanare,Guanare,,---4----,AI,9501,,0860N 06550W, +,VE,GUT,Guanta,Guanta,,1-------,AI,9501,,1016N 06437W, +,VE,JMV,Jos� Maria Vargas,Jose Maria Vargas,,----5---,AI,9710,,1031N 06656W, +,VE,KTV,Kamarata,Kamarata,,---4----,AI,0001,,0543N 06221W, +,VE,LAG,La Guaira,La Guaira,,1--4----,AI,9501,,1036N 06656W, +,VE,LCV,La Ceiba/Maracaibo L,La Ceiba/Maracaibo L,,1-------,AI,9501,,0815N 06256W, +,VE,LEC,La Estacada,La Estacada,,1-------,AI,9501,,0724N 06905W, +,VE,LFR,La Fria,La Fria,,---4----,AI,9501,,0860N 07107W, +,VE,LGY,Lagunillas,Lagunillas,,1--4----,AI,9501,,0747N 07215W, +,VE,LME,Ejido,Ejido,L,-----6--,RQ,1001,,0833N 07114W, +,VE,LRV,Los Roques,Los Roques,,---4----,AI,0001,,1150N 06638W, +,VE,LSP,Las Piedras,Las Piedras,,1--4----,AI,9501,,0939N 06325W, +,VE,LSV,La Salina/Maracaibo L,La Salina/Maracaibo L,,1-------,AI,9501,,1022N 07128W, +,VE,LVL,La Vela de Coro,La Vela de Coro,,1-------,AI,9501,,1127N 06934W, +,VE,MAR,Maracaibo,Maracaibo,,1--45---,AI,9501,,1039N 07139W, +,VE,MGT,Margarita,Margarita,,--3-----,RQ,9705,,1101N 06354W, +,VE,MIV,Puerto Miranda/Maracaibo L.,Puerto Miranda/Maracaibo L.,,1-------,AI,9501,,1046N 07134W, +,VE,MTV,Matanzas,Matanzas,,1-------,AI,9501,,0817N 06248W, +,VE,MUN,Maturin,Maturin,,---4----,AI,9501,,0945N 06311W, +,VE,MYC,Maracay,Maracay,,---4----,AI,0001,,1014N 06735W, +,VE,PAR,Paradero,Paradero,,1-------,RQ,9501,,1012N 06411W, +,VE,PBL,Puerto Cabello,Puerto Cabello,,1--4----,AI,9501,,1028N 06803W, +,VE,PCU,Punta Cuchillo,Punta Cuchillo,,1-------,RQ,9501,,0753N 06521W, +,VE,PCZ,Puerto La Cruz,Puerto La Cruz,,1-------,AI,9501,,1012N 06438W, +,VE,PHO,Puerto de Hierro,Puerto de Hierro,,1-------,AI,9501,,1038N 06205W, +,VE,PLV,Punta de Palmas,Punta de Palmas,,1-------,AI,9501,,1047N 07135W, +,VE,PMP,Pampatar,Pampatar,,1-------,AI,9501,,1060N 06348W, +,VE,PMR,Palmarejo/Maracaibo L.,Palmarejo/Maracaibo L.,,1-------,AI,9506,,1029N 06832W, +,VE,PMV,Porlamar,Porlamar,,---4----,AI,9501,,1058N 06351W, +,VE,PPD,Punta de Piedra,Punta de Piedra,,1-------,AI,9501,,0737N 07129W, +,VE,PRG,Pertigalete,Pertigalete,,1-------,RQ,9501,,1015N 06433W, +,VE,PTM,Palmarito,Palmarito,,---4----,AI,0001,,0737N 07010W, +,VE,PYH,Puerto Ayacucho,Puerto Ayacucho,,1--4----,AI,9501,,0539N 06736W, +,VE,PZO,Puerto Ordaz,Puerto Ordaz,,1--4----,AI,9501,,0817N 06245W, +,VE,SCA,San Carlos,San Carlos,,--3-----,RL,0001,,0940N 06835W, +,VE,SCI,San Cristobal,San Cristobal,,---4----,AI,0001,,0747N 07213W, +,VE,SFD,San Fernando de Apure,San Fernando de Apure,,1--4----,AI,9501,,0753N 06728W, +,VE,SFX,San F�lix,San Felix,,1-------,AI,9501,,0821N 06239W, +,VE,SLV,San Lorenzo/Maracaibo L,San Lorenzo/Maracaibo L,,1-------,AI,9501,,0947N 07104W, +,VE,SNF,San Felipe,San Felipe,,---4----,AI,9501,,1020N 06845W, +,VE,SNV,Santa Elena,Santa Elena,,---4----,AI,0001,,0948N 06310W, +,VE,SOM,San Tome,San Tome,,---4----,AI,9501,,0856N 06408W, +,VE,STD,Santo Domingo,Santo Domingo,,---4----,AI,9501,,1015N 06712W, +,VE,SVZ,San Antonio,San Antonio,,---4----,AI,9501,,0953N 06937W, +,VE,TJV,Tia Juana/Maracaibo L,Tia Juana/Maracaibo L,,1-------,AI,9501,,1016N 07122W, +,VE,TMO,Tumeremo,Tumeremo,,---4----,AI,0001,,0718N 06130W, +,VE,TUR,Turiamo,Turiamo,,1-------,AI,9501,,1027N 06751W, +,VE,TUV,Tucupita,Tucupita,,---4----,AI,0001,,0904N 06203W, +,VE,URM,Uriman,Uriman,,---4----,AI,0001,,0521N 06240W, +,VE,VCR,Carora,Carora,,---4----,AI,0001,,1010N 07004W, +,VE,VDP,Valle de Pascua,Valle de Pascua,,---4----,AI,0001,,0913N 06600W, +,VE,VIG,El Vigia,El Vigia,,---4----,AI,0001,,1007N 06806W, +,VE,VLN,Valencia,Valencia,,---4----,AI,0001,,1010N 06800W, +,VE,VLV,Valera,Valera,,---4----,AI,9501,,0919N 07036W, +,VE,WOK,Wonken,Wonken,,---4----,AI,0001,,0459N 06144W, +,VG,EIS,"Beef Island, Tortola","Beef Island, Tortola",,1--4----,AI,9501,,1827N 06432W, +,VG,NGD,Anegada,Anegada,,---4----,AI,0001,,1843N 06419W, +,VG,RAD,"Road Town, Tortola","Road Town, Tortola",,1--45---,AI,9501,,1826N 06437W, +,VG,TOV,Tortola,Tortola,,1--4----,AI,9501,,1825N 06438W, +,VG,VIJ,Virgin Gorda,Virgin Gorda,,---4----,AI,9501,,1828N 06425W, +,VI,CHA,"Charlotte Amalie, Saint Thomas","Charlotte Amalie, Saint Thomas",,1-------,AI,1101,,1821N 06457W, +,VI,FRD,"Frederiksted, Saint Croix","Frederiksted, Saint Croix",,1-------,AI,1101,,1743N 06453W, +,VN,AGG,An Giang,An Giang,44,--3-----,RQ,0901,,1024N 10526E, +,VN,BAO,Bao Loc,Bao Loc,35,1-------,RQ,0901,,1133N 10749E, +,VN,BDH,Binh Dinh,Binh Dinh,31,--3-----,RQ,0901,,1353N 10907E, +,VN,BDU,Binh Duong,Binh Duong,27,1-3-----,RL,0701,,1418N 10905E, +,VN,BEN,Benthuy,Benthuy,,1-------,QQ,9501,,1840N 10542E, +,VN,BGG,Bac Giang,Bac Giang,54,--3-----,RQ,0901,,2117N 10612E, +,VN,BNH,Bac Ninh,Bac Ninh,56,--3-----,RQ,0901,,2111N 10604E, +,VN,BTN,Binh Thuan,Binh Thuan,40,--3-----,RQ,0901,,1045N 10643E, +,VN,CBG,Cao Bang,Cao Bang,04,--3-----,RQ,0901,,2240N 10616E, +,VN,CPH,Cam Pha,Cam Pha,,1-------,QQ,9501,,2100N 10717E, +,VN,CRB,Camranh,Camranh,,1-------,QQ,9501,,1155N 10908E, +,VN,DOH,Dong Hoi,Dong Hoi,,1-------,RQ,9501,,1728N 10636E, +,VN,GLI,Gia Lai,Gia Lai,30,--3-----,RQ,0901,,0914N 10527E, +,VN,HAA,Hoai An,Hoai An,,1-------,RQ,9501,,1420N 10854E, +,VN,HAT,Ha Tinh,Ha Tinh,,1-------,RQ,9501,,1821N 10554E, +,VN,HCH,Hon Chong,Hon Chong,,1-------,RQ,9501,,1010N 10437E, +,VN,HDG,Hai Duong,Hai Duong,61,1-3-----,RQ,0901,,2057N 10619E, +,VN,HGG,Hau Giang,Hau Giang,73,--3-----,RQ,0901,,0957N 10552E, +,VN,HIA,Hoi An,Hoi An,,1-------,RQ,9501,,1553N 10820E, +,VN,HON,Hongai,Hongai,,1-------,QQ,9501,,2057N 10705E, +,VN,HPH,Haiphong,Haiphong,,1-------,AI,9501,,2051N 10641E, +,VN,HTY,Ha Tay,Ha Tay,HN,--3-----,RQ,1601,,1135N 10730E, +,VN,HUI,Hue,Hue,,1--4----,AI,9501,,1628N 10735E, +,VN,HYN,Hung Yen,Hung Yen,66,1-3-----,RQ,0901,,2039N 10603E, +,VN,KON,Kon Tum,Kon Tum,28,---4----,RQ,0901,,1422N 10800E, +,VN,LDG,Lam Dong,Lam Dong,35,--3-----,RQ,0901,,1159N 10827E, +,VN,MOC,Mong Cai,Mong Cai,,1-------,RQ,9501,,2132N 10758E, +,VN,MUT,My Tho,My Tho,,1-------,RQ,9501,,1022N 10622E, +,VN,NAN,Nghe An,Nghe An,22,--3-----,RQ,0901,,1841N 10537E, +,VN,NBH,Ninh Binh,Ninh Binh,18,--3-----,RQ,0901,,2015N 10559E, +,VN,NHA,Nha Trang,Nha Trang,,1--4----,AI,9501,,1215N 10911E, +,VN,NMD,Nam Dinh,Nam Dinh,,1-------,RQ,9501,,2025N 10610E, +,VN,NTN,Ninh Thuan,Ninh Thuan,,--3-----,RQ,0901,,1134N 10821E, +,VN,PHA,Phan Rang,Phan Rang,,1--4----,AI,9501,,1135N 10859E, +,VN,PHH,Phan Thiet,Phan Thiet,,1--4----,AI,9501,,1056N 10806E, +,VN,PHU,Phu My,Phu My,,1-------,RL,9901,,1411N 10903E, +,VN,PYN,Phu Yen,Phu Yen,32,--3-----,RQ,0901,,2103N 10527E, +,VN,QNM,Quang Nam,Quang Nam,27,--3-----,RQ,0901,,1511N 10808E, +,VN,QUL,Quang Long,Quang Long,,1-------,RQ,9501,,1902N 10522E, +,VN,QUT,Quang Tri,Quang Tri,,1-------,RQ,9501,,1645N 10711E, +,VN,TBB,Tuy Hoa,Tuy Hoa,,1--4----,AI,9501,,1305N 10918E, +,VN,TBI,Thang Binh,Thang Binh,,1-------,RQ,9501,,1012N 10642E, +,VN,THA,Thai Hoa,Thai Hoa,,--3-----,RL,0101,,2114N 10523E, +,VN,THO,Thanh Hoa,Thanh Hoa,,1-------,RQ,9501,,1948N 10547E, +,VN,TQG,Tuyen Quang,Tuyen Quang,07,--3-----,RQ,0901,,2147N 10513E, +,VN,TSN,Tan Son Nhat Apt,Tan Son Nhat Apt,SG,--34----,RL,1401,,1048N 10640E, +,VN,TVH,Tra Vinh,Tra Vinh,51,--3-----,RQ,0901,,0956N 10620E, +,VN,VKG,Rach Gia,Rach Gia,,---4----,RQ,0901,,1001N 10505E, +,VN,VLO,Vinh Loi,Vinh Loi,,1-------,RQ,9501,,0917N 10544E, +,VN,VPC,Vinh Phuc,Vinh Phuc,71,--3-----,RQ,0901,,1825N 10542E, +,VN,VYN,Vinh Yen,Vinh Yen,,--3-----,RQ,0901,,2119N 10535E, +,VN,XNG,Quang Ngai,Quang Ngai,,1--4----,AI,9501,,1507N 10849E, +,VU,AUY,Aneityum,Aneityum,,---4----,AI,9501,,2012S 16950E, +,VU,AWD,Aniwa,Aniwa,,---4----,AI,0001,,1915S 16936E, +,VU,CCV,Craig Cove,Craig Cove,,---4----,AI,0001,,1615S 16755E, +,VU,FTA,Futuna Island,Futuna Island,,---4----,AI,0001,,1932S 17013E, +,VU,IPA,Ipota,Ipota,,---4----,AI,9501,,1851S 16917E, +,VU,LNB,Lamen Bay,Lamen Bay,,---4----,AI,9501,,1636S 16810E, +,VU,LNE,Lonorore,Lonorore,,---4----,AI,9501,,1552S 16810E, +,VU,LOD,Longana,Longana,,---4----,AI,9501,,1518S 16759E, +,VU,LPM,Lamap,Lamap,,---4----,AI,9501,,1625S 16750E, +,VU,MTV,Mota Lava,Mota Lava,,---4----,AI,0001,,1341S 16741E, +,VU,NUS,Norsup,Norsup,,---4----,AI,9501,,1603S 16725E, +,VU,OLJ,Olpoi,Olpoi,,---4----,AI,0001,,1452S 16633E, +,VU,PBJ,Paama,Paama,,---4----,AI,0001,,1628S 16814E, +,VU,PSA,Port Sandwich,Port Sandwich,,1-------,RQ,9501,,1626S 16747E, +,VU,SAN,Santo,Santo,,1-------,RQ,9501,,1509S 16703E, +,VU,SLH,Sola,Sola,,---4----,AI,9501,,1352S 16733E, +,VU,SON,Espiritu Santo,Espiritu Santo,,---4----,AI,9501,,1509S 16703E, +,VU,SSR,Sara,Sara,,---4----,AI,0001,,1734S 16828E, +,VU,SWJ,South West Bay,South West Bay,,---4----,AI,0001,,1630S 16726E, +,VU,TAH,Tanna,Tanna,,---4----,AI,9501,,1929S 16920E, +,VU,TGH,Tongoa,Tongoa,,---4----,AI,9501,,1654S 16834E, +,VU,ULB,Ulei,Ulei,,---4----,AI,0001,,1620S 16818E, +,VU,VLI,Port Vila,Port Vila,,1--45---,AI,9501,,1744S 16819E, +,VU,VLS,Valesdir,Valesdir,,---4----,AI,9501,,1647S 16810E, +,VU,WLH,Walaha,Walaha,,---4----,AI,9501,,1524S 16742E, +,VU,ZGU,Gaua,Gaua,,---4----,AI,0001,,1417S 16731E, +,WS,AAU,Asau,Asau,,1--4----,AI,9501,,1331S 17238W, +,WS,APW,Apia,Apia,,1--45---,AI,9501,,1350S 17146W, +,WS,LAV,Lalomalava,Lalomalava,,---4----,AI,0001,,1342S 17212W, +,WS,SAL,Salelologa,Salelologa,,0-------,RQ,9601,,1344S 17213W, +,WS,SAV,Savaii,Savaii,,0-------,RQ,9601,,1337S 17226W, +,YE,AAY,Al Ghaydah,Al Ghaydah,,---4----,AI,0001,,1613N 05211E, +,YE,ADE,Aden,Aden,,1--45---,AI,9501,,1247N 04502E, +,YE,AHW,Ahwar,Ahwar,,1-------,QQ,9501,,1331N 04643E, +,YE,ASR,Ash Shihr,Ash Shihr,,--3-----,RL,9901,,1446N 04937E, +,YE,AXK,Ataq,Ataq,,---4----,AI,0001,,1432N 04651E, +,YE,BHN,Beihan,Beihan,,---4----,AI,9501,,1448N 04543E, +,YE,DHL,Dhala,Dhala,,---4----,AI,0001,,1342N 04444E, +,YE,DMR,Dhamar,Dhamar,,---4----,AI,0001,,1433N 04424E, +,YE,GXF,Seiyun,Seiyun,,---4----,AI,9501,,1556N 04848E, +,YE,HAR,Harad,Harad,,1-------,QQ,9501,,1624N 04303E, +,YE,HAU,Haura,Haura,,1-------,QQ,9501,,1352N 04337E, +,YE,IBB,Ibb,Ibb,,--3-----,RL,9901,,1358N 04411E, +,YE,IHN,Qishn,Qishn,,---4----,AI,9501,,1525N 05141E, +,YE,KAM,Kamaran,Kamaran,,---4----,AI,9501,,1521N 04236E, +,YE,KHO,Khokha,Khokha,,1-------,QQ,9501,,1348N 04315E, +,YE,LAW,Lawdar,Lawdar,,--3-----,RL,9901,,1353N 04552E, +,YE,LDR,Lodar,Lodar,,---4----,AI,0001,,1353N 04552E, +,YE,LOH,Loheiya,Loheiya,,0-------,RQ,9501,,1542N 04241E, +,YE,MFY,Mayfa'ah,Mayfa'ah,,---4----,AI,0001,,1512N 04401E, +,YE,MKX,Mukalla,Mukalla,,1--4----,AI,9501,,1433N 04907E, +,YE,MOK,Mokha,Mokha,,1-------,QQ,9501,,1319N 04314E, +,YE,NIS,Nishtun,Nishtun,,0-------,RQ,9501,,1549N 05211E, +,YE,RXA,Raudha,Raudha,,---4----,AI,0001,,1526N 04413E, +,YE,SAH,Sana'a,Sana'a,,---4----,AI,9501,,1521N 04412E, +,YE,SAL,Saleef Port,Saleef Port,,1-------,QQ,9501,,1518N 04240E, +,YE,SYE,Sadah,Sadah,,1-34----,AI,9501,,1441N 04339E, +,YE,TAI,Taiz,Taiz,,---4----,AI,9501,,1335N 04401E, +,YE,UKR,Mukeiras,Mukeiras,,---4----,AI,0001,,1357N 04540E, +,ZA,ADY,Alldays,Alldays,,---4----,AI,0001,,2241S 02906E, +,ZA,AFD,Port Alfred,Port Alfred,,---4----,AI,0001,,3336S 02653E, +,ZA,ALJ,Alexander Bay,Alexander Bay,,---4----,AF,9501,,2836S 01629E, +,ZA,BBR,Beit Bridge,Beit Bridge,,0-------,AF,9501,,2214S 02959E, +,ZA,BET,Bethal,Bethal,GP,--3-----,RL,1107,,2627S 02928E, +,ZA,BIY,Bisho,Bisho,,---4----,AI,0001,,3251S 02727E, +,ZA,BRK,Brakpan,Brakpan,,--3-----,RL,9805,,2614S 02822E,Transvaal +,ZA,BYS,Booysens,Booysens,,--3-----,RQ,9901,,2543S 02808E, +,ZA,CAR,Carolina,Carolina,MP,--3-----,RL,1107,,2604S 03007E, +,ZA,CDO,Cradock,Cradock,,---4----,AI,0001,,3210S 02537E, +,ZA,CTT,City Centre,City Centre,EC,--3-----,RQ,0901,,3355S 01825E, +,ZA,EDG,Mount Edgecombe,Mount Edgecombe,NL,1-------,RQ,0901,,2944S 03102E, +,ZA,ELA,Elandsfontein,Elandsfontein,,--3-----,RL,9805,,2610S 02812E,Gauteng +,ZA,ELL,Ellisras,Ellisras,,---4----,AI,0001,,2341S 02744E, +,ZA,ELS,East London,East London,,1234----,AF,9501,,3301S 02754E, +,ZA,EMG,Empangeni,Empangeni,,---4----,AI,0001,,2845S 03154E, +,ZA,FBG,Fordsburg,Fordsburg,,--3-----,RQ,9806,,2612S 02801E, +,ZA,FCB,Ficksburg,Ficksburg,,---4----,AF,9501,,2852S 02753E, +,ZA,FHK,Fish Hoek,Fish Hoek,WC,1-3-----,RQ,0901,,3408S 01825E, +,ZA,GAU,Gauteng,Gauteng,GT,-23-----,RQ,0901,,2600S 02800E, +,ZA,GIY,Giyani,Giyani,,---4----,AI,0001,,2319S 03043E, +,ZA,GNB,Gans Bay,Gans Bay,WC,--3-----,RQ,0901,,3435S 01921E, +,ZA,GRH,Grahamstown,Grahamstown,EC,1-------,RQ,0901,,3318S 02632E, +,ZA,GRJ,George,George,,---4----,AF,9501,,3358S 02228E, +,ZA,GRM,Germiston,Germiston,,-23-----,AF,9501,,2614S 02811E, +,ZA,GSS,Sabi Sabi,Sabi Sabi,,---4----,AI,0001,,2450S 03127E, +,ZA,HAM,Hamilton,Hamilton,FS,--3-----,RQ,0901,,2910S 02614E, +,ZA,HAR,Hartebeespoort,Hartebeespoort,GT,--3-----,RQ,0901,,2546S 02758E, +,ZA,HBL,Babelegi,Babelegi,,---4----,AI,0001,,2521S 02817E, +,ZA,HDS,Hoedspruit,Hoedspruit,,---4----,AI,0001,,2421S 03057E, +,ZA,HEI,Heidelberg,Heidelberg,,--3-----,RL,9805,,3405S 02058E,Transvaal +,ZA,HLA,Lanseria,Lanseria,,---4----,AI,9501,,2557S 02755E, +,ZA,HLW,Hluhluwe,Hluhluwe,,---4----,AI,0001,,2801S 03216E, +,ZA,HMS,Hermanus,Hermanus,WC,--3-----,RQ,0901,,3425S 01914E, +,ZA,HRS,Harrismith,Harrismith,,---4----,AI,0001,,2817S 02908E, +,ZA,HYD,Hyde Park,Hyde Park,GT,--3-----,RQ,0901,,2832S 02947E, +,ZA,HZV,Hazyview,Hazyview,,---4----,AI,0001,,2503S 03108E, +,ZA,ILV,Illovo,Illovo,GT,--3-----,RQ,0901,,2607S 02803E, +,ZA,KDP,Krugersdorp,Krugersdorp,,--3-----,RL,9805,,2606S 02747E,Gauteng +,ZA,KIL,Killarney Gardens,Killarney Gardens,WC,--3-----,RQ,0901,,3350S 01832E, +,ZA,KIM,Kimberley,Kimberley,,-234----,AF,9501,,2844S 02446E, +,ZA,KLZ,Kleinzee,Kleinzee,,---4----,AF,9501,,2941S 01704E, +,ZA,KMH,Kuruman,Kuruman,,---4----,AI,0001,,2728S 02326E, +,ZA,KMP,Kempton Park,Kempton Park,,--3-----,RL,9901,,2606S 02814E, +,ZA,KOF,Komatipoort,Komatipoort,,-234----,AF,9501,,2526S 03157E, +,ZA,KOO,Langkloof,Langkloof,EC,1-------,RQ,0901,,3347S 02335E, +,ZA,KST,Koster,Koster,,--3-----,RQ,9704,,2552S 02654E, +,ZA,KXE,Klerksdorp,Klerksdorp,,---4----,AI,0001,,2652S 02640E, +,ZA,KYA,Kyalami,Kyalami,GP,1-3-----,RQ,0407,,2559S 02805E, +,ZA,LAY,Ladysmith,Ladysmith,,---4----,AI,0001,,2833S 02947E, +,ZA,LBR,Marlboro,Marlboro,EC,--3-----,RQ,0901,,2606S 02806E, +,ZA,LCD,Louis Trichardt,Louis Trichardt,,---4----,AI,0001,,2302S 02954E, +,ZA,LDZ,Londolozi,Londolozi,,---4----,AI,0001,,2448S 03130E, +,ZA,LLE,Malelane,Malelane,,---4----,AI,0001,,2530S 03131E, +,ZA,LMR,Lime Acres,Lime Acres,,---4----,AI,0001,,2822S 02328E, +,ZA,LTA,Tzaneen,Tzaneen,,---4----,AF,9501,,2350S 03010E, +,ZA,LUJ,Lusikisiki,Lusikisiki,,---4----,AI,0001,,3122S 02934E, +,ZA,MBD,Mmabatho,Mmabatho,,--34----,AF,9501,,2550S 02537E, +,ZA,MBM,Mkambati,Mkambati,,---4----,AI,0001,,3119S 02958E, +,ZA,MEZ,Messina,Messina,,-234----,AF,9501,,2221S 03002E, +,ZA,MFK,Mafikeng,Mafikeng,,-234----,AF,9501,,2552S 02540E, +,ZA,MGH,Margate,Margate,,---4----,AF,9501,,3052S 03022E, +,ZA,MLD,Maitland,Maitland,WC,--3-----,RQ,0901,,3355S 01830E, +,ZA,MPM,Mpumalanga,Mpumalanga,KZN,--3-----,RL,1107,,2949S 03038E, +,ZA,MZQ,Mkuze,Mkuze,,---4----,AI,0001,,2737S 03202E, +,ZA,MZY,Mossel Bay,Mossel Bay,,1--4----,AF,9501,,3411S 02209E, +,ZA,NCS,Newcastle,Newcastle,,---4----,AI,0001,,2746S 02955E, +,ZA,NLK,Kloof,Kloof,KZN,-----6--,RL,1107,,2947S 03050E, +,ZA,NLP,Nelspruit,Nelspruit,,---4----,AF,9501,,2529S 03059E, +,ZA,NOL,Port Nolloth,Port Nolloth,,1-------,AF,9501,,2915S 01652E, +,ZA,NTY,Sun City,Sun City,,---4----,AI,0001,,2521S 02706E, +,ZA,OBS,Observatory,Observatory,WC,--3-----,RQ,0901,,3356S 01828E, +,ZA,ORK,Orkney,Orkney,NW,--3-----,RQ,0901,,2659S 02640E, +,ZA,OSH,Oshoek,Oshoek,,0-------,AF,9501,,2613S 03059E, +,ZA,OUH,Oudtshoorn,Oudtshoorn,,---4----,AF,9501,,3335S 02212E, +,ZA,PAU,Paulshof,Paulshof,GT,--3-----,RQ,0901,,2602S 02802E, +,ZA,PBZ,Plettenberg Bay,Plettenberg Bay,,---4----,AF,9501,,3403S 02322E, +,ZA,PHW,Phalaborwa,Phalaborwa,,---4----,AF,9501,,2357S 03108E, +,ZA,PHX,Phoenix,Phoenix,EC,1-------,RQ,0901,,2942S 03100E, +,ZA,PIT,Point,Point,EC,1-------,RQ,0901,,2952S 03103E, +,ZA,PLZ,Port Elizabeth,Port Elizabeth,,1--45---,AF,9501,,3358S 02537E, +,ZA,PNT,Pinetown,Pinetown,,--3-----,RQ,9705,,2949S 03053E, +,ZA,POL,Polokwane,Polokwane,,--3-----,RL,1107,,2354S 02928E, +,ZA,PRK,Prieska,Prieska,,---4----,AI,0001,,2940S 02245E, +,ZA,PTG,Pietersburg,Pietersburg,,---4----,AF,9501,,2354S 02928E, +,ZA,PTN,Prospecton,Prospecton,,--3-----,RL,9805,,2960S 03056E, +,ZA,PZB,Pietermaritzburg,Pietermaritzburg,,---45---,AF,9501,,2936S 03023E, +,ZA,RCB,Richards Bay,Richards Bay,,1--4----,AF,9501,,2846S 03203E, +,ZA,RMB,Ramatlhabama,Ramatlhabama,,0-------,AF,9501,,2539S 02534E, +,ZA,ROD,Robertson,Robertson,,---4----,AI,0001,,3348S 01953E, +,ZA,RVO,Reivilo,Reivilo,,---4----,AI,0001,,2734S 02412E, +,ZA,SBU,Springbok,Springbok,,---4----,AF,9501,,2940S 01753E, +,ZA,SDB,Saldanha Bay,Saldanha Bay,,1--4----,AF,9501,,3301S 01757E, +,ZA,SEL,Selby,Selby,GT,-----6--,RQ,0901,,2614S 02801E, +,ZA,SHO,Shongweni,Shongweni,NL,--3-----,RQ,0901,,2951S 03043E, +,ZA,SID,Sidwell,Sidwell,EC,1-3-----,RQ,0901,,3355S 02536E, +,ZA,SIS,Sishen,Sishen,,---4----,AF,9501,,2823S 02258E, +,ZA,SPR,Springs,Springs,,-23-----,RQ,9704,,2615S 02826E, +,ZA,STR,Struandale,Struandale,EC,1-------,RQ,0901,,3354S 02535E, +,ZA,SUN,Sun Valley,Sun Valley,WC,--3-----,RQ,0901,,3407S 01824E, +,ZA,SWE,Swellendam,Swellendam,,0-------,RQ,9601,,3401S 02027E, +,ZA,SZK,Skukuza,Skukuza,,---4----,AF,9501,,2460S 03135E, +,ZA,TCU,Thaba Nchu,Thaba Nchu,,---4----,AI,0001,,2912S 02650E, +,ZA,THR,Arcadia,Arcadia,EC,1-------,RQ,0901,,3300S 02754E, +,ZA,THY,Thohoyandou,Thohoyandou,,---4----,AI,0001,,2258S 03028E, +,ZA,TLT,Tarlton,Tarlton,GT,--3-----,RQ,0901,,2605S 02738E, +,ZA,TSD,Tshipise,Tshipise,,---4----,AI,0001,,2232S 03040E, +,ZA,UHG,Uitenhage,Uitenhage,,-23-----,RQ,9709,,3346S 02524E, +,ZA,ULD,Ulundi,Ulundi,,---4----,AI,0001,,2818S 03126E, +,ZA,UTE,Butterworth,Butterworth,,---4----,AI,0001,,3220S 02809E, +,ZA,UTN,Upington,Upington,,---4----,AF,9501,,2827S 02115E, +,ZA,UTT,Umtata,Umtata,,---4----,AF,9501,,3135S 02847E, +,ZA,UTW,Queenstown,Queenstown,,---4----,AI,0001,,3154S 02653E, +,ZA,VRE,Vredendal,Vredendal,,---4----,AF,9501,,3141S 01830E, +,ZA,VRU,Vryburg,Vryburg,,---4----,AF,9501,,2657S 02444E, +,ZA,VYD,Vryheid,Vryheid,,---4----,AF,9501,,2746S 03047E, +,ZA,WAT,Waterfront,Waterfront,WC,1-------,RQ,0901,,3354S 01825E, +,ZA,WBR,Woodbrook,Woodbrook,EC,--3-----,RQ,0901,,3302S 02752E, +,ZA,WDS,Woodstock,Woodstock,WC,--3-----,RQ,0901,,3356S 01827E, +,ZA,WEL,Welkom,Welkom,,---4----,AF,9501,,2759S 02644E, +,ZA,WKB,Walker Bay,Walker Bay,WC,--3-----,RQ,0901,,3430S 01920E, +,ZA,WMD,Westmead,Westmead,NL,--3-----,RQ,0901,,2949S 03050E, +,ZA,WTN,Winterton,Winterton,NL,1-------,RQ,0901,,2849S 02932E, +,ZA,ZEC,Secunda,Secunda,,---4----,AF,9501,,2631S 02912E, +,ZM,BBZ,Zambezi,Zambezi,,---4----,AI,9501,,1333S 02307E, +,ZM,CGJ,Chingola,Chingola,,---4----,AI,0001,,1233S 02752E, +,ZM,CHO,Choma,Choma,,--3-----,RL,9901,,1649S 02659E, +,ZM,CIP,Chipata,Chipata,,---4----,AI,9501,,1338S 03239E, +,ZM,KAA,Kasama,Kasama,,---4----,AI,9501,,1012S 03111E, +,ZM,KAF,Kafue,Kafue,,0-------,RQ,9601,,1545S 02811E, +,ZM,KAO,Kalomo,Kalomo,,--3-----,RL,9901,,1701S 02629E, +,ZM,KIW,Kitwe,Kitwe,,---4----,AI,9501,,1249S 02812E, +,ZM,KLB,Kalabo,Kalabo,,---4----,AI,9501,,1460S 02240E, +,ZM,KMZ,Kaoma,Kaoma,,---4----,AI,0001,,1448S 02448E, +,ZM,LUA,Luanshya,Luanshya,,0-------,RQ,9601,,1308S 02825E, +,ZM,LUN,Lusaka,Lusaka,,---45---,AI,9501,,1525S 02817E, +,ZM,LVI,Livingstone,Livingstone,,---4----,AI,9501,,1751S 02552E, +,ZM,LXU,Lukulu,Lukulu,,---4----,AI,9501,,1423S 02314E, +,ZM,MFR,Mufulira,Mufulira,,--3-----,RL,0002,,1233S 02814E, +,ZM,MFU,Mfuwe,Mfuwe,,---4----,AI,9501,,1307S 03148E, +,ZM,MMQ,Mbala,Mbala,,---4----,AI,0001,,0851S 03122E, +,ZM,MNR,Mongu,Mongu,,---4----,AI,9501,,1516S 02308E, +,ZM,MNS,Mansa,Mansa,,---4----,AI,9501,,1112S 02853E, +,ZM,NLA,Ndola,Ndola,,---4----,AI,9501,,1258S 02838E, +,ZM,QKE,Kabwe,Kabwe,,---4----,AI,9601,,1427S 02827E, +,ZM,SJQ,Sesheke,Sesheke,,---4----,AI,9501,,1729S 02418E, +,ZM,SLI,Solwezi,Solwezi,,---4----,AI,9501,,1211S 02624E, +,ZM,SXG,Senanga,Senanga,,---4----,AI,9501,,1606S 02318E, +,ZM,ZGM,Ngoma,Ngoma,,---4----,AI,9501,,1545S 02457E, +,ZM,ZKB,Kasaba Bay,Kasaba Bay,,---4----,AI,9501,,0831S 03040E, +,ZM,ZKP,Kasompe,Kasompe,,---4----,AI,0001,,1233S 02751E, +,ZW,BAT,Bata,Bata,,--3-----,RL,9805,,1928S 02948E,Chispite +,ZW,BUQ,Bulawayo,Bulawayo,,---45---,AI,9501,,2009S 02835E, +,ZW,BZH,Bumi Hills,Bumi Hills,,---4----,AI,0001,,1649S 02821E, +,ZW,CHJ,Chipinge,Chipinge,,---4----,AI,0001,,2011S 03237E, +,ZW,HRE,Harare,Harare,,---45---,AI,9501,,1750S 03103E, +,ZW,KAB,Kariba,Kariba,,---4----,AI,9501,,1632S 02847E, +,ZW,KWE,Kwekwe,Kwekwe,,-23-----,RQ,9801,,1856S 02949E, +,ZW,MJW,Mahenye,Mahenye,,---4----,AI,0001,,2114S 03220E, +,ZW,MVZ,Masvingo,Masvingo,,---4----,AI,0001,,2004S 03050E, +,ZW,UTA,Mutare,Mutare,,-2-4----,AI,9501,,1858S 03240E, +,ZW,VFA,Victoria Falls,Victoria Falls,,---4----,AI,9501,,1756S 02550E, +,ZW,WKI,Hwange,Hwange,,---4----,AI,0001,,1822S 02630E, From f2113a9c021a59f115c9b64c176d5d909a6d7361 Mon Sep 17 00:00:00 2001 From: Airat Arifullin Date: Wed, 22 Jan 2025 22:03:36 +0300 Subject: [PATCH 13/18] [#21] locode: Introduce locode overriding Signed-off-by: Airat Arifullin --- Makefile | 1 + locode_generate.go | 10 +++++--- pkg/locode/table/csv/calls.go | 47 +++++++++++++++++++++++++++++++++++ pkg/locode/table/csv/table.go | 17 ++++++++++++- 4 files changed, 71 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 0e6b28a..27428ad 100755 --- a/Makefile +++ b/Makefile @@ -51,6 +51,7 @@ locode_db: in/unlocode-CodeList.csv in/unlocode-SubdivisionCodes.csv in/continen --continents in/continents.geojson \ --countries in/countries.dat \ --in in/unlocode-CodeList.csv \ + --overrides in/unlocode-CodeList_overrides.csv \ --subdiv in/unlocode-SubdivisionCodes.csv \ --out locode_db chmod 644 locode_db diff --git a/locode_generate.go b/locode_generate.go index 57ec4f8..7235675 100644 --- a/locode_generate.go +++ b/locode_generate.go @@ -16,6 +16,7 @@ type namesDB struct { const ( locodeGenerateInputFlag = "in" + locodeGenerateOverridesFlag = "overrides" locodeGenerateSubDivFlag = "subdiv" locodeGenerateAirportsFlag = "airports" locodeGenerateCountriesFlag = "countries" @@ -25,6 +26,7 @@ const ( var ( locodeGenerateInPaths []string + locodeGenerateOverridesPath string locodeGenerateSubDivPath string locodeGenerateAirportsPath string locodeGenerateCountriesPath string @@ -35,11 +37,11 @@ var ( Use: "generate", Short: "Generate UN/LOCODE database for FrostFS", Run: func(cmd *cobra.Command, _ []string) { - locodeDB := csvlocode.New( csvlocode.Prm{ - Path: locodeGenerateInPaths[0], - SubDivPath: locodeGenerateSubDivPath, + Path: locodeGenerateInPaths[0], + SubDivPath: locodeGenerateSubDivPath, + OverridesPath: locodeGenerateOverridesPath, }, csvlocode.WithExtraPaths(locodeGenerateInPaths[1:]...), ) @@ -79,6 +81,8 @@ func initUtilLocodeGenerateCmd() { flags.StringSliceVar(&locodeGenerateInPaths, locodeGenerateInputFlag, nil, "List of paths to UN/LOCODE tables (csv)") _ = locodeGenerateCmd.MarkFlagRequired(locodeGenerateInputFlag) + flags.StringVar(&locodeGenerateOverridesPath, locodeGenerateOverridesFlag, "", "Path to UN/LOCODE override tables (csv)") + flags.StringVar(&locodeGenerateSubDivPath, locodeGenerateSubDivFlag, "", "Path to UN/LOCODE subdivision database (csv)") _ = locodeGenerateCmd.MarkFlagRequired(locodeGenerateSubDivFlag) diff --git a/pkg/locode/table/csv/calls.go b/pkg/locode/table/csv/calls.go index 5ce0e7b..7d4e816 100644 --- a/pkg/locode/table/csv/calls.go +++ b/pkg/locode/table/csv/calls.go @@ -3,6 +3,7 @@ package csvlocode import ( "encoding/csv" "errors" + "fmt" "io" "os" "strings" @@ -40,6 +41,10 @@ func (t *Table) IterateAll(f func(locode.Record) error) error { Remarks: words[11], } + if err := t.Override(&record); err != nil { + return fmt.Errorf("override: %w", err) + } + return f(record) }) } @@ -84,6 +89,14 @@ func (t *Table) SubDivName(countryCode *locodedb.CountryCode, code string) (stri return rec.name, nil } +func (t *Table) Override(record *locode.Record) error { + override, found := t.overrides[record.LOCODE] + if found { + *record = override + } + return nil +} + func (t *Table) initSubDiv() (err error) { t.subDivOnce.Do(func() { t.mSubDiv = make(map[subDivKey]subDivRecord) @@ -103,6 +116,40 @@ func (t *Table) initSubDiv() (err error) { return } +func (t *Table) initOverrides(overridesPath string) error { + const wordsPerRecord = 12 + + t.overrides = make(map[locode.LOCODE]locode.Record) + + if overridesPath == "" { + return nil + } + + return t.scanWords([]string{overridesPath}, wordsPerRecord, func(words []string) error { + lc, err := locode.FromString(strings.Join(words[1:3], " ")) + if err != nil { + return err + } + + record := locode.Record{ + Ch: words[0], + LOCODE: *lc, + Name: words[3], + NameWoDiacritics: words[4], + SubDiv: words[5], + Function: words[6], + Status: words[7], + Date: words[8], + IATA: words[9], + Coordinates: words[10], + Remarks: words[11], + } + + t.overrides[record.LOCODE] = record + return nil + }) +} + var errScanInt = errors.New("interrupt scan") func (t *Table) scanWords(paths []string, fpr int, wordsHandler func([]string) error) error { diff --git a/pkg/locode/table/csv/table.go b/pkg/locode/table/csv/table.go index b84c2b7..53299df 100644 --- a/pkg/locode/table/csv/table.go +++ b/pkg/locode/table/csv/table.go @@ -4,6 +4,8 @@ import ( "fmt" "io/fs" "sync" + + "git.frostfs.info/TrueCloudLab/frostfs-locode-db/pkg/locode" ) // Prm groups the required parameters of the Table's constructor. @@ -21,6 +23,11 @@ type Prm struct { // // Must not be empty. SubDivPath string + + // Path to a csv table with UN/LOCODE overrides. + // + // Optional. + OverridesPath string } // Table is a descriptor of the UN/LOCODE table in csv format. @@ -39,6 +46,8 @@ type Table struct { subDivOnce sync.Once mSubDiv map[subDivKey]subDivRecord + + overrides map[locode.LOCODE]locode.Record } const invalidPrmValFmt = "invalid parameter %s (%T):%v" @@ -67,9 +76,15 @@ func New(prm Prm, opts ...Option) *Table { opts[i](o) } - return &Table{ + t := &Table{ paths: append(o.extraPaths, prm.Path), mode: o.mode, subDivPath: prm.SubDivPath, } + + if err := t.initOverrides(prm.OverridesPath); err != nil { + panic(fmt.Errorf("init overrides: %w", err)) + } + + return t } From f35b1c62e8a7b9b7094ef706d2267f0beae9d4b7 Mon Sep 17 00:00:00 2001 From: Airat Arifullin Date: Wed, 22 Jan 2025 22:06:24 +0300 Subject: [PATCH 14/18] [#21] locode: Count ignored and added records to result locode db Signed-off-by: Airat Arifullin --- locode_generate.go | 4 +++- pkg/locode/db/db.go | 55 +++++++++++++++++++++++++++++++-------------- 2 files changed, 41 insertions(+), 18 deletions(-) diff --git a/locode_generate.go b/locode_generate.go index 7235675..ff7ff4f 100644 --- a/locode_generate.go +++ b/locode_generate.go @@ -69,8 +69,10 @@ var ( Table: locodeDB, } - err = locodedb.FillDatabase(locodeDB, airportDB, continentsDB, names, targetDB) + res, err := locodedb.FillDatabase(locodeDB, airportDB, continentsDB, names, targetDB) ExitOnErr(cmd, "", err) + cmd.Printf("Records added to locode db: %d\n", res.AddedRecordCount) + cmd.Printf("Records ignored: %d\n", res.IgnoredRecordCount) }, } ) diff --git a/pkg/locode/db/db.go b/pkg/locode/db/db.go index 90b19ed..82c02cb 100644 --- a/pkg/locode/db/db.go +++ b/pkg/locode/db/db.go @@ -4,6 +4,7 @@ import ( "errors" "fmt" "runtime" + "sync/atomic" "git.frostfs.info/TrueCloudLab/frostfs-locode-db/pkg/locode" "golang.org/x/sync/errgroup" @@ -75,38 +76,58 @@ type NamesDB interface { SubDivName(*CountryCode, string) (string, error) } +type FillDatabaseResult struct { + AddedRecordCount int + IgnoredRecordCount int +} + // FillDatabase generates the FrostFS location database based on the UN/LOCODE table. -func FillDatabase(table SourceTable, airports AirportDB, continents ContinentsDB, names NamesDB, db DB) error { +func FillDatabase(table SourceTable, airports AirportDB, continents ContinentsDB, names NamesDB, db DB) (FillDatabaseResult, error) { var errG errgroup.Group + var added, ignored atomic.Int32 + // Pick some sane default, after this the performance stopped increasing. errG.SetLimit(runtime.NumCPU() * 16) _ = table.IterateAll(func(tableRecord locode.Record) error { errG.Go(func() error { - return processTableRecord(tableRecord, airports, continents, names, db) + wasAdded, err := processTableRecord(tableRecord, airports, continents, names, db) + if err != nil { + return err + } + if wasAdded { + added.Add(1) + } else { + ignored.Add(1) + } + return nil }) return nil }) - return errG.Wait() + + return FillDatabaseResult{ + AddedRecordCount: int(added.Load()), + IgnoredRecordCount: int(ignored.Load()), + }, errG.Wait() } -func processTableRecord(tableRecord locode.Record, airports AirportDB, continents ContinentsDB, names NamesDB, db DB) error { +func processTableRecord(tableRecord locode.Record, airports AirportDB, continents ContinentsDB, names NamesDB, db DB) (bool, error) { if tableRecord.LOCODE.LocationCode() == "" { - return nil + return false, nil } dbKey, err := NewKey(tableRecord.LOCODE) if err != nil { - return err + return false, err } dbRecord, err := NewRecord(tableRecord) if err != nil { if errors.Is(err, errParseCoordinates) { - return nil + return false, nil } - return err + return false, err } geoPoint := dbRecord.GeoPoint() @@ -116,10 +137,10 @@ func processTableRecord(tableRecord locode.Record, airports AirportDB, continent airportRecord, err := airports.Get(tableRecord) if err != nil { if errors.Is(err, ErrAirportNotFound) { - return nil + return false, nil } - return err + return false, err } geoPoint = airportRecord.Point @@ -132,10 +153,10 @@ func processTableRecord(tableRecord locode.Record, airports AirportDB, continent countryName, err = names.CountryName(dbKey.CountryCode()) if err != nil { if errors.Is(err, ErrCountryNotFound) { - return nil + return false, nil } - return err + return false, err } } @@ -145,10 +166,10 @@ func processTableRecord(tableRecord locode.Record, airports AirportDB, continent subDivName, err := names.SubDivName(dbKey.CountryCode(), subDivCode) if err != nil { if errors.Is(err, ErrSubDivNotFound) { - return nil + return false, nil } - return err + return false, err } dbRecord.SetSubDivName(subDivName) @@ -156,14 +177,14 @@ func processTableRecord(tableRecord locode.Record, airports AirportDB, continent continent, err := continents.PointContinent(geoPoint) if err != nil { - return fmt.Errorf("could not calculate continent geo point: %w", err) + return false, fmt.Errorf("could not calculate continent geo point: %w", err) } else if continent.Is(ContinentUnknown) { - return nil + return false, nil } dbRecord.SetContinent(continent) - return db.Put(*dbKey, *dbRecord) + return true, db.Put(*dbKey, *dbRecord) } // LocodeRecord returns the record from the FrostFS location database From c7cb68f1f7af8140945a5437dee5ad64d8ccac67 Mon Sep 17 00:00:00 2001 From: Anton Nikiforov Date: Wed, 12 Mar 2025 10:15:11 +0300 Subject: [PATCH 15/18] [#13] locode: Use stdout as default output Signed-off-by: Anton Nikiforov --- main.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/main.go b/main.go index f04cf17..670ee30 100644 --- a/main.go +++ b/main.go @@ -35,6 +35,9 @@ func ExitOnErr(cmd *cobra.Command, errFmt string, err error) { } func main() { + // use stdout as default output for cmd.Print() + rootCmd.SetOut(os.Stdout) + initUtilLocodeGenerateCmd() initUtilLocodeInfoCmd() rootCmd.AddCommand(locodeGenerateCmd, locodeInfoCmd) From 1c140389488b627832e8598c521ae675181f6dbc Mon Sep 17 00:00:00 2001 From: Anton Nikiforov Date: Wed, 12 Mar 2025 10:21:02 +0300 Subject: [PATCH 16/18] [#13] locode: Add command to list all locodes Signed-off-by: Anton Nikiforov --- locode_info.go | 7 ++++--- locode_list.go | 37 +++++++++++++++++++++++++++++++++++ main.go | 3 ++- pkg/locode/db/boltdb/calls.go | 20 +++++++++++++++++++ 4 files changed, 63 insertions(+), 4 deletions(-) create mode 100644 locode_list.go diff --git a/locode_info.go b/locode_info.go index 6263a55..e1beac1 100644 --- a/locode_info.go +++ b/locode_info.go @@ -7,8 +7,9 @@ import ( ) const ( - locodeInfoDBFlag = "db" - locodeInfoCodeFlag = "locode" + locodeInfoDBFlag = "db" + locodeInfoDBFlagDesc = "Path to FrostFS UN/LOCODE database" + locodeInfoCodeFlag = "locode" ) var ( @@ -47,7 +48,7 @@ var ( func initUtilLocodeInfoCmd() { flags := locodeInfoCmd.Flags() - flags.StringVar(&locodeInfoDBPath, locodeInfoDBFlag, "", "Path to FrostFS UN/LOCODE database") + flags.StringVar(&locodeInfoDBPath, locodeInfoDBFlag, "", locodeInfoDBFlagDesc) _ = locodeInfoCmd.MarkFlagRequired(locodeInfoDBFlag) flags.StringVar(&locodeInfoCode, locodeInfoCodeFlag, "", "UN/LOCODE") diff --git a/locode_list.go b/locode_list.go new file mode 100644 index 0000000..e4e4ad4 --- /dev/null +++ b/locode_list.go @@ -0,0 +1,37 @@ +package main + +import ( + locodedb "git.frostfs.info/TrueCloudLab/frostfs-locode-db/pkg/locode/db" + locodebolt "git.frostfs.info/TrueCloudLab/frostfs-locode-db/pkg/locode/db/boltdb" + "github.com/spf13/cobra" +) + +var ( + locodeListCmd = &cobra.Command{ + Use: "list", + Short: "Print all locodes from FrostFS database", + Run: func(cmd *cobra.Command, _ []string) { + targetDB := locodebolt.New(locodebolt.Prm{ + Path: locodeInfoDBPath, + }, locodebolt.ReadOnly()) + + err := targetDB.Open() + ExitOnErr(cmd, "", err) + + defer targetDB.Close() + + err = targetDB.IterateOverLocodes(func(locode string, geoPoint locodedb.Point) { + cmd.Printf("%s\t %0.2f %0.2f\n", locode, geoPoint.Latitude(), geoPoint.Longitude()) + }) + ExitOnErr(cmd, "", err) + }, + } +) + +func initUtilLocodeListCmd() { + flags := locodeListCmd.Flags() + + flags.StringVar(&locodeInfoDBPath, locodeInfoDBFlag, "", locodeInfoDBFlagDesc) + _ = locodeListCmd.MarkFlagRequired(locodeInfoDBFlag) + +} diff --git a/main.go b/main.go index 670ee30..8163416 100644 --- a/main.go +++ b/main.go @@ -40,7 +40,8 @@ func main() { initUtilLocodeGenerateCmd() initUtilLocodeInfoCmd() - rootCmd.AddCommand(locodeGenerateCmd, locodeInfoCmd) + initUtilLocodeListCmd() + rootCmd.AddCommand(locodeGenerateCmd, locodeInfoCmd, locodeListCmd) err := rootCmd.Execute() if err != nil { ExitOnErr(rootCmd, "", err) diff --git a/pkg/locode/db/boltdb/calls.go b/pkg/locode/db/boltdb/calls.go index d130097..d596062 100644 --- a/pkg/locode/db/boltdb/calls.go +++ b/pkg/locode/db/boltdb/calls.go @@ -164,3 +164,23 @@ func (db *DB) Get(key locodedb.Key) (rec *locodedb.Record, err error) { return } + +// IterateOverLocodes iterates over all locodes. +// +// Returns an error if unable to unmarshal data from DB. +// +// Must not be called before successful Open call. +func (db *DB) IterateOverLocodes(f func(string, locodedb.Point)) error { + return db.bolt.View(func(tx *bbolt.Tx) error { + return tx.ForEach(func(cname []byte, bktCountry *bbolt.Bucket) error { + return bktCountry.ForEach(func(k, v []byte) error { + rec, err := recordFromValue(v) + if err != nil { + return err + } + f(fmt.Sprintf("%s %s", cname, k), *rec.GeoPoint()) + return nil + }) + }) + }) +} From 1a38db8a2b536eecd18cd0fee02352c126ae9b41 Mon Sep 17 00:00:00 2001 From: Vitaliy Potyarkin Date: Thu, 13 Mar 2025 12:47:21 +0300 Subject: [PATCH 17/18] [#26] ci: Revive automatic database updates Database updates were broken for a while (and noone noticed because CI was not even switched on). This commit: - Adds some greyhat web scraping (fake User-Agent to avoid HTTP 403) - Surfaces errors in intermediate recipe steps (`cmd && cmd` instead of `cmd; cmd`) - Works around other possible CI errors in automatic PRs (--signoff) Signed-off-by: Vitaliy Potyarkin --- .forgejo/workflows/updatechecker.yml | 6 ++++-- Makefile | 7 +++++-- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/.forgejo/workflows/updatechecker.yml b/.forgejo/workflows/updatechecker.yml index 73d216e..be56fd7 100644 --- a/.forgejo/workflows/updatechecker.yml +++ b/.forgejo/workflows/updatechecker.yml @@ -1,17 +1,19 @@ on: schedule: - cron: "2 0 1 * *" + workflow_dispatch: + jobs: checkupdates: runs-on: docker steps: - uses: actions/checkout@v3 - - run: make update + - run: make clean_data update - run: | git config user.name "Snegurochka" git config user.email "snegurochka@frostfs.info" git switch -c update-dbs git add . git remote set-url origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@git.frostfs.info/TrueCloudLab/frostfs-locode-db - git commit -m "Automatic database update (UN/LOCODE version $(cat tmp/locode-version.txt))" && \ + git commit -sm "Automatic database update (UN/LOCODE version $(cat tmp/locode-version.txt))" && \ git push origin HEAD:refs/for/master -o topic=automatic-database-update diff --git a/Makefile b/Makefile index 27428ad..925201d 100755 --- a/Makefile +++ b/Makefile @@ -71,8 +71,11 @@ data/countries.dat.gz: $(DIRS) # See https://unece.org/trade/cefact/UNLOCODE-Download tmp/locode.csv.zip :$(DIRS) DOWNLOADURL=$$(wget -O - https://unece.org/trade/cefact/UNLOCODE-Download \ - | grep -oP '(?<=href=")\S+loc\d+csv\.zip'); \ - echo "$$DOWNLOADURL" | grep -oP '(?<=loc)\d+' > tmp/locode-version.txt; \ + --header='User-Agent: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:136.0) Gecko/20100101 Firefox/136.0' \ + | grep -oP '(?<=href=")\S+loc\d+csv\.zip' \ + | head -n1) && \ + test -n "$$DOWNLOADURL" && \ + echo "$$DOWNLOADURL" | grep -oP '(?<=loc)\d+' > tmp/locode-version.txt && \ wget -c "$$DOWNLOADURL" -O tmp/locode.csv.zip data/unlocode-SubdivisionCodes.csv.gz: tmp/locode.csv.zip From 4cb1f84fa81a3c70937dc3a62e3d91fb6ab8517d Mon Sep 17 00:00:00 2001 From: Vitaliy Potyarkin Date: Thu, 13 Mar 2025 15:54:18 +0300 Subject: [PATCH 18/18] [#25] ci: Publish release artifacts automatically Signed-off-by: Vitaliy Potyarkin --- .forgejo/workflows/build.yml | 38 ++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 .forgejo/workflows/build.yml diff --git a/.forgejo/workflows/build.yml b/.forgejo/workflows/build.yml new file mode 100644 index 0000000..3dd9251 --- /dev/null +++ b/.forgejo/workflows/build.yml @@ -0,0 +1,38 @@ +name: build +on: + pull_request: + push: + workflow_dispatch: + +jobs: + build: + name: locode + runs-on: docker + container: node:22-bookworm + steps: + - uses: actions/checkout@v3 + with: + fetch-depth: 0 + + - name: Setup Go + uses: actions/setup-go@v3 + with: + go-version: '1.23' + check-latest: true + + - name: Build LOCODE database + run: |- + make all + mkdir -p artifacts + mv -v frostfs-locode-db artifacts/ + gzip --stdout --best locode_db > artifacts/locode_db.gz + + - name: Publish release + if: >- + startsWith(github.ref, 'refs/tags/v') && + (github.event_name == 'workflow_dispatch' || github.event_name == 'push') + uses: actions/release@v2 + with: + direction: upload + release-dir: artifacts + token: ${{secrets.PUSH_RELEASE_TOKEN}} # user:read, repository:write