sources
Data license: CC-BY
1 row where datasetId = 5313 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 |
---|---|---|---|---|---|---|---|---|
18033 | Digest of UK Energy Statistics (DUKES); BP; EMBER | { "additionalInfo": "This data series is based on the combination of three data sources:\n1. Pre-1985 data (and post-1985 imports data) is sourced from the Digest of UK Energy Statistics (DUKES), published by the UK's Department for Business, Energy & Industrial Strategy: https://www.gov.uk/government/statistics/electricity-chapter-5-digest-of-united-kingdom-energy-statistics-dukes\n\n2. Data from 1985 to 1999 is sourced from the BP's Statistical Review of World Energy: https://www.bp.com/en/global/corporate/energy-economics/statistical-review-of-world-energy.html\n\n3. Data from 2000 onwards is sourced from EMBER Global Electricity Review: https://ember-climate.org/project/global-electricity-review-2021/", "dataPublishedBy": "Digest of UK Energy Statistics (DUKES); BP; EMBER" } |
2021-05-21 21:44:14 | 2021-05-21 21:44:14 | Electricity mix in the UK (BEIS, BP, EMBER) 5313 | This data series is based on the combination of three data sources: 1. Pre-1985 data (and post-1985 imports data) is sourced from the Digest of UK Energy Statistics (DUKES), published by the UK's Department for Business, Energy & Industrial Strategy: https://www.gov.uk/government/statistics/electricity-chapter-5-digest-of-united-kingdom-energy-statistics-dukes 2. Data from 1985 to 1999 is sourced from the BP's Statistical Review of World Energy: https://www.bp.com/en/global/corporate/energy-economics/statistical-review-of-world-energy.html 3. Data from 2000 onwards is sourced from EMBER Global Electricity Review: https://ember-climate.org/project/global-electricity-review-2021/ | Digest of UK Energy Statistics (DUKES); BP; EMBER |
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");