sources
Data license: CC-BY
1 row where datasetId = 5376 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 |
---|---|---|---|---|---|---|---|---|
20620 | Net Zero Tracker. Energy and Climate Intelligence Unit, Data-Driven EnviroLab, NewClimate Institute, Oxford Net Zero. Last updated: 2nd November 2021. | { "link": "https://eciu.net/netzerotracker/map", "retrievedDate": "2nd November 2021", "additionalInfo": "The Net Zero Scorecard maps country commitments to net-zero emissions. This is provided based on the commitment date (for example, net-zero by 2050) and the status of this commitment (e.g. in law, or proposed legislation).\n\nNote that what is and isn't included in net-zero commitments may vary from country to country. For example, some may include aviation emissions. Or some may cover CO2 emissions while others include total greenhouse gases. For more details on the specifics of each commitment, please see the Net Zero Tracker: https://eciu.net/netzerotracker/map\n\nThe full citation for this work is as follows:\nNet Zero Tracker. Energy and Climate Intelligence Unit, Data-Driven EnviroLab, NewClimate Institute, Oxford Net Zero. 2021.\n\nFor academic publications: Thomas Hale, Takeshi Kuramochi, John Lang, Brendan Mapes, Steve Smith, Ria Aiyer, Richard Black, Mirte Boot, Peter Chalkley, Frederic Hans, Nick Hay, Angel Hsu, Niklas H\u00f6hne, Silke Mooldijk, Tristram Walsh. Net Zero Tracker. Energy and Climate Intelligence Unit, Data-Driven EnviroLab, NewClimate Institute, Oxford Net Zero. 2021.", "dataPublishedBy": "Net Zero Tracker. Energy and Climate Intelligence Unit, Data-Driven EnviroLab, NewClimate Institute, Oxford Net Zero. (2021)." } |
2021-09-17 15:02:09 | 2021-09-17 15:02:09 | National Net-Zero Targets (Net Zero Tracker) 5376 | The Net Zero Scorecard maps country commitments to net-zero emissions. This is provided based on the commitment date (for example, net-zero by 2050) and the status of this commitment (e.g. in law, or proposed legislation). Note that what is and isn't included in net-zero commitments may vary from country to country. For example, some may include aviation emissions. Or some may cover CO2 emissions while others include total greenhouse gases. For more details on the specifics of each commitment, please see the Net Zero Tracker: https://eciu.net/netzerotracker/map The full citation for this work is as follows: Net Zero Tracker. Energy and Climate Intelligence Unit, Data-Driven EnviroLab, NewClimate Institute, Oxford Net Zero. 2021. For academic publications: Thomas Hale, Takeshi Kuramochi, John Lang, Brendan Mapes, Steve Smith, Ria Aiyer, Richard Black, Mirte Boot, Peter Chalkley, Frederic Hans, Nick Hay, Angel Hsu, Niklas Höhne, Silke Mooldijk, Tristram Walsh. Net Zero Tracker. Energy and Climate Intelligence Unit, Data-Driven EnviroLab, NewClimate Institute, Oxford Net Zero. 2021. | https://eciu.net/netzerotracker/map | Net Zero Tracker. Energy and Climate Intelligence Unit, Data-Driven EnviroLab, NewClimate Institute, Oxford Net Zero. (2021). |
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");