forked from psmithuk/iso-countries
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcountries.yaml
6053 lines (6053 loc) · 109 KB
/
countries.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
---
AD:
alpha2: AD
alpha3: AND
country_code: "376"
currency: EUR
international_prefix: "00"
ioc: AND
latitude: "42 30 N"
longitude: "1 30 E"
name: Andorra
names:
- Andorre
- Andorra
national_destination_code_lengths:
- 2
national_number_lengths:
- 6
- 7
- 8
- 9
national_prefix: None
number: "020"
region: Europe
subregion: "Southern Europe"
un_locode: AD
AE:
address_format: |-
{{recipient}}
{{street}}
{{postalcode}} {{city}}
{{country}}
alpha2: AE
alpha3: ARE
country_code: "971"
currency: AED
international_prefix: "00"
ioc: UAE
latitude: "24 00 N"
longitude: "54 00 E"
name: "United Arab Emirates"
names:
- "United Arab Emirates"
- "Vereinigte Arabische Emirate"
- "Émirats Arabes Unis"
- "Emiratos Árabes Unidos"
national_destination_code_lengths:
- 2
national_number_lengths:
- 7
- 8
- 9
national_prefix: "0"
number: "784"
region: Asia
subregion: "Western Asia"
un_locode: AE
AF:
alpha2: AF
alpha3: AFG
country_code: "93"
currency: AFN
international_prefix: "00"
ioc: AFG
latitude: "33 00 N"
longitude: "65 00 E"
name: Afghanistan
names:
- Afghanistan
- Afganistán
national_destination_code_lengths:
- 2
national_number_lengths:
- 8
- 9
national_prefix: "0"
number: "004"
region: Asia
subregion: "Southern Asia"
un_locode: AF
AG:
alpha2: AG
alpha3: ATG
country_code: "1"
currency: XCD
international_prefix: "011"
ioc: ANT
latitude: "17 03 N"
longitude: "61 48 W"
name: "Antigua and Barbuda"
names:
- "Antigua and Barbuda"
- "Antigua und Barbuda"
- "Antigua et Barbuda"
- "Antigua y Barbuda"
national_destination_code_lengths:
- 3
national_number_lengths:
- 10
national_prefix: "1"
number: 028
region: Americas
subregion: Caribbean
un_locode: AG
AI:
alpha2: AI
alpha3: AIA
country_code: "1"
currency: XCD
international_prefix: "011"
ioc:
latitude: "18 15 N"
longitude: "63 10 W"
name: Anguilla
names:
- Anguilla
national_destination_code_lengths:
- 3
national_number_lengths:
- 10
national_prefix: "1"
number: "660"
region: Americas
subregion: Caribbean
un_locode: AI
AL:
alpha2: AL
alpha3: ALB
country_code: "355"
currency: ALL
international_prefix: "00"
ioc: ALB
latitude: "41 00 N"
longitude: "20 00 E"
name: Albania
names:
- Albania
- Albanien
- Albanie
national_destination_code_lengths:
- 2
national_number_lengths:
- 7
- 8
- 9
national_prefix: "0"
number: 008
region: Europe
subregion: "Southern Europe"
un_locode: AL
AM:
alpha2: AM
alpha3: ARM
country_code: "374"
currency: AMD
international_prefix: "00"
ioc: ARM
latitude: "40 00 N"
longitude: "45 00 E"
name: Armenia
names:
- Armenia
- Armenien
- Arménie
national_destination_code_lengths:
- 2
national_number_lengths:
- 8
national_prefix: "8"
number: "051"
region: Asia
subregion: "Western Asia"
un_locode: AM
AN:
alpha2: AN
alpha3: ANT
country_code: "599"
currency: ANG
international_prefix: "00"
ioc: AHO
latitude: ""
longitude: ""
name: "Netherlands Antilles"
names:
- "Netherlands Antilles"
- "Niederländische Antillen"
- "Antilles néerlandaises"
- "Antillas Holandesas"
national_destination_code_lengths:
- 2
national_number_lengths:
- 7
national_prefix: "0"
number: "530"
region: Americas
subregion: Caribbean
un_locode: AN
AO:
alpha2: AO
alpha3: AGO
country_code: "244"
currency: AOA
international_prefix: "00"
ioc: ANG
latitude: "12 30 S"
longitude: "18 30 E"
name: Angola
names:
- Angola
national_destination_code_lengths:
- 2
national_number_lengths:
- 9
national_prefix: "0"
number: "024"
region: Africa
subregion: "Middle Africa"
un_locode: AO
AQ:
alpha2: AQ
alpha3: ATA
country_code: "672"
currency: ~
international_prefix: ""
ioc:
latitude: "90 00 S"
longitude: "0 00 E"
name: Antarctica
names:
- Antarctica
- Antarktis
- Antarctique
- Antártida
national_destination_code_lengths: []
national_number_lengths: []
national_prefix: ""
number: "010"
region: ""
subregion: ""
un_locode: AQ
AR:
address_format: |-
{{recipient}}
{{street}}
{{postalcode}} {{city}}
{{region}}
{{country}}
alpha2: AR
alpha3: ARG
country_code: "54"
currency: ARS
international_prefix: "00"
ioc: ARG
latitude: "34 00 S"
longitude: "64 00 W"
name: Argentina
names:
- Argentina
- Argentinien
- Argentine
national_destination_code_lengths:
- 2
national_number_lengths:
- 8
- 9
national_prefix: "0"
number: "032"
region: Americas
subregion: "South America"
un_locode: AR
AS:
alpha2: AS
alpha3: ASM
country_code: "1"
currency: USD
international_prefix: "011"
ioc: ASA
latitude: "14 20 S"
longitude: "170 00 W"
name: "American Samoa"
names:
- "American Samoa"
- Amerikanisch-Samoa
- "Samoa américaines"
- "Samoa Americana"
national_destination_code_lengths:
- 3
national_number_lengths:
- 10
national_prefix: "1"
number: "016"
region: Oceania
subregion: Polynesia
un_locode: AS
AT:
address_format: |-
{{recipient}}
{{street}}
{{postalcode}} {{city}}
{{country}}
alpha2: AT
alpha3: AUT
country_code: "43"
currency: EUR
international_prefix: "00"
ioc: AUT
latitude: "47 20 N"
longitude: "13 20 E"
name: Austria
names:
- Österreich
- Autriche
- Austria
national_destination_code_lengths:
- 1
- 2
- 3
national_number_lengths:
- 7
- 8
- 9
- 10
- 11
- 12
- 13
national_prefix: "0"
number: "040"
region: Europe
subregion: "Western Europe"
un_locode: AT
AU:
address_format: |-
{{recipient}}
{{street}}
{{city}} {{region}} {{postalcode}}
{{country}}
alpha2: AU
alpha3: AUS
country_code: "61"
currency: AUD
international_prefix: "0011"
ioc: AUS
latitude: "27 00 S"
longitude: "133 00 E"
name: Australia
names:
- Australien
- Australie
- Australia
national_destination_code_lengths:
- 2
national_number_lengths:
- 9
national_prefix: "0"
number: "036"
region: Oceania
subregion: "Australia and New Zealand"
un_locode: AU
AW:
alpha2: AW
alpha3: ABW
country_code: "297"
currency: AWG
international_prefix: "00"
ioc: ARU
latitude: "12 30 N"
longitude: "69 58 W"
name: Aruba
names:
- Aruba
national_destination_code_lengths:
- 2
national_number_lengths:
- 7
national_prefix: None
number: "533"
region: Americas
subregion: Caribbean
un_locode: AW
AX:
alpha2: AX
alpha3: ALA
country_code: "358"
currency: ~
international_prefix: ""
ioc:
latitude: ""
longitude: ""
name: "Åland Islands"
names:
- "Åland Islands"
national_destination_code_lengths: []
national_number_lengths: []
national_prefix: ""
number: "248"
region: Europe
subregion: "Northern Europe"
un_locode:
AZ:
alpha2: AZ
alpha3: AZE
country_code: "994"
currency: AZN
international_prefix: "810"
ioc: AZE
latitude: "40 30 N"
longitude: "47 30 E"
name: Azerbaijan
names:
- Azerbaijan
- Aserbaidschan
- Azerbaïdjan
- Azerbaiyán
national_destination_code_lengths:
- 2
national_number_lengths:
- 8
- 9
national_prefix: "8"
number: "031"
region: Asia
subregion: "Western Asia"
un_locode: AZ
BA:
address_format: |-
{{recipient}}
{{street}}
{{postalcode}} {{city}}
{{country}}
alpha2: BA
alpha3: BIH
country_code: "387"
currency: BAM
international_prefix: "00"
ioc: BIH
latitude: "44 00 N"
longitude: "18 00 E"
name: "Bosnia and Herzegovina"
names:
- "Bosnia and Herzegovina"
- "Bosnien und Herzegowina"
- "Bosnie et Herzégovine"
- "Bosnia y Herzegovina"
national_destination_code_lengths:
- 2
national_number_lengths:
- 8
national_prefix: "0"
number: "070"
region: Europe
subregion: "Southern Europe"
un_locode: BA
BB:
alpha2: BB
alpha3: BRB
country_code: "1"
currency: BBD
international_prefix: "011"
ioc: BAR
latitude: "13 10 N"
longitude: "59 32 W"
name: Barbados
names:
- Barbade
- Barbados
national_destination_code_lengths:
- 3
national_number_lengths:
- 10
national_prefix: "1"
number: "052"
region: Americas
subregion: Caribbean
un_locode: BB
BD:
alpha2: BD
alpha3: BGD
country_code: "880"
currency: BTD
international_prefix: "00"
ioc: BAN
latitude: "24 00 N"
longitude: "90 00 E"
name: Bangladesh
names:
- Bangladesh
- Bangladesch
national_destination_code_lengths:
- 2
national_number_lengths:
- 10
national_prefix: "0"
number: "050"
region: Asia
subregion: "Southern Asia"
un_locode: BD
BE:
address_format: |-
{{recipient}}
{{street}}
{{postalcode}} {{city}}
{{country}}
alpha2: BE
alpha3: BEL
country_code: "32"
currency: EUR
international_prefix: "00"
ioc: BEL
latitude: "50 50 N"
longitude: "4 00 E"
name: Belgium
names:
- Belgium
- Belgien
- Belgique
- Bélgica
national_destination_code_lengths:
- 2
national_number_lengths:
- 8
- 9
national_prefix: "0"
number: "056"
region: Europe
subregion: "Western Europe"
un_locode: BE
BF:
alpha2: BF
alpha3: BFA
country_code: "226"
currency: XOF
international_prefix: "00"
ioc: BUR
latitude: "13 00 N"
longitude: "2 00 W"
name: "Burkina Faso"
names:
- "Burkina Faso"
national_destination_code_lengths:
- 2
national_number_lengths:
- 8
national_prefix: None
number: "854"
region: Africa
subregion: "Western Africa"
un_locode: BF
BG:
address_format: |-
{{recipient}}
{{street}}
{{postalcode}} {{city}}
{{country}}
alpha2: BG
alpha3: BGR
country_code: "359"
currency: BGN
international_prefix: "00"
ioc: BUL
latitude: "43 00 N"
longitude: "25 00 E"
name: Bulgaria
names:
- Bulgaria
- Bulgarien
- Bulgarie
national_destination_code_lengths:
- 2
national_number_lengths:
- 8
- 9
- 10
national_prefix: "0"
number: "100"
region: Europe
subregion: "Eastern Europe"
un_locode: BG
BH:
address_format: |-
{{recipient}}
{{street}}
{{postalcode}} {{city}}
{{country}}
alpha2: BH
alpha3: BHR
country_code: "973"
currency: BHD
international_prefix: "00"
ioc: BRN
latitude: "26 00 N"
longitude: "50 33 E"
name: Bahrain
names:
- Bahrain
- Bahreïn
- Bahrein
national_destination_code_lengths:
- 2
national_number_lengths:
- 8
national_prefix: None
number: 048
region: Asia
subregion: "Western Asia"
un_locode: BH
BI:
alpha2: BI
alpha3: BDI
country_code: "257"
currency: BIF
international_prefix: "00"
ioc: BDI
latitude: "3 30 S"
longitude: "30 00 E"
name: Burundi
names:
- Burundi
national_destination_code_lengths:
- 2
national_number_lengths:
- 8
national_prefix: None
number: "108"
region: Africa
subregion: "Eastern Africa"
un_locode: BI
BJ:
alpha2: BJ
alpha3: BEN
country_code: "229"
currency: XOF
international_prefix: "00"
ioc: BEN
latitude: "9 30 N"
longitude: "2 15 E"
name: Benin
names:
- Benin
- Bénin
national_destination_code_lengths:
- 2
national_number_lengths:
- 8
national_prefix: None
number: "204"
region: Africa
subregion: "Western Africa"
un_locode: BJ
BL:
alpha2: BL
alpha3: BLM
country_code: "590"
currency: ~
international_prefix: ""
ioc:
latitude: "17 90 N"
longitude: "62 85 W"
name: "Saint Barthélemy"
names:
- "Saint Barthélemy"
national_destination_code_lengths: []
national_number_lengths: []
national_prefix: ""
number: "652"
region: Americas
subregion: Caribbean
un_locode:
BM:
alpha2: BM
alpha3: BMU
country_code: "1"
currency: BMD
international_prefix: "011"
ioc: BER
latitude: "32 20 N"
longitude: "64 45 W"
name: Bermuda
names:
- Bermuda
- Bermudes
- Bermudas
national_destination_code_lengths:
- 3
national_number_lengths:
- 10
national_prefix: "1"
number: "060"
region: Americas
subregion: "Northern America"
un_locode: BM
BN:
alpha2: BN
alpha3: BRN
country_code: "673"
currency: BND
international_prefix: "00"
ioc: BRU
latitude: "4 30 N"
longitude: "114 40 E"
name: "Brunei Darussalam"
names:
- Brunei
national_destination_code_lengths:
- 2
national_number_lengths:
- 7
national_prefix: "0"
number: 096
region: Asia
subregion: "South-Eastern Asia"
un_locode: BN
BO:
alpha2: BO
alpha3: BOL
country_code: "591"
currency: BOB
international_prefix: "0010"
ioc: BOL
latitude: "17 00 S"
longitude: "65 00 W"
name: Bolivia
names:
- Bolivia
- Bolivien
- Bolivie
national_destination_code_lengths:
- 2
national_number_lengths:
- 8
national_prefix: "010"
number: 068
region: Americas
subregion: "South America"
un_locode: BO
BR:
address_format: |-
{{recipient}}
{{street}}
{{postalcode}} {{city}} {{region}}
{{country}}
alpha2: BR
alpha3: BRA
country_code: "55"
currency: BRL
international_prefix: "0014"
ioc: BRA
latitude: "10 00 S"
longitude: "55 00 W"
name: Brazil
names:
- Brazil
- Brasilien
- Brésil
- Brasil
national_destination_code_lengths:
- 2
national_number_lengths:
- 10
national_prefix: "014"
number: "076"
region: Americas
subregion: "South America"
un_locode: BR
BS:
alpha2: BS
alpha3: BHS
country_code: "1"
currency: BSD
international_prefix: "011"
ioc: BAH
latitude: "24 15 N"
longitude: "76 00 W"
name: Bahamas
names:
- Bahamas
national_destination_code_lengths:
- 3
national_number_lengths:
- 10
national_prefix: "1"
number: "044"
region: Americas
subregion: Caribbean
un_locode: BS
BT:
alpha2: BT
alpha3: BTN
country_code: "975"
currency: BTN
international_prefix: "00"
ioc: BHU
latitude: "27 30 N"
longitude: "90 30 E"
name: Bhutan
names:
- Bhutan
- Bhoutan
- Bután
national_destination_code_lengths:
- 2
national_number_lengths:
- 7
- 8
national_prefix: None
number: "064"
region: Asia
subregion: "Southern Asia"
un_locode: BT
BV:
alpha2: BV
alpha3: BVT
country_code: ""
currency: NOK
international_prefix: ""
ioc:
latitude: "54 26 S"
longitude: "3 24 E"
name: "Bouvet Island"
names:
- "Bouvet Island"
national_destination_code_lengths: []
national_number_lengths: []
national_prefix: ""
number: "074"
region: ""
subregion: ""
un_locode:
BW:
alpha2: BW
alpha3: BWA
country_code: "267"
currency: BWP
international_prefix: "00"
ioc: BOT
latitude: "22 00 S"
longitude: "24 00 E"
name: Botswana
names:
- Botswana
national_destination_code_lengths:
- 2
national_number_lengths:
- 7
national_prefix: None
number: "072"
region: Africa
subregion: "Southern Africa"
un_locode: BW
BY:
alpha2: BY
alpha3: BLR
country_code: "375"
currency: BYR
international_prefix: "810"
ioc: BLR
latitude: "53 00 N"
longitude: "28 00 E"
name: Belarus
names:
- Belarus
- Weißrussland
- Biélorussie
- Bielorrusia
national_destination_code_lengths:
- 2
national_number_lengths:
- 9
national_prefix: "8"
number: "112"
region: Europe
subregion: "Eastern Europe"
un_locode: BY
BZ:
alpha2: BZ
alpha3: BLZ
country_code: "501"
currency: BZD
international_prefix: "00"
ioc: BIZ
latitude: "17 15 N"
longitude: "88 45 W"
name: Belize
names:
- Belize
- Belice
national_destination_code_lengths:
- 2
national_number_lengths:
- 7
national_prefix: "0"
number: 084
region: Americas
subregion: "Central America"
un_locode: BZ
CA:
address_format: |-
{{recipient}}
{{street}}
{{city}} {{region}} {{postalcode}}
{{country}}
alpha2: CA
alpha3: CAN
country_code: "1"
currency: CAD
international_prefix: "011"
ioc: CAN
latitude: "60 00 N"
longitude: "95 00 W"
name: Canada
names:
- Canada
- Kanada
- Canadá
national_destination_code_lengths:
- 3
national_number_lengths:
- 10
national_prefix: "1"
number: "124"
region: Americas
subregion: "Northern America"
un_locode: CA
CC:
alpha2: CC
alpha3: CCK
country_code: "61"
currency: AUD
international_prefix: "0011"
ioc:
latitude: "12 30 S"
longitude: "96 50 E"
name: "Cocos (Keeling) Islands"
names:
- "Cocos (Keeling) Islands"
national_destination_code_lengths:
- 2
national_number_lengths:
- 9
national_prefix: "0"
number: "166"
region: Oceania
subregion: "Australia and New Zealand"
un_locode: CC
CD:
alpha2: CD
alpha3: COD
country_code: "243"
currency: ~
international_prefix: "00"
ioc: COD
latitude: "0 00 N"
longitude: "25 00 E"
name: "Congo, The Democratic Republic Of The"
names:
- "Congo (Dem. Rep.)"
- "Kongo (Dem. Rep.)"
- "Congo (Rep. Dem.)"
- "Congo (Rep. Dem.)"
national_destination_code_lengths:
- 2
national_number_lengths:
- 8
shortname: "Congo"
national_prefix: None
number: "180"
region: Africa
subregion: "Middle Africa"
un_locode: CD
CF:
alpha2: CF
alpha3: CAF
country_code: "236"
currency: XAF
international_prefix: "00"
ioc: CAF
latitude: "7 00 N"
longitude: "21 00 E"
name: "Central African Republic"
names:
- "Central African Republic"
- "Zentralafrikanische Republik"
- "République Centrafricaine"
- "República Centroafricana"
national_destination_code_lengths:
- 2
national_number_lengths:
- 8
national_prefix: None
number: "140"
region: Africa
subregion: "Middle Africa"
un_locode: CF
CG:
alpha2: CG
alpha3: COG
country_code: "242"
currency: ~
international_prefix: "00"
ioc: CGO
latitude: "1 00 S"