sources
Data license: CC-BY
1 row where datasetId = 2733 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 |
---|---|---|---|---|---|---|---|---|
15466 | Ozone depletion impacts on skin cancer incidence - Slaper et al. | { "link": "https://www.nature.com/articles/384256a0.pdf", "retrievedDate": "6th April 2018", "additionalInfo": "The authors modelled the number of excess skin cancer cases they would expect among fair-skinned populations in the United States and Northwest Europe as a result of stratospheric ozone depletion.\n\nThis was modelled for a scenario of no restrictions on ozone-depleting substances, where the authors assumed a 3% annual increase in emissions of chloroflourocarbons (CFCs), halons and methyl chloroforms. \n\nThe Montreal Protocol scenario assumed a decline of five important ozone-depleting substances by 50% by the end of 1999 as agreed in the protocol in 1987.\n\nThe Copenhagen Amendment assumed the production of 21 ozone-depleting substances reduced to zero by the end of 1995.", "dataPublishedBy": "Slaper, H. et al. Estimates of ozone depletion and skin cancer incidence to examine the Vienna Convention achievements. Nature 384(6606): 256\u2013258 (1996).", "dataPublisherSource": null } |
2018-04-06 15:26:02 | 2018-04-06 15:26:02 | Ozone depletion impacts on skin cancer incidence (Slaper et al., 1996) 2733 | The authors modelled the number of excess skin cancer cases they would expect among fair-skinned populations in the United States and Northwest Europe as a result of stratospheric ozone depletion. This was modelled for a scenario of no restrictions on ozone-depleting substances, where the authors assumed a 3% annual increase in emissions of chloroflourocarbons (CFCs), halons and methyl chloroforms. The Montreal Protocol scenario assumed a decline of five important ozone-depleting substances by 50% by the end of 1999 as agreed in the protocol in 1987. The Copenhagen Amendment assumed the production of 21 ozone-depleting substances reduced to zero by the end of 1995. | https://www.nature.com/articles/384256a0.pdf | Slaper, H. et al. Estimates of ozone depletion and skin cancer incidence to examine the Vienna Convention achievements. Nature 384(6606): 256–258 (1996). |
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");