-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdatapackage.json
83 lines (83 loc) · 2.41 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
{
"sources": [
{
"name": "Carbon Dioxide Information Analysis Center Fossil-Fuel CO2 Emissions",
"web": "http://cdiac.ornl.gov/trends/emis/meth_reg.html"
}
],
"resources": [
{
"name": "cdiac-fossil-fuel-cement-national",
"path": "data/cdiac-fossil-fuel-cement-national.csv",
"format": "csv",
"mediatype": "text/csv",
"bytes": 860248,
"schema": {
"fields": [
{
"name": "Nation",
"type": "string",
"description": "Name of Country"
},
{
"name": "Year",
"type": "integer",
"description": "Year"
},
{
"name": "Total",
"type": "integer",
"description": "Total CO2 emissions from fossil-fuels and cement production (thousand metric tons of C)",
"unit": "ktC"
},
{
"name": "Solid-Fuel",
"type": "number",
"description": "Emissions from solid fuel consumption",
"unit": "ktC"
},
{
"name": "Liquid-Fuel",
"type": "number",
"description": "Emissions from liquid fuel consumption",
"unit": "ktC"
},
{
"name": "Gas-Fuel",
"type": "number",
"description": "Emissions from gas fuel consumption",
"unit": "ktC"
},
{
"name": "Cement",
"type": "integer",
"description": "Emissions from cement production",
"unit": "ktC"
},
{
"name": "Gas-Flaring",
"type": "number",
"description": "Emissions from gas flaring",
"unit": "ktC"
},
{
"name": "Per-Capita",
"type": "number",
"description": "Per capita CO2 emissions (metric tons of carbon)",
"unit": "tC/cap"
},
{
"name": "Bunkers",
"type": "integer",
"description": "Emissions from bunker fuels (not included in the totals)",
"unit": "ktC"
}
],
"primaryKey": ["Nation", "Year"]
}
}
],
"name": "cdiac-co2-fossil-national",
"title": "CDIAC National Fossil-Fuel CO₂ Emissions",
"description": "National CO₂ Emissions Estimates primarily derived from energy statistics"
}