-
Notifications
You must be signed in to change notification settings - Fork 4
/
datapackage.json
50 lines (50 loc) · 1.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
{
"sources": [
{
"title": "EDGAR’s Global Fossil CO2 Emissions from 1970 to 2017 (EDGARv5.0_FT2017 dataset)",
"url": "http://edgar.jrc.ec.europa.eu/overview.php?v=booklet2018"
}
],
"resources": [
{
"name": "edgar-co2-emissions",
"path": "data/edgar-co2-emissions.csv",
"format": "csv",
"mediatype": "text/csv",
"schema": {
"fields": [
{
"name": "Code",
"type": "string",
"description": "Three-letter ISO code or special or combined ones like FRA_MCO, ISR_PSE, ITA_SMR_VAT, SRB_MNE, ESP_AND, SDN_SSD, CHE_LIE, AIR, SEA (WORLD and EU28 were removed in EDGARv5.0)"
},
{
"name": "Name",
"type": "string",
"description": "Country or group name"
},
{
"name": "Sector",
"type": "string",
"description": "'Buildings', 'Power Industry', 'Transport', 'Other industrial combustion', or 'Other sectors'"
},
{
"name": "Year",
"type": "integer",
"description": "Year"
},
{
"name": "Emissions",
"type": "number",
"description": "CO₂ emissions",
"unit": "Mt"
}
],
"primaryKey": ["Code", "Name", "Sector", "Year"]
}
}
],
"name": "edgar-co2-emissions",
"title": "EDGAR CO₂ emissions 1970-2017",
"description": "Timeseries of CO₂ emissions by country and sector (Buildings, Power Industry, Transport, Other industrial combustion, Other sectors) in kt/year."
}