sources
Data license: CC-BY
1 row where datasetId = 4205 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 |
---|---|---|---|---|---|---|---|---|
17033 | Missing plastic budget (Lebreton et al. 2019) | { "link": "https://www.nature.com/articles/s41598-019-49413-5", "retrievedDate": "13th September 2019", "additionalInfo": "Data describes modelled and projected ocean plastic under three 'plastic emissions' scenarios.\n\nGiven is the modelled global accumulation of buoyant macroplastics (>0.5 cm) in the ocean. And the accumulation of microplastics (<0.5 cm), which is degraded plastic material from the ocean surface layer.\n\nThis is given under three scenarios:\n(1) Emissions of plastic to the world's oceans stopped by 2020;\n(2) Emissions stagnated at 2020 levels;\n(3) Increasing emissions of plastic until 2050 in line with the average growth rate of global plastic production from 2005-2015.", "dataPublishedBy": "Lebreton et al. (2019). A global mass budget for positively buoyant macroplastic debris in the ocean. Nature Scientific Reports." } |
2019-09-11 10:47:16 | 2019-09-11 10:47:16 | Missing plastic budget (Lebreton et al. 2019) 4205 | Data describes modelled and projected ocean plastic under three 'plastic emissions' scenarios. Given is the modelled global accumulation of buoyant macroplastics (>0.5 cm) in the ocean. And the accumulation of microplastics (<0.5 cm), which is degraded plastic material from the ocean surface layer. This is given under three scenarios: (1) Emissions of plastic to the world's oceans stopped by 2020; (2) Emissions stagnated at 2020 levels; (3) Increasing emissions of plastic until 2050 in line with the average growth rate of global plastic production from 2005-2015. | https://www.nature.com/articles/s41598-019-49413-5 | Lebreton et al. (2019). A global mass budget for positively buoyant macroplastic debris in the ocean. Nature Scientific Reports. |
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");