sources
Data license: CC-BY
1 row where datasetId = 5087 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 |
---|---|---|---|---|---|---|---|---|
17817 | CAIT Climate Data Explorer via. Climate Watch | { "link": "https://www.climatewatchdata.org/data-explorer/historical-emissions", "retrievedDate": "26th May 2020", "additionalInfo": "Nitrous oxide (N2O) emissions are measured in tonnes of carbon dioxide equivalents (CO\u2082e), based on 100-year global warming potential factors for non-CO\u2082 gases.\n\nThis data is published by country and sector from the CAIT Climate Data Explorer, and downloaded from the Climate Watch Portal. Available here: https://www.climatewatchdata.org/data-explorer/historical-emissions", "dataPublishedBy": "CAIT Climate Data Explorer via. Climate Watch" } |
2020-06-04 15:38:10 | 2020-06-04 15:38:10 | Nitrous oxide emissions by sector (CAIT, 2020) 5087 | Nitrous oxide (N2O) emissions are measured in tonnes of carbon dioxide equivalents (CO₂e), based on 100-year global warming potential factors for non-CO₂ gases. This data is published by country and sector from the CAIT Climate Data Explorer, and downloaded from the Climate Watch Portal. Available here: https://www.climatewatchdata.org/data-explorer/historical-emissions | https://www.climatewatchdata.org/data-explorer/historical-emissions | CAIT Climate Data Explorer via. Climate Watch |
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");