-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathdatapackage.json
791 lines (788 loc) · 21.6 KB
/
datapackage.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
{
"name": "countrygroups",
"title": "Country Groups",
"version": "0.17.0",
"description": "Country groups",
"repository": "git://github.com/openclimatedata/countrygroups.git",
"resources": [
{
"name": "unfccc",
"title": "Members of the UNFCCC",
"description": "The 197 Parties (196 States and the European Union) to the United Nations Framework Convention on Climate Change.",
"path": "data/unfccc.csv",
"format": "csv",
"mediatype": "text/csv",
"sources": [
{
"title": "Status of Ratification of the Convention",
"path": "http://unfccc.int/essential_background/convention/status_of_ratification/items/2631.php"
}
],
"schema": {
"fields": [
{
"name": "Code",
"type": "string",
"description": "Country Code (ISO3166-1-Alpha-3) or EUU for European Union"
},
{
"name": "Name",
"type": "string",
"description": "Name of Participant"
},
{
"name": "Signature",
"type": "date",
"description": "Date of Signature"
},
{
"name": "Ratification-Acceptance-Accession-Approval-Succession",
"type": "date",
"description": "Date of Ratification, Acceptance, Accession, Approval, or Succession to the Convention"
},
{
"name": "Kind",
"type": "string",
"description": "Kind of Ratification, Acceptance, Accession, Approval, or Succession to the Convention"
}
],
"primaryKey": "Code"
}
},
{
"name": "annex-one",
"title": "UNFCCC Annex I parties",
"description": "Parties listed in Annex I of the UNFCCC classified as industrialized (developed) countries and \"economies in transition\".",
"path": "data/annex-one.csv",
"format": "csv",
"mediatype": "text/csv",
"sources": [
{
"title": "List of Annex I Parties to the Convention",
"path": "http://unfccc.int/parties_and_observers/parties/annex_i/items/2774.php"
}
],
"schema": {
"fields": [
{
"name": "Code",
"type": "string",
"description": "Country Code (ISO3166-1-Alpha-3) or EUU for European Union"
},
{
"name": "Name",
"type": "string",
"description": "Party Name"
}
],
"primaryKey": "Code"
}
},
{
"name": "annex-one-kaz",
"title": "UNFCCC Annex I parties incl. Kazakhstan",
"description": "After ratifying the Kyoto Protocol Kazakhstan is considered an Annex I Party for the purposes of the Protocol but remains to be a non-Annex I Party for the purposes of the Convention.",
"path": "data/annex-one-kaz.csv",
"format": "csv",
"mediatype": "text/csv",
"sources": [
{
"title": "Greenhouse gas inventory submissions from non-Annex I Parties",
"path": "https://unfccc.int/process/transparency-and-reporting/greenhouse-gas-data/greenhouse-gas-data-unfccc/greenhouse-gas-inventory-submissions-from-non-annex-i-parties"
}
],
"schema": {
"fields": [
{
"name": "Code",
"type": "string",
"description": "Country Code (ISO3166-1-Alpha-3) or EUU for European Union"
},
{
"name": "Name",
"type": "string",
"description": "Party Name"
}
],
"primaryKey": "Code"
}
},
{
"name": "non-annex-one",
"title": "UNFCCC Non-Annex I parties",
"description": "Members of the UNFCCC not part of Annex I.",
"path": "data/non-annex-one.csv",
"format": "csv",
"mediatype": "text/csv",
"sources": [
{
"title": "List of Non-Annex I Parties to the Convention",
"path": "http://unfccc.int/parties_and_observers/parties/non_annex_i/items/2833.php"
}
],
"schema": {
"fields": [
{
"name": "Code",
"type": "string",
"description": "Country Code (ISO3166-1-Alpha-3)"
},
{
"name": "Name",
"type": "string",
"description": "Party Name"
}
],
"primaryKey": "Code"
}
},
{
"name": "graduated-ldcs",
"title": "Countries graduated from Least Developed Countries (LDCs)",
"path": "data/graduated-ldcs.csv",
"format": "csv",
"mediatype": "text/csv",
"sources": [
{
"title": "LDCs at a Glance",
"path": "https://www.un.org/development/desa/dpad/least-developed-country-category/ldcs-at-a-glance.html"
}
],
"schema": {
"fields": [
{
"name": "Code",
"type": "string",
"description": "Country Code (ISO3166-1-Alpha-3)"
},
{
"name": "Name",
"type": "string",
"description": "Name of country"
},
{
"name": "Year-Of-Inclusion",
"type": "integer",
"description": "Year of inclusion in LDCs"
},
{
"name": "Graduation",
"type": "integer",
"description": "Year of graduation from LDCs"
}
],
"primaryKey": "Code"
}
},
{
"name": "ldc",
"title": "Least Developed Countries (LDCs)",
"path": "data/ldc.csv",
"format": "csv",
"mediatype": "text/csv",
"sources": [
{
"title": "LDCs at a Glance: List of all LDCs in PDF format, (updated June 2017)",
"path": "https://www.un.org/development/desa/dpad/wp-content/uploads/sites/45/publication/ldc_list.pdf"
}
],
"schema": {
"fields": [
{
"name": "Code",
"type": "string",
"description": "Country Code (ISO3166-1-Alpha-3)"
},
{
"name": "Name",
"type": "string",
"description": "Name of country"
},
{
"name": "Year-Of-Inclusion",
"type": "integer",
"description": "Year of inclusion in LDCs"
}
],
"primaryKey": "Code"
}
},
{
"name": "lldc",
"title": "Landlocked Developing Countries (LLDCs)",
"path": "data/lldc.csv",
"format": "csv",
"mediatype": "text/csv",
"sources": [
{
"title": "UN-OHRLLS: Landlocked Developing Countries",
"path": "http://unohrlls.org/about-lldcs/country-profiles/"
}
],
"schema": {
"fields": [
{
"name": "Code",
"type": "string",
"description": "Country Code (ISO3166-1-Alpha-3)"
},
{
"name": "Name",
"type": "string",
"description": "Name of country"
}
],
"primaryKey": "Code"
}
},
{
"name": "european-union",
"title": "European Union (EU)",
"path": "data/european-union.csv",
"format": "csv",
"mediatype": "text/csv",
"sources": [
{
"title": "EU member countries in brief",
"path": "https://europa.eu/european-union/about-eu/countries/member-countries_en"
}
],
"schema": {
"fields": [
{
"name": "Code",
"type": "string",
"description": "Country Code (ISO3166-1-Alpha-3)"
},
{
"name": "Name",
"type": "string",
"description": "Country Name"
},
{
"name": "Member-Since",
"type": "date",
"description": "EU member country since"
}
],
"primaryKey": "Code"
}
},
{
"name": "sids-non-un-or-regional-commissions-associates",
"title": "Non-UN Members/Associate Members of Regional Commissions of SIDS",
"path": "data/sids-non-un-or-regional-commissions-associates.csv",
"format": "csv",
"mediatype": "text/csv",
"sources": [
{
"title": "Small Island Developing States, List of SIDS",
"path": "https://sustainabledevelopment.un.org/topics/sids/list"
}
],
"schema": {
"fields": [
{
"name": "Code",
"type": "string",
"description": "Country Code (ISO3166-1-Alpha-3)"
},
{
"name": "Name",
"type": "string",
"description": "Name"
}
],
"primaryKey": "Code"
}
},
{
"name": "sids",
"title": "Small Island Developing States (SIDS)",
"path": "data/sids.csv",
"format": "csv",
"mediatype": "text/csv",
"sources": [
{
"title": "Small Island Developing States, List of SIDS",
"path": "https://sustainabledevelopment.un.org/topics/sids/list"
}
],
"schema": {
"fields": [
{
"name": "Code",
"type": "string",
"description": "Country Code (ISO3166-1-Alpha-3)"
},
{
"name": "Name",
"type": "string",
"description": "Country Name"
},
{
"name": "Region",
"type": "string",
"description": "Region of island"
}
],
"primaryKey": "Code"
}
},
{
"name": "g20",
"title": "G20 members",
"path": "data/g20.csv",
"format": "csv",
"mediatype": "text/csv",
"schema": {
"fields": [
{
"name": "Code",
"type": "string",
"description": "Country Code (ISO3166-1-Alpha-3) or EUU for European Union"
},
{
"name": "Name",
"type": "string",
"description": "Country Name"
}
],
"primaryKey": "Code"
}
},
{
"name": "g7",
"title": "G7 members",
"path": "data/g7.csv",
"format": "csv",
"mediatype": "text/csv",
"schema": {
"fields": [
{
"name": "Code",
"type": "string",
"description": "Country Code (ISO3166-1-Alpha-3) or EUU for European Union"
},
{
"name": "Name",
"type": "string",
"description": "Country Name"
}
],
"primaryKey": "Code"
}
},
{
"name": "oecd",
"title": "Organisation for Economic Co-operation and Development (OECD)",
"path": "data/oecd.csv",
"format": "csv",
"mediatype": "text/csv",
"sources": [
{
"title": "List of OECD Member countries",
"path": "http://www.oecd.org/about/members-and-partners/"
}
],
"schema": {
"fields": [
{
"name": "Code",
"type": "string",
"description": "Country Code (ISO3166-1-Alpha-3)"
},
{
"name": "Name",
"type": "string",
"description": "Country Name"
},
{
"name": "Accession",
"type": "date",
"description": "Year of accession"
}
],
"primaryKey": "Code"
}
},
{
"name": "brics",
"title": "BRICS (Brazil, Russia, India, China and South Africa)",
"path": "data/brics.csv",
"format": "csv",
"mediatype": "text/csv",
"schema": {
"fields": [
{
"name": "Code",
"type": "string",
"description": "Country Code (ISO3166-1-Alpha-3)"
},
{
"name": "Name",
"type": "string",
"description": "Country Name"
}
],
"primaryKey": "Code"
}
},
{
"name": "umbrella",
"title": "Umbrella group",
"path": "data/umbrella.csv",
"format": "csv",
"mediatype": "text/csv",
"sources": [
{
"title": "UN Climate Change Party Groupings",
"path": "http://unfccc.int/parties_and_observers/parties/negotiating_groups/items/2714.php"
}
],
"schema": {
"fields": [
{
"name": "Code",
"type": "string",
"description": "Country Code (ISO3166-1-Alpha-3)"
},
{
"name": "Name",
"type": "string",
"description": "Country Name"
}
],
"primaryKey": "Code"
}
},
{
"name": "opec",
"title": "OPEC members",
"path": "data/opec.csv",
"format": "csv",
"mediatype": "text/csv",
"sources": [
{
"title": "OPEC - Member Countries",
"path": "http://www.opec.org/opec_web/en/about_us/25.htm"
}
],
"schema": {
"fields": [
{
"name": "Code",
"type": "string",
"description": "Country Code (ISO3166-1-Alpha-3)"
},
{
"name": "Name",
"type": "string",
"description": "Country Name"
}
],
"primaryKey": "Code"
}
},
{
"name": "aosis",
"title": "Alliance of Small Island States (AOSIS)",
"path": "data/aosis.csv",
"format": "csv",
"mediatype": "text/csv",
"sources": [
{
"title": "AOSIS - Members",
"path": "http://aosis.org/about/members/"
}
],
"schema": {
"fields": [
{
"name": "Code",
"type": "string",
"description": "Country Code (ISO3166-1-Alpha-3)"
},
{
"name": "Name",
"type": "string",
"description": "Country Name"
}
],
"primaryKey": "Code"
}
},
{
"name": "eig",
"title": "Environmental Integrity Group",
"path": "data/eig.csv",
"format": "csv",
"mediatype": "text/csv",
"sources": [
{
"title": "UNFCCC - Party Groupings",
"path": "https://unfccc.int/party-groupings"
}
],
"schema": {
"fields": [
{
"name": "Code",
"type": "string",
"description": "Country Code (ISO3166-1-Alpha-3)"
},
{
"name": "Name",
"type": "string",
"description": "Country Name"
}
],
"primaryKey": "Code"
}
},
{
"name": "g77",
"title": "G77 members",
"path": "data/g77.csv",
"format": "csv",
"mediatype": "text/csv",
"sources": [
{
"title": "The Member States of the Group of 77",
"path": "http://www.g77.org/doc/members.html"
}
],
"schema": {
"fields": [
{
"name": "Code",
"type": "string",
"description": "Country Code (ISO3166-1-Alpha-3)"
},
{
"name": "Name",
"type": "string",
"description": "Country Name"
}
],
"primaryKey": "Code"
}
},
{
"name": "arab-group",
"title": "Arab Group in the UNFCCC",
"path": "data/arab-group.csv",
"format": "csv",
"mediatype": "text/csv",
"sources": [
{
"title": "UNFCCC - Party Groupings",
"path": "https://unfccc.int/party-groupings"
}
],
"schema": {
"fields": [
{
"name": "Code",
"type": "string",
"description": "Country Code (ISO3166-1-Alpha-3)"
},
{
"name": "Name",
"type": "string",
"description": "Country Name"
}
],
"primaryKey": "Code"
}
},
{
"name": "un-regional-groups",
"title": "UN Regional Groups of Member States",
"path": "data/un-regional-groups.csv",
"format": "csv",
"mediatype": "text/csv",
"subregions": true,
"sources": [
{
"title": "United Nations Regional Groups of Member States",
"path": "http://www.un.org/depts/DGACM/RegionalGroups.shtml"
}
],
"schema": {
"fields": [
{
"name": "Code",
"type": "string",
"description": "Country Code (ISO3166-1-Alpha-3)"
},
{
"name": "Name",
"type": "string",
"description": "Country Name"
},
{
"name": "Region",
"type": "string",
"description": "Regional Group Name"
}
]
}
},
{
"name": "ssp",
"title": "Regional groups for the Shared Socioeconomic Pathways (SSPs)",
"path": "data/ssp.csv",
"format": "csv",
"mediatype": "text/csv",
"subregions": true,
"schema": {
"fields": [
{
"name": "Code",
"type": "string",
"description": "Country Code (ISO3166-1-Alpha-3)"
},
{
"name": "Name",
"type": "string",
"description": "Country Name"
},
{
"name": "Region",
"type": "string",
"description": "SSP region classification"
}
],
"primaryKey": "Code"
}
},
{
"name": "ar5",
"title": "Regional groups for the IPCC AR5 report",
"path": "data/ar5.csv",
"format": "csv",
"mediatype": "text/csv",
"subregions": true,
"sources": [
{
"title": "AR5 Region Definitions",
"path": "https://tntcat.iiasa.ac.at/AR5DB/dsd?Action=htmlpage&page=about"
}
],
"schema": {
"fields": [
{
"name": "Code",
"type": "string",
"description": "Country Code (ISO3166-1-Alpha-3)"
},
{
"name": "Name",
"type": "string",
"description": "Country Name"
},
{
"name": "Region",
"type": "string",
"description": "AR5 region definition"
}
],
"primaryKey": "Code"
}
},
{
"name": "unstats-geographical-regions",
"title": "UN Statistical Division Geographical Regions",
"path": "data/unstats-geographical-regions.json",
"format": "json",
"mediatype": "text/json",
"sources": [
{
"title": "UN Statistics Division - Standard country or area codes for statistical use (M49)",
"path": "https://unstats.un.org/unsd/methodology/m49/"
}
]
},
{
"name": "imo",
"title": "International Maritime Organization",
"path": "data/imo.csv",
"format": "csv",
"mediatype": "text/csv",
"sources": [
{
"title": "UN Treaty Collection - Convention on the International Maritime Organization",
"path": "https://treaties.un.org/pages/ViewDetails.aspx?src=TREATY&mtdsg_no=XII-1&chapter=12&clang=_en"
}
],
"schema": {
"fields": [
{
"name": "Code",
"type": "string",
"description": "Country Code (ISO3166-1-Alpha-3)"
},
{
"name": "Name",
"type": "string",
"description": "Country Name"
},
{
"name": "Date",
"type": "date",
"description": "Date of definitive signature or acceptance"
}
],
"primaryKey": "Code"
}
},
{
"name": "montreal_protocol_countries",
"title": "Montreal Protocol Article 5 Countries",
"path": "data/montreal_protocol_countries.json",
"description": "Status of countries under the Montreal Protocol",
"format": "json",
"mediatype": "text/json",
"sources": [
{
"title": "UNEP Classification of Parties",
"path": "https://ozone.unep.org/classification-parties"
},
{
"title": "Decision XXVIII/2: Decision related to the amendment phasing down hydrofluorocarbons | Ozone Secretariat",
"path": "https://ozone.unep.org/treaties/montreal-protocol/meetings/twenty-eighth-meeting-parties/decisions/decision-xxviii2-decision-related-amendment-phasing-down-hydrofluorocarbons"
}
]
},
{
"name": "montreal_protocol_high_ambient_temp",
"title": "Montreal Protocol High Ambient Temperature Exemption Countries",
"path": "data/montreal_protocol_high_ambient_temp.csv",
"description": "Countries covered by the Montreal Protocol's High Ambient Temperature Exemption",
"format": "csv",
"mediatype": "text/csv",
"sources": [
{
"title": "Decision XXVIII/2: Decision related to the amendment phasing down hydrofluorocarbons | Ozone Secretariat",
"path": "https://ozone.unep.org/treaties/montreal-protocol/meetings/twenty-eighth-meeting-parties/decisions/decision-xxviii2-decision-related-amendment-phasing-down-hydrofluorocarbons"
}
],
"schema": {
"fields": [
{
"name": "Code",
"type": "string",
"description": "Country Code (ISO3166-1-Alpha-3)"
},
{
"name": "Name",
"type": "string",
"description": "Country Name"
}
],
"primaryKey": "Code"
}
}
]
}