sources
Data license: CC-BY
1 row where datasetId = 970 sorted by id descending
This data as json, CSV (advanced)
Suggested facets: createdAt (date), updatedAt (date)
id ▲ | name | description | createdAt | updatedAt | datasetId | additionalInfo | link | dataPublishedBy |
---|---|---|---|---|---|---|---|---|
6829 | CO2 emission factors - IPCC (2006) | { "link": "https://www.ipcc-nggip.iges.or.jp/public/2006gl/pdf/2_Volume2/V2_2_Ch2_Stationary_Combustion.pdf", "retrievedDate": "15/10/2017", "additionalInfo": "Figures represent the carbon dioxide emission factors as used in offical greenhouse gas reporting methodologies, defined by the Intergovernmental Panel on Climate Change (IPCC).\r\n\r\nData has been converted from kilograms per terajoule to kilograms per MWh (kg/MWh) using a conversion factor of 277.778.", "dataPublishedBy": "Intergovernmental Panel on Climate Change (IPCC). Guidelines for National Greenhouse Gas Inventories (2006).", "dataPublisherSource": null } |
2017-10-15 18:50:11 | 2017-11-20 18:28:33 | CO2 emission factors - IPCC (2006) 970 | Figures represent the carbon dioxide emission factors as used in offical greenhouse gas reporting methodologies, defined by the Intergovernmental Panel on Climate Change (IPCC). Data has been converted from kilograms per terajoule to kilograms per MWh (kg/MWh) using a conversion factor of 277.778. | https://www.ipcc-nggip.iges.or.jp/public/2006gl/pdf/2_Volume2/V2_2_Ch2_Stationary_Combustion.pdf | Intergovernmental Panel on Climate Change (IPCC). Guidelines for National Greenhouse Gas Inventories (2006). |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE "sources" ( "id" INTEGER PRIMARY KEY AUTOINCREMENT, "name" VARCHAR(512) NULL , "description" TEXT NOT NULL , "createdAt" DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP , "updatedAt" DATETIME NULL , "datasetId" INTEGER NULL, additionalInfo TEXT GENERATED ALWAYS as (JSON_EXTRACT(description, '$.additionalInfo')) VIRTUAL, link TEXT GENERATED ALWAYS as (JSON_EXTRACT(description, '$.link')) VIRTUAL, dataPublishedBy TEXT GENERATED ALWAYS as (JSON_EXTRACT(description, '$.dataPublishedBy')) VIRTUAL, FOREIGN KEY("datasetId") REFERENCES "datasets" ("id") ON UPDATE RESTRICT ON DELETE RESTRICT ); CREATE INDEX "sources_datasetId" ON "sources" ("datasetId");