sources
Data license: CC-BY
1 row where datasetId = 2667 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 |
---|---|---|---|---|---|---|---|---|
14891 | Economic impacts of 2C - Pretis et al. (2018) | { "link": "https://doi.org/10.1098/rsta.2016.0460", "retrievedDate": null, "additionalInfo": "Please cite the data as:\n\nPretis, Schwarz, Tang, Haustein, and Allen. 2018. \"Uncertain Impacts on Economic Growth When Stabilizing Global Temperatures at 1.5\u00b0C or 2\u00b0C Warming\". Philosophical Transactions of the Royal Society, A. DOI 10.1098/rsta.2016.0460.", "dataPublishedBy": "Philosophical Transactions of the Royal Society, 2018", "dataPublisherSource": null } |
2018-03-20 18:05:04 | 2023-02-15 21:05:25 | Economic impacts of 2C - Pretis et al. (2018) 2667 | Please cite the data as: Pretis, Schwarz, Tang, Haustein, and Allen. 2018. "Uncertain Impacts on Economic Growth When Stabilizing Global Temperatures at 1.5°C or 2°C Warming". Philosophical Transactions of the Royal Society, A. DOI 10.1098/rsta.2016.0460. | https://doi.org/10.1098/rsta.2016.0460 | Philosophical Transactions of the Royal Society, 2018 |
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");