sources
Data license: CC-BY
1 row where datasetId = 974 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 |
---|---|---|---|---|---|---|---|---|
6833 | Fossil fuel consumption per capita - BP & UN (2017 revision) | { "link": null, "retrievedDate": null, "additionalInfo": "Per capita trends in fossil fuel consumption were calculated by OWID based on population data from the UN Population Division, and national fossil fuel data - coal, oil, and natural gas - from BP's Statistical Review of Global Energy.\r\n\r\nPer capita consumption was calculated by dividing total population in any given year by a country or region's coal, oil or gas consumption.\r\n\r\nPopulation data was sourced from the UN Population Division (2017 Revision). Available at: https://esa.un.org/unpd/wpp/DataQuery/ [accessed 17th October 2017].\r\n\r\nFossil fuel consumption data was sourced from the BP's Statistical Review of Global Energy. Available at: https://www.bp.com/en/global/corporate/energy-economics/statistical-review-of-world-energy.html [accessed 17th October 2017].", "dataPublishedBy": "Fossil fuel consumption per capita - BP & UN (2017 revision)", "dataPublisherSource": null } |
2017-10-17 21:14:02 | 2017-11-21 09:26:10 | Fossil fuel consumption per capita - BP & UN (2017 revision) 974 | Per capita trends in fossil fuel consumption were calculated by OWID based on population data from the UN Population Division, and national fossil fuel data - coal, oil, and natural gas - from BP's Statistical Review of Global Energy. Per capita consumption was calculated by dividing total population in any given year by a country or region's coal, oil or gas consumption. Population data was sourced from the UN Population Division (2017 Revision). Available at: https://esa.un.org/unpd/wpp/DataQuery/ [accessed 17th October 2017]. Fossil fuel consumption data was sourced from the BP's Statistical Review of Global Energy. Available at: https://www.bp.com/en/global/corporate/energy-economics/statistical-review-of-world-energy.html [accessed 17th October 2017]. | Fossil fuel consumption per capita - BP & UN (2017 revision) |
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");