sources
Data license: CC-BY
1 row where datasetId = 6207 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 |
---|---|---|---|---|---|---|---|---|
28642 | CO2 emissions of transport modes (UK Government) | { "link": "https://www.gov.uk/government/publications/greenhouse-gas-reporting-conversion-factors-2022", "retrievedDate": "2023-12-06", "additionalInfo": "This provides the estimated greenhouse gas emissions factor for different transport modes, as provided by the UK Government's Department for Energy Security and Net Zero. It is based on average emissions of transport modes in the UK, based on standard vehicle standards and the UK's electricity mix.", "dataPublishedBy": "UK Government, Department for Energy Security and Net Zero" } |
2023-08-30 16:28:26 | 2024-07-08 15:20:40 | Transport CO2 emissions by mode (UK Government) 6207 | This provides the estimated greenhouse gas emissions factor for different transport modes, as provided by the UK Government's Department for Energy Security and Net Zero. It is based on average emissions of transport modes in the UK, based on standard vehicle standards and the UK's electricity mix. | https://www.gov.uk/government/publications/greenhouse-gas-reporting-conversion-factors-2022 | UK Government, Department for Energy Security and Net Zero |
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");