airport-utils 1.0.1 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/ci.yml +1 -1
- package/.github/workflows/pr-maintain.yml +118 -0
- package/.github/workflows/update-mapping.yml +48 -12
- package/dist/cjs/mapping/geo.js +30 -26
- package/dist/cjs/mapping/timezones.js +55 -51
- package/dist/esm/mapping/geo.js +30 -26
- package/dist/esm/mapping/timezones.js +55 -51
- package/package.json +4 -4
- package/rollup.config.js +1 -1
- package/src/mapping/geo.ts +30 -26
- package/src/mapping/timezones.ts +55 -51
package/.github/workflows/ci.yml
CHANGED
|
@@ -0,0 +1,118 @@
|
|
|
1
|
+
name: Maintain Bot PRs
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
pull_request_target:
|
|
5
|
+
types: [opened, reopened, synchronize, ready_for_review]
|
|
6
|
+
schedule:
|
|
7
|
+
- cron: "*/30 * * * *"
|
|
8
|
+
workflow_dispatch:
|
|
9
|
+
|
|
10
|
+
permissions:
|
|
11
|
+
contents: write
|
|
12
|
+
pull-requests: write
|
|
13
|
+
|
|
14
|
+
concurrency:
|
|
15
|
+
group: bot-pr-maintenance
|
|
16
|
+
cancel-in-progress: false
|
|
17
|
+
|
|
18
|
+
env:
|
|
19
|
+
BOT_TOKEN: ${{ secrets.BOT_MAINTAINER_TOKEN != '' && secrets.BOT_MAINTAINER_TOKEN || secrets.GITHUB_TOKEN }}
|
|
20
|
+
APPROVED_BOTS: '["dependabot[bot]","github-actions[bot]"]'
|
|
21
|
+
|
|
22
|
+
jobs:
|
|
23
|
+
maintain:
|
|
24
|
+
runs-on: ubuntu-latest
|
|
25
|
+
steps:
|
|
26
|
+
- name: Determine PR number (if event is a PR)
|
|
27
|
+
id: pr
|
|
28
|
+
run: |
|
|
29
|
+
if [ "${{ github.event.pull_request.number }}" != "" ]; then
|
|
30
|
+
echo "number=${{ github.event.pull_request.number }}" >> $GITHUB_OUTPUT
|
|
31
|
+
fi
|
|
32
|
+
|
|
33
|
+
- name: Update the PR branch to latest base
|
|
34
|
+
if: ${{ steps.pr.outputs.number != '' || github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' }}
|
|
35
|
+
uses: actions/github-script@v7
|
|
36
|
+
with:
|
|
37
|
+
github-token: ${{ env.BOT_TOKEN }}
|
|
38
|
+
script: |
|
|
39
|
+
const owner = context.repo.owner;
|
|
40
|
+
const repo = context.repo.repo;
|
|
41
|
+
const APPROVED_BOTS = JSON.parse(process.env.APPROVED_BOTS);
|
|
42
|
+
|
|
43
|
+
async function updateOne(number) {
|
|
44
|
+
const { data: pr } = await github.rest.pulls.get({ owner, repo, pull_number: number });
|
|
45
|
+
if (!APPROVED_BOTS.includes(pr.user.login) || pr.state !== 'open') return;
|
|
46
|
+
try {
|
|
47
|
+
await github.rest.pulls.updateBranch({ owner, repo, pull_number: number });
|
|
48
|
+
core.info(`Updated branch for PR #${number}`);
|
|
49
|
+
} catch (e) {
|
|
50
|
+
core.info(`UpdateBranch skipped for PR #${number}: ${e.message}`);
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
if (context.eventName === 'pull_request_target' && context.payload.pull_request) {
|
|
55
|
+
await updateOne(context.payload.pull_request.number);
|
|
56
|
+
} else {
|
|
57
|
+
const all = await github.paginate(github.rest.pulls.list, { owner, repo, state: 'open', per_page: 100 });
|
|
58
|
+
for (const pr of all.filter(p => APPROVED_BOTS.includes(p.user.login))) {
|
|
59
|
+
await updateOne(pr.number);
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
- name: Auto-approve bot PR(s) (skip if reviewer == author or already approved)
|
|
64
|
+
if: ${{ steps.pr.outputs.number != '' || github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' }}
|
|
65
|
+
uses: actions/github-script@v7
|
|
66
|
+
with:
|
|
67
|
+
github-token: ${{ env.BOT_TOKEN }}
|
|
68
|
+
script: |
|
|
69
|
+
const owner = context.repo.owner;
|
|
70
|
+
const repo = context.repo.repo;
|
|
71
|
+
const APPROVED_BOTS = JSON.parse(process.env.APPROVED_BOTS);
|
|
72
|
+
const myLogin = process.env.GITHUB_ACTOR.toLowerCase();
|
|
73
|
+
|
|
74
|
+
async function approveOne(number) {
|
|
75
|
+
const { data: pr } = await github.rest.pulls.get({ owner, repo, pull_number: number });
|
|
76
|
+
const author = pr.user.login.toLowerCase();
|
|
77
|
+
if (!APPROVED_BOTS.includes(pr.user.login) || pr.state !== 'open') return;
|
|
78
|
+
|
|
79
|
+
// Skip if reviewer == author
|
|
80
|
+
if (author === myLogin) {
|
|
81
|
+
core.info(`Skipping PR #${number} - reviewer (${myLogin}) is the author.`);
|
|
82
|
+
return;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
// Skip if already approved by this reviewer
|
|
86
|
+
const { data: reviews } = await github.rest.pulls.listReviews({ owner, repo, pull_number: number });
|
|
87
|
+
const hasApproval = reviews.some(r =>
|
|
88
|
+
r.user?.login?.toLowerCase() === myLogin &&
|
|
89
|
+
r.state?.toLowerCase() === 'approved'
|
|
90
|
+
);
|
|
91
|
+
if (hasApproval) {
|
|
92
|
+
core.info(`Skipping PR #${number} - already approved by ${myLogin}.`);
|
|
93
|
+
return;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
await github.rest.pulls.createReview({
|
|
97
|
+
owner, repo, pull_number: number,
|
|
98
|
+
event: 'APPROVE'
|
|
99
|
+
});
|
|
100
|
+
core.info(`Approved PR #${number} from ${pr.user.login}`);
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
if (context.eventName === 'pull_request_target' && context.payload.pull_request) {
|
|
104
|
+
await approveOne(context.payload.pull_request.number);
|
|
105
|
+
} else {
|
|
106
|
+
const all = await github.paginate(github.rest.pulls.list, { owner, repo, state: 'open', per_page: 100 });
|
|
107
|
+
for (const pr of all.filter(p => APPROVED_BOTS.includes(p.user.login))) {
|
|
108
|
+
await approveOne(pr.number);
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
- name: Enable auto-merge (squash)
|
|
113
|
+
if: ${{ steps.pr.outputs.number != '' }}
|
|
114
|
+
uses: peter-evans/enable-pull-request-automerge@v3
|
|
115
|
+
with:
|
|
116
|
+
token: ${{ env.BOT_TOKEN }}
|
|
117
|
+
pull-request-number: ${{ steps.pr.outputs.number }}
|
|
118
|
+
merge-method: squash
|
|
@@ -5,32 +5,68 @@ on:
|
|
|
5
5
|
- cron: '0 0 * * *' # every day at 00:00 UTC
|
|
6
6
|
workflow_dispatch:
|
|
7
7
|
|
|
8
|
+
permissions:
|
|
9
|
+
contents: write
|
|
10
|
+
pull-requests: write
|
|
11
|
+
|
|
12
|
+
concurrency:
|
|
13
|
+
group: update-mapping
|
|
14
|
+
cancel-in-progress: false
|
|
15
|
+
|
|
16
|
+
env:
|
|
17
|
+
# Single token for commits, PR creation, and auto-merge
|
|
18
|
+
BOT_TOKEN: ${{ secrets.BOT_MAINTAINER_TOKEN != '' && secrets.BOT_MAINTAINER_TOKEN || secrets.GITHUB_TOKEN }}
|
|
19
|
+
|
|
8
20
|
jobs:
|
|
9
21
|
refresh-mapping:
|
|
10
22
|
runs-on: ubuntu-latest
|
|
11
23
|
steps:
|
|
12
24
|
- name: Checkout repo
|
|
13
|
-
uses: actions/checkout@
|
|
25
|
+
uses: actions/checkout@v4
|
|
26
|
+
with:
|
|
27
|
+
fetch-depth: 0
|
|
28
|
+
token: ${{ env.BOT_TOKEN }}
|
|
29
|
+
|
|
14
30
|
- name: Setup Node.js
|
|
15
|
-
uses: actions/setup-node@
|
|
31
|
+
uses: actions/setup-node@v4
|
|
16
32
|
with:
|
|
17
33
|
node-version: '20'
|
|
34
|
+
|
|
18
35
|
- name: Install dependencies
|
|
19
36
|
run: npm ci
|
|
37
|
+
|
|
20
38
|
- name: Generate updated mapping
|
|
21
39
|
run: npm run update:mapping
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
- name: Test
|
|
25
|
-
run: npm test
|
|
26
|
-
- name: Commit & push if changed
|
|
40
|
+
|
|
41
|
+
- name: Commit changes (no push)
|
|
27
42
|
run: |
|
|
28
43
|
git config user.name "github-actions[bot]"
|
|
29
44
|
git config user.email "github-actions[bot]@users.noreply.github.com"
|
|
30
45
|
git add src/mapping/*
|
|
31
|
-
if
|
|
32
|
-
git commit -m "chore(mapping): daily update of mapping files"
|
|
33
|
-
git push
|
|
34
|
-
else
|
|
46
|
+
if git diff --cached --quiet; then
|
|
35
47
|
echo "No changes in mapping files"
|
|
36
|
-
|
|
48
|
+
echo "no_changes=true" >> $GITHUB_ENV
|
|
49
|
+
else
|
|
50
|
+
git commit -m "chore(mapping): daily update of mapping files"
|
|
51
|
+
fi
|
|
52
|
+
|
|
53
|
+
- name: Create or update PR
|
|
54
|
+
if: env.no_changes != 'true'
|
|
55
|
+
id: cpr
|
|
56
|
+
uses: peter-evans/create-pull-request@v6
|
|
57
|
+
with:
|
|
58
|
+
token: ${{ env.BOT_TOKEN }}
|
|
59
|
+
commit-message: "chore(mapping): daily update of mapping files"
|
|
60
|
+
branch: chore/mapping-auto
|
|
61
|
+
title: "chore(mapping): daily update of mapping files"
|
|
62
|
+
body: "Automated update of mapping files."
|
|
63
|
+
labels: dependencies
|
|
64
|
+
delete-branch: true
|
|
65
|
+
|
|
66
|
+
- name: Enable auto-merge (squash)
|
|
67
|
+
if: steps.cpr.outputs.pull-request-number
|
|
68
|
+
uses: peter-evans/enable-pull-request-automerge@v3
|
|
69
|
+
with:
|
|
70
|
+
token: ${{ env.BOT_TOKEN }}
|
|
71
|
+
pull-request-number: ${{ steps.cpr.outputs.pull-request-number }}
|
|
72
|
+
merge-method: squash
|
package/dist/cjs/mapping/geo.js
CHANGED
|
@@ -311,7 +311,7 @@ const geo = {
|
|
|
311
311
|
"ANL": { "latitude": -11.48676, "longitude": 16.69663, "name": "Andulo", "city": "Andulo", "country": "AO" },
|
|
312
312
|
"ANM": { "latitude": -14.90033, "longitude": 50.27876, "name": "Antalaha", "city": "Antsirabato=Antalaha", "country": "MG" },
|
|
313
313
|
"ANN": { "latitude": 55.08996, "longitude": -131.44661, "name": "Annette Island", "city": "Annette Island", "country": "US" },
|
|
314
|
-
"ANO": { "latitude": -16.17, "longitude": 39.93, "name": "
|
|
314
|
+
"ANO": { "latitude": -16.17, "longitude": 39.93, "name": "Angoche", "city": "Angoche", "country": "MZ" },
|
|
315
315
|
"ANP": { "latitude": 38.97845, "longitude": -76.49218, "name": "Annapolis", "city": "Annapolis", "country": "US" },
|
|
316
316
|
"ANQ": { "latitude": 41.63477, "longitude": -84.99941, "name": "Angola", "city": "Angola", "country": "US" },
|
|
317
317
|
"ANR": { "latitude": 51.21989, "longitude": 4.40346, "name": "Antwerpen", "city": "Antwerpen", "country": "BE" },
|
|
@@ -689,7 +689,7 @@ const geo = {
|
|
|
689
689
|
"BEM": { "latitude": 32.33725, "longitude": -6.34983, "name": "Beni Mellal", "city": "Beni Mellal", "country": "MA" },
|
|
690
690
|
"BEN": { "latitude": 32.11486, "longitude": 20.06859, "name": "Benghazi", "city": "Benina=Benghazi", "country": "LY" },
|
|
691
691
|
"BEO": { "latitude": -33.03, "longitude": 151.7, "name": "Aeropelican Airport", "city": "Newcastle", "country": "AU" },
|
|
692
|
-
"BEP": { "latitude": 15.15, "longitude": 76.93333, "name": "
|
|
692
|
+
"BEP": { "latitude": 15.15, "longitude": 76.93333, "name": "Ballari", "city": "Ballari", "country": "IN" },
|
|
693
693
|
"BEQ": { "latitude": 52.2463, "longitude": 0.71111, "name": "Bury St Edmunds", "city": "Bury St Edmunds", "country": "GB" },
|
|
694
694
|
"BER": { "latitude": 52.52437, "longitude": 13.41053, "name": "Berlin", "city": "Berlin", "country": "DE" },
|
|
695
695
|
"BES": { "latitude": 48.4, "longitude": -4.48333, "name": "Brest", "city": "Brest", "country": "FR" },
|
|
@@ -764,7 +764,7 @@ const geo = {
|
|
|
764
764
|
"BHL": { "latitude": 28.94747, "longitude": -113.55992, "name": "Bahía de los Ángeles", "city": "Bahía de los Ángeles", "country": "MX" },
|
|
765
765
|
"BHM": { "latitude": 33.52066, "longitude": -86.80249, "name": "Birmingham", "city": "Birmingham", "country": "US" },
|
|
766
766
|
"BHN": { "latitude": 14.80067, "longitude": 45.71889, "name": "Bayḩān", "city": "Bayḩān", "country": "YE" },
|
|
767
|
-
"BHO": { "latitude": 23.25469, "longitude": 77.40289, "name": "
|
|
767
|
+
"BHO": { "latitude": 23.25469, "longitude": 77.40289, "name": "Bhopal", "city": "Bhopal", "country": "IN" },
|
|
768
768
|
"BHP": { "latitude": 27.1715, "longitude": 87.04607, "name": "Bhojpur", "city": "Bhojpur", "country": "NP" },
|
|
769
769
|
"BHQ": { "latitude": -31.96173, "longitude": 141.45998, "name": "Broken Hill", "city": "Broken Hill", "country": "AU" },
|
|
770
770
|
"BHR": { "latitude": 27.68333, "longitude": 84.43333, "name": "Bharatpur", "city": "Bharatpur", "country": "NP" },
|
|
@@ -2202,6 +2202,7 @@ const geo = {
|
|
|
2202
2202
|
"EAS": { "latitude": 43.31283, "longitude": -1.97499, "name": "Donostia / San Sebastián", "city": "Donostia / San Sebastián", "country": "ES" },
|
|
2203
2203
|
"EAT": { "latitude": 47.42346, "longitude": -120.31035, "name": "Wenatchee", "city": "Wenatchee", "country": "US" },
|
|
2204
2204
|
"EAU": { "latitude": 44.81135, "longitude": -91.49849, "name": "Eau Claire", "city": "Eau Claire", "country": "US" },
|
|
2205
|
+
"EAX": { "latitude": 5.85956, "longitude": -55.19267, "name": "Eduard Alexander Gummels Airport", "city": "Paramaribo", "country": "SR" },
|
|
2205
2206
|
"EBA": { "latitude": 42.77663, "longitude": 10.27788, "name": "Isola d'Elba", "city": "Isola d'Elba", "country": "IT" },
|
|
2206
2207
|
"EBB": { "latitude": 0.06444, "longitude": 32.44694, "name": "Entebbe", "city": "Entebbe", "country": "UG" },
|
|
2207
2208
|
"EBD": { "latitude": 13.18421, "longitude": 30.21669, "name": "El Obeid", "city": "El Obeid", "country": "SD" },
|
|
@@ -2823,7 +2824,7 @@ const geo = {
|
|
|
2823
2824
|
"GDM": { "latitude": 42.57509, "longitude": -71.99813, "name": "Gardner", "city": "Gardner", "country": "US" },
|
|
2824
2825
|
"GDN": { "latitude": 54.35205, "longitude": 18.64637, "name": "Gdańsk", "city": "Gdańsk", "country": "PL" },
|
|
2825
2826
|
"GDO": { "latitude": 7.24241, "longitude": -70.73236, "name": "Guasdualito", "city": "Guasdualito", "country": "VE" },
|
|
2826
|
-
"GDP": { "latitude": -6.
|
|
2827
|
+
"GDP": { "latitude": -6.79092, "longitude": -43.57064, "name": "Guadalupe", "city": "Guadalupe", "country": "BR" },
|
|
2827
2828
|
"GDQ": { "latitude": 12.6, "longitude": 37.46667, "name": "Gonder", "city": "Gonder", "country": "ET" },
|
|
2828
2829
|
"GDR": { "latitude": -23.00667, "longitude": -44.31806, "name": "Angra dos Reis", "city": "Angra dos Reis", "country": "BR" },
|
|
2829
2830
|
"GDT": { "latitude": 21.46002, "longitude": -71.14158, "name": "Grand Turk", "city": "Grand Turk", "country": "TC" },
|
|
@@ -2931,7 +2932,7 @@ const geo = {
|
|
|
2931
2932
|
"GKW": { "latitude": 25.2636, "longitude": 110.27775, "name": "Guilin Railway Station", "city": "Guilin", "country": "CN" },
|
|
2932
2933
|
"GLA": { "latitude": 55.86515, "longitude": -4.25763, "name": "Glasgow", "city": "Glasgow", "country": "GB" },
|
|
2933
2934
|
"GLB": { "latitude": 33.39422, "longitude": -110.7865, "name": "Globe", "city": "Globe", "country": "US" },
|
|
2934
|
-
"GLC": { "latitude": 6.97, "longitude": 46.42, "name": "
|
|
2935
|
+
"GLC": { "latitude": 6.97, "longitude": 46.42, "name": "Galadi Northeast", "city": "Galadi Northeast", "country": "ET" },
|
|
2935
2936
|
"GLD": { "latitude": 39.35083, "longitude": -101.71017, "name": "Goodland", "city": "Goodland", "country": "US" },
|
|
2936
2937
|
"GLE": { "latitude": 33.62594, "longitude": -97.13335, "name": "Gainesville", "city": "Gainesville", "country": "US" },
|
|
2937
2938
|
"GLF": { "latitude": 8.63901, "longitude": -83.16603, "name": "Golfito", "city": "Golfito", "country": "CR" },
|
|
@@ -3150,7 +3151,7 @@ const geo = {
|
|
|
3150
3151
|
"GYG": { "latitude": 62.10746, "longitude": 129.53184, "name": "Magan", "city": "Magan", "country": "RU" },
|
|
3151
3152
|
"GYI": { "latitude": -1.677203, "longitude": 29.258875, "name": "Gisenyi Airport", "city": "Gisenyi Airport", "country": "RW" },
|
|
3152
3153
|
"GYL": { "latitude": -16.68523, "longitude": 128.43179, "name": "Argyle Village", "city": "Argyle Diamond Mine=Argyle Village", "country": "AU" },
|
|
3153
|
-
"GYM": { "latitude": 27.91818, "longitude": -110.89973, "name": "Guaymas", "city": "Guaymas", "country": "MX" },
|
|
3154
|
+
"GYM": { "latitude": 27.91818, "longitude": -110.89973, "name": "Heroica Guaymas", "city": "Heroica Guaymas", "country": "MX" },
|
|
3154
3155
|
"GYN": { "latitude": -16.67861, "longitude": -49.25389, "name": "Goiânia", "city": "Goiânia", "country": "BR" },
|
|
3155
3156
|
"GYO": { "latitude": 3.9971, "longitude": 97.3384, "name": "Blangkejeren", "city": "Blangkejeren", "country": "ID" },
|
|
3156
3157
|
"GYP": { "latitude": -26.18979, "longitude": 152.66499, "name": "Gympie", "city": "Gympie", "country": "AU" },
|
|
@@ -3212,7 +3213,7 @@ const geo = {
|
|
|
3212
3213
|
"HBT": { "latitude": 6.13023, "longitude": 81.10228, "name": "Hambantota Sea Plane Base", "city": "Hambantota", "country": "LK" },
|
|
3213
3214
|
"HBU": { "latitude": 46.09609, "longitude": 91.53276, "name": "Bulgan District", "city": "Bulgan District", "country": "MN" },
|
|
3214
3215
|
"HBV": { "latitude": 45.7048, "longitude": 126.57314, "name": "Harbin West Railway Station", "city": "Harbin", "country": "CN" },
|
|
3215
|
-
"HBX": { "latitude": 15.34776, "longitude": 75.13378, "name": "
|
|
3216
|
+
"HBX": { "latitude": 15.34776, "longitude": 75.13378, "name": "Hubballi", "city": "Hubballi", "country": "IN" },
|
|
3216
3217
|
"HBZ": { "latitude": 52.6328, "longitude": 9.73667, "name": "Hannover DE Central Bus St", "city": "Hannover", "country": "DE" },
|
|
3217
3218
|
"HCA": { "latitude": 32.2504, "longitude": -101.47874, "name": "Big Spring", "city": "Big Spring", "country": "US" },
|
|
3218
3219
|
"HCB": { "latitude": 55.46, "longitude": -131.3, "name": "Shoal Cove Airport", "city": "Shoal Cove", "country": "US" },
|
|
@@ -3820,7 +3821,7 @@ const geo = {
|
|
|
3820
3821
|
"IXB": { "latitude": 26.69929, "longitude": 88.31177, "name": "Bagdogra", "city": "Bagdogra", "country": "IN" },
|
|
3821
3822
|
"IXC": { "latitude": 30.73629, "longitude": 76.7884, "name": "Chandigarh", "city": "Chandigarh", "country": "IN" },
|
|
3822
3823
|
"IXD": { "latitude": 25.44478, "longitude": 81.84322, "name": "Prayagraj", "city": "Prayagraj", "country": "IN" },
|
|
3823
|
-
"IXE": { "latitude": 12.91723, "longitude": 74.85603, "name": "
|
|
3824
|
+
"IXE": { "latitude": 12.91723, "longitude": 74.85603, "name": "Mangaluru", "city": "Mangaluru", "country": "IN" },
|
|
3824
3825
|
"IXG": { "latitude": 15.85212, "longitude": 74.50447, "name": "Belagavi", "city": "Belagavi", "country": "IN" },
|
|
3825
3826
|
"IXH": { "latitude": 24.33199, "longitude": 92.00391, "name": "Kailāshahar", "city": "Kailāshahar", "country": "IN" },
|
|
3826
3827
|
"IXI": { "latitude": 27.23517, "longitude": 94.10357, "name": "North Lakhimpur", "city": "North Lakhimpur", "country": "IN" },
|
|
@@ -3834,10 +3835,10 @@ const geo = {
|
|
|
3834
3835
|
"IXR": { "latitude": 23.34316, "longitude": 85.3094, "name": "Ranchi", "city": "Ranchi", "country": "IN" },
|
|
3835
3836
|
"IXS": { "latitude": 24.82733, "longitude": 92.79787, "name": "Silchar", "city": "Silchar", "country": "IN" },
|
|
3836
3837
|
"IXT": { "latitude": 28.07, "longitude": 95.37, "name": "Pasighat Airport", "city": "Pasighat Airport", "country": "IN" },
|
|
3837
|
-
"IXU": { "latitude": 19.87757, "longitude": 75.34226, "name": "
|
|
3838
|
+
"IXU": { "latitude": 19.87757, "longitude": 75.34226, "name": "Aurangabad", "city": "Aurangabad", "country": "IN" },
|
|
3838
3839
|
"IXV": { "latitude": 28.16951, "longitude": 94.8006, "name": "Along", "city": "Along", "country": "IN" },
|
|
3839
3840
|
"IXW": { "latitude": 22.80278, "longitude": 86.18545, "name": "Jamshedpur", "city": "Jamshedpur", "country": "IN" },
|
|
3840
|
-
"IXX": { "latitude": 17.90802, "longitude": 77.51524, "name": "
|
|
3841
|
+
"IXX": { "latitude": 17.90802, "longitude": 77.51524, "name": "Bidar", "city": "Bidar", "country": "IN" },
|
|
3841
3842
|
"IXY": { "latitude": 23.03333, "longitude": 70.21667, "name": "Kāndla", "city": "Kāndla", "country": "IN" },
|
|
3842
3843
|
"IXZ": { "latitude": 11.66667, "longitude": 92.75, "name": "Port Blair", "city": "Port Blair", "country": "IN" },
|
|
3843
3844
|
"IYK": { "latitude": 35.6469, "longitude": -117.81257, "name": "Inyokern", "city": "Inyokern", "country": "US" },
|
|
@@ -4036,7 +4037,7 @@ const geo = {
|
|
|
4036
4037
|
"JOT": { "latitude": 41.52519, "longitude": -88.0834, "name": "Joliet", "city": "Joliet", "country": "US" },
|
|
4037
4038
|
"JPA": { "latitude": -7.115, "longitude": -34.86306, "name": "João Pessoa", "city": "João Pessoa", "country": "BR" },
|
|
4038
4039
|
"JPD": { "latitude": 34.14778, "longitude": -118.14452, "name": "Pasadena", "city": "Pasadena", "country": "US" },
|
|
4039
|
-
"JPE": { "latitude": -2.
|
|
4040
|
+
"JPE": { "latitude": -2.99565, "longitude": -47.35488, "name": "Paragominas", "city": "Paragominas", "country": "BR" },
|
|
4040
4041
|
"JPN": { "latitude": 38.87488, "longitude": -77.05662, "name": "Pentagon Army Heliport", "city": "Washington", "country": "US" },
|
|
4041
4042
|
"JPO": { "latitude": -7.02444, "longitude": -37.28, "name": "Patos", "city": "Patos", "country": "BR" },
|
|
4042
4043
|
"JPR": { "latitude": -10.88528, "longitude": -61.95167, "name": "Ji Paraná", "city": "Ji Paraná", "country": "BR" },
|
|
@@ -4514,7 +4515,7 @@ const geo = {
|
|
|
4514
4515
|
"KRS": { "latitude": 58.14671, "longitude": 7.9956, "name": "Kristiansand", "city": "Kristiansand", "country": "NO" },
|
|
4515
4516
|
"KRT": { "latitude": 15.55177, "longitude": 32.53241, "name": "Khartoum", "city": "Khartoum", "country": "SD" },
|
|
4516
4517
|
"KRU": { "latitude": -8.25, "longitude": 147.06667, "name": "Kerau", "city": "Kerau", "country": "PG" },
|
|
4517
|
-
"KRV": { "latitude": 50.67334, "longitude": 156.12401, "name": "
|
|
4518
|
+
"KRV": { "latitude": 50.67334, "longitude": 156.12401, "name": "Kasivobara", "city": "Kasivobara", "country": "RU" },
|
|
4518
4519
|
"KRW": { "latitude": 40.02216, "longitude": 52.95517, "name": "Türkmenbaşy", "city": "Türkmenbaşy", "country": "TM" },
|
|
4519
4520
|
"KRX": { "latitude": -4.833, "longitude": 145.7, "name": "Kar Kar", "city": "Kar Kar", "country": "PG" },
|
|
4520
4521
|
"KRY": { "latitude": 45.62, "longitude": 84.88, "name": "Karamay", "city": "Karamay", "country": "CN" },
|
|
@@ -4845,6 +4846,7 @@ const geo = {
|
|
|
4845
4846
|
"LHG": { "latitude": -29.42743, "longitude": 147.97865, "name": "Lightning Ridge", "city": "Lightning Ridge", "country": "AU" },
|
|
4846
4847
|
"LHI": { "latitude": -3.13333, "longitude": 139.9, "name": "Lereh", "city": "Lereh", "country": "ID" },
|
|
4847
4848
|
"LHK": { "latitude": 32.38583, "longitude": 111.66778, "name": "Laohekou", "city": "Laohekou", "country": "CN" },
|
|
4849
|
+
"LHL": { "latitude": 39.89161, "longitude": 46.35146, "name": "Lachin International Airport", "city": "Lachin International Airport", "country": "AZ" },
|
|
4848
4850
|
"LHN": { "latitude": -19.39111, "longitude": -40.07222, "name": "Linhares", "city": "Linhares", "country": "BR" },
|
|
4849
4851
|
"LHP": { "latitude": -6.417, "longitude": 155.7, "name": "Lehu", "city": "Lehu", "country": "PG" },
|
|
4850
4852
|
"LHR": { "latitude": 51.4775, "longitude": -0.461389, "name": "London Heathrow Airport", "city": "London", "country": "GB" },
|
|
@@ -5057,6 +5059,7 @@ const geo = {
|
|
|
5057
5059
|
"LSD": { "latitude": 38.08341, "longitude": -84.31632, "name": "Creech Army Air Field Heliport", "city": "Lexington", "country": "US" },
|
|
5058
5060
|
"LSE": { "latitude": 43.80136, "longitude": -91.23958, "name": "La Crosse", "city": "La Crosse", "country": "US" },
|
|
5059
5061
|
"LSF": { "latitude": 32.33732, "longitude": -84.99128, "name": "Lawson Army Airfield", "city": "Columbus", "country": "US" },
|
|
5062
|
+
"LSG": { "latitude": 29.56227, "longitude": 103.76386, "name": "Leshan", "city": "Leshan", "country": "CN" },
|
|
5060
5063
|
"LSH": { "latitude": 22.9359, "longitude": 97.7498, "name": "Lashio", "city": "Lashio", "country": "MM" },
|
|
5061
5064
|
"LSI": { "latitude": 59.878889, "longitude": -1.295556, "name": "Sumburgh Airport", "city": "Shetland Islands", "country": "GB" },
|
|
5062
5065
|
"LSJ": { "latitude": -5.367, "longitude": 147, "name": "Long Island", "city": "Long Island", "country": "PG" },
|
|
@@ -5238,7 +5241,7 @@ const geo = {
|
|
|
5238
5241
|
"MBO": { "latitude": 13.2233, "longitude": 120.596, "name": "Mamburao", "city": "Mamburao", "country": "PH" },
|
|
5239
5242
|
"MBP": { "latitude": -6.03416, "longitude": -76.97168, "name": "Moyobamba", "city": "Moyobamba", "country": "PE" },
|
|
5240
5243
|
"MBQ": { "latitude": -0.60467, "longitude": 30.64851, "name": "Mbarara", "city": "Mbarara", "country": "UG" },
|
|
5241
|
-
"MBR": { "latitude": 16.02157, "longitude": -12.58379, "name": "
|
|
5244
|
+
"MBR": { "latitude": 16.02157, "longitude": -12.58379, "name": "Mboutt", "city": "Mboutt", "country": "MR" },
|
|
5242
5245
|
"MBS": { "latitude": 43.41947, "longitude": -83.95081, "name": "Saginaw", "city": "Saginaw", "country": "US" },
|
|
5243
5246
|
"MBT": { "latitude": 12.37169, "longitude": 123.62494, "name": "Masbate", "city": "Masbate", "country": "PH" },
|
|
5244
5247
|
"MBU": { "latitude": -9.75025, "longitude": 159.82957, "name": "Mbambanakira", "city": "Mbambanakira", "country": "SB" },
|
|
@@ -5835,7 +5838,7 @@ const geo = {
|
|
|
5835
5838
|
"MYN": { "latitude": 15.46253, "longitude": 45.32581, "name": "Ma'rib", "city": "Ma'rib", "country": "YE" },
|
|
5836
5839
|
"MYO": { "latitude": -18.2, "longitude": 124.2, "name": "Camballin Airport", "city": "Camballin Airport", "country": "AU" },
|
|
5837
5840
|
"MYP": { "latitude": 37.59378, "longitude": 61.83031, "name": "Mary", "city": "Mary", "country": "TM" },
|
|
5838
|
-
"MYQ": { "latitude": 12.29791, "longitude": 76.63925, "name": "
|
|
5841
|
+
"MYQ": { "latitude": 12.29791, "longitude": 76.63925, "name": "Mysuru", "city": "Mysuru", "country": "IN" },
|
|
5839
5842
|
"MYR": { "latitude": 33.67975, "longitude": -78.928333, "name": "Myrtle Beach", "city": "Myrtle Beach", "country": "US" },
|
|
5840
5843
|
"MYT": { "latitude": 25.38327, "longitude": 97.39637, "name": "Myitkyina", "city": "Myitkyina", "country": "MM" },
|
|
5841
5844
|
"MYU": { "latitude": 60.38806, "longitude": -166.185, "name": "Mekoryuk", "city": "Mekoryuk", "country": "US" },
|
|
@@ -6188,7 +6191,7 @@ const geo = {
|
|
|
6188
6191
|
"NUD": { "latitude": 12.7, "longitude": 28.42, "name": "En Nahud Airport", "city": "En Nahud Airport", "country": "SD" },
|
|
6189
6192
|
"NUE": { "latitude": 49.45421, "longitude": 11.07752, "name": "Nürnberg", "city": "Nürnberg", "country": "DE" },
|
|
6190
6193
|
"NUF": { "latitude": 6.876, "longitude": 80.58, "name": "Hatton", "city": "Hatton", "country": "LK" },
|
|
6191
|
-
"NUG": { "latitude": -3.333, "longitude": 154.8, "name": "Nuguria", "city": "Nuguria", "country": "PG" },
|
|
6194
|
+
"NUG": { "latitude": -3.333, "longitude": 154.8, "name": "Nuguria Airstriip", "city": "Nuguria Airstriip", "country": "PG" },
|
|
6192
6195
|
"NUH": { "latitude": 5.63589, "longitude": -72.19543, "name": "Nunchía", "city": "Nunchía", "country": "CO" },
|
|
6193
6196
|
"NUI": { "latitude": 70.2175, "longitude": -150.97639, "name": "Nuiqsut", "city": "Nuiqsut", "country": "US" },
|
|
6194
6197
|
"NUJ": { "latitude": 35.2, "longitude": 48.67, "name": "Nogeh IR", "city": "Nogeh IR", "country": "IR" },
|
|
@@ -6465,7 +6468,7 @@ const geo = {
|
|
|
6465
6468
|
"ORD": { "latitude": 41.978603, "longitude": -87.904842, "name": "Chicago O'Hare International Airport", "city": "Chicago", "country": "US" },
|
|
6466
6469
|
"ORE": { "latitude": 47.90289, "longitude": 1.90389, "name": "Orléans", "city": "Orléans", "country": "FR" },
|
|
6467
6470
|
"ORF": { "latitude": 36.894611, "longitude": -76.201222, "name": "Norfolk", "city": "Norfolk", "country": "US" },
|
|
6468
|
-
"ORG": { "latitude": 5.76946, "longitude": -55.22235, "name": "Zorg en Hoop Airport", "city": "
|
|
6471
|
+
"ORG": { "latitude": 5.76946, "longitude": -55.22235, "name": "Zorg en Hoop Airport", "city": "Paramaribo", "country": "SR" },
|
|
6469
6472
|
"ORH": { "latitude": 42.26259, "longitude": -71.80229, "name": "Worcester", "city": "Worcester", "country": "US" },
|
|
6470
6473
|
"ORI": { "latitude": 57.8675, "longitude": -152.88222, "name": "Port Lions", "city": "Port Lions", "country": "US" },
|
|
6471
6474
|
"ORJ": { "latitude": 4.7, "longitude": -60.01667, "name": "Orinduik", "city": "Orinduik", "country": "GY" },
|
|
@@ -6629,7 +6632,7 @@ const geo = {
|
|
|
6629
6632
|
"PBJ": { "latitude": -16.46012, "longitude": 168.23832, "name": "Paama Island", "city": "Paama Island", "country": "VU" },
|
|
6630
6633
|
"PBK": { "latitude": 57.4, "longitude": -134.3, "name": "Pack Creek", "city": "Pack Creek", "country": "US" },
|
|
6631
6634
|
"PBL": { "latitude": 10.47051, "longitude": -68.02958, "name": "Puerto Cabello", "city": "Puerto Cabello", "country": "VE" },
|
|
6632
|
-
"PBM": { "latitude": 5.86638, "longitude": -55.16682, "name": "Paramaribo", "city": "
|
|
6635
|
+
"PBM": { "latitude": 5.86638, "longitude": -55.16682, "name": "Paramaribo", "city": "Paramaribo", "country": "SR" },
|
|
6633
6636
|
"PBN": { "latitude": -10.73142, "longitude": 13.75985, "name": "Porto Amboim", "city": "Porto Amboim", "country": "AO" },
|
|
6634
6637
|
"PBO": { "latitude": -23.20417, "longitude": 117.66973, "name": "Paraburdoo", "city": "Paraburdoo", "country": "AU" },
|
|
6635
6638
|
"PBP": { "latitude": 9.85767, "longitude": -85.39939, "name": "Punta Islita", "city": "Punta Islita", "country": "CR" },
|
|
@@ -7098,6 +7101,7 @@ const geo = {
|
|
|
7098
7101
|
"PWQ": { "latitude": 52.27401, "longitude": 77.00438, "name": "Pavlodar", "city": "Pavlodar", "country": "KZ" },
|
|
7099
7102
|
"PWR": { "latitude": 56.38735, "longitude": -134.66477, "name": "Port Walter", "city": "Port Walter", "country": "US" },
|
|
7100
7103
|
"PWT": { "latitude": 47.56732, "longitude": -122.63264, "name": "Bremerton", "city": "Bremerton", "country": "US" },
|
|
7104
|
+
"PWX": { "latitude": 0.4659, "longitude": 122.0025, "name": "Pohuwato", "city": "Pohuwato", "country": "ID" },
|
|
7101
7105
|
"PWY": { "latitude": 42.86661, "longitude": -109.86099, "name": "Pinedale", "city": "Pinedale", "country": "US" },
|
|
7102
7106
|
"PXA": { "latitude": -3.78514, "longitude": 103.54279, "name": "Lahat", "city": "Pagar Alam=Lahat", "country": "ID" },
|
|
7103
7107
|
"PXB": { "latitude": 43.10482, "longitude": 12.37596, "name": "Perugia Bus Station", "city": "Perugia", "country": "IT" },
|
|
@@ -7563,7 +7567,7 @@ const geo = {
|
|
|
7563
7567
|
"QQW": { "latitude": 51.50257, "longitude": -0.11309, "name": "Waterloo Railway Station", "city": "London", "country": "GB" },
|
|
7564
7568
|
"QQX": { "latitude": 51.3751, "longitude": -2.36172, "name": "Bath", "city": "Bath", "country": "GB" },
|
|
7565
7569
|
"QQY": { "latitude": 53.97, "longitude": -1.083, "name": "York", "city": "York", "country": "GB" },
|
|
7566
|
-
"QRA": { "latitude": -26.242506, "longitude": 28.151169, "name": "Rand
|
|
7570
|
+
"QRA": { "latitude": -26.242506, "longitude": 28.151169, "name": "Rand", "city": "Johannesburg", "country": "ZA" },
|
|
7567
7571
|
"QRB": { "latitude": 47.78198, "longitude": 9.61062, "name": "Ravensburg", "city": "Ravensburg", "country": "DE" },
|
|
7568
7572
|
"QRC": { "latitude": -34.17083, "longitude": -70.74444, "name": "Rancagua", "city": "Rancagua", "country": "CL" },
|
|
7569
7573
|
"QRD": { "latitude": -22.0667, "longitude": 46.5667, "name": "Andradas MG BR Off", "city": "Andradas MG BR Off", "country": "BR" },
|
|
@@ -8062,7 +8066,7 @@ const geo = {
|
|
|
8062
8066
|
"RPZ": { "latitude": 52.40164, "longitude": 16.91162, "name": "Poznań Główny Railway Station", "city": "Poznań", "country": "PL" },
|
|
8063
8067
|
"RQA": { "latitude": 39.02003, "longitude": 88.16465, "name": "Ruoqiang", "city": "Ruoqiang", "country": "CN" },
|
|
8064
8068
|
"RQW": { "latitude": 35.7669, "longitude": 43.125, "name": "Qayyarah West", "city": "Qayyarah West", "country": "IQ" },
|
|
8065
|
-
"RQY": { "latitude": 13.93157, "longitude": 75.56791, "name": "
|
|
8069
|
+
"RQY": { "latitude": 13.93157, "longitude": 75.56791, "name": "Shivamogga", "city": "Shivamogga", "country": "IN" },
|
|
8066
8070
|
"RRA": { "latitude": 36.74231, "longitude": -5.16709, "name": "Ronda", "city": "Ronda", "country": "ES" },
|
|
8067
8071
|
"RRB": { "latitude": 34.01587, "longitude": -6.83601, "name": "Rabat Bus Station", "city": "Rabat", "country": "MA" },
|
|
8068
8072
|
"RRE": { "latitude": -29.65, "longitude": 138.06667, "name": "Marree", "city": "Marree", "country": "AU" },
|
|
@@ -8798,7 +8802,7 @@ const geo = {
|
|
|
8798
8802
|
"SXZ": { "latitude": 37.9293, "longitude": 41.94134, "name": "Siirt", "city": "Siirt", "country": "TR" },
|
|
8799
8803
|
"SYA": { "latitude": 52.72382, "longitude": 174.10935, "name": "Shemya Island", "city": "Shemya Island", "country": "US" },
|
|
8800
8804
|
"SYB": { "latitude": 58.37167, "longitude": -152.20167, "name": "Seal Bay", "city": "Seal Bay", "country": "US" },
|
|
8801
|
-
"SYC": { "latitude": -8.167, "longitude": -79.03, "name": "
|
|
8805
|
+
"SYC": { "latitude": -8.167, "longitude": -79.03, "name": "Shiringayo", "city": "Shiringayo", "country": "PE" },
|
|
8802
8806
|
"SYD": { "latitude": -33.86785, "longitude": 151.20732, "name": "Sydney", "city": "Sydney", "country": "AU" },
|
|
8803
8807
|
"SYE": { "latitude": 16.94021, "longitude": 43.76394, "name": "Sa'dah", "city": "Sa'dah", "country": "YE" },
|
|
8804
8808
|
"SYF": { "latitude": 49.1499, "longitude": -123.70211, "name": "Silva Bay", "city": "Gabriola Island=Silva Bay", "country": "CA" },
|
|
@@ -9757,7 +9761,7 @@ const geo = {
|
|
|
9757
9761
|
"VLL": { "latitude": 41.65518, "longitude": -4.72372, "name": "Valladolid", "city": "Valladolid", "country": "ES" },
|
|
9758
9762
|
"VLM": { "latitude": -21.25, "longitude": -63.5, "name": "Villamontes", "city": "Villamontes", "country": "BO" },
|
|
9759
9763
|
"VLN": { "latitude": 10.16202, "longitude": -68.00765, "name": "Valencia", "city": "Valencia", "country": "VE" },
|
|
9760
|
-
"VLO": { "latitude":
|
|
9764
|
+
"VLO": { "latitude": 40.4686, "longitude": 19.48318, "name": "Vlorë", "city": "Vlorë", "country": "AL" },
|
|
9761
9765
|
"VLP": { "latitude": -10.01167, "longitude": -51.11639, "name": "Vila Rica", "city": "Vila Rica", "country": "BR" },
|
|
9762
9766
|
"VLR": { "latitude": -28.57083, "longitude": -70.75806, "name": "Vallenar", "city": "Vallenar", "country": "CL" },
|
|
9763
9767
|
"VLS": { "latitude": -16.78333, "longitude": 168.16667, "name": "Valesdir", "city": "Valesdir", "country": "VU" },
|
|
@@ -10047,7 +10051,7 @@ const geo = {
|
|
|
10047
10051
|
"WRB": { "latitude": 32.61574, "longitude": -83.62664, "name": "Warner Robins", "city": "Warner Robins", "country": "US" },
|
|
10048
10052
|
"WRE": { "latitude": -35.73167, "longitude": 174.32391, "name": "Whangarei", "city": "Whangarei", "country": "NZ" },
|
|
10049
10053
|
"WRG": { "latitude": 56.47083, "longitude": -132.37667, "name": "Wrangell", "city": "Wrangell", "country": "US" },
|
|
10050
|
-
"WRH": { "latitude": 46.11651, "longitude": 85.67769, "name": "
|
|
10054
|
+
"WRH": { "latitude": 46.11651, "longitude": 85.67769, "name": "Liushujie", "city": "Liushujie", "country": "CN" },
|
|
10051
10055
|
"WRI": { "latitude": 40.02984, "longitude": -74.61849, "name": "Fort Dix", "city": "Fort Dix", "country": "US" },
|
|
10052
10056
|
"WRL": { "latitude": 44.0169, "longitude": -107.95537, "name": "Worland", "city": "Worland", "country": "US" },
|
|
10053
10057
|
"WRN": { "latitude": -30.01842, "longitude": 119.27685, "name": "Windarling Mine", "city": "Windarling Mine", "country": "AU" },
|
|
@@ -10155,7 +10159,7 @@ const geo = {
|
|
|
10155
10159
|
"XAV": { "latitude": 45.67452, "longitude": 6.39061, "name": "Albertville", "city": "Albertville=Albertville", "country": "FR" },
|
|
10156
10160
|
"XAW": { "latitude": 46.70626, "longitude": -80.92109, "name": "Capreol", "city": "Capreol", "country": "CA" },
|
|
10157
10161
|
"XAX": { "latitude": 45.44876, "longitude": -73.74134, "name": "Dorval Railway Station", "city": "Montréal", "country": "CA" },
|
|
10158
|
-
"XAY": { "latitude":
|
|
10162
|
+
"XAY": { "latitude": 35.84278, "longitude": 129.21167, "name": "Gyeongju", "city": "Gyeongju", "country": "KR" },
|
|
10159
10163
|
"XAZ": { "latitude": 46.12, "longitude": -64.68, "name": "Campbellton", "city": "Campbellton", "country": "CA" },
|
|
10160
10164
|
"XBA": { "latitude": 42.89676, "longitude": 0.06469, "name": "Barèges", "city": "Barèges", "country": "FR" },
|
|
10161
10165
|
"XBB": { "latitude": 49.79456, "longitude": -124.62253, "name": "Blubber Bay", "city": "Blubber Bay", "country": "CA" },
|
|
@@ -10200,7 +10204,7 @@ const geo = {
|
|
|
10200
10204
|
"XCO": { "latitude": -38.339, "longitude": 143.58488, "name": "Colac", "city": "Colac", "country": "AU" },
|
|
10201
10205
|
"XCP": { "latitude": 49.4167, "longitude": 2.83333, "name": "Compiegne FR Compiegne", "city": "Compiegne FR Compiegne", "country": "FR" },
|
|
10202
10206
|
"XCQ": { "latitude": 45.1333, "longitude": 5.9, "name": "Chamrousse", "city": "Chamrousse", "country": "FR" },
|
|
10203
|
-
"XCR": { "latitude": 48.
|
|
10207
|
+
"XCR": { "latitude": 48.95393, "longitude": 4.36724, "name": "Châlons-en-Champagne", "city": "Châlons-en-Champagne", "country": "FR" },
|
|
10204
10208
|
"XCS": { "latitude": 44.1667, "longitude": 1.53333, "name": "Caussade", "city": "Caussade", "country": "FR" },
|
|
10205
10209
|
"XCT": { "latitude": 43.206732, "longitude": 5.602008, "name": "La Ciotat", "city": "La Ciotat", "country": "FR" },
|
|
10206
10210
|
"XCU": { "latitude": 42.5167, "longitude": 3.08333, "name": "Collioure", "city": "Collioure", "country": "FR" },
|
|
@@ -10571,7 +10575,7 @@ const geo = {
|
|
|
10571
10575
|
"XRL": { "latitude": 44.72477, "longitude": 10.65294, "name": "Reggio Emilia AV Mediopadana Railway Station", "city": "Reggio nell'Emilia", "country": "IT" },
|
|
10572
10576
|
"XRM": { "latitude": 50.6833, "longitude": 2.88333, "name": "Armentieres FR Armentieres", "city": "Armentieres FR Armentieres", "country": "FR" },
|
|
10573
10577
|
"XRN": { "latitude": 47.65, "longitude": -2.08333, "name": "Redon", "city": "Redon", "country": "FR" },
|
|
10574
|
-
"XRP": { "latitude": 46.98, "longitude": -72.18, "name": "
|
|
10578
|
+
"XRP": { "latitude": 46.98, "longitude": -72.18, "name": "Rivière-à-Pierre", "city": "Rivière-à-Pierre", "country": "CA" },
|
|
10575
10579
|
"XRQ": { "latitude": 48.74369, "longitude": 116.84987, "name": "New Barag Right Banner", "city": "New Barag Right Banner", "country": "CN" },
|
|
10576
10580
|
"XRR": { "latitude": 61.97781, "longitude": -132.44928, "name": "Ross River", "city": "Ross River", "country": "CA" },
|
|
10577
10581
|
"XRS": { "latitude": 45.57, "longitude": 6.2, "name": "Les Arcs", "city": "Les Arcs", "country": "FR" },
|
|
@@ -11500,7 +11504,7 @@ const geo = {
|
|
|
11500
11504
|
"ZGS": { "latitude": 50.21843, "longitude": -60.66623, "name": "La Romaine", "city": "La Romaine", "country": "CA" },
|
|
11501
11505
|
"ZGU": { "latitude": -14.28333, "longitude": 167.5, "name": "Gaua Island", "city": "Gaua Island", "country": "VU" },
|
|
11502
11506
|
"ZGV": { "latitude": 50.71717, "longitude": 4.60138, "name": "Wavre", "city": "Wavre", "country": "BE" },
|
|
11503
|
-
"ZGW": { "latitude": 54.1, "longitude": 13.4, "name": "Greifswald", "city": "Greifswald", "country": "DE" },
|
|
11507
|
+
"ZGW": { "latitude": 54.1, "longitude": 13.4, "name": "Universitäts- und Hansestadt Greifswald", "city": "Universitäts- und Hansestadt Greifswald", "country": "DE" },
|
|
11504
11508
|
"ZGX": { "latitude": 55.62, "longitude": 12.65, "name": "Viborg", "city": "Viborg", "country": "DK" },
|
|
11505
11509
|
"ZGY": { "latitude": 1.55, "longitude": 110.3, "name": "Kuching MY Kuching Port", "city": "Kuching", "country": "MY" },
|
|
11506
11510
|
"ZGZ": { "latitude": 53.97312, "longitude": 13.03761, "name": "Generic Railway Station for Germany 3", "city": "Generic Railway Station for Germany 3", "country": "DE" },
|