-
Notifications
You must be signed in to change notification settings - Fork 37
/
countries.json
2540 lines (2540 loc) · 67.2 KB
/
countries.json
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
[
{
"Name": "Afghanistan",
"Population": "35623235 people",
"Continent": "Asia",
"Area": "652230 kilometers squared",
"GDP": "19331286549 US dollars per year",
"NaturalHazards": [
"drought",
"earthquake",
"flood"
]
},
{
"Name": "Albania",
"Population": "3248655 people",
"Continent": "Europe",
"Area": "28748 kilometers squared",
"GDP": "11398392444 US dollars per year",
"NaturalHazards": [
"drought",
"earthquake",
"flood",
"tsunami"
]
},
{
"Name": "Algeria",
"Population": "37473690 people",
"Continent": "Africa",
"Area": "2381741 kilometers squared",
"GDP": "166838617796 US dollars per year",
"NaturalHazards": [
"earthquake",
"flood",
"landslide"
]
},
{
"Name": "American Samoa",
"Population": "54719 people",
"Continent": "Oceania",
"Area": "199 kilometers squared",
"GDP": "333800000 US dollars per year",
"NaturalHazards": [
"tropical cyclone"
]
},
{
"Name": "Andorra",
"Population": "85458 people",
"Continent": "Europe",
"Area": "468 kilometers squared",
"GDP": "3248924588 US dollars per year",
"NaturalHazards": [
"avalanche"
]
},
{
"Name": "Angola",
"Population": "21274503 people",
"Continent": "Africa",
"Area": "1246700 kilometers squared",
"GDP": "102626929544 US dollars per year",
"NaturalHazards": [
"flood"
]
},
{
"Name": "Anguilla",
"Population": "16086 people",
"Continent": "NorthAmerica",
"Area": "91 kilometers squared",
"GDP": "211174149 US dollars per year",
"NaturalHazards": [
"tropical cyclone"
]
},
{
"Name": "Antigua and Barbuda",
"Population": "91295 people",
"Continent": "NorthAmerica",
"Area": "442 kilometers squared",
"GDP": "1259259259 US dollars per year",
"NaturalHazards": [
"drought",
"tropical cyclone"
]
},
{
"Name": "Argentina",
"Population": "41827217 people",
"Continent": "SouthAmerica",
"Area": "2766890 kilometers squared",
"GDP": "583168571071 US dollars per year",
"NaturalHazards": [
"earthquake",
"flood"
]
},
{
"Name": "Armenia",
"Population": "3125790 people",
"Continent": "Asia",
"Area": "29743 kilometers squared",
"GDP": "10529182498 US dollars per year",
"NaturalHazards": [
"drought",
"earthquake"
]
},
{
"Name": "Aruba",
"Population": "109118 people",
"Continent": "NorthAmerica",
"Area": "180 kilometers squared",
"GDP": "2584463687 US dollars per year",
"NaturalHazards": [
"tropical cyclone"
]
},
{
"Name": "Australia",
"Population": "23502754 people",
"Continent": "Oceania",
"Area": "7741220 kilometers squared",
"GDP": "1339140527498 US dollars per year",
"NaturalHazards": [
"drought",
"tropical cyclone",
"wildfire"
]
},
{
"Name": "Austria",
"Population": "8452081 people",
"Continent": "Europe",
"Area": "83871 kilometers squared",
"GDP": "376950249528 US dollars per year",
"NaturalHazards": [
"avalanche",
"earthquake",
"landslide"
]
},
{
"Name": "Azerbaijan",
"Population": "9643103 people",
"Continent": "Asia",
"Area": "86600 kilometers squared",
"GDP": "53047140347 US dollars per year",
"NaturalHazards": [
"drought"
]
},
{
"Name": "Bahamas",
"Population": "359142 people",
"Continent": "NorthAmerica",
"Area": "13880 kilometers squared",
"GDP": "8853519100 US dollars per year",
"NaturalHazards": [
"flood",
"tropical cyclone"
]
},
{
"Name": "Bahrain",
"Population": "1389036 people",
"Continent": "Asia",
"Area": "760 kilometers squared",
"GDP": "31125851063 US dollars per year",
"NaturalHazards": [
"drought",
"dust storm"
]
},
{
"Name": "Bangladesh",
"Population": "156380192 people",
"Continent": "Asia",
"Area": "143998 kilometers squared",
"GDP": "195078665827 US dollars per year",
"NaturalHazards": [
"drought",
"flood",
"tropical cyclone"
]
},
{
"Name": "Barbados",
"Population": "275746 people",
"Continent": "NorthAmerica",
"Area": "430 kilometers squared",
"GDP": "4385250000 US dollars per year",
"NaturalHazards": [
"landslide",
"tropical cyclone"
]
},
{
"Name": "Belarus",
"Population": "9469915 people",
"Continent": "Europe",
"Area": "207600 kilometers squared",
"GDP": "54608962634 US dollars per year",
"NaturalHazards": []
},
{
"Name": "Belgium",
"Population": "10841093 people",
"Continent": "Europe",
"Area": "30528 kilometers squared",
"GDP": "455085726960 US dollars per year",
"NaturalHazards": [
"flood"
]
},
{
"Name": "Belize",
"Population": "337209 people",
"Continent": "NorthAmerica",
"Area": "22966 kilometers squared",
"GDP": "1752861127 US dollars per year",
"NaturalHazards": [
"flood",
"tropical cyclone"
]
},
{
"Name": "Benin",
"Population": "9865290 people",
"Continent": "Africa",
"Area": "112622 kilometers squared",
"GDP": "8290986804 US dollars per year",
"NaturalHazards": [
"dust storm"
]
},
{
"Name": "Bermuda",
"Population": "69839 people",
"Continent": "NorthAmerica",
"Area": "54 kilometers squared",
"GDP": "5573710000 US dollars per year",
"NaturalHazards": [
"tropical cyclone"
]
},
{
"Name": "Bhutan",
"Population": "773646 people",
"Continent": "Asia",
"Area": "38394 kilometers squared",
"GDP": "2057947621 US dollars per year",
"NaturalHazards": [
"landslide"
]
},
{
"Name": "Bolivia",
"Population": "10573218 people",
"Continent": "SouthAmerica",
"Area": "1098581 kilometers squared",
"GDP": "32997684515 US dollars per year",
"NaturalHazards": [
"flood"
]
},
{
"Name": "Bosnia and Herzegovina",
"Population": "3726569 people",
"Continent": "Europe",
"Area": "51197 kilometers squared",
"GDP": "16191716214 US dollars per year",
"NaturalHazards": [
"earthquake"
]
},
{
"Name": "Botswana",
"Population": "2095201 people",
"Continent": "Africa",
"Area": "581730 kilometers squared",
"GDP": "14389717321 US dollars per year",
"NaturalHazards": [
"drought",
"dust storm"
]
},
{
"Name": "Brazil",
"Population": "201700544 people",
"Continent": "SouthAmerica",
"Area": "8514877 kilometers squared",
"GDP": "1774724818900 US dollars per year",
"NaturalHazards": [
"drought",
"flood"
]
},
{
"Name": "British Virgin Islands",
"Population": "23786 people",
"Continent": "NorthAmerica",
"Area": "151 kilometers squared",
"GDP": "909189592 US dollars per year",
"NaturalHazards": [
"tropical cyclone"
]
},
{
"Name": "Brunei",
"Population": "426570 people",
"Continent": "Asia",
"Area": "5765 kilometers squared",
"GDP": "12930394937 US dollars per year",
"NaturalHazards": [
"earthquake",
"flood",
"tropical cyclone"
]
},
{
"Name": "Bulgaria",
"Population": "7300838 people",
"Continent": "Europe",
"Area": "110879 kilometers squared",
"GDP": "50199117547 US dollars per year",
"NaturalHazards": [
"earthquake",
"landslide"
]
},
{
"Name": "Burkina Faso",
"Population": "18556912 people",
"Continent": "Africa",
"Area": "274200 kilometers squared",
"GDP": "10678201939 US dollars per year",
"NaturalHazards": [
"drought"
]
},
{
"Name": "Burundi",
"Population": "9069456 people",
"Continent": "Africa",
"Area": "27830 kilometers squared",
"GDP": "3097324739 US dollars per year",
"NaturalHazards": [
"drought",
"flood",
"landslide"
]
},
{
"Name": "Cambodia",
"Population": "14835553 people",
"Continent": "Asia",
"Area": "181035 kilometers squared",
"GDP": "18049954289 US dollars per year",
"NaturalHazards": [
"drought",
"flood"
]
},
{
"Name": "Cameroon",
"Population": "21362945 people",
"Continent": "Africa",
"Area": "475440 kilometers squared",
"GDP": "28415950981 US dollars per year",
"NaturalHazards": [
"volcano"
]
},
{
"Name": "Canada",
"Population": "35309555 people",
"Continent": "NorthAmerica",
"Area": "9984670 kilometers squared",
"GDP": "1550536520141 US dollars per year",
"NaturalHazards": []
},
{
"Name": "Cape Verde",
"Population": "515134 people",
"Continent": "Africa",
"Area": "4033 kilometers squared",
"GDP": "1827021562 US dollars per year",
"NaturalHazards": [
"drought",
"dust storm",
"earthquake",
"volcano"
]
},
{
"Name": "Cayman Islands",
"Population": "54914 people",
"Continent": "NorthAmerica",
"Area": "264 kilometers squared",
"GDP": "3207032512 US dollars per year",
"NaturalHazards": [
"tropical cyclone"
]
},
{
"Name": "Central African Republic",
"Population": "4759950 people",
"Continent": "Africa",
"Area": "622984 kilometers squared",
"GDP": "1583776759 US dollars per year",
"NaturalHazards": [
"dust storm",
"flood"
]
},
{
"Name": "Chad",
"Population": "12458071 people",
"Continent": "Africa",
"Area": "1284000 kilometers squared",
"GDP": "10888798113 US dollars per year",
"NaturalHazards": [
"drought",
"dust storm",
"locust plague"
]
},
{
"Name": "Chile",
"Population": "17722868 people",
"Continent": "SouthAmerica",
"Area": "756102 kilometers squared",
"GDP": "240796388428 US dollars per year",
"NaturalHazards": [
"earthquake",
"tsunami",
"volcano"
]
},
{
"Name": "China",
"Population": "1364773138 people",
"Continent": "Asia",
"Area": "9596960 kilometers squared",
"GDP": "11007720594138 US dollars per year",
"NaturalHazards": [
"drought",
"earthquake",
"flood",
"landslide",
"land subsidence",
"tropical cyclone",
"tsunami"
]
},
{
"Name": "Christmas Island",
"Population": "1513 people",
"Continent": "Asia",
"Area": "135 kilometers squared",
"GDP": "N/A",
"NaturalHazards": []
},
{
"Name": "Cocos Keeling Islands",
"Population": "550 people",
"Continent": "Asia",
"Area": "14 kilometers squared",
"GDP": "N/A",
"NaturalHazards": [
"tropical cyclone"
]
},
{
"Name": "Colombia",
"Population": "48770570 people",
"Continent": "SouthAmerica",
"Area": "1138910 kilometers squared",
"GDP": "292080155633 US dollars per year",
"NaturalHazards": [
"drought",
"earthquake",
"volcano"
]
},
{
"Name": "Comoros",
"Population": "812608 people",
"Continent": "Africa",
"Area": "2235 kilometers squared",
"GDP": "565689764 US dollars per year",
"NaturalHazards": [
"tropical cyclone",
"volcano"
]
},
{
"Name": "Cook Islands",
"Population": "10134 people",
"Continent": "Oceania",
"Area": "236 kilometers squared",
"GDP": "247759558 US dollars per year",
"NaturalHazards": [
"tropical cyclone"
]
},
{
"Name": "Costa Rica",
"Population": "4924721 people",
"Continent": "NorthAmerica",
"Area": "51100 kilometers squared",
"GDP": "54136834090 US dollars per year",
"NaturalHazards": [
"earthquake",
"flood",
"landslide",
"tropical cyclone",
"volcano"
]
},
{
"Name": "Croatia",
"Population": "4369961 people",
"Continent": "Europe",
"Area": "56594 kilometers squared",
"GDP": "48732003674 US dollars per year",
"NaturalHazards": [
"earthquake"
]
},
{
"Name": "Cuba",
"Population": "11238373 people",
"Continent": "NorthAmerica",
"Area": "110860 kilometers squared",
"GDP": "77149700000 US dollars per year",
"NaturalHazards": [
"drought",
"tropical cyclone"
]
},
{
"Name": "Curacao",
"Population": "146836 people",
"Continent": "NorthAmerica",
"Area": "444 kilometers squared",
"GDP": "2871000000 US dollars per year",
"NaturalHazards": [
"tropical cyclone"
]
},
{
"Name": "Cyprus",
"Population": "1153409 people",
"Continent": "Asia",
"Area": "9251 kilometers squared",
"GDP": "19559942331 US dollars per year",
"NaturalHazards": [
"drought",
"earthquake"
]
},
{
"Name": "Czech Republic",
"Population": "10611300 people",
"Continent": "Europe",
"Area": "78867 kilometers squared",
"GDP": "185156359571 US dollars per year",
"NaturalHazards": [
"flood"
]
},
{
"Name": "Democratic Republic of the Congo",
"Population": "73291196 people",
"Continent": "Africa",
"Area": "2344858 kilometers squared",
"GDP": "35237742278 US dollars per year",
"NaturalHazards": [
"drought",
"flood",
"volcano"
]
},
{
"Name": "Denmark",
"Population": "5628958 people",
"Continent": "Europe",
"Area": "43094 kilometers squared",
"GDP": "295091333721 US dollars per year",
"NaturalHazards": [
"flood"
]
},
{
"Name": "Djibouti",
"Population": "957625 people",
"Continent": "Africa",
"Area": "23200 kilometers squared",
"GDP": "1727000000 US dollars per year",
"NaturalHazards": [
"drought",
"earthquake",
"flood"
]
},
{
"Name": "Dominica",
"Population": "73449 people",
"Continent": "NorthAmerica",
"Area": "751 kilometers squared",
"GDP": "517218962 US dollars per year",
"NaturalHazards": [
"flood",
"tropical cyclone"
]
},
{
"Name": "Dominican Republic",
"Population": "10431820 people",
"Continent": "NorthAmerica",
"Area": "48670 kilometers squared",
"GDP": "68102618092 US dollars per year",
"NaturalHazards": [
"drought",
"flood",
"tropical cyclone"
]
},
{
"Name": "East Timor",
"Population": "1261910 people",
"Continent": "Asia",
"Area": "14874 kilometers squared",
"GDP": "1441718600 US dollars per year",
"NaturalHazards": [
"earthquake",
"flood",
"landslide",
"tropical cyclone",
"tsunami"
]
},
{
"Name": "Ecuador",
"Population": "15255149 people",
"Continent": "SouthAmerica",
"Area": "283561 kilometers squared",
"GDP": "100176808000 US dollars per year",
"NaturalHazards": [
"drought",
"earthquake",
"flood",
"landslide",
"volcano"
]
},
{
"Name": "Egypt",
"Population": "86787634 people",
"Continent": "Africa",
"Area": "1001450 kilometers squared",
"GDP": "330778550716 US dollars per year",
"NaturalHazards": [
"drought",
"dust storm",
"earthquake",
"flood",
"landslide"
]
},
{
"Name": "El Salvador",
"Population": "6342991 people",
"Continent": "NorthAmerica",
"Area": "21041 kilometers squared",
"GDP": "25850200000 US dollars per year",
"NaturalHazards": [
"earthquake",
"tropical cyclone",
"volcano"
]
},
{
"Name": "Equatorial Guinea",
"Population": "781773 people",
"Continent": "Africa",
"Area": "28051 kilometers squared",
"GDP": "12202323684 US dollars per year",
"NaturalHazards": [
"flood"
]
},
{
"Name": "Eritrea",
"Population": "5914510 people",
"Continent": "Africa",
"Area": "117600 kilometers squared",
"GDP": "2607739837 US dollars per year",
"NaturalHazards": [
"drought",
"locust plague"
]
},
{
"Name": "Estonia",
"Population": "1337821 people",
"Continent": "Europe",
"Area": "45228 kilometers squared",
"GDP": "22459443273 US dollars per year",
"NaturalHazards": [
"flood"
]
},
{
"Name": "Ethiopia",
"Population": "90178951 people",
"Continent": "Africa",
"Area": "1127127 kilometers squared",
"GDP": "61539711686 US dollars per year",
"NaturalHazards": [
"drought",
"earthquake",
"volcano"
]
},
{
"Name": "Falkland Islands",
"Population": "2840 people",
"Continent": "SouthAmerica",
"Area": "12173 kilometers squared",
"GDP": "105100000 US dollars per year",
"NaturalHazards": []
},
{
"Name": "Faroe Islands",
"Population": "49709 people",
"Continent": "Europe",
"Area": "1393 kilometers squared",
"GDP": "2613458940 US dollars per year",
"NaturalHazards": []
},
{
"Name": "Fiji",
"Population": "889587 people",
"Continent": "Oceania",
"Area": "18274 kilometers squared",
"GDP": "4425503074 US dollars per year",
"NaturalHazards": []
},
{
"Name": "Finland",
"Population": "5434241 people",
"Continent": "Europe",
"Area": "338145 kilometers squared",
"GDP": "231949650659 US dollars per year",
"NaturalHazards": []
},
{
"Name": "France",
"Population": "64101308 people",
"Continent": "Europe",
"Area": "551500 kilometers squared",
"GDP": "2418835532882 US dollars per year",
"NaturalHazards": [
"avalanche",
"drought",
"flood",
"wildfire"
]
},
{
"Name": "French Guiana",
"Population": "249408 people",
"Continent": "SouthAmerica",
"Area": "91000 kilometers squared",
"GDP": "1551000000 US dollars per year",
"NaturalHazards": [
"flood",
"thunderstorm"
]
},
{
"Name": "French Polynesia",
"Population": "282482 people",
"Continent": "Oceania",
"Area": "4167 kilometers squared",
"GDP": "3447543137 US dollars per year",
"NaturalHazards": [
"tropical cyclone"
]
},
{
"Name": "Gabon",
"Population": "1625091 people",
"Continent": "Africa",
"Area": "267667 kilometers squared",
"GDP": "14262032470 US dollars per year",
"NaturalHazards": []
},
{
"Name": "Gambia",
"Population": "1924758 people",
"Continent": "Africa",
"Area": "11295 kilometers squared",
"GDP": "938794719 US dollars per year",
"NaturalHazards": [
"drought"
]
},
{
"Name": "Gaza Strip",
"Population": "1763387 people",
"Continent": "Asia",
"Area": "360 kilometers squared",
"GDP": "768000000 US dollars per year",
"NaturalHazards": [
"drought"
]
},
{
"Name": "Georgia",
"Population": "4251727 people",
"Continent": "Asia",
"Area": "69700 kilometers squared",
"GDP": "13965385801 US dollars per year",
"NaturalHazards": [
"earthquake"
]
},
{
"Name": "Germany",
"Population": "81625599 people",
"Continent": "Europe",
"Area": "357022 kilometers squared",
"GDP": "3363446822668 US dollars per year",
"NaturalHazards": [
"flood"
]
},
{
"Name": "Ghana",
"Population": "26721130 people",
"Continent": "Africa",
"Area": "238533 kilometers squared",
"GDP": "37543361203 US dollars per year",
"NaturalHazards": [
"drought",
"dust storm"
]
},
{
"Name": "Gibraltar",
"Population": "29111 people",
"Continent": "Europe",
"Area": "6 kilometers squared",
"GDP": "1106000000 US dollars per year",
"NaturalHazards": []
},
{
"Name": "Greece",
"Population": "11470255 people",
"Continent": "Europe",
"Area": "131940 kilometers squared",
"GDP": "194851319174 US dollars per year",
"NaturalHazards": [
"earthquake"
]
},
{
"Name": "Greenland",
"Population": "57728 people",
"Continent": "NorthAmerica",
"Area": "2166086 kilometers squared",
"GDP": "2441226080 US dollars per year",
"NaturalHazards": []
},
{
"Name": "Grenada",
"Population": "106130 people",
"Continent": "NorthAmerica",
"Area": "344 kilometers squared",
"GDP": "984074074 US dollars per year",
"NaturalHazards": [
"tropical cyclone"
]
},
{
"Name": "Guadeloupe",
"Population": "467335 people",
"Continent": "NorthAmerica",
"Area": "1780 kilometers squared",
"GDP": "3513000000 US dollars per year",
"NaturalHazards": [
"tropical cyclone",
"volcano"
]
},
{
"Name": "Guam",
"Population": "186562 people",
"Continent": "Oceania",
"Area": "544 kilometers squared",
"GDP": "2773000000 US dollars per year",
"NaturalHazards": [
"tropical cyclone"
]
},
{
"Name": "Guatemala",
"Population": "15924031 people",
"Continent": "NorthAmerica",
"Area": "108889 kilometers squared",
"GDP": "63794152886 US dollars per year",
"NaturalHazards": [
"earthquake",
"tropical cyclone",
"volcano"
]
},
{
"Name": "Guernsey",
"Population": "65605 people",
"Continent": "Europe",
"Area": "78 kilometers squared",
"GDP": "2742000000 US dollars per year",
"NaturalHazards": []
},
{
"Name": "Guinea",
"Population": "11034203 people",
"Continent": "Africa",
"Area": "245857 kilometers squared",
"GDP": "6699203543 US dollars per year",
"NaturalHazards": [
"dust storm"
]
},
{
"Name": "Guinea-Bissau",
"Population": "1646870 people",
"Continent": "Africa",
"Area": "36125 kilometers squared",
"GDP": "1056776883 US dollars per year",
"NaturalHazards": [
"dust storm",
"wildfire"
]
},
{
"Name": "Guyana",
"Population": "760972 people",
"Continent": "SouthAmerica",
"Area": "214969 kilometers squared",
"GDP": "3166029055 US dollars per year",
"NaturalHazards": [
"flood"
]
},
{
"Name": "Haiti",
"Population": "10521433 people",
"Continent": "NorthAmerica",
"Area": "27750 kilometers squared",
"GDP": "8765329889 US dollars per year",
"NaturalHazards": [
"drought",
"earthquake",
"flood",
"tropical cyclone"
]
},
{
"Name": "Honduras",
"Population": "8231762 people",
"Continent": "NorthAmerica",
"Area": "112090 kilometers squared",
"GDP": "20420967148 US dollars per year",
"NaturalHazards": [
"earthquake",
"flood",
"tropical cyclone"
]
},
{
"Name": "Hong Kong",
"Population": "7352945 people",
"Continent": "Asia",
"Area": "1104 kilometers squared",
"GDP": "309234500374 US dollars per year",
"NaturalHazards": [
"tropical cyclone"
]
},
{
"Name": "Hungary",