widgeo 0.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.
- checksums.yaml +7 -0
- data/.gitignore +14 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +43 -0
- data/Rakefile +10 -0
- data/lib/data/continents.yml +21 -0
- data/lib/data/territories.yml +1017 -0
- data/lib/widgeo.rb +14 -0
- data/lib/widgeo/collection.rb +40 -0
- data/lib/widgeo/continent.rb +14 -0
- data/lib/widgeo/model.rb +21 -0
- data/lib/widgeo/territory.rb +21 -0
- data/lib/widgeo/version.rb +3 -0
- data/spec/spec_helper.rb +1 -0
- data/spec/widgeo/continent_spec.rb +42 -0
- data/spec/widgeo/territory_spec.rb +59 -0
- data/widgeo.gemspec +27 -0
- metadata +107 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: e2aa0a07dfb5675efc75c797d1e22e17a458af98
|
4
|
+
data.tar.gz: 61928468ade60db782e26dafc8a25166aabd27e2
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 91f8f6728d144742ae282532f2ea8388bc383b0f26f719e108494b5039aaa0150649e7f6e27ab27a66e8fec96dbd9f9542499d317899b508d2d00823d7f1f5b4
|
7
|
+
data.tar.gz: 6a4988c7d7b2d54e6768bbd1a2a613ef949a86e86b2d66d683ff07b276eb01280ba95238901ed8e911bb8052eacbe7afb47353c336e9437c9f9ef88ea45900f0
|
data/.gitignore
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2015 Chris G
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,43 @@
|
|
1
|
+
# Widgeo
|
2
|
+
|
3
|
+
Widgeo provides easy access to the worlds territories and their continents.
|
4
|
+
|
5
|
+
## Using Widgeo
|
6
|
+
|
7
|
+
Include Widgeo in your Gemfile, `gem "widgeo", require: true` and run `bundle install`.
|
8
|
+
|
9
|
+
#### #all
|
10
|
+
|
11
|
+
Provides a list of all items.
|
12
|
+
|
13
|
+
For a list of continents:
|
14
|
+
|
15
|
+
`continents = Widgeo::Continent.all`
|
16
|
+
|
17
|
+
and all territories:
|
18
|
+
|
19
|
+
`territories = Widgeo::Territory.all`
|
20
|
+
|
21
|
+
#### #find_by
|
22
|
+
|
23
|
+
Provides a single item matching a specified property and value.
|
24
|
+
|
25
|
+
To find a continent by code:
|
26
|
+
|
27
|
+
`continent = Continent.find_by :alpha_2, "EU"`
|
28
|
+
|
29
|
+
To find a territory by name:
|
30
|
+
|
31
|
+
`continent = Territory.find_by :name, "France"`
|
32
|
+
|
33
|
+
#### Accessing Properties
|
34
|
+
|
35
|
+
All properties of an item are accessible via a getter.
|
36
|
+
|
37
|
+
Continents respond to `#name` and `#alpha_2`.
|
38
|
+
|
39
|
+
Territories respond to `#name`, `#long_name`, `#alpha_2`, `#continent_alpha_2`, `#continent`. Continent provides an instance of the parent Continent.
|
40
|
+
|
41
|
+
#### Tests
|
42
|
+
|
43
|
+
The gem is tested with Rspec. You can run the tests with `bundle exec rake spec`.
|
data/Rakefile
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
---
|
2
|
+
- name: Africa
|
3
|
+
alpha_2: AF
|
4
|
+
|
5
|
+
- name: Antarctica
|
6
|
+
alpha_2: AN
|
7
|
+
|
8
|
+
- name: Asia
|
9
|
+
alpha_2: AS
|
10
|
+
|
11
|
+
- name: Europe
|
12
|
+
alpha_2: EU
|
13
|
+
|
14
|
+
- name: North America
|
15
|
+
alpha_2: NA
|
16
|
+
|
17
|
+
- name: Oceania
|
18
|
+
alpha_2: OC
|
19
|
+
|
20
|
+
- name: South America
|
21
|
+
alpha_2: SA
|
@@ -0,0 +1,1017 @@
|
|
1
|
+
---
|
2
|
+
- name: Algeria
|
3
|
+
long_name: People's Democratic Republic of Algeria
|
4
|
+
alpha_2: DZ
|
5
|
+
continent_alpha_2: AF
|
6
|
+
- name: Angola
|
7
|
+
long_name: Republic of Angola
|
8
|
+
alpha_2: AO
|
9
|
+
continent_alpha_2: AF
|
10
|
+
- name: Benin
|
11
|
+
long_name: Republic of Benin
|
12
|
+
alpha_2: BJ
|
13
|
+
continent_alpha_2: AF
|
14
|
+
- name: Botswana
|
15
|
+
long_name: Republic of Botswana
|
16
|
+
alpha_2: BW
|
17
|
+
continent_alpha_2: AF
|
18
|
+
- name: Burkina Faso
|
19
|
+
long_name: Burkina Faso
|
20
|
+
alpha_2: BF
|
21
|
+
continent_alpha_2: AF
|
22
|
+
- name: Burundi
|
23
|
+
long_name: Republic of Burundi
|
24
|
+
alpha_2: BI
|
25
|
+
continent_alpha_2: AF
|
26
|
+
- name: Cameroon
|
27
|
+
long_name: Republic of Cameroon
|
28
|
+
alpha_2: CM
|
29
|
+
continent_alpha_2: AF
|
30
|
+
- name: Cape Verde
|
31
|
+
long_name: Republic of Cape Verde
|
32
|
+
alpha_2: CV
|
33
|
+
continent_alpha_2: AF
|
34
|
+
- name: Central African Republic
|
35
|
+
long_name: Central African Republic
|
36
|
+
alpha_2: CF
|
37
|
+
continent_alpha_2: AF
|
38
|
+
- name: Chad
|
39
|
+
long_name: Republic of Chad
|
40
|
+
alpha_2: TD
|
41
|
+
continent_alpha_2: AF
|
42
|
+
- name: Comoros
|
43
|
+
long_name: Union of the Comoros
|
44
|
+
alpha_2: KM
|
45
|
+
continent_alpha_2: AF
|
46
|
+
- name: Congo
|
47
|
+
long_name: Democratic Republic of the Congo
|
48
|
+
alpha_2: CD
|
49
|
+
continent_alpha_2: AF
|
50
|
+
- name: Congo
|
51
|
+
long_name: Republic of the Congo
|
52
|
+
alpha_2: CG
|
53
|
+
continent_alpha_2: AF
|
54
|
+
- name: Cote d'Ivoire
|
55
|
+
long_name: Republic of Cote d'Ivoire
|
56
|
+
alpha_2: CI
|
57
|
+
continent_alpha_2: AF
|
58
|
+
- name: Djibouti
|
59
|
+
long_name: Republic of Djibouti
|
60
|
+
alpha_2: DJ
|
61
|
+
continent_alpha_2: AF
|
62
|
+
- name: Egypt
|
63
|
+
long_name: Arab Republic of Egypt
|
64
|
+
alpha_2: EG
|
65
|
+
continent_alpha_2: AF
|
66
|
+
- name: Equatorial Guinea
|
67
|
+
long_name: Republic of Equatorial Guinea
|
68
|
+
alpha_2: GQ
|
69
|
+
continent_alpha_2: AF
|
70
|
+
- name: Eritrea
|
71
|
+
long_name: State of Eritrea
|
72
|
+
alpha_2: ER
|
73
|
+
continent_alpha_2: AF
|
74
|
+
- name: Ethiopia
|
75
|
+
long_name: Federal Democratic Republic of Ethiopia
|
76
|
+
alpha_2: ET
|
77
|
+
continent_alpha_2: AF
|
78
|
+
- name: Gabon
|
79
|
+
long_name: Gabonese Republic Gabon
|
80
|
+
alpha_2: GA
|
81
|
+
continent_alpha_2: AF
|
82
|
+
- name: Gambia
|
83
|
+
long_name: Republic of the Gambia
|
84
|
+
alpha_2: GM
|
85
|
+
continent_alpha_2: AF
|
86
|
+
- name: Ghana
|
87
|
+
long_name: Republic of Ghana
|
88
|
+
alpha_2: GH
|
89
|
+
continent_alpha_2: AF
|
90
|
+
- name: Guinea
|
91
|
+
long_name: Republic of Guinea
|
92
|
+
alpha_2: GN
|
93
|
+
continent_alpha_2: AF
|
94
|
+
- name: Guinea-Bissau
|
95
|
+
long_name: Republic of Guinea-Bissau
|
96
|
+
alpha_2: GW
|
97
|
+
continent_alpha_2: AF
|
98
|
+
- name: Kenya
|
99
|
+
long_name: Republic of Kenya
|
100
|
+
alpha_2: KE
|
101
|
+
continent_alpha_2: AF
|
102
|
+
- name: Lesotho
|
103
|
+
long_name: Kingdom of Lesotho
|
104
|
+
alpha_2: LS
|
105
|
+
continent_alpha_2: AF
|
106
|
+
- name: Liberia
|
107
|
+
long_name: Republic of Liberia
|
108
|
+
alpha_2: LR
|
109
|
+
continent_alpha_2: AF
|
110
|
+
- name: Libyan Arab Jamahiriya
|
111
|
+
long_name: Libyan Arab Jamahiriya
|
112
|
+
alpha_2: LY
|
113
|
+
continent_alpha_2: AF
|
114
|
+
- name: Madagascar
|
115
|
+
long_name: Republic of Madagascar
|
116
|
+
alpha_2: MG
|
117
|
+
continent_alpha_2: AF
|
118
|
+
- name: Malawi
|
119
|
+
long_name: Republic of Malawi
|
120
|
+
alpha_2: MW
|
121
|
+
continent_alpha_2: AF
|
122
|
+
- name: Mali
|
123
|
+
long_name: Republic of Mali
|
124
|
+
alpha_2: ML
|
125
|
+
continent_alpha_2: AF
|
126
|
+
- name: Mauritania
|
127
|
+
long_name: Islamic Republic of Mauritania
|
128
|
+
alpha_2: MR
|
129
|
+
continent_alpha_2: AF
|
130
|
+
- name: Mauritius
|
131
|
+
long_name: Republic of Mauritius
|
132
|
+
alpha_2: MU
|
133
|
+
continent_alpha_2: AF
|
134
|
+
- name: Mayotte
|
135
|
+
long_name: Mayotte
|
136
|
+
alpha_2: YT
|
137
|
+
continent_alpha_2: AF
|
138
|
+
- name: Morocco
|
139
|
+
long_name: Kingdom of Morocco
|
140
|
+
alpha_2: MA
|
141
|
+
continent_alpha_2: AF
|
142
|
+
- name: Mozambique
|
143
|
+
long_name: Republic of Mozambique
|
144
|
+
alpha_2: MZ
|
145
|
+
continent_alpha_2: AF
|
146
|
+
- name: Namibia
|
147
|
+
long_name: Republic of Namibia
|
148
|
+
alpha_2: NA
|
149
|
+
continent_alpha_2: AF
|
150
|
+
- name: Niger
|
151
|
+
long_name: Republic of Niger
|
152
|
+
alpha_2: NE
|
153
|
+
continent_alpha_2: AF
|
154
|
+
- name: Nigeria
|
155
|
+
long_name: Federal Republic of Nigeria
|
156
|
+
alpha_2: NG
|
157
|
+
continent_alpha_2: AF
|
158
|
+
- name: Reunion
|
159
|
+
long_name: Reunion
|
160
|
+
alpha_2: RE
|
161
|
+
continent_alpha_2: AF
|
162
|
+
- name: Rwanda
|
163
|
+
long_name: Republic of Rwanda
|
164
|
+
alpha_2: RW
|
165
|
+
continent_alpha_2: AF
|
166
|
+
- name: Saint Helena
|
167
|
+
long_name: Saint Helena
|
168
|
+
alpha_2: SH
|
169
|
+
continent_alpha_2: AF
|
170
|
+
- name: Sao Tome and Principe
|
171
|
+
long_name: Democratic Republic of Sao Tome and Principe
|
172
|
+
alpha_2: ST
|
173
|
+
continent_alpha_2: AF
|
174
|
+
- name: Senegal
|
175
|
+
long_name: Republic of Senegal
|
176
|
+
alpha_2: SN
|
177
|
+
continent_alpha_2: AF
|
178
|
+
- name: Seychelles
|
179
|
+
long_name: Republic of Seychelles
|
180
|
+
alpha_2: SC
|
181
|
+
continent_alpha_2: AF
|
182
|
+
- name: Sierra Leone
|
183
|
+
long_name: Republic of Sierra Leone
|
184
|
+
alpha_2: SL
|
185
|
+
continent_alpha_2: AF
|
186
|
+
- name: Somalia
|
187
|
+
long_name: Somali Republic Somalia
|
188
|
+
alpha_2: SO
|
189
|
+
continent_alpha_2: AF
|
190
|
+
- name: South Africa
|
191
|
+
long_name: Republic of South Africa
|
192
|
+
alpha_2: ZA
|
193
|
+
continent_alpha_2: AF
|
194
|
+
- name: South Sudan
|
195
|
+
long_name: South Sudan
|
196
|
+
alpha_2: SS
|
197
|
+
continent_alpha_2: AF
|
198
|
+
- name: Sudan
|
199
|
+
long_name: Republic of Sudan
|
200
|
+
alpha_2: SD
|
201
|
+
continent_alpha_2: AF
|
202
|
+
- name: Swaziland
|
203
|
+
long_name: Kingdom of Swaziland
|
204
|
+
alpha_2: SZ
|
205
|
+
continent_alpha_2: AF
|
206
|
+
- name: Tanzania
|
207
|
+
long_name: United Republic of Tanzania
|
208
|
+
alpha_2: TZ
|
209
|
+
continent_alpha_2: AF
|
210
|
+
- name: Togo
|
211
|
+
long_name: Togolese Republic Togo
|
212
|
+
alpha_2: TG
|
213
|
+
continent_alpha_2: AF
|
214
|
+
- name: Tunisia
|
215
|
+
long_name: Tunisian Republic Tunisia
|
216
|
+
alpha_2: TN
|
217
|
+
continent_alpha_2: AF
|
218
|
+
- name: Uganda
|
219
|
+
long_name: Republic of Uganda
|
220
|
+
alpha_2: UG
|
221
|
+
continent_alpha_2: AF
|
222
|
+
- name: Western Sahara
|
223
|
+
long_name: Western Sahara
|
224
|
+
alpha_2: EH
|
225
|
+
continent_alpha_2: AF
|
226
|
+
- name: Zambia
|
227
|
+
long_name: Republic of Zambia
|
228
|
+
alpha_2: ZM
|
229
|
+
continent_alpha_2: AF
|
230
|
+
- name: Zimbabwe
|
231
|
+
long_name: Republic of Zimbabwe
|
232
|
+
alpha_2: ZW
|
233
|
+
continent_alpha_2: AF
|
234
|
+
- name: Antarctica (the territory South of 60 deg S)
|
235
|
+
long_name: Antarctica (the territory South of 60 deg S)
|
236
|
+
alpha_2: AQ
|
237
|
+
continent_alpha_2: AN
|
238
|
+
- name: Bouvet Island (Bouvetoya)
|
239
|
+
long_name: Bouvet Island (Bouvetoya)
|
240
|
+
alpha_2: BV
|
241
|
+
continent_alpha_2: AN
|
242
|
+
- name: French Southern Territories
|
243
|
+
long_name: French Southern Territories
|
244
|
+
alpha_2: TF
|
245
|
+
continent_alpha_2: AN
|
246
|
+
- name: Heard Island and McDonald Islands
|
247
|
+
long_name: Heard Island and McDonald Islands
|
248
|
+
alpha_2: HM
|
249
|
+
continent_alpha_2: AN
|
250
|
+
- name: South Georgia and the South Sandwich Islands
|
251
|
+
long_name: South Georgia and the South Sandwich Islands
|
252
|
+
alpha_2: GS
|
253
|
+
continent_alpha_2: AN
|
254
|
+
- name: Afghanistan
|
255
|
+
long_name: Islamic Republic of Afghanistan
|
256
|
+
alpha_2: AF
|
257
|
+
continent_alpha_2: AS
|
258
|
+
- name: Armenia
|
259
|
+
long_name: Republic of Armenia
|
260
|
+
alpha_2: AM
|
261
|
+
continent_alpha_2: AS
|
262
|
+
- name: Azerbaijan
|
263
|
+
long_name: Republic of Azerbaijan
|
264
|
+
alpha_2: AZ
|
265
|
+
continent_alpha_2: AS
|
266
|
+
- name: Bahrain
|
267
|
+
long_name: Kingdom of Bahrain
|
268
|
+
alpha_2: BH
|
269
|
+
continent_alpha_2: AS
|
270
|
+
- name: Bangladesh
|
271
|
+
long_name: People's Republic of Bangladesh
|
272
|
+
alpha_2: BD
|
273
|
+
continent_alpha_2: AS
|
274
|
+
- name: Bhutan
|
275
|
+
long_name: Kingdom of Bhutan
|
276
|
+
alpha_2: BT
|
277
|
+
continent_alpha_2: AS
|
278
|
+
- name: British Indian Ocean Territory (Chagos Archipelago)
|
279
|
+
long_name: British Indian Ocean Territory (Chagos Archipelago)
|
280
|
+
alpha_2: IO
|
281
|
+
continent_alpha_2: AS
|
282
|
+
- name: Brunei Darussalam
|
283
|
+
long_name: Brunei Darussalam
|
284
|
+
alpha_2: BN
|
285
|
+
continent_alpha_2: AS
|
286
|
+
- name: Cambodia
|
287
|
+
long_name: Kingdom of Cambodia
|
288
|
+
alpha_2: KH
|
289
|
+
continent_alpha_2: AS
|
290
|
+
- name: China
|
291
|
+
long_name: People's Republic of China
|
292
|
+
alpha_2: CN
|
293
|
+
continent_alpha_2: AS
|
294
|
+
- name: Christmas Island
|
295
|
+
long_name: Christmas Island
|
296
|
+
alpha_2: CX
|
297
|
+
continent_alpha_2: AS
|
298
|
+
- name: Cocos (Keeling) Islands
|
299
|
+
long_name: Cocos (Keeling) Islands
|
300
|
+
alpha_2: CC
|
301
|
+
continent_alpha_2: AS
|
302
|
+
- name: Cyprus
|
303
|
+
long_name: Republic of Cyprus
|
304
|
+
alpha_2: CY
|
305
|
+
continent_alpha_2: AS
|
306
|
+
- name: Georgia
|
307
|
+
long_name: Georgia
|
308
|
+
alpha_2: GE
|
309
|
+
continent_alpha_2: AS
|
310
|
+
- name: Hong Kong
|
311
|
+
long_name: Special Administrative Region of China Hong Kong
|
312
|
+
alpha_2: HK
|
313
|
+
continent_alpha_2: AS
|
314
|
+
- name: India
|
315
|
+
long_name: Republic of India
|
316
|
+
alpha_2: IN
|
317
|
+
continent_alpha_2: AS
|
318
|
+
- name: Indonesia
|
319
|
+
long_name: Republic of Indonesia
|
320
|
+
alpha_2: ID
|
321
|
+
continent_alpha_2: AS
|
322
|
+
- name: Iran
|
323
|
+
long_name: Islamic Republic of Iran
|
324
|
+
alpha_2: IR
|
325
|
+
continent_alpha_2: AS
|
326
|
+
- name: Iraq
|
327
|
+
long_name: Republic of Iraq
|
328
|
+
alpha_2: IQ
|
329
|
+
continent_alpha_2: AS
|
330
|
+
- name: Iraq-Saudi Arabia Neutral Zone
|
331
|
+
long_name: Iraq-Saudi Arabia Neutral Zone
|
332
|
+
alpha_2: XE
|
333
|
+
continent_alpha_2: AS
|
334
|
+
- name: Israel
|
335
|
+
long_name: State of Israel
|
336
|
+
alpha_2: IL
|
337
|
+
continent_alpha_2: AS
|
338
|
+
- name: Japan
|
339
|
+
long_name: Japan
|
340
|
+
alpha_2: JP
|
341
|
+
continent_alpha_2: AS
|
342
|
+
- name: Jordan
|
343
|
+
long_name: Hashemite Kingdom of Jordan
|
344
|
+
alpha_2: JO
|
345
|
+
continent_alpha_2: AS
|
346
|
+
- name: Kazakhstan
|
347
|
+
long_name: Republic of Kazakhstan
|
348
|
+
alpha_2: KZ
|
349
|
+
continent_alpha_2: AS
|
350
|
+
- name: Korea
|
351
|
+
long_name: Democratic People's Republic of Korea
|
352
|
+
alpha_2: KP
|
353
|
+
continent_alpha_2: AS
|
354
|
+
- name: Korea
|
355
|
+
long_name: Republic of Korea
|
356
|
+
alpha_2: KR
|
357
|
+
continent_alpha_2: AS
|
358
|
+
- name: Kuwait
|
359
|
+
long_name: State of Kuwait
|
360
|
+
alpha_2: KW
|
361
|
+
continent_alpha_2: AS
|
362
|
+
- name: Kyrgyz Republic
|
363
|
+
long_name: Kyrgyz Republic
|
364
|
+
alpha_2: KG
|
365
|
+
continent_alpha_2: AS
|
366
|
+
- name: Lao People's Democratic Republic
|
367
|
+
long_name: Lao People's Democratic Republic
|
368
|
+
alpha_2: LA
|
369
|
+
continent_alpha_2: AS
|
370
|
+
- name: Lebanon
|
371
|
+
long_name: Lebanese Republic Lebanon
|
372
|
+
alpha_2: LB
|
373
|
+
continent_alpha_2: AS
|
374
|
+
- name: Macao
|
375
|
+
long_name: Special Administrative Region of China Macao
|
376
|
+
alpha_2: MO
|
377
|
+
continent_alpha_2: AS
|
378
|
+
- name: Malaysia
|
379
|
+
long_name: Malaysia
|
380
|
+
alpha_2: MY
|
381
|
+
continent_alpha_2: AS
|
382
|
+
- name: Maldives
|
383
|
+
long_name: Republic of Maldives
|
384
|
+
alpha_2: MV
|
385
|
+
continent_alpha_2: AS
|
386
|
+
- name: Mongolia
|
387
|
+
long_name: Mongolia
|
388
|
+
alpha_2: MN
|
389
|
+
continent_alpha_2: AS
|
390
|
+
- name: Myanmar
|
391
|
+
long_name: Union of Myanmar
|
392
|
+
alpha_2: MM
|
393
|
+
continent_alpha_2: AS
|
394
|
+
- name: Nepal
|
395
|
+
long_name: State of Nepal
|
396
|
+
alpha_2: NP
|
397
|
+
continent_alpha_2: AS
|
398
|
+
- name: Oman
|
399
|
+
long_name: Sultanate of Oman
|
400
|
+
alpha_2: OM
|
401
|
+
continent_alpha_2: AS
|
402
|
+
- name: Pakistan
|
403
|
+
long_name: Islamic Republic of Pakistan
|
404
|
+
alpha_2: PK
|
405
|
+
continent_alpha_2: AS
|
406
|
+
- name: Palestinian Territory
|
407
|
+
long_name: Occupied Palestinian Territory
|
408
|
+
alpha_2: PS
|
409
|
+
continent_alpha_2: AS
|
410
|
+
- name: Philippines
|
411
|
+
long_name: Republic of the Philippines
|
412
|
+
alpha_2: PH
|
413
|
+
continent_alpha_2: AS
|
414
|
+
- name: Qatar
|
415
|
+
long_name: State of Qatar
|
416
|
+
alpha_2: QA
|
417
|
+
continent_alpha_2: AS
|
418
|
+
- name: Russian Federation
|
419
|
+
long_name: Russian Federation
|
420
|
+
alpha_2: RU
|
421
|
+
continent_alpha_2: AS
|
422
|
+
- name: Saudi Arabia
|
423
|
+
long_name: Kingdom of Saudi Arabia
|
424
|
+
alpha_2: SA
|
425
|
+
continent_alpha_2: AS
|
426
|
+
- name: Singapore
|
427
|
+
long_name: Republic of Singapore
|
428
|
+
alpha_2: SG
|
429
|
+
continent_alpha_2: AS
|
430
|
+
- name: Spratly Islands
|
431
|
+
long_name: Spratly Islands
|
432
|
+
alpha_2: XS
|
433
|
+
continent_alpha_2: AS
|
434
|
+
- name: Sri Lanka
|
435
|
+
long_name: Democratic Socialist Republic of Sri Lanka
|
436
|
+
alpha_2: LK
|
437
|
+
continent_alpha_2: AS
|
438
|
+
- name: Syrian Arab Republic
|
439
|
+
long_name: Syrian Arab Republic
|
440
|
+
alpha_2: SY
|
441
|
+
continent_alpha_2: AS
|
442
|
+
- name: Taiwan
|
443
|
+
long_name: Taiwan
|
444
|
+
alpha_2: TW
|
445
|
+
continent_alpha_2: AS
|
446
|
+
- name: Tajikistan
|
447
|
+
long_name: Republic of Tajikistan
|
448
|
+
alpha_2: TJ
|
449
|
+
continent_alpha_2: AS
|
450
|
+
- name: Thailand
|
451
|
+
long_name: Kingdom of Thailand
|
452
|
+
alpha_2: TH
|
453
|
+
continent_alpha_2: AS
|
454
|
+
- name: Timor-Leste
|
455
|
+
long_name: Democratic Republic of Timor-Leste
|
456
|
+
alpha_2: TL
|
457
|
+
continent_alpha_2: AS
|
458
|
+
- name: Turkey
|
459
|
+
long_name: Republic of Turkey
|
460
|
+
alpha_2: TR
|
461
|
+
continent_alpha_2: AS
|
462
|
+
- name: Turkmenistan
|
463
|
+
long_name: Turkmenistan
|
464
|
+
alpha_2: TM
|
465
|
+
continent_alpha_2: AS
|
466
|
+
- name: United Arab Emirates
|
467
|
+
long_name: United Arab Emirates
|
468
|
+
alpha_2: AE
|
469
|
+
continent_alpha_2: AS
|
470
|
+
- name: United Nations Neutral Zone
|
471
|
+
long_name: United Nations Neutral Zone
|
472
|
+
alpha_2: XD
|
473
|
+
continent_alpha_2: AS
|
474
|
+
- name: Uzbekistan
|
475
|
+
long_name: Republic of Uzbekistan
|
476
|
+
alpha_2: UZ
|
477
|
+
continent_alpha_2: AS
|
478
|
+
- name: Vietnam
|
479
|
+
long_name: Socialist Republic of Vietnam
|
480
|
+
alpha_2: VN
|
481
|
+
continent_alpha_2: AS
|
482
|
+
- name: Yemen
|
483
|
+
long_name: Yemen
|
484
|
+
alpha_2: YE
|
485
|
+
continent_alpha_2: AS
|
486
|
+
- name: Albania
|
487
|
+
long_name: Republic of Albania
|
488
|
+
alpha_2: AL
|
489
|
+
continent_alpha_2: EU
|
490
|
+
- name: Andorra
|
491
|
+
long_name: Principality of Andorra
|
492
|
+
alpha_2: AD
|
493
|
+
continent_alpha_2: EU
|
494
|
+
- name: Austria
|
495
|
+
long_name: Republic of Austria
|
496
|
+
alpha_2: AT
|
497
|
+
continent_alpha_2: EU
|
498
|
+
- name: Belarus
|
499
|
+
long_name: Republic of Belarus
|
500
|
+
alpha_2: BY
|
501
|
+
continent_alpha_2: EU
|
502
|
+
- name: Belgium
|
503
|
+
long_name: Kingdom of Belgium
|
504
|
+
alpha_2: BE
|
505
|
+
continent_alpha_2: EU
|
506
|
+
- name: Bosnia and Herzegovina
|
507
|
+
long_name: Bosnia and Herzegovina
|
508
|
+
alpha_2: BA
|
509
|
+
continent_alpha_2: EU
|
510
|
+
- name: Bulgaria
|
511
|
+
long_name: Republic of Bulgaria
|
512
|
+
alpha_2: BG
|
513
|
+
continent_alpha_2: EU
|
514
|
+
- name: Croatia
|
515
|
+
long_name: Republic of Croatia
|
516
|
+
alpha_2: HR
|
517
|
+
continent_alpha_2: EU
|
518
|
+
- name: Czech Republic
|
519
|
+
long_name: Czech Republic
|
520
|
+
alpha_2: CZ
|
521
|
+
continent_alpha_2: EU
|
522
|
+
- name: Denmark
|
523
|
+
long_name: Kingdom of Denmark
|
524
|
+
alpha_2: DK
|
525
|
+
continent_alpha_2: EU
|
526
|
+
- name: Estonia
|
527
|
+
long_name: Republic of Estonia
|
528
|
+
alpha_2: EE
|
529
|
+
continent_alpha_2: EU
|
530
|
+
- name: Faroe Islands
|
531
|
+
long_name: Faroe Islands
|
532
|
+
alpha_2: FO
|
533
|
+
continent_alpha_2: EU
|
534
|
+
- name: Finland
|
535
|
+
long_name: Republic of Finland
|
536
|
+
alpha_2: FI
|
537
|
+
continent_alpha_2: EU
|
538
|
+
- name: France
|
539
|
+
long_name: French Republic France
|
540
|
+
alpha_2: FR
|
541
|
+
continent_alpha_2: EU
|
542
|
+
- name: Germany
|
543
|
+
long_name: Federal Republic of Germany
|
544
|
+
alpha_2: DE
|
545
|
+
continent_alpha_2: EU
|
546
|
+
- name: Gibraltar
|
547
|
+
long_name: Gibraltar
|
548
|
+
alpha_2: GI
|
549
|
+
continent_alpha_2: EU
|
550
|
+
- name: Greece
|
551
|
+
long_name: Hellenic Republic Greece
|
552
|
+
alpha_2: GR
|
553
|
+
continent_alpha_2: EU
|
554
|
+
- name: Guernsey
|
555
|
+
long_name: Bailiwick of Guernsey
|
556
|
+
alpha_2: GG
|
557
|
+
continent_alpha_2: EU
|
558
|
+
- name: Holy See (Vatican City State)
|
559
|
+
long_name: Holy See (Vatican City State)
|
560
|
+
alpha_2: VA
|
561
|
+
continent_alpha_2: EU
|
562
|
+
- name: Hungary
|
563
|
+
long_name: Republic of Hungary
|
564
|
+
alpha_2: HU
|
565
|
+
continent_alpha_2: EU
|
566
|
+
- name: Iceland
|
567
|
+
long_name: Republic of Iceland
|
568
|
+
alpha_2: IS
|
569
|
+
continent_alpha_2: EU
|
570
|
+
- name: Ireland
|
571
|
+
long_name: Ireland
|
572
|
+
alpha_2: IE
|
573
|
+
continent_alpha_2: EU
|
574
|
+
- name: Isle of Man
|
575
|
+
long_name: Isle of Man
|
576
|
+
alpha_2: IM
|
577
|
+
continent_alpha_2: EU
|
578
|
+
- name: Italy
|
579
|
+
long_name: Italian Republic Italy
|
580
|
+
alpha_2: IT
|
581
|
+
continent_alpha_2: EU
|
582
|
+
- name: Jersey
|
583
|
+
long_name: Bailiwick of Jersey
|
584
|
+
alpha_2: JE
|
585
|
+
continent_alpha_2: EU
|
586
|
+
- name: Latvia
|
587
|
+
long_name: Republic of Latvia
|
588
|
+
alpha_2: LV
|
589
|
+
continent_alpha_2: EU
|
590
|
+
- name: Liechtenstein
|
591
|
+
long_name: Principality of Liechtenstein
|
592
|
+
alpha_2: LI
|
593
|
+
continent_alpha_2: EU
|
594
|
+
- name: Lithuania
|
595
|
+
long_name: Republic of Lithuania
|
596
|
+
alpha_2: LT
|
597
|
+
continent_alpha_2: EU
|
598
|
+
- name: Luxembourg
|
599
|
+
long_name: Grand Duchy of Luxembourg
|
600
|
+
alpha_2: LU
|
601
|
+
continent_alpha_2: EU
|
602
|
+
- name: Macedonia
|
603
|
+
long_name: The Former Yugoslav Republic of Macedonia
|
604
|
+
alpha_2: MK
|
605
|
+
continent_alpha_2: EU
|
606
|
+
- name: Malta
|
607
|
+
long_name: Republic of Malta
|
608
|
+
alpha_2: MT
|
609
|
+
continent_alpha_2: EU
|
610
|
+
- name: Moldova
|
611
|
+
long_name: Republic of Moldova
|
612
|
+
alpha_2: MD
|
613
|
+
continent_alpha_2: EU
|
614
|
+
- name: Monaco
|
615
|
+
long_name: Principality of Monaco
|
616
|
+
alpha_2: MC
|
617
|
+
continent_alpha_2: EU
|
618
|
+
- name: Montenegro
|
619
|
+
long_name: Republic of Montenegro
|
620
|
+
alpha_2: ME
|
621
|
+
continent_alpha_2: EU
|
622
|
+
- name: Netherlands
|
623
|
+
long_name: Kingdom of the Netherlands
|
624
|
+
alpha_2: NL
|
625
|
+
continent_alpha_2: EU
|
626
|
+
- name: Norway
|
627
|
+
long_name: Kingdom of Norway
|
628
|
+
alpha_2: 'NO'
|
629
|
+
continent_alpha_2: EU
|
630
|
+
- name: Poland
|
631
|
+
long_name: Republic of Poland
|
632
|
+
alpha_2: PL
|
633
|
+
continent_alpha_2: EU
|
634
|
+
- name: Portugal
|
635
|
+
long_name: Portuguese Republic Portugal
|
636
|
+
alpha_2: PT
|
637
|
+
continent_alpha_2: EU
|
638
|
+
- name: Romania
|
639
|
+
long_name: Romania
|
640
|
+
alpha_2: RO
|
641
|
+
continent_alpha_2: EU
|
642
|
+
- name: San Marino
|
643
|
+
long_name: Republic of San Marino
|
644
|
+
alpha_2: SM
|
645
|
+
continent_alpha_2: EU
|
646
|
+
- name: Serbia
|
647
|
+
long_name: Republic of Serbia
|
648
|
+
alpha_2: RS
|
649
|
+
continent_alpha_2: EU
|
650
|
+
- name: Slovakia (Slovak Republic)
|
651
|
+
long_name: Slovakia (Slovak Republic)
|
652
|
+
alpha_2: SK
|
653
|
+
continent_alpha_2: EU
|
654
|
+
- name: Slovenia
|
655
|
+
long_name: Republic of Slovenia
|
656
|
+
alpha_2: SI
|
657
|
+
continent_alpha_2: EU
|
658
|
+
- name: Spain
|
659
|
+
long_name: Kingdom of Spain
|
660
|
+
alpha_2: ES
|
661
|
+
continent_alpha_2: EU
|
662
|
+
- name: Svalbard & Jan Mayen Islands
|
663
|
+
long_name: Svalbard & Jan Mayen Islands
|
664
|
+
alpha_2: SJ
|
665
|
+
continent_alpha_2: EU
|
666
|
+
- name: Sweden
|
667
|
+
long_name: Kingdom of Sweden
|
668
|
+
alpha_2: SE
|
669
|
+
continent_alpha_2: EU
|
670
|
+
- name: Switzerland
|
671
|
+
long_name: Swiss Confederation Switzerland
|
672
|
+
alpha_2: CH
|
673
|
+
continent_alpha_2: EU
|
674
|
+
- name: Ukraine
|
675
|
+
long_name: Ukraine
|
676
|
+
alpha_2: UA
|
677
|
+
continent_alpha_2: EU
|
678
|
+
- name: United Kingdom of Great Britain & Northern Ireland
|
679
|
+
long_name: United Kingdom of Great Britain & Northern Ireland
|
680
|
+
alpha_2: GB
|
681
|
+
continent_alpha_2: EU
|
682
|
+
- name: "Åland Islands"
|
683
|
+
long_name: "Åland Islands"
|
684
|
+
alpha_2: AX
|
685
|
+
continent_alpha_2: EU
|
686
|
+
- name: Anguilla
|
687
|
+
long_name: Anguilla
|
688
|
+
alpha_2: AI
|
689
|
+
continent_alpha_2: NA
|
690
|
+
- name: Antigua and Barbuda
|
691
|
+
long_name: Antigua and Barbuda
|
692
|
+
alpha_2: AG
|
693
|
+
continent_alpha_2: NA
|
694
|
+
- name: Aruba
|
695
|
+
long_name: Aruba
|
696
|
+
alpha_2: AW
|
697
|
+
continent_alpha_2: NA
|
698
|
+
- name: Bahamas
|
699
|
+
long_name: Commonwealth of the Bahamas
|
700
|
+
alpha_2: BS
|
701
|
+
continent_alpha_2: NA
|
702
|
+
- name: Barbados
|
703
|
+
long_name: Barbados
|
704
|
+
alpha_2: BB
|
705
|
+
continent_alpha_2: NA
|
706
|
+
- name: Belize
|
707
|
+
long_name: Belize
|
708
|
+
alpha_2: BZ
|
709
|
+
continent_alpha_2: NA
|
710
|
+
- name: Bermuda
|
711
|
+
long_name: Bermuda
|
712
|
+
alpha_2: BM
|
713
|
+
continent_alpha_2: NA
|
714
|
+
- name: Bonaire
|
715
|
+
long_name: Sint Eustatius and Saba Bonaire
|
716
|
+
alpha_2: BQ
|
717
|
+
continent_alpha_2: NA
|
718
|
+
- name: British Virgin Islands
|
719
|
+
long_name: British Virgin Islands
|
720
|
+
alpha_2: VG
|
721
|
+
continent_alpha_2: NA
|
722
|
+
- name: Canada
|
723
|
+
long_name: Canada
|
724
|
+
alpha_2: CA
|
725
|
+
continent_alpha_2: NA
|
726
|
+
- name: Cayman Islands
|
727
|
+
long_name: Cayman Islands
|
728
|
+
alpha_2: KY
|
729
|
+
continent_alpha_2: NA
|
730
|
+
- name: Costa Rica
|
731
|
+
long_name: Republic of Costa Rica
|
732
|
+
alpha_2: CR
|
733
|
+
continent_alpha_2: NA
|
734
|
+
- name: Cuba
|
735
|
+
long_name: Republic of Cuba
|
736
|
+
alpha_2: CU
|
737
|
+
continent_alpha_2: NA
|
738
|
+
- name: Curaçao
|
739
|
+
long_name: Curaçao
|
740
|
+
alpha_2: CW
|
741
|
+
continent_alpha_2: NA
|
742
|
+
- name: Dominica
|
743
|
+
long_name: Commonwealth of Dominica
|
744
|
+
alpha_2: DM
|
745
|
+
continent_alpha_2: NA
|
746
|
+
- name: Dominican Republic
|
747
|
+
long_name: Dominican Republic
|
748
|
+
alpha_2: DO
|
749
|
+
continent_alpha_2: NA
|
750
|
+
- name: El Salvador
|
751
|
+
long_name: Republic of El Salvador
|
752
|
+
alpha_2: SV
|
753
|
+
continent_alpha_2: NA
|
754
|
+
- name: Greenland
|
755
|
+
long_name: Greenland
|
756
|
+
alpha_2: GL
|
757
|
+
continent_alpha_2: NA
|
758
|
+
- name: Grenada
|
759
|
+
long_name: Grenada
|
760
|
+
alpha_2: GD
|
761
|
+
continent_alpha_2: NA
|
762
|
+
- name: Guadeloupe
|
763
|
+
long_name: Guadeloupe
|
764
|
+
alpha_2: GP
|
765
|
+
continent_alpha_2: NA
|
766
|
+
- name: Guatemala
|
767
|
+
long_name: Republic of Guatemala
|
768
|
+
alpha_2: GT
|
769
|
+
continent_alpha_2: NA
|
770
|
+
- name: Haiti
|
771
|
+
long_name: Republic of Haiti
|
772
|
+
alpha_2: HT
|
773
|
+
continent_alpha_2: NA
|
774
|
+
- name: Honduras
|
775
|
+
long_name: Republic of Honduras
|
776
|
+
alpha_2: HN
|
777
|
+
continent_alpha_2: NA
|
778
|
+
- name: Jamaica
|
779
|
+
long_name: Jamaica
|
780
|
+
alpha_2: JM
|
781
|
+
continent_alpha_2: NA
|
782
|
+
- name: Martinique
|
783
|
+
long_name: Martinique
|
784
|
+
alpha_2: MQ
|
785
|
+
continent_alpha_2: NA
|
786
|
+
- name: Mexico
|
787
|
+
long_name: United Mexican States Mexico
|
788
|
+
alpha_2: MX
|
789
|
+
continent_alpha_2: NA
|
790
|
+
- name: Montserrat
|
791
|
+
long_name: Montserrat
|
792
|
+
alpha_2: MS
|
793
|
+
continent_alpha_2: NA
|
794
|
+
- name: Netherlands Antilles
|
795
|
+
long_name: Netherlands Antilles
|
796
|
+
alpha_2: AN
|
797
|
+
continent_alpha_2: NA
|
798
|
+
- name: Nicaragua
|
799
|
+
long_name: Republic of Nicaragua
|
800
|
+
alpha_2: NI
|
801
|
+
continent_alpha_2: NA
|
802
|
+
- name: Panama
|
803
|
+
long_name: Republic of Panama
|
804
|
+
alpha_2: PA
|
805
|
+
continent_alpha_2: NA
|
806
|
+
- name: Puerto Rico
|
807
|
+
long_name: Commonwealth of Puerto Rico
|
808
|
+
alpha_2: PR
|
809
|
+
continent_alpha_2: NA
|
810
|
+
- name: Saint Barthelemy
|
811
|
+
long_name: Saint Barthelemy
|
812
|
+
alpha_2: BL
|
813
|
+
continent_alpha_2: NA
|
814
|
+
- name: Saint Kitts and Nevis
|
815
|
+
long_name: Federation of Saint Kitts and Nevis
|
816
|
+
alpha_2: KN
|
817
|
+
continent_alpha_2: NA
|
818
|
+
- name: Saint Lucia
|
819
|
+
long_name: Saint Lucia
|
820
|
+
alpha_2: LC
|
821
|
+
continent_alpha_2: NA
|
822
|
+
- name: Saint Martin
|
823
|
+
long_name: Saint Martin
|
824
|
+
alpha_2: MF
|
825
|
+
continent_alpha_2: NA
|
826
|
+
- name: Saint Pierre and Miquelon
|
827
|
+
long_name: Saint Pierre and Miquelon
|
828
|
+
alpha_2: PM
|
829
|
+
continent_alpha_2: NA
|
830
|
+
- name: Saint Vincent and the Grenadines
|
831
|
+
long_name: Saint Vincent and the Grenadines
|
832
|
+
alpha_2: VC
|
833
|
+
continent_alpha_2: NA
|
834
|
+
- name: Sint Maarten (Netherlands)
|
835
|
+
long_name: Sint Maarten (Netherlands)
|
836
|
+
alpha_2: SX
|
837
|
+
continent_alpha_2: NA
|
838
|
+
- name: Trinidad and Tobago
|
839
|
+
long_name: Republic of Trinidad and Tobago
|
840
|
+
alpha_2: TT
|
841
|
+
continent_alpha_2: NA
|
842
|
+
- name: Turks and Caicos Islands
|
843
|
+
long_name: Turks and Caicos Islands
|
844
|
+
alpha_2: TC
|
845
|
+
continent_alpha_2: NA
|
846
|
+
- name: United States Virgin Islands
|
847
|
+
long_name: United States Virgin Islands
|
848
|
+
alpha_2: VI
|
849
|
+
continent_alpha_2: NA
|
850
|
+
- name: United States of America
|
851
|
+
long_name: United States of America
|
852
|
+
alpha_2: US
|
853
|
+
continent_alpha_2: NA
|
854
|
+
- name: American Samoa
|
855
|
+
long_name: American Samoa
|
856
|
+
alpha_2: AS
|
857
|
+
continent_alpha_2: OC
|
858
|
+
- name: Australia
|
859
|
+
long_name: Commonwealth of Australia
|
860
|
+
alpha_2: AU
|
861
|
+
continent_alpha_2: OC
|
862
|
+
- name: Cook Islands
|
863
|
+
long_name: Cook Islands
|
864
|
+
alpha_2: CK
|
865
|
+
continent_alpha_2: OC
|
866
|
+
- name: Disputed Territory
|
867
|
+
long_name: Disputed Territory
|
868
|
+
alpha_2: XX
|
869
|
+
continent_alpha_2: OC
|
870
|
+
- name: Fiji
|
871
|
+
long_name: Republic of the Fiji Islands Fiji
|
872
|
+
alpha_2: FJ
|
873
|
+
continent_alpha_2: OC
|
874
|
+
- name: French Polynesia
|
875
|
+
long_name: French Polynesia
|
876
|
+
alpha_2: PF
|
877
|
+
continent_alpha_2: OC
|
878
|
+
- name: Guam
|
879
|
+
long_name: Guam
|
880
|
+
alpha_2: GU
|
881
|
+
continent_alpha_2: OC
|
882
|
+
- name: Kiribati
|
883
|
+
long_name: Republic of Kiribati
|
884
|
+
alpha_2: KI
|
885
|
+
continent_alpha_2: OC
|
886
|
+
- name: Marshall Islands
|
887
|
+
long_name: Republic of the Marshall Islands
|
888
|
+
alpha_2: MH
|
889
|
+
continent_alpha_2: OC
|
890
|
+
- name: Micronesia
|
891
|
+
long_name: Federated States of Micronesia
|
892
|
+
alpha_2: FM
|
893
|
+
continent_alpha_2: OC
|
894
|
+
- name: Nauru
|
895
|
+
long_name: Republic of Nauru
|
896
|
+
alpha_2: NR
|
897
|
+
continent_alpha_2: OC
|
898
|
+
- name: New Caledonia
|
899
|
+
long_name: New Caledonia
|
900
|
+
alpha_2: NC
|
901
|
+
continent_alpha_2: OC
|
902
|
+
- name: New Zealand
|
903
|
+
long_name: New Zealand
|
904
|
+
alpha_2: NZ
|
905
|
+
continent_alpha_2: OC
|
906
|
+
- name: Niue
|
907
|
+
long_name: Niue
|
908
|
+
alpha_2: NU
|
909
|
+
continent_alpha_2: OC
|
910
|
+
- name: Norfolk Island
|
911
|
+
long_name: Norfolk Island
|
912
|
+
alpha_2: NF
|
913
|
+
continent_alpha_2: OC
|
914
|
+
- name: Northern Mariana Islands
|
915
|
+
long_name: Commonwealth of the Northern Mariana Islands
|
916
|
+
alpha_2: MP
|
917
|
+
continent_alpha_2: OC
|
918
|
+
- name: Palau
|
919
|
+
long_name: Republic of Palau
|
920
|
+
alpha_2: PW
|
921
|
+
continent_alpha_2: OC
|
922
|
+
- name: Papua New Guinea
|
923
|
+
long_name: Independent State of Papua New Guinea
|
924
|
+
alpha_2: PG
|
925
|
+
continent_alpha_2: OC
|
926
|
+
- name: Pitcairn Islands
|
927
|
+
long_name: Pitcairn Islands
|
928
|
+
alpha_2: PN
|
929
|
+
continent_alpha_2: OC
|
930
|
+
- name: Samoa
|
931
|
+
long_name: Independent State of Samoa
|
932
|
+
alpha_2: WS
|
933
|
+
continent_alpha_2: OC
|
934
|
+
- name: Solomon Islands
|
935
|
+
long_name: Solomon Islands
|
936
|
+
alpha_2: SB
|
937
|
+
continent_alpha_2: OC
|
938
|
+
- name: Tokelau
|
939
|
+
long_name: Tokelau
|
940
|
+
alpha_2: TK
|
941
|
+
continent_alpha_2: OC
|
942
|
+
- name: Tonga
|
943
|
+
long_name: Kingdom of Tonga
|
944
|
+
alpha_2: TO
|
945
|
+
continent_alpha_2: OC
|
946
|
+
- name: Tuvalu
|
947
|
+
long_name: Tuvalu
|
948
|
+
alpha_2: TV
|
949
|
+
continent_alpha_2: OC
|
950
|
+
- name: United States Minor Outlying Islands
|
951
|
+
long_name: United States Minor Outlying Islands
|
952
|
+
alpha_2: UM
|
953
|
+
continent_alpha_2: OC
|
954
|
+
- name: Vanuatu
|
955
|
+
long_name: Republic of Vanuatu
|
956
|
+
alpha_2: VU
|
957
|
+
continent_alpha_2: OC
|
958
|
+
- name: Wallis and Futuna
|
959
|
+
long_name: Wallis and Futuna
|
960
|
+
alpha_2: WF
|
961
|
+
continent_alpha_2: OC
|
962
|
+
- name: Argentina
|
963
|
+
long_name: Argentine Republic Argentina
|
964
|
+
alpha_2: AR
|
965
|
+
continent_alpha_2: SA
|
966
|
+
- name: Bolivia
|
967
|
+
long_name: Republic of Bolivia
|
968
|
+
alpha_2: BO
|
969
|
+
continent_alpha_2: SA
|
970
|
+
- name: Brazil
|
971
|
+
long_name: Federative Republic of Brazil
|
972
|
+
alpha_2: BR
|
973
|
+
continent_alpha_2: SA
|
974
|
+
- name: Chile
|
975
|
+
long_name: Republic of Chile
|
976
|
+
alpha_2: CL
|
977
|
+
continent_alpha_2: SA
|
978
|
+
- name: Colombia
|
979
|
+
long_name: Republic of Colombia
|
980
|
+
alpha_2: CO
|
981
|
+
continent_alpha_2: SA
|
982
|
+
- name: Ecuador
|
983
|
+
long_name: Republic of Ecuador
|
984
|
+
alpha_2: EC
|
985
|
+
continent_alpha_2: SA
|
986
|
+
- name: Falkland Islands (Malvinas)
|
987
|
+
long_name: Falkland Islands (Malvinas)
|
988
|
+
alpha_2: FK
|
989
|
+
continent_alpha_2: SA
|
990
|
+
- name: French Guiana
|
991
|
+
long_name: French Guiana
|
992
|
+
alpha_2: GF
|
993
|
+
continent_alpha_2: SA
|
994
|
+
- name: Guyana
|
995
|
+
long_name: Co-operative Republic of Guyana
|
996
|
+
alpha_2: GY
|
997
|
+
continent_alpha_2: SA
|
998
|
+
- name: Paraguay
|
999
|
+
long_name: Republic of Paraguay
|
1000
|
+
alpha_2: PY
|
1001
|
+
continent_alpha_2: SA
|
1002
|
+
- name: Peru
|
1003
|
+
long_name: Republic of Peru
|
1004
|
+
alpha_2: PE
|
1005
|
+
continent_alpha_2: SA
|
1006
|
+
- name: Suriname
|
1007
|
+
long_name: Republic of Suriname
|
1008
|
+
alpha_2: SR
|
1009
|
+
continent_alpha_2: SA
|
1010
|
+
- name: Uruguay
|
1011
|
+
long_name: Eastern Republic of Uruguay
|
1012
|
+
alpha_2: UY
|
1013
|
+
continent_alpha_2: SA
|
1014
|
+
- name: Venezuela
|
1015
|
+
long_name: Bolivarian Republic of Venezuela
|
1016
|
+
alpha_2: VE
|
1017
|
+
continent_alpha_2: SA
|